From 2f344f299f11fe8b7949fc2d1eeb51670da77080 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 22 Jan 2016 03:58:00 -0400 Subject: [PATCH 001/205] Update all requirements to most recent version. Update Django to 1.8.8 LTS. --- requirements/base.txt | 27 ++++++++++++++------------- requirements/common.txt | 2 +- requirements/development.txt | 12 ++++++------ requirements/documentation.txt | 4 ++-- 4 files changed, 23 insertions(+), 22 deletions(-) diff --git a/requirements/base.txt b/requirements/base.txt index 7702bc07ec..4202489a91 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,34 +1,35 @@ -Pillow==2.9.0 +Pillow==3.1.0 PyYAML==3.11 -celery==3.1.18 +celery==3.1.19 cssmin==0.2.0 django-activity-stream==0.6.0 django-autoadmin==1.1.0 -django-celery==3.1.16 +django-celery==3.1.17 django-colorful==1.1.0 -django-compressor==1.5 +django-compressor==2.0 django-cors-headers==1.1.0 django-filetransfers==0.1.0 -django-pure-pagination==0.2.1 -django-model-utils==2.2 -django-mptt==0.7.4 +django-formtools==1.0 +django-pure-pagination==0.3.0 +django-model-utils==2.4 +django-mptt==0.8.0 django-qsstats-magic==0.7.2 django-rest-swagger==0.3.4 -django-suit==0.2.13 -django-widget-tweaks==1.3 -djangorestframework==3.1.3 +django-suit==0.2.16 +django-widget-tweaks==1.4.1 +djangorestframework==3.3.2 djangorestframework-recursive==0.1.1 fusepy==2.0.2 pdfminer==20140328 -pycountry==1.10 +pycountry==1.19 pytesseract==0.1.6 python-dateutil==2.4.2 -python-gnupg==0.3.7 -python-magic==0.4.6 +python-gnupg==0.3.8 +python-magic==0.4.10 pytz==2015.4 sh==1.11 diff --git a/requirements/common.txt b/requirements/common.txt index baa84be998..2805c81ed5 100644 --- a/requirements/common.txt +++ b/requirements/common.txt @@ -1,2 +1,2 @@ -r base.txt -Django==1.7.10 +Django==1.8.8 diff --git a/requirements/development.txt b/requirements/development.txt index 35b2621501..1d17bfbf84 100644 --- a/requirements/development.txt +++ b/requirements/development.txt @@ -1,13 +1,13 @@ # requirements/development.txt -r common.txt -Werkzeug==0.10.4 +Werkzeug==0.11.3 -django-debug-toolbar==1.3.2 -django-extensions==1.5.5 -django-rosetta==0.7.6 +django-debug-toolbar==1.4 +django-extensions==1.6.1 +django-rosetta==0.7.8 -ipython==4.0.0 +ipython==4.0.3 -transifex-client==0.10 +transifex-client==0.11 wheel==0.26.0 diff --git a/requirements/documentation.txt b/requirements/documentation.txt index 3058e82f0c..f2d8350a1a 100644 --- a/requirements/documentation.txt +++ b/requirements/documentation.txt @@ -1,6 +1,6 @@ -r common.txt -Sphinx==1.3.1 +Sphinx==1.3.4 sphinx-autobuild==0.5.2 -sphinxcontrib-blockdiag==1.5.4 +sphinxcontrib-blockdiag==1.5.5 From b19225e95da4e791995e2151bc209d4aa2655552 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 22 Jan 2016 03:59:42 -0400 Subject: [PATCH 002/205] Load models by calling AppConfig.get_model method instead. --- mayan/apps/acls/apps.py | 3 ++- mayan/apps/checkouts/apps.py | 3 ++- mayan/apps/converter/apps.py | 3 ++- mayan/apps/document_comments/apps.py | 3 ++- mayan/apps/document_indexing/apps.py | 10 +++++--- mayan/apps/document_signatures/apps.py | 35 +++----------------------- mayan/apps/document_states/apps.py | 10 +++++--- mayan/apps/documents/apps.py | 11 +++++--- mayan/apps/folders/apps.py | 4 ++- mayan/apps/linking/apps.py | 5 +++- mayan/apps/mailer/apps.py | 3 ++- mayan/apps/metadata/apps.py | 5 +++- mayan/apps/ocr/apps.py | 3 ++- mayan/apps/permissions/apps.py | 3 ++- mayan/apps/sources/apps.py | 12 ++++++--- mayan/apps/tags/apps.py | 4 ++- 16 files changed, 58 insertions(+), 59 deletions(-) diff --git a/mayan/apps/acls/apps.py b/mayan/apps/acls/apps.py index 5f79f0fc0e..f46839f3cc 100644 --- a/mayan/apps/acls/apps.py +++ b/mayan/apps/acls/apps.py @@ -6,7 +6,6 @@ from common import MayanAppConfig, menu_object, menu_sidebar from navigation import SourceColumn from .links import link_acl_new, link_acl_delete, link_acl_permissions -from .models import AccessControlList class ACLsApp(MayanAppConfig): @@ -17,6 +16,8 @@ class ACLsApp(MayanAppConfig): def ready(self): super(ACLsApp, self).ready() + AccessControlList = self.get_model('AccessControlList') + SourceColumn( source=AccessControlList, label=_('Permissions'), attribute='get_permission_titles' diff --git a/mayan/apps/checkouts/apps.py b/mayan/apps/checkouts/apps.py index 76f8f12e88..660dce0b1c 100644 --- a/mayan/apps/checkouts/apps.py +++ b/mayan/apps/checkouts/apps.py @@ -17,7 +17,6 @@ from .links import ( link_checkout_list ) from .literals import CHECK_EXPIRED_CHECK_OUTS_INTERVAL -from .models import DocumentCheckout from .permissions import ( permission_document_checkin, permission_document_checkin_override, permission_document_checkout @@ -36,6 +35,8 @@ class CheckoutsApp(MayanAppConfig): APIEndPoint(app=self, version_string='1') + DocumentCheckout = self.get_model('DocumentCheckout') + Document.add_to_class( 'check_in', lambda document, user=None: DocumentCheckout.objects.check_in_document(document, user) diff --git a/mayan/apps/converter/apps.py b/mayan/apps/converter/apps.py index 727967327b..f2527f9b50 100644 --- a/mayan/apps/converter/apps.py +++ b/mayan/apps/converter/apps.py @@ -11,7 +11,6 @@ from .links import ( link_transformation_create, link_transformation_delete, link_transformation_edit ) -from .models import Transformation class ConverterApp(MayanAppConfig): @@ -21,6 +20,8 @@ class ConverterApp(MayanAppConfig): def ready(self): super(ConverterApp, self).ready() + Transformation = self.get_model('Transformation') + Package(label='Pillow', license_text=''' The Python Imaging Library (PIL) is diff --git a/mayan/apps/document_comments/apps.py b/mayan/apps/document_comments/apps.py index 378ed7f66e..5b52b73d98 100644 --- a/mayan/apps/document_comments/apps.py +++ b/mayan/apps/document_comments/apps.py @@ -10,7 +10,6 @@ from navigation import SourceColumn from .links import ( link_comment_add, link_comment_delete, link_comments_for_document ) -from .models import Comment from .permissions import ( permission_comment_create, permission_comment_delete, permission_comment_view @@ -26,6 +25,8 @@ class DocumentCommentsApp(MayanAppConfig): def ready(self): super(DocumentCommentsApp, self).ready() + Comment = self.get_model('Comment') + ModelPermission.register( model=Document, permissions=( permission_comment_create, permission_comment_delete, diff --git a/mayan/apps/document_indexing/apps.py b/mayan/apps/document_indexing/apps.py index a90d51381a..6dc211800a 100644 --- a/mayan/apps/document_indexing/apps.py +++ b/mayan/apps/document_indexing/apps.py @@ -30,10 +30,6 @@ from .links import ( link_template_node_create, link_template_node_delete, link_template_node_edit ) -from .models import ( - DocumentIndexInstanceNode, Index, IndexInstance, IndexInstanceNode, - IndexTemplateNode -) from .widgets import get_breadcrumbs, index_instance_item_link, node_level @@ -47,6 +43,12 @@ class DocumentIndexingApp(MayanAppConfig): def ready(self): super(DocumentIndexingApp, self).ready() + DocumentIndexInstanceNode = self.get_model('DocumentIndexInstanceNode') + Index = self.get_model('Index') + IndexInstance = self.get_model('IndexInstance') + IndexInstanceNode = self.get_model('IndexInstanceNode') + IndexTemplateNode = self.get_model('IndexTemplateNode') + APIEndPoint(app=self, version_string='1') Package(label='Django MPTT', license_text=''' diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index 592181aaf8..69dc4a245b 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -11,11 +11,11 @@ from django_gpg.exceptions import GPGDecryptionError from django_gpg.runtime import gpg from documents.models import Document, DocumentVersion +from .hooks import document_pre_open_hook, document_version_post_save_hook from .links import ( link_document_signature_delete, link_document_signature_download, link_document_signature_upload, link_document_verify ) -from .models import DocumentVersionSignature from .permissions import ( permission_document_verify, permission_signature_delete, permission_signature_download, permission_signature_upload @@ -24,37 +24,6 @@ from .permissions import ( logger = logging.getLogger(__name__) -def document_pre_open_hook(descriptor, instance): - if DocumentVersionSignature.objects.has_embedded_signature(document_version=instance): - # If it has an embedded signature, decrypt - try: - result = gpg.decrypt_file(descriptor, close_descriptor=False) - # gpg return a string, turn it into a file like object - except GPGDecryptionError: - # At least return the original raw content - descriptor.seek(0) - return descriptor - else: - descriptor.close() - return io.BytesIO(result.data) - else: - return descriptor - - -def document_version_post_save_hook(instance): - logger.debug('instance: %s', instance) - - try: - document_signature = DocumentVersionSignature.objects.get( - document_version=instance - ) - except DocumentVersionSignature.DoesNotExist: - document_signature = DocumentVersionSignature.objects.create( - document_version=instance - ) - document_signature.check_for_embedded_signature() - - class DocumentSignaturesApp(MayanAppConfig): app_namespace = 'signatures' app_url = 'signatures' @@ -65,6 +34,8 @@ class DocumentSignaturesApp(MayanAppConfig): def ready(self): super(DocumentSignaturesApp, self).ready() + DocumentVersionSignature = self.get_model('DocumentVersionSignature') + DocumentVersion.register_post_save_hook( 1, document_version_post_save_hook ) diff --git a/mayan/apps/document_states/apps.py b/mayan/apps/document_states/apps.py index d93e79bb03..0af6eb8132 100644 --- a/mayan/apps/document_states/apps.py +++ b/mayan/apps/document_states/apps.py @@ -12,10 +12,6 @@ from documents.models import Document from navigation import SourceColumn from .handlers import launch_workflow -from .models import ( - Workflow, WorkflowInstance, WorkflowInstanceLogEntry, WorkflowState, - WorkflowTransition -) from .links import ( link_document_workflow_instance_list, link_setup_workflow_document_types, link_setup_workflow_create, link_setup_workflow_delete, @@ -37,6 +33,12 @@ class DocumentStatesApp(MayanAppConfig): def ready(self): super(DocumentStatesApp, self).ready() + Workflow = self.get_model('Workflow') + WorkflowInstance = self.get_model('WorkflowInstance') + WorkflowInstanceLogEntry = self.get_model('WorkflowInstanceLogEntry') + WorkflowState = self.get_model('WorkflowState') + WorkflowTransition = self.get_model('WorkflowTransition') + SourceColumn( source=Workflow, label=_('Initial state'), func=lambda context: context['object'].get_initial_state() or _('None') diff --git a/mayan/apps/documents/apps.py b/mayan/apps/documents/apps.py index 344529af39..9927703d8c 100644 --- a/mayan/apps/documents/apps.py +++ b/mayan/apps/documents/apps.py @@ -60,10 +60,6 @@ from .literals import ( CHECK_DELETE_PERIOD_INTERVAL, CHECK_TRASH_PERIOD_INTERVAL, DELETE_STALE_STUBS_INTERVAL ) -from .models import ( - DeletedDocument, Document, DocumentPage, DocumentType, - DocumentTypeFilename, DocumentVersion -) from .permissions import ( permission_document_delete, permission_document_download, permission_document_edit, permission_document_new_version, @@ -90,6 +86,13 @@ class DocumentsApp(MayanAppConfig): APIEndPoint(app=self, version_string='1') + DeletedDocument = self.get_model('DeletedDocument') + Document = self.get_model('Document') + DocumentPage = self.get_model('DocumentPage') + DocumentType = self.get_model('DocumentType') + DocumentTypeFilename = self.get_model('DocumentTypeFilename') + DocumentVersion = self.get_model('DocumentVersion') + MissingItem( label=_('Create a document type'), description=_( diff --git a/mayan/apps/folders/apps.py b/mayan/apps/folders/apps.py index 6926e0cded..467949f6d5 100644 --- a/mayan/apps/folders/apps.py +++ b/mayan/apps/folders/apps.py @@ -20,7 +20,6 @@ from .links import ( link_folder_delete, link_folder_document_multiple_remove, link_folder_edit, link_folder_view ) -from .models import DocumentFolder, Folder from .permissions import ( permission_folder_add_document, permission_folder_delete, permission_folder_edit, permission_folder_remove_document, @@ -36,6 +35,9 @@ class FoldersApp(MayanAppConfig): def ready(self): super(FoldersApp, self).ready() + DocumentFolder = self.get_model('DocumentFolder') + Folder = self.get_model('Folder') + APIEndPoint(app=self, version_string='1') Document.add_to_class( diff --git a/mayan/apps/linking/apps.py b/mayan/apps/linking/apps.py index 7643a1e52d..8a0ac798ff 100644 --- a/mayan/apps/linking/apps.py +++ b/mayan/apps/linking/apps.py @@ -21,7 +21,6 @@ from .links import ( link_smart_link_instance_view, link_smart_link_instances_for_document, link_smart_link_list, link_smart_link_setup ) -from .models import ResolvedSmartLink, SmartLink, SmartLinkCondition from .permissions import ( permission_smart_link_delete, permission_smart_link_edit, permission_smart_link_view @@ -35,6 +34,10 @@ class LinkingApp(MayanAppConfig): def ready(self): super(LinkingApp, self).ready() + ResolvedSmartLink = self.get_model('ResolvedSmartLink') + SmartLink = self.get_model('SmartLink') + SmartLinkCondition = self.get_model('SmartLinkCondition') + ModelPermission.register( model=SmartLink, permissions=( permission_acl_edit, permission_acl_view, diff --git a/mayan/apps/mailer/apps.py b/mayan/apps/mailer/apps.py index 158788e176..b7eefbb8f7 100644 --- a/mayan/apps/mailer/apps.py +++ b/mayan/apps/mailer/apps.py @@ -14,7 +14,6 @@ from .links import ( link_document_mailing_error_log, link_send_document_link, link_send_document ) -from .models import LogEntry from .permissions import ( permission_mailing_link, permission_mailing_send_document ) @@ -27,6 +26,8 @@ class MailerApp(MayanAppConfig): def ready(self): super(MailerApp, self).ready() + LogEntry = self.get_model('LogEntry') + SourceColumn( source=LogEntry, label=_('Date and time'), attribute='datetime' ) diff --git a/mayan/apps/metadata/apps.py b/mayan/apps/metadata/apps.py index cf521bbd05..79281600c8 100644 --- a/mayan/apps/metadata/apps.py +++ b/mayan/apps/metadata/apps.py @@ -37,7 +37,6 @@ from .links import ( link_setup_metadata_type_create, link_setup_metadata_type_delete, link_setup_metadata_type_edit, link_setup_metadata_type_list, ) -from .models import DocumentMetadata, DocumentTypeMetadataType, MetadataType from .permissions import ( permission_metadata_document_add, permission_metadata_document_edit, permission_metadata_document_remove, permission_metadata_document_view @@ -55,6 +54,10 @@ class MetadataApp(MayanAppConfig): def ready(self): super(MetadataApp, self).ready() + DocumentMetadata = self.get_model('DocumentMetadata') + DocumentTypeMetadataType = self.get_model('DocumentTypeMetadataType') + MetadataType = self.get_model('MetadataType') + APIEndPoint(app=self, version_string='1') Document.add_to_class( diff --git a/mayan/apps/ocr/apps.py b/mayan/apps/ocr/apps.py index 7a57d36f3a..2b8afff5b9 100644 --- a/mayan/apps/ocr/apps.py +++ b/mayan/apps/ocr/apps.py @@ -29,7 +29,6 @@ from .links import ( link_document_submit_multiple, link_document_type_ocr_settings, link_document_type_submit, link_entry_list ) -from .models import DocumentVersionOCRError from .permissions import permission_ocr_document, permission_ocr_content_view from .settings import ( setting_pdftotext_path, setting_tesseract_path @@ -58,6 +57,8 @@ class OCRApp(MayanAppConfig): def ready(self): super(OCRApp, self).ready() + DocumentVersionOCRError = self.get_model('DocumentVersionOCRError') + APIEndPoint(app=self, version_string='1') Document.add_to_class('submit_for_ocr', document_ocr_submit) diff --git a/mayan/apps/permissions/apps.py b/mayan/apps/permissions/apps.py index d2fa84dd01..9cc06178c1 100644 --- a/mayan/apps/permissions/apps.py +++ b/mayan/apps/permissions/apps.py @@ -9,7 +9,6 @@ from common.signals import perform_upgrade from rest_api.classes import APIEndPoint from .handlers import purge_permissions -from .models import Role from .links import ( link_permission_grant, link_permission_revoke, link_role_create, link_role_delete, link_role_edit, link_role_list, link_role_members, @@ -25,6 +24,8 @@ class PermissionsApp(MayanAppConfig): def ready(self): super(PermissionsApp, self).ready() + Role = self.get_model('Role') + APIEndPoint(app=self, version_string='1') menu_object.bind_links( diff --git a/mayan/apps/sources/apps.py b/mayan/apps/sources/apps.py index 1e96231734..cc4230d710 100644 --- a/mayan/apps/sources/apps.py +++ b/mayan/apps/sources/apps.py @@ -30,10 +30,6 @@ from .links import ( link_setup_source_edit, link_setup_source_logs, link_staging_file_delete, link_upload_version ) -from .models import ( - POP3Email, IMAPEmail, Source, SourceLog, StagingFolderSource, - WatchFolderSource, WebFormSource -) from .widgets import staging_file_thumbnail @@ -45,6 +41,14 @@ class SourcesApp(MayanAppConfig): def ready(self): super(SourcesApp, self).ready() + POP3Email = self.get_model('POP3Email') + IMAPEmail = self.get_model('IMAPEmail') + Source = self.get_model('Source') + SourceLog = self.get_model('SourceLog') + StagingFolderSource = self.get_model('StagingFolderSource') + WatchFolderSource = self.get_model('WatchFolderSource') + WebFormSource = self.get_model('WebFormSource') + APIEndPoint(app=self, version_string='1') MissingItem( diff --git a/mayan/apps/tags/apps.py b/mayan/apps/tags/apps.py index c6f230b3a7..df13311c11 100644 --- a/mayan/apps/tags/apps.py +++ b/mayan/apps/tags/apps.py @@ -20,7 +20,6 @@ from .links import ( link_tag_delete, link_tag_document_list, link_tag_edit, link_tag_list, link_tag_multiple_delete, link_tag_tagged_item_list ) -from .models import DocumentTag, Tag from .permissions import ( permission_tag_attach, permission_tag_delete, permission_tag_edit, permission_tag_remove, permission_tag_view @@ -36,6 +35,9 @@ class TagsApp(MayanAppConfig): def ready(self): super(TagsApp, self).ready() + DocumentTag = self.get_model('DocumentTag') + Tag = self.get_model('Tag') + APIEndPoint(app=self, version_string='1') Document.add_to_class( From fbb22affaa3ef368a15258668ea872b8a18ff259 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 22 Jan 2016 04:00:30 -0400 Subject: [PATCH 003/205] Update pycountry code to new 1.19 backwards incompatible changes. --- mayan/apps/documents/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mayan/apps/documents/settings.py b/mayan/apps/documents/settings.py index 09669df4eb..2c37e86bb2 100644 --- a/mayan/apps/documents/settings.py +++ b/mayan/apps/documents/settings.py @@ -9,8 +9,9 @@ from smart_settings import Namespace # TODO: Findout method to make languages names' translatable. # YAML fails to serialize ugettext_lazy and ugettext is not allowed at this # level + LANGUAGE_CHOICES = [ - (i.terminology, i.name) for i in list(pycountry.languages) + (i.iso639_3_code, i.name) for i in list(pycountry.languages) ] namespace = Namespace(name='documents', label=_('Documents')) From 5ec3025120ab1e7ffc06e29d845b5db0d8876cea Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 22 Jan 2016 04:01:15 -0400 Subject: [PATCH 004/205] Use OneToOneField instead of a ForeignKey with unique=True. --- .../migrations/0005_auto_20160122_0756.py | 19 +++++++++++++++++++ mayan/apps/checkouts/models.py | 4 +--- 2 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 mayan/apps/checkouts/migrations/0005_auto_20160122_0756.py diff --git a/mayan/apps/checkouts/migrations/0005_auto_20160122_0756.py b/mayan/apps/checkouts/migrations/0005_auto_20160122_0756.py new file mode 100644 index 0000000000..f154beedd6 --- /dev/null +++ b/mayan/apps/checkouts/migrations/0005_auto_20160122_0756.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('checkouts', '0004_auto_20150617_0330'), + ] + + operations = [ + migrations.AlterField( + model_name='documentcheckout', + name='document', + field=models.OneToOneField(verbose_name='Document', to='documents.Document'), + ), + ] diff --git a/mayan/apps/checkouts/models.py b/mayan/apps/checkouts/models.py index bbc24bd1f0..45ec9e81b8 100644 --- a/mayan/apps/checkouts/models.py +++ b/mayan/apps/checkouts/models.py @@ -24,9 +24,7 @@ class DocumentCheckout(models.Model): """ Model to store the state and information of a document checkout """ - document = models.ForeignKey( - Document, unique=True, verbose_name=_('Document') - ) + document = models.OneToOneField(Document, verbose_name=_('Document')) checkout_datetime = models.DateTimeField( auto_now_add=True, verbose_name=_('Check out date and time') ) From ca15cadc5e00bb898ca00e62b7a5cc120e7ee503 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 22 Jan 2016 04:01:49 -0400 Subject: [PATCH 005/205] Add missing migration for pycountry update. --- .../migrations/0029_auto_20160122_0755.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 mayan/apps/documents/migrations/0029_auto_20160122_0755.py diff --git a/mayan/apps/documents/migrations/0029_auto_20160122_0755.py b/mayan/apps/documents/migrations/0029_auto_20160122_0755.py new file mode 100644 index 0000000000..a2d8dd2826 --- /dev/null +++ b/mayan/apps/documents/migrations/0029_auto_20160122_0755.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('documents', '0028_newversionblock'), + ] + + operations = [ + migrations.AlterField( + model_name='document', + name='language', + field=models.CharField(default=b'eng', max_length=8, verbose_name='Language', blank=True, choices=[[b'aaa', b'Ghotuo'], [b'aab', b'Alumu-Tesu'], [b'aac', b'Ari'], [b'aad', b'Amal'], [b'aae', 'Albanian, Arb\xebresh\xeb'], [b'aaf', b'Aranadan'], [b'aag', b'Ambrak'], [b'aah', b"Arapesh, Abu'"], [b'aai', b'Arifama-Miniafia'], [b'aak', b'Ankave'], [b'aal', b'Afade'], [b'aam', b'Aramanik'], [b'aan', 'Anamb\xe9'], [b'aao', b'Arabic, Algerian Saharan'], [b'aap', 'Ar\xe1ra, Par\xe1'], [b'aaq', b'Abnaki, Eastern'], [b'aar', b'Afar'], [b'aas', 'Aas\xe1x'], [b'aat', b'Albanian, Arvanitika'], [b'aau', b'Abau'], [b'aaw', b'Solong'], [b'aax', b'Mandobo Atas'], [b'aaz', b'Amarasi'], [b'aba', 'Ab\xe9'], [b'abb', b'Bankon'], [b'abc', b'Ayta, Ambala'], [b'abd', b'Manide'], [b'abe', b'Abnaki, Western'], [b'abf', b'Abai Sungai'], [b'abg', b'Abaga'], [b'abh', b'Arabic, Tajiki'], [b'abi', b'Abidji'], [b'abj', b'Aka-Bea'], [b'abk', b'Abkhazian'], [b'abl', b'Lampung Nyo'], [b'abm', b'Abanyom'], [b'abn', b'Abua'], [b'abo', b'Abon'], [b'abp', b'Ayta, Abellen'], [b'abq', b'Abaza'], [b'abr', b'Abron'], [b'abs', b'Malay, Ambonese'], [b'abt', b'Ambulas'], [b'abu', b'Abure'], [b'abv', b'Arabic, Baharna'], [b'abw', b'Pal'], [b'abx', b'Inabaknon'], [b'aby', b'Aneme Wake'], [b'abz', b'Abui'], [b'aca', b'Achagua'], [b'acb', '\xc1nc\xe1'], [b'acd', b'Gikyode'], [b'ace', b'Achinese'], [b'acf', b'Creole French, Saint Lucian'], [b'ach', b'Acoli'], [b'aci', b'Aka-Cari'], [b'ack', b'Aka-Kora'], [b'acl', b'Akar-Bale'], [b'acm', b'Arabic, Mesopotamian'], [b'acn', b'Achang'], [b'acp', b'Acipa, Eastern'], [b'acq', b"Arabic, Ta'izzi-Adeni"], [b'acr', b'Achi'], [b'acs', 'Acro\xe1'], [b'act', b'Achterhoeks'], [b'acu', b'Achuar-Shiwiar'], [b'acv', b'Achumawi'], [b'acw', b'Arabic, Hijazi'], [b'acx', b'Arabic, Omani'], [b'acy', b'Arabic, Cypriot'], [b'acz', b'Acheron'], [b'ada', b'Adangme'], [b'adb', b'Adabe'], [b'add', b'Dzodinka'], [b'ade', b'Adele'], [b'adf', b'Arabic, Dhofari'], [b'adg', b'Andegerebinha'], [b'adh', b'Adhola'], [b'adi', b'Adi'], [b'adj', b'Adioukrou'], [b'adl', b'Galo'], [b'adn', b'Adang'], [b'ado', b'Abu'], [b'adp', b'Adap'], [b'adq', b'Adangbe'], [b'adr', b'Adonara'], [b'ads', b'Adamorobe Sign Language'], [b'adt', b'Adnyamathanha'], [b'adu', b'Aduge'], [b'adw', b'Amundava'], [b'adx', b'Tibetan, Amdo'], [b'ady', b'Adyghe'], [b'adz', b'Adzera'], [b'aea', b'Areba'], [b'aeb', b'Arabic, Tunisian'], [b'aec', b'Arabic, Saidi'], [b'aed', b'Argentine Sign Language'], [b'aee', b'Pashayi, Northeast'], [b'aek', b'Haeke'], [b'ael', b'Ambele'], [b'aem', b'Arem'], [b'aen', b'Armenian Sign Language'], [b'aeq', b'Aer'], [b'aer', b'Arrernte, Eastern'], [b'aes', b'Alsea'], [b'aeu', b'Akeu'], [b'aew', b'Ambakich'], [b'aey', b'Amele'], [b'aez', b'Aeka'], [b'afb', b'Arabic, Gulf'], [b'afd', b'Andai'], [b'afe', b'Putukwam'], [b'afg', b'Afghan Sign Language'], [b'afh', b'Afrihili'], [b'afi', b'Akrukay'], [b'afk', b'Nanubae'], [b'afn', b'Defaka'], [b'afo', b'Eloyi'], [b'afp', b'Tapei'], [b'afr', b'Afrikaans'], [b'afs', b'Creole, Afro-Seminole'], [b'aft', b'Afitti'], [b'afu', b'Awutu'], [b'afz', b'Obokuitai'], [b'aga', b'Aguano'], [b'agb', b'Legbo'], [b'agc', b'Agatu'], [b'agd', b'Agarabi'], [b'age', b'Angal'], [b'agf', b'Arguni'], [b'agg', b'Angor'], [b'agh', b'Ngelima'], [b'agi', b'Agariya'], [b'agj', b'Argobba'], [b'agk', b'Agta, Isarog'], [b'agl', b'Fembe'], [b'agm', b'Angaataha'], [b'agn', b'Agutaynen'], [b'ago', b'Tainae'], [b'agq', b'Aghem'], [b'agr', b'Aguaruna'], [b'ags', b'Esimbi'], [b'agt', b'Agta, Central Cagayan'], [b'agu', b'Aguacateco'], [b'agv', b'Dumagat, Remontado'], [b'agw', b'Kahua'], [b'agx', b'Aghul'], [b'agy', b'Alta, Southern'], [b'agz', b'Agta, Mt. Iriga'], [b'aha', b'Ahanta'], [b'ahb', b'Axamb'], [b'ahg', b'Qimant'], [b'ahh', b'Aghu'], [b'ahi', b'Aizi, Tiagbamrin'], [b'ahk', b'Akha'], [b'ahl', b'Igo'], [b'ahm', b'Aizi, Mobumrin'], [b'ahn', '\xc0h\xe0n'], [b'aho', b'Ahom'], [b'ahp', b'Aizi, Aproumu'], [b'ahr', b'Ahirani'], [b'ahs', b'Ashe'], [b'aht', b'Ahtena'], [b'aia', b'Arosi'], [b'aib', b'Ainu (China)'], [b'aic', b'Ainbai'], [b'aid', b'Alngith'], [b'aie', b'Amara'], [b'aif', b'Agi'], [b'aig', b'Creole English, Antigua and Barbuda'], [b'aih', b'Ai-Cham'], [b'aii', b'Neo-Aramaic, Assyrian'], [b'aij', b'Lishanid Noshan'], [b'aik', b'Ake'], [b'ail', b'Aimele'], [b'aim', b'Aimol'], [b'ain', b'Ainu (Japan)'], [b'aio', b'Aiton'], [b'aip', b'Burumakok'], [b'aiq', b'Aimaq'], [b'air', b'Airoran'], [b'ais', b'Amis, Nataoran'], [b'ait', b'Arikem'], [b'aiw', b'Aari'], [b'aix', b'Aighon'], [b'aiy', b'Ali'], [b'aja', b'Aja (Sudan)'], [b'ajg', b'Aja (Benin)'], [b'aji', 'Aji\xeb'], [b'ajn', b'Andajin'], [b'ajp', b'Arabic, South Levantine'], [b'ajt', b'Arabic, Judeo-Tunisian'], [b'aju', b'Arabic, Judeo-Moroccan'], [b'ajw', b'Ajawa'], [b'ajz', b'Karbi, Amri'], [b'aka', b'Akan'], [b'akb', b'Batak Angkola'], [b'akc', b'Mpur'], [b'akd', b'Ukpet-Ehom'], [b'ake', b'Akawaio'], [b'akf', b'Akpa'], [b'akg', b'Anakalangu'], [b'akh', b'Angal Heneng'], [b'aki', b'Aiome'], [b'akj', b'Aka-Jeru'], [b'akk', b'Akkadian'], [b'akl', b'Aklanon'], [b'akm', b'Aka-Bo'], [b'ako', b'Akurio'], [b'akp', b'Siwu'], [b'akq', b'Ak'], [b'akr', b'Araki'], [b'aks', b'Akaselem'], [b'akt', b'Akolet'], [b'aku', b'Akum'], [b'akv', b'Akhvakh'], [b'akw', b'Akwa'], [b'akx', b'Aka-Kede'], [b'aky', b'Aka-Kol'], [b'akz', b'Alabama'], [b'ala', b'Alago'], [b'alc', b'Qawasqar'], [b'ald', b'Alladian'], [b'ale', b'Aleut'], [b'alf', b'Alege'], [b'alh', b'Alawa'], [b'ali', b'Amaimon'], [b'alj', b'Alangan'], [b'alk', b'Alak'], [b'all', b'Allar'], [b'alm', b'Amblong'], [b'aln', b'Albanian, Gheg'], [b'alo', b'Larike-Wakasihu'], [b'alp', b'Alune'], [b'alq', b'Algonquin'], [b'alr', b'Alutor'], [b'als', b'Albanian, Tosk'], [b'alt', b'Altai, Southern'], [b'alu', b"'Are'are"], [b'alw', 'Alaba-K\u2019abeena'], [b'alx', b'Amol'], [b'aly', b'Alyawarr'], [b'alz', b'Alur'], [b'ama', 'Amanay\xe9'], [b'amb', b'Ambo'], [b'amc', b'Amahuaca'], [b'ame', b"Yanesha'"], [b'amf', b'Hamer-Banna'], [b'amg', b'Amurdak'], [b'amh', b'Amharic'], [b'ami', b'Amis'], [b'amj', b'Amdang'], [b'amk', b'Ambai'], [b'aml', b'War-Jaintia'], [b'amm', b'Ama (Papua New Guinea)'], [b'amn', b'Amanab'], [b'amo', b'Amo'], [b'amp', b'Alamblak'], [b'amq', b'Amahai'], [b'amr', b'Amarakaeri'], [b'ams', b'Amami-Oshima, Southern'], [b'amt', b'Amto'], [b'amu', b'Amuzgo, Guerrero'], [b'amv', b'Ambelau'], [b'amw', b'Neo-Aramaic, Western'], [b'amx', b'Anmatyerre'], [b'amy', b'Ami'], [b'amz', b'Atampaya'], [b'ana', b'Andaqui'], [b'anb', b'Andoa'], [b'anc', b'Ngas'], [b'and', b'Ansus'], [b'ane', 'X\xe2r\xe2c\xf9\xf9'], [b'anf', b'Animere'], [b'ang', b'English, Old (ca. 450-1100)'], [b'anh', b'Nend'], [b'ani', b'Andi'], [b'anj', b'Anor'], [b'ank', b'Goemai'], [b'anl', b'Chin, Anu-Hkongso'], [b'anm', b'Anal'], [b'ann', b'Obolo'], [b'ano', b'Andoque'], [b'anp', b'Angika'], [b'anq', b'Jarawa (India)'], [b'anr', b'Andh'], [b'ans', b'Anserma'], [b'ant', b'Antakarinya'], [b'anu', b'Anuak'], [b'anv', b'Denya'], [b'anw', b'Anaang'], [b'anx', b'Andra-Hus'], [b'any', b'Anyin'], [b'anz', b'Anem'], [b'aoa', b'Angolar'], [b'aob', b'Abom'], [b'aoc', b'Pemon'], [b'aod', b'Andarum'], [b'aoe', b'Angal Enen'], [b'aof', b'Bragat'], [b'aog', b'Angoram'], [b'aoh', b'Arma'], [b'aoi', b'Anindilyakwa'], [b'aoj', b'Mufian'], [b'aok', 'Arh\xf6'], [b'aol', b'Alor'], [b'aom', '\xd6mie'], [b'aon', b'Arapesh, Bumbita'], [b'aor', b'Aore'], [b'aos', b'Taikat'], [b'aot', b"A'tong"], [b'aou', b"A'ou"], [b'aox', b'Atorada'], [b'aoz', b'Uab Meto'], [b'apb', b"Sa'a"], [b'apc', b'Arabic, North Levantine'], [b'apd', b'Arabic, Sudanese'], [b'ape', b'Bukiyip'], [b'apf', b'Agta, Pahanan'], [b'apg', b'Ampanang'], [b'aph', b'Athpariya'], [b'api', 'Apiak\xe1'], [b'apj', b'Apache, Jicarilla'], [b'apk', b'Apache, Kiowa'], [b'apl', b'Apache, Lipan'], [b'apm', b'Apache, Mescalero-Chiricahua'], [b'apn', 'Apinay\xe9'], [b'apo', b'Ambul'], [b'app', b'Apma'], [b'apq', b'A-Pucikwar'], [b'apr', b'Arop-Lokep'], [b'aps', b'Arop-Sissano'], [b'apt', b'Apatani'], [b'apu', 'Apurin\xe3'], [b'apv', b'Alapmunte'], [b'apw', b'Apache, Western'], [b'apx', b'Aputai'], [b'apy', 'Apala\xed'], [b'apz', b'Safeyoka'], [b'aqc', b'Archi'], [b'aqd', b'Dogon, Ampari'], [b'aqg', b'Arigidi'], [b'aqm', b'Atohwaim'], [b'aqn', b'Alta, Northern'], [b'aqp', b'Atakapa'], [b'aqr', 'Arh\xe2'], [b'aqz', b'Akuntsu'], [b'ara', b'Arabic'], [b'arb', b'Arabic, Standard'], [b'arc', b'Aramaic, Official (700-300 BCE)'], [b'ard', b'Arabana'], [b'are', b'Arrarnta, Western'], [b'arg', b'Aragonese'], [b'arh', b'Arhuaco'], [b'ari', b'Arikara'], [b'arj', b'Arapaso'], [b'ark', 'Arikap\xfa'], [b'arl', b'Arabela'], [b'arn', b'Mapudungun'], [b'aro', b'Araona'], [b'arp', b'Arapaho'], [b'arq', b'Arabic, Algerian'], [b'arr', b'Karo (Brazil)'], [b'ars', b'Arabic, Najdi'], [b'aru', 'Aru\xe1 (Amazonas State)'], [b'arv', b'Arbore'], [b'arw', b'Arawak'], [b'arx', 'Aru\xe1 (Rodonia State)'], [b'ary', b'Arabic, Moroccan'], [b'arz', b'Arabic, Egyptian'], [b'asa', b'Asu (Tanzania)'], [b'asb', b'Assiniboine'], [b'asc', b'Asmat, Casuarina Coast'], [b'asd', b'Asas'], [b'ase', b'American Sign Language'], [b'asf', b'Australian Sign Language'], [b'asg', b'Cishingini'], [b'ash', b'Abishira'], [b'asi', b'Buruwai'], [b'asj', b'Sari'], [b'ask', b'Ashkun'], [b'asl', b'Asilulu'], [b'asm', b'Assamese'], [b'asn', 'Asurin\xed, Xing\xfa'], [b'aso', b'Dano'], [b'asp', b'Algerian Sign Language'], [b'asq', b'Austrian Sign Language'], [b'asr', b'Asuri'], [b'ass', b'Ipulo'], [b'ast', b'Asturian'], [b'asu', b'Asurini, Tocantins'], [b'asv', b'Asoa'], [b'asw', b'Australian Aborigines Sign Language'], [b'asx', b'Muratayak'], [b'asy', b'Asmat, Yaosakor'], [b'asz', b'As'], [b'ata', b'Pele-Ata'], [b'atb', b'Zaiwa'], [b'atc', b'Atsahuaca'], [b'atd', b'Manobo, Ata'], [b'ate', b'Atemble'], [b'atg', b'Ivbie North-Okpela-Arhe'], [b'ati', 'Atti\xe9'], [b'atj', b'Atikamekw'], [b'atk', b'Ati'], [b'atl', b'Agta, Mt. Iraya'], [b'atm', b'Ata'], [b'atn', b'Ashtiani'], [b'ato', b'Atong'], [b'atp', b'Atta, Pudtol'], [b'atq', b'Aralle-Tabulahan'], [b'atr', b'Waimiri-Atroari'], [b'ats', b'Gros Ventre'], [b'att', b'Atta, Pamplona'], [b'atu', b'Reel'], [b'atv', b'Altai, Northern'], [b'atw', b'Atsugewi'], [b'atx', b'Arutani'], [b'aty', b'Aneityum'], [b'atz', b'Arta'], [b'aua', b'Asumboa'], [b'aub', b'Alugu'], [b'auc', b'Waorani'], [b'aud', b'Anuta'], [b'aue', b"=/Kx'au//'ein"], [b'aug', b'Aguna'], [b'auh', b'Aushi'], [b'aui', b'Anuki'], [b'auj', b'Awjilah'], [b'auk', b'Heyo'], [b'aul', b'Aulua'], [b'aum', b'Asu (Nigeria)'], [b'aun', b'One, Molmo'], [b'auo', b'Auyokawa'], [b'aup', b'Makayam'], [b'auq', b'Anus'], [b'aur', b'Aruek'], [b'aut', b'Austral'], [b'auu', b'Auye'], [b'auw', b'Awyi'], [b'aux', 'Aur\xe1'], [b'auy', b'Awiyaana'], [b'auz', b'Arabic, Uzbeki'], [b'ava', b'Avaric'], [b'avb', b'Avau'], [b'avd', b'Alviri-Vidari'], [b'ave', b'Avestan'], [b'avi', b'Avikam'], [b'avk', b'Kotava'], [b'avl', b'Arabic, Eastern Egyptian Bedawi'], [b'avm', b'Angkamuthi'], [b'avn', b'Avatime'], [b'avo', b'Agavotaguerra'], [b'avs', b'Aushiri'], [b'avt', b'Au'], [b'avu', b'Avokaya'], [b'avv', 'Av\xe1-Canoeiro'], [b'awa', b'Awadhi'], [b'awb', b'Awa (Papua New Guinea)'], [b'awc', b'Cicipu'], [b'awe', 'Awet\xed'], [b'awg', b'Anguthimri'], [b'awh', b'Awbono'], [b'awi', b'Aekyom'], [b'awk', b'Awabakal'], [b'awm', b'Arawum'], [b'awn', b'Awngi'], [b'awo', b'Awak'], [b'awr', b'Awera'], [b'aws', b'Awyu, South'], [b'awt', 'Arawet\xe9'], [b'awu', b'Awyu, Central'], [b'awv', b'Awyu, Jair'], [b'aww', b'Awun'], [b'awx', b'Awara'], [b'awy', b'Awyu, Edera'], [b'axb', b'Abipon'], [b'axe', b'Ayerrerenge'], [b'axg', 'Ar\xe1ra, Mato Grosso'], [b'axk', b'Yaka (Central African Republic)'], [b'axl', b'Aranda, Lower Southern'], [b'axm', b'Armenian, Middle'], [b'axx', 'X\xe2r\xe2gur\xe8'], [b'aya', b'Awar'], [b'ayb', b'Gbe, Ayizo'], [b'ayc', b'Aymara, Southern'], [b'ayd', b'Ayabadhu'], [b'aye', b'Ayere'], [b'ayg', b'Ginyanga'], [b'ayh', b'Arabic, Hadrami'], [b'ayi', b'Leyigha'], [b'ayk', b'Akuku'], [b'ayl', b'Arabic, Libyan'], [b'aym', b'Aymara'], [b'ayn', b'Arabic, Sanaani'], [b'ayo', b'Ayoreo'], [b'ayp', b'Arabic, North Mesopotamian'], [b'ayq', b'Ayi (Papua New Guinea)'], [b'ayr', b'Aymara, Central'], [b'ays', b'Ayta, Sorsogon'], [b'ayt', b'Ayta, Magbukun'], [b'ayu', b'Ayu'], [b'ayy', b'Ayta, Tayabas'], [b'ayz', b'Mai Brat'], [b'aza', b'Azha'], [b'azb', b'Azerbaijani, South'], [b'azd', b'Nahuatl, Eastern Durango'], [b'aze', b'Azerbaijani'], [b'azg', b'Amuzgo, San Pedro Amuzgos'], [b'azj', b'Azerbaijani, North'], [b'azm', b'Amuzgo, Ipalapa'], [b'azn', b'Nahuatl, Western Durango'], [b'azo', b'Awing'], [b'azt', b'Atta, Faire'], [b'azz', b'Nahuatl, Highland Puebla'], [b'baa', b'Babatana'], [b'bab', 'Bainouk-Gunyu\xf1o'], [b'bac', b'Badui'], [b'bae', 'Bar\xe9'], [b'baf', b'Nubaca'], [b'bag', b'Tuki'], [b'bah', b'Creole English, Bahamas'], [b'baj', b'Barakai'], [b'bak', b'Bashkir'], [b'bal', b'Baluchi'], [b'bam', b'Bambara'], [b'ban', b'Balinese'], [b'bao', b'Waimaha'], [b'bap', b'Bantawa'], [b'bar', b'Bavarian'], [b'bas', b'Basa (Cameroon)'], [b'bau', b'Bada (Nigeria)'], [b'bav', b'Vengo'], [b'baw', b'Bambili-Bambui'], [b'bax', b'Bamun'], [b'bay', b'Batuley'], [b'bba', b'Baatonum'], [b'bbb', b'Barai'], [b'bbc', b'Batak Toba'], [b'bbd', b'Bau'], [b'bbe', b'Bangba'], [b'bbf', b'Baibai'], [b'bbg', b'Barama'], [b'bbh', b'Bugan'], [b'bbi', b'Barombi'], [b'bbj', "Ghom\xe1l\xe1'"], [b'bbk', b'Babanki'], [b'bbl', b'Bats'], [b'bbm', b'Babango'], [b'bbn', b'Uneapa'], [b'bbo', 'Bobo Madar\xe9, Northern'], [b'bbp', b'Banda, West Central'], [b'bbq', b'Bamali'], [b'bbr', b'Girawa'], [b'bbs', b'Bakpinka'], [b'bbt', b'Mburku'], [b'bbu', b'Kulung (Nigeria)'], [b'bbv', b'Karnai'], [b'bbw', b'Baba'], [b'bbx', b'Bubia'], [b'bby', b'Befang'], [b'bbz', b'Creole Arabic, Babalia'], [b'bca', b'Bai, Central'], [b'bcb', b'Bainouk-Samik'], [b'bcc', b'Balochi, Southern'], [b'bcd', b'Babar, North'], [b'bce', b'Bamenyam'], [b'bcf', b'Bamu'], [b'bcg', b'Baga Binari'], [b'bch', b'Bariai'], [b'bci', 'Baoul\xe9'], [b'bcj', b'Bardi'], [b'bck', b'Bunaba'], [b'bcl', b'Bikol, Central'], [b'bcm', b'Bannoni'], [b'bcn', b'Bali (Nigeria)'], [b'bco', b'Kaluli'], [b'bcp', b'Bali (Democratic Republic of Congo)'], [b'bcq', b'Bench'], [b'bcr', b'Babine'], [b'bcs', b'Kohumono'], [b'bct', b'Bendi'], [b'bcu', b'Awad Bing'], [b'bcv', b'Shoo-Minda-Nye'], [b'bcw', b'Bana'], [b'bcy', b'Bacama'], [b'bcz', b'Bainouk-Gunyaamolo'], [b'bda', b'Bayot'], [b'bdb', b'Basap'], [b'bdc', 'Ember\xe1-Baud\xf3'], [b'bdd', b'Bunama'], [b'bde', b'Bade'], [b'bdf', b'Biage'], [b'bdg', b'Bonggi'], [b'bdh', b'Baka (Sudan)'], [b'bdi', b'Burun'], [b'bdj', b'Bai'], [b'bdk', b'Budukh'], [b'bdl', b'Bajau, Indonesian'], [b'bdm', b'Buduma'], [b'bdn', b'Baldemu'], [b'bdo', b'Morom'], [b'bdp', b'Bende'], [b'bdq', b'Bahnar'], [b'bdr', b'Bajau, West Coast'], [b'bds', b'Burunge'], [b'bdt', b'Bokoto'], [b'bdu', b'Oroko'], [b'bdv', b'Bodo Parja'], [b'bdw', b'Baham'], [b'bdx', b'Budong-Budong'], [b'bdy', b'Bandjalang'], [b'bdz', b'Badeshi'], [b'bea', b'Beaver'], [b'beb', b'Bebele'], [b'bec', b'Iceve-Maci'], [b'bed', b'Bedoanas'], [b'bee', b'Byangsi'], [b'bef', b'Benabena'], [b'beg', b'Belait'], [b'beh', b'Biali'], [b'bei', b"Bekati'"], [b'bej', b'Beja'], [b'bek', b'Bebeli'], [b'bel', b'Belarusian'], [b'bem', b'Bemba (Zambia)'], [b'ben', b'Bengali'], [b'beo', b'Beami'], [b'bep', b'Besoa'], [b'beq', b'Beembe'], [b'bes', b'Besme'], [b'bet', 'B\xe9te, Guiberoua'], [b'beu', b'Blagar'], [b'bev', 'B\xe9t\xe9, Daloa'], [b'bew', b'Betawi'], [b'bex', b'Jur Modo'], [b'bey', b'Beli (Papua New Guinea)'], [b'bez', b'Bena (Tanzania)'], [b'bfa', b'Bari'], [b'bfb', b'Bareli, Pauri'], [b'bfc', b'Bai, Northern'], [b'bfd', b'Bafut'], [b'bfe', b'Betaf'], [b'bff', b'Bofi'], [b'bfg', b'Kayan, Busang'], [b'bfh', b'Blafe'], [b'bfi', b'British Sign Language'], [b'bfj', b'Bafanji'], [b'bfk', b'Ban Khor Sign Language'], [b'bfl', 'Banda-Nd\xe9l\xe9'], [b'bfm', b'Mmen'], [b'bfn', b'Bunak'], [b'bfo', b'Birifor, Malba'], [b'bfp', b'Beba'], [b'bfq', b'Badaga'], [b'bfr', b'Bazigar'], [b'bfs', b'Bai, Southern'], [b'bft', b'Balti'], [b'bfu', b'Gahri'], [b'bfw', b'Bondo'], [b'bfx', b'Bantayanon'], [b'bfy', b'Bagheli'], [b'bfz', b'Pahari, Mahasu'], [b'bga', b'Gwamhi-Wuri'], [b'bgb', b'Bobongko'], [b'bgc', b'Haryanvi'], [b'bgd', b'Bareli, Rathwi'], [b'bge', b'Bauria'], [b'bgf', b'Bangandu'], [b'bgg', b'Bugun'], [b'bgi', b'Giangan'], [b'bgj', b'Bangolan'], [b'bgk', b'Bit'], [b'bgl', b'Bo (Laos)'], [b'bgm', b'Baga Mboteni'], [b'bgn', b'Balochi, Western'], [b'bgo', b'Baga Koga'], [b'bgp', b'Balochi, Eastern'], [b'bgq', b'Bagri'], [b'bgr', b'Chin, Bawm'], [b'bgs', b'Tagabawa'], [b'bgt', b'Bughotu'], [b'bgu', b'Mbongno'], [b'bgv', b'Warkay-Bipim'], [b'bgw', b'Bhatri'], [b'bgx', b'Turkish, Balkan Gagauz'], [b'bgy', b'Benggoi'], [b'bgz', b'Banggai'], [b'bha', b'Bharia'], [b'bhb', b'Bhili'], [b'bhc', b'Biga'], [b'bhd', b'Bhadrawahi'], [b'bhe', b'Bhaya'], [b'bhf', b'Odiai'], [b'bhg', b'Binandere'], [b'bhh', b'Bukharic'], [b'bhi', b'Bhilali'], [b'bhj', b'Bahing'], [b'bhl', b'Bimin'], [b'bhm', b'Bathari'], [b'bhn', b'Neo-Aramaic, Bohtan'], [b'bho', b'Bhojpuri'], [b'bhp', b'Bima'], [b'bhq', b'Tukang Besi South'], [b'bhr', b'Malagasy, Bara'], [b'bhs', b'Buwal'], [b'bht', b'Bhattiyali'], [b'bhu', b'Bhunjia'], [b'bhv', b'Bahau'], [b'bhw', b'Biak'], [b'bhx', b'Bhalay'], [b'bhy', b'Bhele'], [b'bhz', b'Bada (Indonesia)'], [b'bia', b'Badimaya'], [b'bib', b'Bissa'], [b'bic', b'Bikaru'], [b'bid', b'Bidiyo'], [b'bie', b'Bepour'], [b'bif', b'Biafada'], [b'big', b'Biangai'], [b'bij', b'Vaghat-Ya-Bijim-Legeri'], [b'bik', b'Bikol'], [b'bil', b'Bile'], [b'bim', b'Bimoba'], [b'bin', b'Bini'], [b'bio', b'Nai'], [b'bip', b'Bila'], [b'biq', b'Bipi'], [b'bir', b'Bisorio'], [b'bis', b'Bislama'], [b'bit', b'Berinomo'], [b'biu', b'Biete'], [b'biv', b'Birifor, Southern'], [b'biw', b'Kol (Cameroon)'], [b'bix', b'Bijori'], [b'biy', b'Birhor'], [b'biz', b'Baloi'], [b'bja', b'Budza'], [b'bjb', b'Banggarla'], [b'bjc', b'Bariji'], [b'bje', b'Mien, Biao-Jiao'], [b'bjf', b'Neo-Aramaic, Barzani Jewish'], [b'bjg', b'Bidyogo'], [b'bjh', b'Bahinemo'], [b'bji', b'Burji'], [b'bjj', b'Kanauji'], [b'bjk', b'Barok'], [b'bjl', b'Bulu (Papua New Guinea)'], [b'bjm', b'Bajelani'], [b'bjn', b'Banjar'], [b'bjo', b'Banda, Mid-Southern'], [b'bjp', b'Fanamaket'], [b'bjr', b'Binumarien'], [b'bjs', b'Bajan'], [b'bjt', b'Balanta-Ganja'], [b'bju', b'Busuu'], [b'bjv', b'Bedjond'], [b'bjw', 'Bakw\xe9'], [b'bjx', b'Itneg, Banao'], [b'bjy', b'Bayali'], [b'bjz', b'Baruga'], [b'bka', b'Kyak'], [b'bkc', b'Baka (Cameroon)'], [b'bkd', b'Binukid'], [b'bkf', b'Beeke'], [b'bkg', b'Buraka'], [b'bkh', b'Bakoko'], [b'bki', b'Baki'], [b'bkj', b'Pande'], [b'bkk', b'Brokskat'], [b'bkl', b'Berik'], [b'bkm', b'Kom (Cameroon)'], [b'bkn', b'Bukitan'], [b'bko', b"Kwa'"], [b'bkp', b'Boko (Democratic Republic of Congo)'], [b'bkq', 'Bakair\xed'], [b'bkr', b'Bakumpai'], [b'bks', b'Sorsoganon, Northern'], [b'bkt', b'Boloki'], [b'bku', b'Buhid'], [b'bkv', b'Bekwarra'], [b'bkw', b'Bekwel'], [b'bkx', b'Baikeno'], [b'bky', b'Bokyi'], [b'bkz', b'Bungku'], [b'bla', b'Siksika'], [b'blb', b'Bilua'], [b'blc', b'Bella Coola'], [b'bld', b'Bolango'], [b'ble', b'Balanta-Kentohe'], [b'blf', b'Buol'], [b'blg', b'Balau'], [b'blh', b'Kuwaa'], [b'bli', b'Bolia'], [b'blj', b'Bolongan'], [b'blk', b"Karen, Pa'o"], [b'bll', b'Biloxi'], [b'blm', b'Beli (Sudan)'], [b'bln', b'Bikol, Southern Catanduanes'], [b'blo', b'Anii'], [b'blp', b'Blablanga'], [b'blq', b'Baluan-Pam'], [b'blr', b'Blang'], [b'bls', b'Balaesang'], [b'blt', b'Tai Dam'], [b'blv', b'Bolo'], [b'blw', b'Balangao'], [b'blx', b'Ayta, Mag-Indi'], [b'bly', b'Notre'], [b'blz', b'Balantak'], [b'bma', b'Lame'], [b'bmb', b'Bembe'], [b'bmc', b'Biem'], [b'bmd', b'Manduri, Baga'], [b'bme', b'Limassa'], [b'bmf', b'Bom'], [b'bmg', b'Bamwe'], [b'bmh', b'Kein'], [b'bmi', b'Bagirmi'], [b'bmj', b'Bote-Majhi'], [b'bmk', b'Ghayavi'], [b'bml', b'Bomboli'], [b'bmm', b'Malagasy, Northern Betsimisaraka'], [b'bmn', b'Bina (Papua New Guinea)'], [b'bmo', b'Bambalang'], [b'bmp', b'Bulgebi'], [b'bmq', b'Bomu'], [b'bmr', b'Muinane'], [b'bms', b'Kanuri, Bilma'], [b'bmt', b'Biao Mon'], [b'bmu', b'Somba-Siawari'], [b'bmv', b'Bum'], [b'bmw', b'Bomwali'], [b'bmx', b'Baimak'], [b'bmy', b'Bemba (Democratic Republic of Congo)'], [b'bmz', b'Baramu'], [b'bna', b'Bonerate'], [b'bnb', b'Bookan'], [b'bnc', b'Bontok'], [b'bnd', b'Banda (Indonesia)'], [b'bne', b'Bintauna'], [b'bnf', b'Masiwang'], [b'bng', b'Benga'], [b'bni', b'Bangi'], [b'bnj', b'Tawbuid, Eastern'], [b'bnk', b'Bierebo'], [b'bnl', b'Boon'], [b'bnm', b'Batanga'], [b'bnn', b'Bunun'], [b'bno', b'Bantoanon'], [b'bnp', b'Bola'], [b'bnq', b'Bantik'], [b'bnr', b'Butmas-Tur'], [b'bns', b'Bundeli'], [b'bnu', b'Bentong'], [b'bnv', b'Bonerif'], [b'bnw', b'Bisis'], [b'bnx', b'Bangubangu'], [b'bny', b'Bintulu'], [b'bnz', b'Beezen'], [b'boa', b'Bora'], [b'bob', b'Aweer'], [b'bod', b'Tibetan'], [b'boe', b'Mundabli'], [b'bof', b'Bolon'], [b'bog', b'Bamako Sign Language'], [b'boh', b'Boma'], [b'boi', 'Barbare\xf1o'], [b'boj', b'Anjam'], [b'bok', b'Bonjo'], [b'bol', b'Bole'], [b'bom', b'Berom'], [b'bon', b'Bine'], [b'boo', 'Bozo, Tiemac\xe8w\xe8'], [b'bop', b'Bonkiman'], [b'boq', b'Bogaya'], [b'bor', 'Bor\xf4ro'], [b'bos', b'Bosnian'], [b'bot', b'Bongo'], [b'bou', b'Bondei'], [b'bov', b'Tuwuli'], [b'bow', b'Rema'], [b'box', b'Buamu'], [b'boy', b'Bodo (Central African Republic)'], [b'boz', 'Bozo, Ti\xe9yaxo'], [b'bpa', b'Daakaka'], [b'bpb', b'Barbacoas'], [b'bpd', b'Banda-Banda'], [b'bpg', b'Bonggo'], [b'bph', b'Botlikh'], [b'bpi', b'Bagupi'], [b'bpj', b'Binji'], [b'bpk', b'Orowe'], [b'bpl', b'Broome Pearling Lugger Pidgin'], [b'bpm', b'Biyom'], [b'bpn', b'Dzao Min'], [b'bpo', b'Anasi'], [b'bpp', b'Kaure'], [b'bpq', b'Malay, Banda'], [b'bpr', b'Blaan, Koronadal'], [b'bps', b'Blaan, Sarangani'], [b'bpt', b'Barrow Point'], [b'bpu', b'Bongu'], [b'bpv', b'Marind, Bian'], [b'bpw', b'Bo (Papua New Guinea)'], [b'bpx', b'Bareli, Palya'], [b'bpy', b'Bishnupriya'], [b'bpz', b'Bilba'], [b'bqa', b'Tchumbuli'], [b'bqb', b'Bagusa'], [b'bqc', b'Boko (Benin)'], [b'bqd', b'Bung'], [b'bqf', b'Baga Kaloum'], [b'bqg', b'Bago-Kusuntu'], [b'bqh', b'Baima'], [b'bqi', b'Bakhtiari'], [b'bqj', b'Bandial'], [b'bqk', 'Banda-Mbr\xe8s'], [b'bql', b'Bilakura'], [b'bqm', b'Wumboko'], [b'bqn', b'Bulgarian Sign Language'], [b'bqo', b'Balo'], [b'bqp', b'Busa'], [b'bqq', b'Biritai'], [b'bqr', b'Burusu'], [b'bqs', b'Bosngun'], [b'bqt', b'Bamukumbit'], [b'bqu', b'Boguru'], [b'bqv', b'Koro Wachi'], [b'bqw', b'Buru (Nigeria)'], [b'bqx', b'Baangi'], [b'bqy', b'Bengkala Sign Language'], [b'bqz', b'Bakaka'], [b'bra', b'Braj'], [b'brb', b'Lave'], [b'brc', b'Creole Dutch, Berbice'], [b'brd', b'Baraamu'], [b'bre', b'Breton'], [b'brf', b'Bera'], [b'brg', b'Baure'], [b'brh', b'Brahui'], [b'bri', b'Mokpwe'], [b'brj', b'Bieria'], [b'brk', b'Birked'], [b'brl', b'Birwa'], [b'brm', b'Barambu'], [b'brn', b'Boruca'], [b'bro', b'Brokkat'], [b'brp', b'Barapasi'], [b'brq', b'Breri'], [b'brr', b'Birao'], [b'brs', b'Baras'], [b'brt', b'Bitare'], [b'bru', b'Bru, Eastern'], [b'brv', b'Bru, Western'], [b'brw', b'Bellari'], [b'brx', b'Bodo (India)'], [b'bry', b'Burui'], [b'brz', b'Bilbil'], [b'bsa', b'Abinomn'], [b'bsb', b'Bisaya, Brunei'], [b'bsc', b'Bassari'], [b'bse', b'Wushi'], [b'bsf', b'Bauchi'], [b'bsg', b'Bashkardi'], [b'bsh', b'Kati'], [b'bsi', b'Bassossi'], [b'bsj', b'Bangwinji'], [b'bsk', b'Burushaski'], [b'bsl', b'Basa-Gumna'], [b'bsm', b'Busami'], [b'bsn', b'Barasana-Eduria'], [b'bso', b'Buso'], [b'bsp', b'Baga Sitemu'], [b'bsq', b'Bassa'], [b'bsr', b'Bassa-Kontagora'], [b'bss', b'Akoose'], [b'bst', b'Basketo'], [b'bsu', b'Bahonsuai'], [b'bsv', 'Baga Soban\xe9'], [b'bsw', b'Baiso'], [b'bsx', b'Yangkam'], [b'bsy', b'Bisaya, Sabah'], [b'bta', b'Bata'], [b'btc', b'Bati (Cameroon)'], [b'btd', b'Batak Dairi'], [b'bte', b'Gamo-Ningi'], [b'btf', b'Birgit'], [b'btg', 'B\xe9t\xe9, Gagnoa'], [b'bth', b'Bidayuh, Biatah'], [b'bti', b'Burate'], [b'btj', b'Malay, Bacanese'], [b'btl', b'Bhatola'], [b'btm', b'Batak Mandailing'], [b'btn', b'Ratagnon'], [b'bto', b'Bikol, Rinconada'], [b'btp', b'Budibud'], [b'btq', b'Batek'], [b'btr', b'Baetora'], [b'bts', b'Batak Simalungun'], [b'btt', b'Bete-Bendi'], [b'btu', b'Batu'], [b'btv', b'Bateri'], [b'btw', b'Butuanon'], [b'btx', b'Batak Karo'], [b'bty', b'Bobot'], [b'btz', b'Batak Alas-Kluet'], [b'bua', b'Buriat'], [b'bub', b'Bua'], [b'buc', b'Bushi'], [b'bud', b'Ntcham'], [b'bue', b'Beothuk'], [b'buf', b'Bushoong'], [b'bug', b'Buginese'], [b'buh', b'Bunu, Younuo'], [b'bui', b'Bongili'], [b'buj', b'Basa-Gurmana'], [b'buk', b'Bugawac'], [b'bul', b'Bulgarian'], [b'bum', b'Bulu (Cameroon)'], [b'bun', b'Sherbro'], [b'buo', b'Terei'], [b'bup', b'Busoa'], [b'buq', b'Brem'], [b'bus', b'Bokobaru'], [b'but', b'Bungain'], [b'buu', b'Budu'], [b'buv', b'Bun'], [b'buw', b'Bubi'], [b'bux', b'Boghom'], [b'buy', b'Bullom So'], [b'buz', b'Bukwen'], [b'bva', b'Barein'], [b'bvb', b'Bube'], [b'bvc', b'Baelelea'], [b'bvd', b'Baeggu'], [b'bve', b'Malay, Berau'], [b'bvf', b'Boor'], [b'bvg', b'Bonkeng'], [b'bvh', b'Bure'], [b'bvi', b'Belanda Viri'], [b'bvj', b'Baan'], [b'bvk', b'Bukat'], [b'bvl', b'Bolivian Sign Language'], [b'bvm', b'Bamunka'], [b'bvn', b'Buna'], [b'bvo', b'Bolgo'], [b'bvp', b'Bumang'], [b'bvq', b'Birri'], [b'bvr', b'Burarra'], [b'bvt', b'Bati (Indonesia)'], [b'bvu', b'Malay, Bukit'], [b'bvv', b'Baniva'], [b'bvw', b'Boga'], [b'bvx', b'Dibole'], [b'bvy', b'Baybayanon'], [b'bvz', b'Bauzi'], [b'bwa', b'Bwatoo'], [b'bwb', b'Namosi-Naitasiri-Serua'], [b'bwc', b'Bwile'], [b'bwd', b'Bwaidoka'], [b'bwe', b'Karen, Bwe'], [b'bwf', b'Boselewa'], [b'bwg', b'Barwe'], [b'bwh', b'Bishuo'], [b'bwi', b'Baniwa'], [b'bwj', 'Bwamu, L\xe1\xe1 L\xe1\xe1'], [b'bwk', b'Bauwaki'], [b'bwl', b'Bwela'], [b'bwm', b'Biwat'], [b'bwn', b'Bunu, Wunai'], [b'bwo', b'Boro (Ethiopia)'], [b'bwp', b'Mandobo Bawah'], [b'bwq', 'Bobo Madar\xe9, Southern'], [b'bwr', b'Bura-Pabir'], [b'bws', b'Bomboma'], [b'bwt', b'Bafaw-Balong'], [b'bwu', b'Buli (Ghana)'], [b'bww', b'Bwa'], [b'bwx', b'Bunu, Bu-Nao'], [b'bwy', b'Bwamu, Cwi'], [b'bwz', b'Bwisi'], [b'bxa', b'Tairaha'], [b'bxb', b'Bor, Belanda'], [b'bxc', b'Molengue'], [b'bxd', b'Pela'], [b'bxe', b'Birale'], [b'bxf', b'Bilur'], [b'bxg', b'Bangala'], [b'bxh', b'Buhutu'], [b'bxi', b'Pirlatapa'], [b'bxj', b'Bayungu'], [b'bxk', b'Bukusu'], [b'bxl', b'Jalkunan'], [b'bxm', b'Buriat, Mongolia'], [b'bxn', b'Burduna'], [b'bxo', b'Barikanchi'], [b'bxp', b'Bebil'], [b'bxq', b'Beele'], [b'bxr', b'Buriat, Russia'], [b'bxs', b'Busam'], [b'bxu', b'Buriat, China'], [b'bxv', b'Berakou'], [b'bxw', b'Bankagooma'], [b'bxx', b'Borna (Democratic Republic of Congo)'], [b'bxz', b'Binahari'], [b'bya', b'Batak'], [b'byb', b'Bikya'], [b'byc', b'Ubaghara'], [b'byd', b"Benyadu'"], [b'bye', b'Pouye'], [b'byf', b'Bete'], [b'byg', b'Baygo'], [b'byh', b'Bhujel'], [b'byi', b'Buyu'], [b'byj', b'Bina (Nigeria)'], [b'byk', b'Biao'], [b'byl', b'Bayono'], [b'bym', b'Bidyara'], [b'byn', b'Bilin'], [b'byo', b'Biyo'], [b'byp', b'Bumaji'], [b'byq', b'Basay'], [b'byr', b'Baruya'], [b'bys', b'Burak'], [b'byt', b'Berti'], [b'byv', b'Medumba'], [b'byw', b'Belhariya'], [b'byx', b'Qaqet'], [b'byy', b'Buya'], [b'byz', b'Banaro'], [b'bza', b'Bandi'], [b'bzb', b'Andio'], [b'bzc', b'Malagasy, Southern Betsimisaraka'], [b'bzd', b'Bribri'], [b'bze', b'Bozo, Jenaama'], [b'bzf', b'Boikin'], [b'bzg', b'Babuza'], [b'bzh', b'Buang, Mapos'], [b'bzi', b'Bisu'], [b'bzj', b'Kriol English, Belize'], [b'bzk', b'Creole English, Nicaragua'], [b'bzl', b'Boano (Sulawesi)'], [b'bzm', b'Bolondo'], [b'bzn', b'Boano (Maluku)'], [b'bzo', b'Bozaba'], [b'bzp', b'Kemberano'], [b'bzq', b'Buli (Indonesia)'], [b'bzr', b'Biri'], [b'bzs', b'Brazilian Sign Language'], [b'bzt', b'Brithenig'], [b'bzu', b'Burmeso'], [b'bzv', b'Naami'], [b'bzw', b'Basa (Nigeria)'], [b'bzx', 'Bozo, K\u025bl\u025bngaxo'], [b'bzy', b'Obanliku'], [b'bzz', b'Evant'], [b'caa', 'Chort\xed'], [b'cab', b'Garifuna'], [b'cac', b'Chuj'], [b'cad', b'Caddo'], [b'cae', b'Lehar'], [b'caf', b'Carrier, Southern'], [b'cag', 'Nivacl\xe9'], [b'cah', b'Cahuarano'], [b'caj', 'Chan\xe9'], [b'cak', b'Kaqchikel'], [b'cal', b'Carolinian'], [b'cam', 'Cemuh\xee'], [b'can', b'Chambri'], [b'cao', 'Ch\xe1cobo'], [b'cap', b'Chipaya'], [b'caq', b'Nicobarese, Car'], [b'car', b'Carib, Galibi'], [b'cas', 'Tsiman\xe9'], [b'cat', b'Catalan'], [b'cav', 'Cavine\xf1a'], [b'caw', b'Callawalla'], [b'cax', b'Chiquitano'], [b'cay', b'Cayuga'], [b'caz', b'Canichana'], [b'cbb', 'Cabiyar\xed'], [b'cbc', b'Carapana'], [b'cbd', b'Carijona'], [b'cbe', b'Chipiajes'], [b'cbg', b'Chimila'], [b'cbh', b'Cagua'], [b'cbi', b'Chachi'], [b'cbj', b'Ede Cabe'], [b'cbk', b'Chavacano'], [b'cbl', b'Chin, Bualkhaw'], [b'cbn', b'Nyahkur'], [b'cbo', b'Izora'], [b'cbr', b'Cashibo-Cacataibo'], [b'cbs', b'Cashinahua'], [b'cbt', b'Chayahuita'], [b'cbu', b'Candoshi-Shapra'], [b'cbv', b'Cacua'], [b'cbw', b'Kinabalian'], [b'cby', b'Carabayo'], [b'cca', b'Cauca'], [b'ccc', b'Chamicuro'], [b'ccd', b'Creole, Cafundo'], [b'cce', b'Chopi'], [b'ccg', b'Daka, Samba'], [b'cch', b'Atsam'], [b'ccj', b'Kasanga'], [b'ccl', b'Cutchi-Swahili'], [b'ccm', b'Creole Malay, Malaccan'], [b'cco', b'Chinantec, Comaltepec'], [b'ccp', b'Chakma'], [b'ccr', b'Cacaopera'], [b'cda', b'Choni'], [b'cde', b'Chenchu'], [b'cdf', b'Chiru'], [b'cdg', b'Chamari'], [b'cdh', b'Chambeali'], [b'cdi', b'Chodri'], [b'cdj', b'Churahi'], [b'cdm', b'Chepang'], [b'cdn', b'Chaudangsi'], [b'cdo', b'Chinese, Min Dong'], [b'cdr', b'Cinda-Regi-Tiyal'], [b'cds', b'Chadian Sign Language'], [b'cdy', b'Chadong'], [b'cdz', b'Koda'], [b'cea', b'Chehalis, Lower'], [b'ceb', b'Cebuano'], [b'ceg', b'Chamacoco'], [b'cek', b'Chin, Eastern Khumi'], [b'cen', b'Cen'], [b'ces', b'Czech'], [b'cet', 'Cent\xfa\xfam'], [b'cfa', b'Dijim-Bwilim'], [b'cfd', b'Cara'], [b'cfg', b'Como Karim'], [b'cfm', b'Chin, Falam'], [b'cga', b'Changriwa'], [b'cgc', b'Kagayanen'], [b'cgg', b'Chiga'], [b'cgk', b'Chocangacakha'], [b'cha', b'Chamorro'], [b'chb', b'Chibcha'], [b'chc', b'Catawba'], [b'chd', b'Chontal, Highland Oaxaca'], [b'che', b'Chechen'], [b'chf', b'Chontal, Tabasco'], [b'chg', b'Chagatai'], [b'chh', b'Chinook'], [b'chj', 'Chinantec, Ojitl\xe1n'], [b'chk', b'Chuukese'], [b'chl', b'Cahuilla'], [b'chm', b'Mari (Russia)'], [b'chn', b'Chinook jargon'], [b'cho', b'Choctaw'], [b'chp', b'Chipewyan'], [b'chq', b'Chinantec, Quiotepec'], [b'chr', b'Cherokee'], [b'cht', 'Chol\xf3n'], [b'chu', b'Slavic, Church'], [b'chv', b'Chuvash'], [b'chw', b'Chuwabu'], [b'chx', b'Chantyal'], [b'chy', b'Cheyenne'], [b'chz', 'Chinantec, Ozumac\xedn'], [b'cia', b'Cia-Cia'], [b'cib', b'Gbe, Ci'], [b'cic', b'Chickasaw'], [b'cid', b'Chimariko'], [b'cie', b'Cineni'], [b'cih', b'Chinali'], [b'cik', b'Kinnauri, Chitkuli'], [b'cim', b'Cimbrian'], [b'cin', b'Cinta Larga'], [b'cip', b'Chiapanec'], [b'cir', b'Tiri'], [b'ciw', b'Chippewa'], [b'ciy', b'Chaima'], [b'cja', b'Cham, Western'], [b'cje', b'Chru'], [b'cjh', b'Chehalis, Upper'], [b'cji', b'Chamalal'], [b'cjk', b'Chokwe'], [b'cjm', b'Cham, Eastern'], [b'cjn', b'Chenapian'], [b'cjo', 'Ash\xe9ninka Pajonal'], [b'cjp', 'Cab\xe9car'], [b'cjs', b'Shor'], [b'cjv', b'Chuave'], [b'cjy', b'Chinese, Jinyu'], [b'ckb', b'Kurdish, Central'], [b'ckh', b'Chak'], [b'ckl', b'Cibak'], [b'ckn', b'Chin, Kaang'], [b'cko', b'Anufo'], [b'ckq', b'Kajakse'], [b'ckr', b'Kairak'], [b'cks', b'Tayo'], [b'ckt', b'Chukot'], [b'cku', b'Koasati'], [b'ckv', b'Kavalan'], [b'ckx', b'Caka'], [b'cky', b'Cakfem-Mushere'], [b'ckz', 'Cakchiquel-Quich\xe9 Mixed Language'], [b'cla', b'Ron'], [b'clc', b'Chilcotin'], [b'cld', b'Neo-Aramaic, Chaldean'], [b'cle', b'Chinantec, Lealao'], [b'clh', b'Chilisso'], [b'cli', b'Chakali'], [b'clj', b'Chin, Laitu'], [b'clk', b'Idu-Mishmi'], [b'cll', b'Chala'], [b'clm', b'Clallam'], [b'clo', b'Chontal, Lowland Oaxaca'], [b'clt', b'Chin, Lautu'], [b'clu', b'Caluyanun'], [b'clw', b'Chulym'], [b'cly', b'Chatino, Eastern Highland'], [b'cma', b'Maa'], [b'cme', b'Cerma'], [b'cmg', b'Mongolian, Classical'], [b'cmi', 'Ember\xe1-Cham\xed'], [b'cml', b'Campalagian'], [b'cmm', b'Michigamea'], [b'cmn', b'Chinese, Mandarin'], [b'cmo', b'Mnong, Central'], [b'cmr', b'Chin, Mro-Khimi'], [b'cms', b'Messapic'], [b'cmt', b'Camtho'], [b'cna', b'Changthang'], [b'cnb', b'Chin, Chinbon'], [b'cnc', 'C\xf4\xf4ng'], [b'cng', b'Qiang, Northern'], [b'cnh', b'Chin, Haka'], [b'cni', 'Ash\xe1ninka'], [b'cnk', b'Chin, Khumi'], [b'cnl', b'Chinantec, Lalana'], [b'cno', b'Con'], [b'cns', b'Asmat, Central'], [b'cnt', b'Chinantec, Tepetotutla'], [b'cnu', b'Chenoua'], [b'cnw', b'Chin, Ngawn'], [b'cnx', b'Cornish, Middle'], [b'coa', b'Malay, Cocos Islands'], [b'cob', b'Chicomuceltec'], [b'coc', b'Cocopa'], [b'cod', b'Cocama-Cocamilla'], [b'coe', b'Koreguaje'], [b'cof', b'Colorado'], [b'cog', b'Chong'], [b'coh', b'Chonyi-Dzihana-Kauma'], [b'coj', b'Cochimi'], [b'cok', b'Cora, Santa Teresa'], [b'col', b'Columbia-Wenatchi'], [b'com', b'Comanche'], [b'con', 'Cof\xe1n'], [b'coo', b'Comox'], [b'cop', b'Coptic'], [b'coq', b'Coquille'], [b'cor', b'Cornish'], [b'cos', b'Corsican'], [b'cot', b'Caquinte'], [b'cou', b'Wamey'], [b'cov', b'Cao Miao'], [b'cow', b'Cowlitz'], [b'cox', b'Nanti'], [b'coy', b'Coyaima'], [b'coz', b'Chochotec'], [b'cpa', b'Chinantec, Palantla'], [b'cpb', 'Ash\xe9ninka, Ucayali-Yur\xfaa'], [b'cpc', 'Ajy\xedninka Apurucayali'], [b'cpg', b'Greek, Cappadocian'], [b'cpi', b'Pidgin English, Chinese'], [b'cpn', b'Cherepon'], [b'cpo', b'Kpeego'], [b'cps', b'Capiznon'], [b'cpu', 'Ash\xe9ninka, Pichis'], [b'cpx', b'Chinese, Pu-Xian'], [b'cpy', 'Ash\xe9ninka, South Ucayali'], [b'cqd', b'Miao, Chuanqiandian Cluster'], [b'cqu', b'Quechua, Chilean'], [b'cra', b'Chara'], [b'crb', b'Carib, Island'], [b'crc', b'Lonwolwol'], [b'crd', b"Coeur d'Alene"], [b'cre', b'Cree'], [b'crf', b'Caramanta'], [b'crg', b'Michif'], [b'crh', b'Tatar, Crimean'], [b'cri', 'S\xe3otomense'], [b'crj', b'Cree, Southern East'], [b'crk', b'Cree, Plains'], [b'crl', b'Cree, Northern East'], [b'crm', b'Cree, Moose'], [b'crn', b'Cora, El Nayar'], [b'cro', b'Crow'], [b'crq', b"Chorote, Iyo'wujwa"], [b'crr', b'Algonquian, Carolina'], [b'crs', b'Creole French, Seselwa'], [b'crt', b"Chorote, Iyojwa'ja"], [b'crv', b'Chaura'], [b'crw', b'Chrau'], [b'crx', b'Carrier'], [b'cry', b'Cori'], [b'crz', 'Cruze\xf1o'], [b'csa', b'Chinantec, Chiltepec'], [b'csb', b'Kashubian'], [b'csc', b'Catalan Sign Language'], [b'csd', b'Chiangmai Sign Language'], [b'cse', b'Czech Sign Language'], [b'csf', b'Cuba Sign Language'], [b'csg', b'Chilean Sign Language'], [b'csh', b'Chin, Asho'], [b'csi', b'Miwok, Coast'], [b'csj', b'Chin, Songlai'], [b'csk', b'Jola-Kasa'], [b'csl', b'Chinese Sign Language'], [b'csm', b'Miwok, Central Sierra'], [b'csn', b'Colombian Sign Language'], [b'cso', b'Chinantec, Sochiapam'], [b'csq', b'Croatia Sign Language'], [b'csr', b'Costa Rican Sign Language'], [b'css', b'Ohlone, Southern'], [b'cst', b'Ohlone, Northern'], [b'csv', b'Chin, Sumtu'], [b'csw', b'Cree, Swampy'], [b'csy', b'Chin, Siyin'], [b'csz', b'Coos'], [b'cta', b'Chatino, Tataltepec'], [b'ctc', b'Chetco'], [b'ctd', b'Chin, Tedim'], [b'cte', b'Chinantec, Tepinapa'], [b'ctg', b'Chittagonian'], [b'cth', b'Chin, Thaiphum'], [b'ctl', b'Chinantec, Tlacoatzintepec'], [b'ctm', b'Chitimacha'], [b'ctn', b'Chhintange'], [b'cto', 'Ember\xe1-Cat\xedo'], [b'ctp', b'Chatino, Western Highland'], [b'cts', b'Bikol, Northern Catanduanes'], [b'ctt', b'Chetti, Wayanad'], [b'ctu', b'Chol'], [b'ctz', b'Chatino, Zacatepec'], [b'cua', b'Cua'], [b'cub', b'Cubeo'], [b'cuc', b'Chinantec, Usila'], [b'cug', b'Cung'], [b'cuh', b'Chuka'], [b'cui', b'Cuiba'], [b'cuj', b'Mashco Piro'], [b'cuk', b'Kuna, San Blas'], [b'cul', b'Culina'], [b'cum', b'Cumeral'], [b'cuo', b'Cumanagoto'], [b'cup', 'Cupe\xf1o'], [b'cuq', b'Cun'], [b'cur', b'Chhulung'], [b'cut', b'Cuicatec, Teutila'], [b'cuu', b'Tai Ya'], [b'cuv', b'Cuvok'], [b'cuw', b'Chukwa'], [b'cux', b'Cuicatec, Tepeuxila'], [b'cvg', b'Chug'], [b'cvn', b'Chinantec, Valle Nacional'], [b'cwa', b'Kabwa'], [b'cwb', b'Maindo'], [b'cwd', b'Cree, Woods'], [b'cwe', b'Kwere'], [b'cwg', b'Chewong'], [b'cwt', b'Kuwaataay'], [b'cya', b'Chatino, Nopala'], [b'cyb', b'Cayubaba'], [b'cym', b'Welsh'], [b'cyo', b'Cuyonon'], [b'czh', b'Chinese, Huizhou'], [b'czk', b'Knaanic'], [b'czn', b'Chatino, Zenzontepec'], [b'czo', b'Chinese, Min Zhong'], [b'czt', b'Chin, Zotung'], [b'daa', 'Dangal\xe9at'], [b'dac', b'Dambi'], [b'dad', b'Marik'], [b'dae', b'Duupa'], [b'dag', b'Dagbani'], [b'dah', b'Gwahatike'], [b'dai', b'Day'], [b'daj', b'Daju, Dar Fur'], [b'dak', b'Dakota'], [b'dal', b'Dahalo'], [b'dam', b'Damakawa'], [b'dan', b'Danish'], [b'dao', b'Chin, Daai'], [b'daq', b'Maria, Dandami'], [b'dar', b'Dargwa'], [b'das', b'Daho-Doo'], [b'dau', b'Daju, Dar Sila'], [b'dav', b'Taita'], [b'daw', b'Davawenyo'], [b'dax', b'Dayi'], [b'daz', b'Dao'], [b'dba', b'Bangime'], [b'dbb', b'Deno'], [b'dbd', b'Dadiya'], [b'dbe', b'Dabe'], [b'dbf', b'Edopi'], [b'dbg', b'Dogon, Dogul Dom'], [b'dbi', b'Doka'], [b'dbj', b"Ida'an"], [b'dbl', b'Dyirbal'], [b'dbm', b'Duguri'], [b'dbn', b'Duriankere'], [b'dbo', b'Dulbu'], [b'dbp', b'Duwai'], [b'dbq', b'Daba'], [b'dbr', b'Dabarre'], [b'dbt', b'Dogon, Ben Tey'], [b'dbu', b'Dogon, Bondum Dom'], [b'dbv', b'Dungu'], [b'dbw', b'Dogon, Bankan Tey'], [b'dby', b'Dibiyaso'], [b'dcc', b'Deccan'], [b'dcr', b'Negerhollands'], [b'dda', b'Dadi Dadi'], [b'ddd', b'Dongotono'], [b'dde', b'Doondo'], [b'ddg', b'Fataluku'], [b'ddi', b'Goodenough, West'], [b'ddj', b'Jaru'], [b'ddn', b'Dendi (Benin)'], [b'ddo', b'Dido'], [b'ddr', b'Dhudhuroa'], [b'dds', b'Dogon, Donno So'], [b'ddw', b'Dawera-Daweloor'], [b'dec', b'Dagik'], [b'ded', b'Dedua'], [b'dee', b'Dewoin'], [b'def', b'Dezfuli'], [b'deg', b'Degema'], [b'deh', b'Dehwari'], [b'dei', b'Demisa'], [b'dek', b'Dek'], [b'del', b'Delaware'], [b'dem', b'Dem'], [b'den', b'Slave (Athapascan)'], [b'dep', b'Delaware, Pidgin'], [b'deq', b'Dendi (Central African Republic)'], [b'der', b'Deori'], [b'des', b'Desano'], [b'deu', b'German'], [b'dev', b'Domung'], [b'dez', b'Dengese'], [b'dga', b'Dagaare, Southern'], [b'dgb', b'Dogon, Bunoge'], [b'dgc', b'Agta, Casiguran Dumagat'], [b'dgd', b'Dagaari Dioula'], [b'dge', b'Degenan'], [b'dgg', b'Doga'], [b'dgh', b'Dghwede'], [b'dgi', b'Dagara, Northern'], [b'dgk', b'Dagba'], [b'dgl', b'Andaandi'], [b'dgn', b'Dagoman'], [b'dgo', b'Dogri (individual language)'], [b'dgr', b'Dogrib'], [b'dgs', b'Dogoso'], [b'dgt', b"Ndra'ngith"], [b'dgu', b'Degaru'], [b'dgw', b'Daungwurrung'], [b'dgx', b'Doghoro'], [b'dgz', b'Daga'], [b'dhd', b'Dhundari'], [b'dhg', b'Djangu'], [b'dhi', b'Dhimal'], [b'dhl', b'Dhalandji'], [b'dhm', b'Zemba'], [b'dhn', b'Dhanki'], [b'dho', b'Dhodia'], [b'dhr', b'Dhargari'], [b'dhs', b'Dhaiso'], [b'dhu', b'Dhurga'], [b'dhv', b'Dehu'], [b'dhw', b'Dhanwar (Nepal)'], [b'dhx', b'Dhungaloo'], [b'dia', b'Dia'], [b'dib', b'Dinka, South Central'], [b'dic', b'Dida, Lakota'], [b'did', b'Didinga'], [b'dif', b'Dieri'], [b'dig', b'Digo'], [b'dih', b'Kumiai'], [b'dii', b'Dimbong'], [b'dij', b'Dai'], [b'dik', b'Dinka, Southwestern'], [b'dil', b'Dilling'], [b'dim', b'Dime'], [b'din', b'Dinka'], [b'dio', b'Dibo'], [b'dip', b'Dinka, Northeastern'], [b'diq', b'Dimli (individual language)'], [b'dir', b'Dirim'], [b'dis', b'Dimasa'], [b'dit', b'Dirari'], [b'diu', b'Diriku'], [b'div', b'Dhivehi'], [b'diw', b'Dinka, Northwestern'], [b'dix', b'Dixon Reef'], [b'diy', b'Diuwe'], [b'diz', b'Ding'], [b'dja', b'Djadjawurrung'], [b'djb', b'Djinba'], [b'djc', b'Daju, Dar Daju'], [b'djd', b'Djamindjung'], [b'dje', b'Zarma'], [b'djf', b'Djangun'], [b'dji', b'Djinang'], [b'djj', b'Djeebbana'], [b'djk', b'Eastern Maroon Creole'], [b'djm', b'Dogon, Jamsay'], [b'djn', b'Djauan'], [b'djo', b'Jangkang'], [b'djr', b'Djambarrpuyngu'], [b'dju', b'Kapriman'], [b'djw', b'Djawi'], [b'dka', b'Dakpakha'], [b'dkk', b'Dakka'], [b'dkr', b'Kuijau'], [b'dks', b'Dinka, Southeastern'], [b'dkx', b'Mazagway'], [b'dlg', b'Dolgan'], [b'dlk', b'Dahalik'], [b'dlm', b'Dalmatian'], [b'dln', b'Darlong'], [b'dma', b'Duma'], [b'dmb', b'Dogon, Mombo'], [b'dmc', b'Gavak'], [b'dmd', b'Madhi Madhi'], [b'dme', b'Dugwor'], [b'dmg', b'Kinabatangan, Upper'], [b'dmk', b'Domaaki'], [b'dml', b'Dameli'], [b'dmm', b'Dama'], [b'dmo', b'Kemedzung'], [b'dmr', b'Damar, East'], [b'dms', b'Dampelas'], [b'dmu', b'Dubu'], [b'dmv', b'Dumpas'], [b'dmw', b'Mudburra'], [b'dmx', b'Dema'], [b'dmy', b'Demta'], [b'dna', b'Dani, Upper Grand Valley'], [b'dnd', b'Daonda'], [b'dne', b'Ndendeule'], [b'dng', b'Dungan'], [b'dni', b'Dani, Lower Grand Valley'], [b'dnj', b'Dan'], [b'dnk', b'Dengka'], [b'dnn', 'Dz\xf9\xf9ngoo'], [b'dnr', b'Danaru'], [b'dnt', b'Dani, Mid Grand Valley'], [b'dnu', b'Danau'], [b'dnv', b'Danu'], [b'dnw', b'Dani, Western'], [b'dny', 'Den\xed'], [b'doa', b'Dom'], [b'dob', b'Dobu'], [b'doc', b'Dong, Northern'], [b'doe', b'Doe'], [b'dof', b'Domu'], [b'doh', b'Dong'], [b'doi', b'Dogri (macrolanguage)'], [b'dok', b'Dondo'], [b'dol', b'Doso'], [b'don', b'Toura (Papua New Guinea)'], [b'doo', b'Dongo'], [b'dop', b'Lukpa'], [b'doq', b'Dominican Sign Language'], [b'dor', b"Dori'o"], [b'dos', 'Dogos\xe9'], [b'dot', b'Dass'], [b'dov', b'Dombe'], [b'dow', b'Doyayo'], [b'dox', b'Bussa'], [b'doy', b'Dompo'], [b'doz', b'Dorze'], [b'dpp', b'Papar'], [b'drb', b'Dair'], [b'drc', b'Minderico'], [b'drd', b'Darmiya'], [b'dre', b'Dolpo'], [b'drg', b'Rungus'], [b'dri', b"C'lela"], [b'drl', b'Paakantyi'], [b'drn', b'Damar, West'], [b'dro', b'Melanau, Daro-Matu'], [b'drq', b'Dura'], [b'drr', b'Dororo'], [b'drs', b'Gedeo'], [b'drt', b'Drents'], [b'dru', b'Rukai'], [b'dry', b'Darai'], [b'dsb', b'Sorbian, Lower'], [b'dse', b'Dutch Sign Language'], [b'dsh', b'Daasanach'], [b'dsi', b'Disa'], [b'dsl', b'Danish Sign Language'], [b'dsn', b'Dusner'], [b'dso', b'Desiya'], [b'dsq', b'Tadaksahak'], [b'dta', b'Daur'], [b'dtb', b'Kadazan, Labuk-Kinabatangan'], [b'dtd', b'Ditidaht'], [b'dth', b'Adithinngithigh'], [b'dti', b'Dogon, Ana Tinga'], [b'dtk', b'Dogon, Tene Kan'], [b'dtm', b'Dogon, Tomo Kan'], [b'dto', b'Dogon, Tommo So'], [b'dtp', b'Dusun, Central'], [b'dtr', b'Lotud'], [b'dts', b'Dogon, Toro So'], [b'dtt', b'Dogon, Toro Tegu'], [b'dtu', b'Dogon, Tebul Ure'], [b'dty', b'Dotyali'], [b'dua', b'Duala'], [b'dub', b'Dubli'], [b'duc', b'Duna'], [b'dud', b'Hun-Saare'], [b'due', b'Agta, Umiray Dumaget'], [b'duf', b'Dumbea'], [b'dug', b'Duruma'], [b'duh', b'Dungra Bhil'], [b'dui', b'Dumun'], [b'duj', b'Dhuwal'], [b'duk', b'Uyajitaya'], [b'dul', b'Agta, Alabat Island'], [b'dum', b'Dutch, Middle (ca. 1050-1350)'], [b'dun', b'Dusun Deyah'], [b'duo', b'Agta, Dupaninan'], [b'dup', b'Duano'], [b'duq', b'Dusun Malang'], [b'dur', b'Dii'], [b'dus', b'Dumi'], [b'duu', b'Drung'], [b'duv', b'Duvle'], [b'duw', b'Dusun Witu'], [b'dux', b'Duungooma'], [b'duy', b'Agta, Dicamay'], [b'duz', b'Duli'], [b'dva', b'Duau'], [b'dwa', b'Diri'], [b'dwr', b'Dawro'], [b'dws', b'Dutton World Speedwords'], [b'dww', b'Dawawa'], [b'dya', b'Dyan'], [b'dyb', b'Dyaberdyaber'], [b'dyd', b'Dyugun'], [b'dyg', b'Agta, Villa Viciosa'], [b'dyi', b'Senoufo, Djimini'], [b'dym', b'Dogon, Yanda Dom'], [b'dyn', b'Dyangadi'], [b'dyo', b'Jola-Fonyi'], [b'dyu', b'Dyula'], [b'dyy', b'Dyaabugay'], [b'dza', b'Tunzu'], [b'dzd', b'Daza'], [b'dze', b'Djiwarli'], [b'dzg', b'Dazaga'], [b'dzl', b'Dzalakha'], [b'dzn', b'Dzando'], [b'dzo', b'Dzongkha'], [b'eaa', b'Karenggapa'], [b'ebg', b'Ebughu'], [b'ebk', b'Bontok, Eastern'], [b'ebo', b'Teke-Ebo'], [b'ebr', 'Ebri\xe9'], [b'ebu', b'Embu'], [b'ecr', b'Eteocretan'], [b'ecs', b'Ecuadorian Sign Language'], [b'ecy', b'Eteocypriot'], [b'eee', b'E'], [b'efa', b'Efai'], [b'efe', b'Efe'], [b'efi', b'Efik'], [b'ega', b'Ega'], [b'egl', b'Emilian'], [b'ego', b'Eggon'], [b'egy', b'Egyptian (Ancient)'], [b'ehu', b'Ehueun'], [b'eip', b'Eipomek'], [b'eit', b'Eitiep'], [b'eiv', b'Askopan'], [b'eja', b'Ejamat'], [b'eka', b'Ekajuk'], [b'ekc', b'Karnic, Eastern'], [b'eke', b'Ekit'], [b'ekg', b'Ekari'], [b'eki', b'Eki'], [b'ekk', b'Estonian, Standard'], [b'ekl', b'Kol (Bangladesh)'], [b'ekm', b'Elip'], [b'eko', b'Koti'], [b'ekp', b'Ekpeye'], [b'ekr', b'Yace'], [b'eky', b'Kayah, Eastern'], [b'ele', b'Elepi'], [b'elh', b'El Hugeirat'], [b'eli', b'Nding'], [b'elk', b'Elkei'], [b'ell', b'Greek, Modern (1453-)'], [b'elm', b'Eleme'], [b'elo', b'El Molo'], [b'elu', b'Elu'], [b'elx', b'Elamite'], [b'ema', b'Emai-Iuleha-Ora'], [b'emb', b'Embaloh'], [b'eme', b'Emerillon'], [b'emg', b'Meohang, Eastern'], [b'emi', b'Mussau-Emira'], [b'emk', b'Maninkakan, Eastern'], [b'emm', b'Mamulique'], [b'emn', b'Eman'], [b'emo', b'Emok'], [b'emp', 'Ember\xe1, Northern'], [b'ems', b'Yupik, Pacific Gulf'], [b'emu', b'Muria, Eastern'], [b'emw', b'Emplawas'], [b'emx', b'Erromintxela'], [b'emy', b'Mayan, Epigraphic'], [b'ena', b'Apali'], [b'enb', b'Markweeta'], [b'enc', b'En'], [b'end', b'Ende'], [b'enf', b'Enets, Forest'], [b'eng', b'English'], [b'enh', b'Enets, Tundra'], [b'enm', b'English, Middle (1100-1500)'], [b'enn', b'Engenni'], [b'eno', b'Enggano'], [b'enq', b'Enga'], [b'enr', b'Emumu'], [b'enu', b'Enu'], [b'env', b'Enwan (Edu State)'], [b'enw', b'Enwan (Akwa Ibom State)'], [b'eot', "Beti (C\xf4te d'Ivoire)"], [b'epi', b'Epie'], [b'epo', b'Esperanto'], [b'era', b'Eravallan'], [b'erg', b'Sie'], [b'erh', b'Eruwa'], [b'eri', b'Ogea'], [b'erk', b'Efate, South'], [b'ero', b'Horpa'], [b'err', b'Erre'], [b'ers', b'Ersu'], [b'ert', b'Eritai'], [b'erw', b'Erokwanas'], [b'ese', b'Ese Ejja'], [b'esh', b'Eshtehardi'], [b'esi', b'Inupiatun, North Alaskan'], [b'esk', b'Inupiatun, Northwest Alaska'], [b'esl', b'Egypt Sign Language'], [b'esm', b'Esuma'], [b'esn', b'Salvadoran Sign Language'], [b'eso', b'Estonian Sign Language'], [b'esq', b'Esselen'], [b'ess', b'Yupik, Central Siberian'], [b'est', b'Estonian'], [b'esu', b'Yupik, Central'], [b'etb', b'Etebi'], [b'etc', b'Etchemin'], [b'eth', b'Ethiopian Sign Language'], [b'etn', b'Eton (Vanuatu)'], [b'eto', b'Eton (Cameroon)'], [b'etr', b'Edolo'], [b'ets', b'Yekhee'], [b'ett', b'Etruscan'], [b'etu', b'Ejagham'], [b'etx', b'Eten'], [b'etz', b'Semimi'], [b'eus', b'Basque'], [b'eve', b'Even'], [b'evh', b'Uvbie'], [b'evn', b'Evenki'], [b'ewe', b'Ewe'], [b'ewo', b'Ewondo'], [b'ext', b'Extremaduran'], [b'eya', b'Eyak'], [b'eyo', b'Keiyo'], [b'eza', b'Ezaa'], [b'eze', b'Uzekwe'], [b'faa', b'Fasu'], [b'fab', b"Fa d'Ambu"], [b'fad', b'Wagi'], [b'faf', b'Fagani'], [b'fag', b'Finongan'], [b'fah', b'Fali, Baissa'], [b'fai', b'Faiwol'], [b'faj', b'Faita'], [b'fak', b'Fang (Cameroon)'], [b'fal', b'Fali, South'], [b'fam', b'Fam'], [b'fan', b'Fang (Equatorial Guinea)'], [b'fao', b'Faroese'], [b'fap', b'Palor'], [b'far', b'Fataleka'], [b'fas', b'Persian'], [b'fat', b'Fanti'], [b'fau', b'Fayu'], [b'fax', b'Fala'], [b'fay', b'Fars, Southwestern'], [b'faz', b'Fars, Northwestern'], [b'fbl', b'Bikol, West Albay'], [b'fcs', b'Quebec Sign Language'], [b'fer', b'Feroge'], [b'ffi', b'Foia Foia'], [b'ffm', b'Fulfulde, Maasina'], [b'fgr', b'Fongoro'], [b'fia', b'Nobiin'], [b'fie', b'Fyer'], [b'fij', b'Fijian'], [b'fil', b'Filipino'], [b'fin', b'Finnish'], [b'fip', b'Fipa'], [b'fir', b'Firan'], [b'fit', b'Finnish, Tornedalen'], [b'fiw', b'Fiwaga'], [b'fkk', 'Kirya-Konz\u0259l'], [b'fkv', b'Finnish, Kven'], [b'fla', b"Kalispel-Pend d'Oreille"], [b'flh', b'Foau'], [b'fli', b'Fali'], [b'fll', b'Fali, North'], [b'fln', b'Flinders Island'], [b'flr', b'Fuliiru'], [b'fly', b'Tsotsitaal'], [b'fmp', b"Fe'fe'"], [b'fmu', b'Muria, Far Western'], [b'fng', b'Fanagalo'], [b'fni', b'Fania'], [b'fod', b'Foodo'], [b'foi', b'Foi'], [b'fom', b'Foma'], [b'fon', b'Fon'], [b'for', b'Fore'], [b'fos', b'Siraya'], [b'fpe', b'Creole English, Fernando Po'], [b'fqs', b'Fas'], [b'fra', b'French'], [b'frc', b'French, Cajun'], [b'frd', b'Fordata'], [b'frk', b'Frankish'], [b'frm', b'French, Middle (ca. 1400-1600)'], [b'fro', b'French, Old (842-ca. 1400)'], [b'frp', b'Arpitan'], [b'frq', b'Forak'], [b'frr', b'Frisian, Northern'], [b'frs', b'Frisian, Eastern'], [b'frt', b'Fortsenal'], [b'fry', b'Frisian, Western'], [b'fse', b'Finnish Sign Language'], [b'fsl', b'French Sign Language'], [b'fss', b'Finland-Swedish Sign Language'], [b'fub', b'Fulfulde, Adamawa'], [b'fuc', b'Pulaar'], [b'fud', b'Futuna, East'], [b'fue', b'Fulfulde, Borgu'], [b'fuf', b'Pular'], [b'fuh', b'Fulfulde, Western Niger'], [b'fui', b'Fulfulde, Bagirmi'], [b'fuj', b'Ko'], [b'ful', b'Fulah'], [b'fum', b'Fum'], [b'fun', 'Fulni\xf4'], [b'fuq', b'Fulfulde, Central-Eastern Niger'], [b'fur', b'Friulian'], [b'fut', b'Futuna-Aniwa'], [b'fuu', b'Furu'], [b'fuv', b'Fulfulde, Nigerian'], [b'fuy', b'Fuyug'], [b'fvr', b'Fur'], [b'fwa', 'Fw\xe2i'], [b'fwe', b'Fwe'], [b'gaa', b'Ga'], [b'gab', b'Gabri'], [b'gac', b'Great Andamanese, Mixed'], [b'gad', b'Gaddang'], [b'gae', b'Guarequena'], [b'gaf', b'Gende'], [b'gag', b'Gagauz'], [b'gah', b'Alekano'], [b'gai', b'Borei'], [b'gaj', b'Gadsup'], [b'gak', b'Gamkonora'], [b'gal', b'Galolen'], [b'gam', b'Kandawo'], [b'gan', b'Chinese, Gan'], [b'gao', b'Gants'], [b'gap', b'Gal'], [b'gaq', b"Gata'"], [b'gar', b'Galeya'], [b'gas', b'Garasia, Adiwasi'], [b'gat', b'Kenati'], [b'gau', b'Gadaba, Mudhili'], [b'gaw', b'Nobonob'], [b'gax', b'Oromo, Borana-Arsi-Guji'], [b'gay', b'Gayo'], [b'gaz', b'Oromo, West Central'], [b'gba', b'Gbaya (Central African Republic)'], [b'gbb', b'Kaytetye'], [b'gbd', b'Karadjeri'], [b'gbe', b'Niksek'], [b'gbf', b'Gaikundi'], [b'gbg', b'Gbanziri'], [b'gbh', b'Gbe, Defi'], [b'gbi', b'Galela'], [b'gbj', b'Gadaba, Bodo'], [b'gbk', b'Gaddi'], [b'gbl', b'Gamit'], [b'gbm', b'Garhwali'], [b'gbn', b"Mo'da"], [b'gbo', b'Grebo, Northern'], [b'gbp', b'Gbaya-Bossangoa'], [b'gbq', b'Gbaya-Bozoum'], [b'gbr', b'Gbagyi'], [b'gbs', b'Gbe, Gbesi'], [b'gbu', b'Gagadu'], [b'gbv', b'Gbanu'], [b'gbw', b'Gabi-Gabi'], [b'gbx', b'Gbe, Eastern Xwla'], [b'gby', b'Gbari'], [b'gbz', b'Dari, Zoroastrian'], [b'gcc', b'Mali'], [b'gcd', b'Ganggalida'], [b'gce', b'Galice'], [b'gcf', b'Creole French, Guadeloupean'], [b'gcl', b'Creole English, Grenadian'], [b'gcn', b'Gaina'], [b'gcr', b'Creole French, Guianese'], [b'gct', b'German, Colonia Tovar'], [b'gda', b'Lohar, Gade'], [b'gdb', b'Gadaba, Pottangi Ollar'], [b'gdc', b'Gugu Badhun'], [b'gdd', b'Gedaged'], [b'gde', b'Gude'], [b'gdf', b'Guduf-Gava'], [b'gdg', b"Ga'dang"], [b'gdh', b'Gadjerawang'], [b'gdi', b'Gundi'], [b'gdj', b'Gurdjar'], [b'gdk', b'Gadang'], [b'gdl', b'Dirasha'], [b'gdm', b'Laal'], [b'gdn', b'Umanakaina'], [b'gdo', b'Ghodoberi'], [b'gdq', b'Mehri'], [b'gdr', b'Wipi'], [b'gds', b'Ghandruk Sign Language'], [b'gdt', b'Kungardutyi'], [b'gdu', b'Gudu'], [b'gdx', b'Godwari'], [b'gea', b'Geruma'], [b'geb', b'Kire'], [b'gec', b'Grebo, Gboloo'], [b'ged', b'Gade'], [b'geg', b'Gengle'], [b'geh', b'German, Hutterite'], [b'gei', b'Gebe'], [b'gej', b'Gen'], [b'gek', b'Yiwom'], [b'gel', b"ut-Ma'in"], [b'geq', b'Geme'], [b'ges', b'Geser-Gorom'], [b'gew', b'Gera'], [b'gex', b'Garre'], [b'gey', b'Enya'], [b'gez', b'Geez'], [b'gfk', b'Patpatar'], [b'gft', b'Gafat'], [b'gfx', b'!Xung, Mangetti Dune'], [b'gga', b'Gao'], [b'ggb', b'Gbii'], [b'ggd', b'Gugadj'], [b'gge', b'Guragone'], [b'ggg', b'Gurgula'], [b'ggk', b'Kungarakany'], [b'ggl', b'Ganglau'], [b'ggm', b'Gugu Mini'], [b'ggn', b'Gurung, Eastern'], [b'ggo', b'Gondi, Southern'], [b'ggt', b'Gitua'], [b'ggu', b'Gagu'], [b'ggw', b'Gogodala'], [b'gha', 'Ghadam\xe8s'], [b'ghc', b'Gaelic, Hiberno-Scottish'], [b'ghe', b'Ghale, Southern'], [b'ghh', b'Ghale, Northern'], [b'ghk', b'Karen, Geko'], [b'ghl', b'Ghulfan'], [b'ghn', b'Ghanongga'], [b'gho', b'Ghomara'], [b'ghr', b'Ghera'], [b'ghs', b'Guhu-Samane'], [b'ght', b'Kuke'], [b'gia', b'Kitja'], [b'gib', b'Gibanawa'], [b'gic', b'Gail'], [b'gid', b'Gidar'], [b'gig', b'Goaria'], [b'gih', b'Githabul'], [b'gil', b'Gilbertese'], [b'gim', b'Gimi (Eastern Highlands)'], [b'gin', b'Hinukh'], [b'gip', b'Gimi (West New Britain)'], [b'giq', b'Gelao, Green'], [b'gir', b'Gelao, Red'], [b'gis', b'Giziga, North'], [b'git', b'Gitxsan'], [b'giu', b'Mulao'], [b'giw', b'Gelao, White'], [b'gix', b'Gilima'], [b'giy', b'Giyug'], [b'giz', b'Giziga, South'], [b'gji', b'Geji'], [b'gjk', b'Koli, Kachi'], [b'gjm', b'Gunditjmara'], [b'gjn', b'Gonja'], [b'gju', b'Gujari'], [b'gka', b'Guya'], [b'gke', b'Ndai'], [b'gkn', b'Gokana'], [b'gko', b'Kok-Nar'], [b'gkp', b'Kpelle, Guinea'], [b'gla', b'Gaelic, Scottish'], [b'glc', b'Bon Gula'], [b'gld', b'Nanai'], [b'gle', b'Irish'], [b'glg', b'Galician'], [b'glh', b'Pashayi, Northwest'], [b'gli', b'Guliguli'], [b'glj', b'Gula Iro'], [b'glk', b'Gilaki'], [b'gll', b'Garlali'], [b'glo', b'Galambu'], [b'glr', b'Glaro-Twabo'], [b'glu', b'Gula (Chad)'], [b'glv', b'Manx'], [b'glw', b'Glavda'], [b'gly', b'Gule'], [b'gma', b'Gambera'], [b'gmb', b"Gula'alaa"], [b'gmd', 'M\xe1ghd\xec'], [b'gmh', b'German, Middle High (ca. 1050-1500)'], [b'gml', b'German, Middle Low'], [b'gmm', b'Gbaya-Mbodomo'], [b'gmn', b'Gimnime'], [b'gmu', b'Gumalu'], [b'gmv', b'Gamo'], [b'gmx', b'Magoma'], [b'gmy', b'Greek, Mycenaean'], [b'gmz', b'Mgbolizhia'], [b'gna', b'Kaansa'], [b'gnb', b'Gangte'], [b'gnc', b'Guanche'], [b'gnd', b'Zulgo-Gemzek'], [b'gne', b'Ganang'], [b'gng', b'Ngangam'], [b'gnh', b'Lere'], [b'gni', b'Gooniyandi'], [b'gnk', b'//Gana'], [b'gnl', b'Gangulu'], [b'gnm', b'Ginuman'], [b'gnn', b'Gumatj'], [b'gno', b'Gondi, Northern'], [b'gnq', b'Gana'], [b'gnr', b'Gureng Gureng'], [b'gnt', b'Guntai'], [b'gnu', b'Gnau'], [b'gnw', 'Guaran\xed, Western Bolivian'], [b'gnz', b'Ganzi'], [b'goa', b'Guro'], [b'gob', b'Playero'], [b'goc', b'Gorakor'], [b'god', 'Godi\xe9'], [b'goe', b'Gongduk'], [b'gof', b'Gofa'], [b'gog', b'Gogo'], [b'goh', b'German, Old High (ca. 750-1050)'], [b'goi', b'Gobasi'], [b'goj', b'Gowlan'], [b'gok', b'Gowli'], [b'gol', b'Gola'], [b'gom', b'Konkani, Goan'], [b'gon', b'Gondi'], [b'goo', b'Gone Dau'], [b'gop', b'Yeretuar'], [b'goq', b'Gorap'], [b'gor', b'Gorontalo'], [b'gos', b'Gronings'], [b'got', b'Gothic'], [b'gou', b'Gavar'], [b'gow', b'Gorowa'], [b'gox', b'Gobu'], [b'goy', b'Goundo'], [b'goz', b'Gozarkhani'], [b'gpa', b'Gupa-Abawa'], [b'gpe', b'Pidgin English, Ghanaian'], [b'gpn', b'Taiap'], [b'gqa', b"Ga'anda"], [b'gqi', b'Guiqiong'], [b'gqn', b'Guana (Brazil)'], [b'gqr', b'Gor'], [b'gqu', b'Qau'], [b'gra', b'Garasia, Rajput'], [b'grb', b'Grebo'], [b'grc', b'Greek, Ancient (to 1453)'], [b'grd', b'Guruntum-Mbaaru'], [b'grg', b'Madi'], [b'grh', b'Gbiri-Niragu'], [b'gri', b'Ghari'], [b'grj', b'Grebo, Southern'], [b'grm', b'Kota Marudu Talantang'], [b'grn', b'Guarani'], [b'gro', b'Groma'], [b'grq', b'Gorovu'], [b'grr', b'Taznatit'], [b'grs', b'Gresi'], [b'grt', b'Garo'], [b'gru', b'Kistane'], [b'grv', b'Grebo, Central'], [b'grw', b'Gweda'], [b'grx', b'Guriaso'], [b'gry', b'Grebo, Barclayville'], [b'grz', b'Guramalum'], [b'gse', b'Ghanaian Sign Language'], [b'gsg', b'German Sign Language'], [b'gsl', b'Gusilay'], [b'gsm', b'Guatemalan Sign Language'], [b'gsn', b'Gusan'], [b'gso', b'Gbaya, Southwest'], [b'gsp', b'Wasembo'], [b'gss', b'Greek Sign Language'], [b'gsw', b'German, Swiss'], [b'gta', 'Guat\xf3'], [b'gti', b'Gbati-ri'], [b'gtu', b'Aghu-Tharnggala'], [b'gua', b'Shiki'], [b'gub', 'Guajaj\xe1ra'], [b'guc', b'Wayuu'], [b'gud', 'Dida, Yocobou\xe9'], [b'gue', b'Gurinji'], [b'guf', b'Gupapuyngu'], [b'gug', 'Guaran\xed, Paraguayan'], [b'guh', b'Guahibo'], [b'gui', 'Guaran\xed, Eastern Bolivian'], [b'guj', b'Gujarati'], [b'guk', b'Gumuz'], [b'gul', b'Creole English, Sea Island'], [b'gum', b'Guambiano'], [b'gun', 'Guaran\xed, Mby\xe1'], [b'guo', b'Guayabero'], [b'gup', b'Gunwinggu'], [b'guq', 'Ach\xe9'], [b'gur', b'Farefare'], [b'gus', b'Guinean Sign Language'], [b'gut', 'Mal\xe9ku Ja\xedka'], [b'guu', 'Yanomam\xf6'], [b'guv', b'Gey'], [b'guw', b'Gun'], [b'gux', 'Gourmanch\xe9ma'], [b'guz', b'Gusii'], [b'gva', b'Guana (Paraguay)'], [b'gvc', b'Guanano'], [b'gve', b'Duwet'], [b'gvf', b'Golin'], [b'gvj', 'Guaj\xe1'], [b'gvl', b'Gulay'], [b'gvm', b'Gurmana'], [b'gvn', b'Kuku-Yalanji'], [b'gvo', 'Gavi\xe3o Do Jiparan\xe1'], [b'gvp', 'Gavi\xe3o, Par\xe1'], [b'gvr', b'Gurung, Western'], [b'gvs', b'Gumawana'], [b'gvy', b'Guyani'], [b'gwa', b'Mbato'], [b'gwb', b'Gwa'], [b'gwc', b'Kalami'], [b'gwd', b'Gawwada'], [b'gwe', b'Gweno'], [b'gwf', b'Gowro'], [b'gwg', b'Moo'], [b'gwi', 'Gwich\u02bcin'], [b'gwj', b'/Gwi'], [b'gwm', b'Awngthim'], [b'gwn', b'Gwandara'], [b'gwr', b'Gwere'], [b'gwt', b'Gawar-Bati'], [b'gwu', b'Guwamu'], [b'gww', b'Kwini'], [b'gwx', b'Gua'], [b'gxx', 'W\xe8 Southern'], [b'gya', b'Gbaya, Northwest'], [b'gyb', b'Garus'], [b'gyd', b'Kayardild'], [b'gye', b'Gyem'], [b'gyf', b'Gungabula'], [b'gyg', b'Gbayi'], [b'gyi', b'Gyele'], [b'gyl', b'Gayil'], [b'gym', 'Ng\xe4bere'], [b'gyn', b'Creole English, Guyanese'], [b'gyr', b'Guarayu'], [b'gyy', b'Gunya'], [b'gza', b'Ganza'], [b'gzi', b'Gazi'], [b'gzn', b'Gane'], [b'haa', b'Han'], [b'hab', b'Hanoi Sign Language'], [b'hac', b'Gurani'], [b'had', b'Hatam'], [b'hae', b'Oromo, Eastern'], [b'haf', b'Haiphong Sign Language'], [b'hag', b'Hanga'], [b'hah', b'Hahon'], [b'hai', b'Haida'], [b'haj', b'Hajong'], [b'hak', b'Chinese, Hakka'], [b'hal', b'Halang'], [b'ham', b'Hewa'], [b'han', b'Hangaza'], [b'hao', 'Hak\xf6'], [b'hap', b'Hupla'], [b'haq', b'Ha'], [b'har', b'Harari'], [b'has', b'Haisla'], [b'hat', b'Haitian'], [b'hau', b'Hausa'], [b'hav', b'Havu'], [b'haw', b'Hawaiian'], [b'hax', b'Haida, Southern'], [b'hay', b'Haya'], [b'haz', b'Hazaragi'], [b'hba', b'Hamba'], [b'hbb', b'Huba'], [b'hbn', b'Heiban'], [b'hbo', b'Hebrew, Ancient'], [b'hbs', b'Serbo-Croatian'], [b'hbu', b'Habu'], [b'hca', b'Creole Hindi, Andaman'], [b'hch', b'Huichol'], [b'hdn', b'Haida, Northern'], [b'hds', b'Honduras Sign Language'], [b'hdy', b'Hadiyya'], [b'hea', b'Miao, Northern Qiandong'], [b'heb', b'Hebrew'], [b'hed', 'Herd\xe9'], [b'heg', b'Helong'], [b'heh', b'Hehe'], [b'hei', b'Heiltsuk'], [b'hem', b'Hemba'], [b'her', b'Herero'], [b'hgm', b'Hai//om'], [b'hgw', b'Haigwai'], [b'hhi', b'Hoia Hoia'], [b'hhr', b'Kerak'], [b'hhy', b'Hoyahoya'], [b'hia', b'Lamang'], [b'hib', b'Hibito'], [b'hid', b'Hidatsa'], [b'hif', b'Hindi, Fiji'], [b'hig', b'Kamwe'], [b'hih', b'Pamosu'], [b'hii', b'Hinduri'], [b'hij', b'Hijuk'], [b'hik', b'Seit-Kaitetu'], [b'hil', b'Hiligaynon'], [b'hin', b'Hindi'], [b'hio', b'Tsoa'], [b'hir', 'Himarim\xe3'], [b'hit', b'Hittite'], [b'hiw', b'Hiw'], [b'hix', 'Hixkary\xe1na'], [b'hji', b'Haji'], [b'hka', b'Kahe'], [b'hke', b'Hunde'], [b'hkk', b'Hunjara-Kaina Ke'], [b'hks', b'Hong Kong Sign Language'], [b'hla', b'Halia'], [b'hlb', b'Halbi'], [b'hld', b'Halang Doan'], [b'hle', b'Hlersu'], [b'hlt', b'Chin, Matu'], [b'hlu', b'Luwian, Hieroglyphic'], [b'hma', b'Hmong, Southern Mashan'], [b'hmb', b'Songhay, Humburi Senni'], [b'hmc', b'Hmong, Central Huishui'], [b'hmd', b'Miao, Large Flowery'], [b'hme', b'Hmong, Eastern Huishui'], [b'hmf', b'Hmong Don'], [b'hmg', b'Hmong, Southwestern Guiyang'], [b'hmh', b'Hmong, Southwestern Huishui'], [b'hmi', b'Hmong, Northern Huishui'], [b'hmj', b'Ge'], [b'hmk', b'Maek'], [b'hml', b'Hmong, Luopohe'], [b'hmm', b'Hmong, Central Mashan'], [b'hmn', b'Hmong'], [b'hmo', b'Hiri Motu'], [b'hmp', b'Hmong, Northern Mashan'], [b'hmq', b'Miao, Eastern Qiandong'], [b'hmr', b'Hmar'], [b'hms', b'Miao, Southern Qiandong'], [b'hmt', b'Hamtai'], [b'hmu', b'Hamap'], [b'hmv', 'Hmong D\xf4'], [b'hmw', b'Hmong, Western Mashan'], [b'hmy', b'Hmong, Southern Guiyang'], [b'hmz', b'Hmong Shua'], [b'hna', b'Mina (Cameroon)'], [b'hnd', b'Hindko, Southern'], [b'hne', b'Chhattisgarhi'], [b'hnh', b'//Ani'], [b'hni', b'Hani'], [b'hnj', b'Hmong Njua'], [b'hnn', b'Hanunoo'], [b'hno', b'Hindko, Northern'], [b'hns', b'Hindustani, Caribbean'], [b'hnu', b'Hung'], [b'hoa', b'Hoava'], [b'hob', b'Mari (Madang Province)'], [b'hoc', b'Ho'], [b'hod', b'Holma'], [b'hoe', b'Horom'], [b'hoh', 'Hoby\xf3t'], [b'hoi', b'Holikachuk'], [b'hoj', b'Hadothi'], [b'hol', b'Holu'], [b'hom', b'Homa'], [b'hoo', b'Holoholo'], [b'hop', b'Hopi'], [b'hor', b'Horo'], [b'hos', b'Ho Chi Minh City Sign Language'], [b'hot', b'Hote'], [b'hov', b'Hovongan'], [b'how', b'Honi'], [b'hoy', b'Holiya'], [b'hoz', b'Hozo'], [b'hpo', b'Hpon'], [b'hps', b"Hawai'i Pidgin Sign Language"], [b'hra', b'Hrangkhol'], [b'hrc', b'Niwer Mil'], [b'hre', b'Hre'], [b'hrk', b'Haruku'], [b'hrm', b'Miao, Horned'], [b'hro', b'Haroi'], [b'hrp', b'Nhirrpi'], [b'hrt', 'H\xe9rtevin'], [b'hru', b'Hruso'], [b'hrv', b'Croatian'], [b'hrw', b'Warwar Feni'], [b'hrx', b'Hunsrik'], [b'hrz', b'Harzani'], [b'hsb', b'Sorbian, Upper'], [b'hsh', b'Hungarian Sign Language'], [b'hsl', b'Hausa Sign Language'], [b'hsn', b'Chinese, Xiang'], [b'hss', b'Harsusi'], [b'hti', b'Hoti'], [b'hto', b'Huitoto, Minica'], [b'hts', b'Hadza'], [b'htu', b'Hitu'], [b'htx', b'Hittite, Middle'], [b'hub', b'Huambisa'], [b'huc', b'=/Hua'], [b'hud', b'Huaulu'], [b'hue', b'Huave, San Francisco Del Mar'], [b'huf', b'Humene'], [b'hug', b'Huachipaeri'], [b'huh', b'Huilliche'], [b'hui', b'Huli'], [b'huj', b'Hmong, Northern Guiyang'], [b'huk', b'Hulung'], [b'hul', b'Hula'], [b'hum', b'Hungana'], [b'hun', b'Hungarian'], [b'huo', b'Hu'], [b'hup', b'Hupa'], [b'huq', b'Tsat'], [b'hur', b'Halkomelem'], [b'hus', b'Huastec'], [b'hut', b'Humla'], [b'huu', b'Huitoto, Murui'], [b'huv', b'Huave, San Mateo Del Mar'], [b'huw', b'Hukumina'], [b'hux', 'Huitoto, N\xfcpode'], [b'huy', 'Hulaul\xe1'], [b'huz', b'Hunzib'], [b'hvc', b'Haitian Vodoun Culture Language'], [b'hve', b'Huave, San Dionisio Del Mar'], [b'hvk', b'Haveke'], [b'hvn', b'Sabu'], [b'hvv', 'Huave, Santa Mar\xeda Del Mar'], [b'hwa', 'Wan\xe9'], [b'hwc', b"Creole English, Hawai'i"], [b'hwo', b'Hwana'], [b'hya', b'Hya'], [b'hye', b'Armenian'], [b'iai', b'Iaai'], [b'ian', b'Iatmul'], [b'iap', b'Iapama'], [b'iar', b'Purari'], [b'iba', b'Iban'], [b'ibb', b'Ibibio'], [b'ibd', b'Iwaidja'], [b'ibe', b'Akpes'], [b'ibg', b'Ibanag'], [b'ibl', b'Ibaloi'], [b'ibm', b'Agoi'], [b'ibn', b'Ibino'], [b'ibo', b'Igbo'], [b'ibr', b'Ibuoro'], [b'ibu', b'Ibu'], [b'iby', b'Ibani'], [b'ica', b'Ede Ica'], [b'ich', b'Etkywan'], [b'icl', b'Icelandic Sign Language'], [b'icr', b'Creole English, Islander'], [b'ida', b'Idakho-Isukha-Tiriki'], [b'idb', b'Indo-Portuguese'], [b'idc', b'Idon'], [b'idd', b'Ede Idaca'], [b'ide', b'Idere'], [b'idi', b'Idi'], [b'ido', b'Ido'], [b'idr', b'Indri'], [b'ids', b'Idesa'], [b'idt', 'Idat\xe9'], [b'idu', b'Idoma'], [b'ifa', b'Ifugao, Amganad'], [b'ifb', b'Ifugao, Batad'], [b'ife', 'If\xe8'], [b'iff', b'Ifo'], [b'ifk', b'Ifugao, Tuwali'], [b'ifm', b'Teke-Fuumu'], [b'ifu', b'Ifugao, Mayoyao'], [b'ify', b'Kallahan, Keley-I'], [b'igb', b'Ebira'], [b'ige', b'Igede'], [b'igg', b'Igana'], [b'igl', b'Igala'], [b'igm', b'Kanggape'], [b'ign', b'Ignaciano'], [b'igo', b'Isebe'], [b'igs', b'Interglossa'], [b'igw', b'Igwe'], [b'ihb', b'Iha Based Pidgin'], [b'ihi', b'Ihievbe'], [b'ihp', b'Iha'], [b'ihw', b'Bidhawal'], [b'iii', b'Yi, Sichuan'], [b'iin', b'Thiin'], [b'ijc', b'Izon'], [b'ije', b'Biseni'], [b'ijj', b'Ede Ije'], [b'ijn', b'Kalabari'], [b'ijs', b'Ijo, Southeast'], [b'ike', b'Inuktitut, Eastern Canadian'], [b'iki', b'Iko'], [b'ikk', b'Ika'], [b'ikl', b'Ikulu'], [b'iko', b'Olulumo-Ikom'], [b'ikp', b'Ikpeshi'], [b'ikr', b'Ikaranggal'], [b'ikt', b'Inuinnaqtun'], [b'iku', b'Inuktitut'], [b'ikv', b'Iku-Gora-Ankwa'], [b'ikw', b'Ikwere'], [b'ikx', b'Ik'], [b'ikz', b'Ikizu'], [b'ila', b'Ile Ape'], [b'ilb', b'Ila'], [b'ile', b'Interlingue'], [b'ilg', b'Garig-Ilgar'], [b'ili', b'Ili Turki'], [b'ilk', b'Ilongot'], [b'ill', b'Iranun'], [b'ilo', b'Iloko'], [b'ils', b'International Sign'], [b'ilu', b"Ili'uun"], [b'ilv', b'Ilue'], [b'ima', b'Malasar, Mala'], [b'ime', b'Imeraguen'], [b'imi', b'Anamgura'], [b'iml', b'Miluk'], [b'imn', b'Imonda'], [b'imo', b'Imbongu'], [b'imr', b'Imroing'], [b'ims', b'Marsian'], [b'imy', b'Milyan'], [b'ina', b'Interlingua (International Auxiliary Language Association)'], [b'inb', b'Inga'], [b'ind', b'Indonesian'], [b'ing', b"Degexit'an"], [b'inh', b'Ingush'], [b'inj', b'Inga, Jungle'], [b'inl', b'Indonesian Sign Language'], [b'inm', b'Minaean'], [b'inn', b'Isinai'], [b'ino', b'Inoke-Yate'], [b'inp', 'I\xf1apari'], [b'ins', b'Indian Sign Language'], [b'int', b'Intha'], [b'inz', 'Inese\xf1o'], [b'ior', b'Inor'], [b'iou', b'Tuma-Irumu'], [b'iow', b'Iowa-Oto'], [b'ipi', b'Ipili'], [b'ipk', b'Inupiaq'], [b'ipo', b'Ipiko'], [b'iqu', b'Iquito'], [b'iqw', b'Ikwo'], [b'ire', b'Iresim'], [b'irh', b'Irarutu'], [b'iri', b'Irigwe'], [b'irk', b'Iraqw'], [b'irn', 'Ir\xe1ntxe'], [b'irr', b'Ir'], [b'iru', b'Irula'], [b'irx', b'Kamberau'], [b'iry', b'Iraya'], [b'isa', b'Isabi'], [b'isc', b'Isconahua'], [b'isd', b'Isnag'], [b'ise', b'Italian Sign Language'], [b'isg', b'Irish Sign Language'], [b'ish', b'Esan'], [b'isi', b'Nkem-Nkum'], [b'isk', b'Ishkashimi'], [b'isl', b'Icelandic'], [b'ism', b'Masimasi'], [b'isn', b'Isanzu'], [b'iso', b'Isoko'], [b'isr', b'Israeli Sign Language'], [b'ist', b'Istriot'], [b'isu', b'Isu (Menchum Division)'], [b'ita', b'Italian'], [b'itb', b'Itneg, Binongan'], [b'ite', b'Itene'], [b'iti', b'Itneg, Inlaod'], [b'itk', b'Judeo-Italian'], [b'itl', b'Itelmen'], [b'itm', b'Itu Mbon Uzo'], [b'ito', b'Itonama'], [b'itr', b'Iteri'], [b'its', b'Isekiri'], [b'itt', b'Itneg, Maeng'], [b'itv', b'Itawit'], [b'itw', b'Ito'], [b'itx', b'Itik'], [b'ity', b'Itneg, Moyadan'], [b'itz', 'Itz\xe1'], [b'ium', b'Mien, Iu'], [b'ivb', b'Ibatan'], [b'ivv', b'Ivatan'], [b'iwk', b'I-Wak'], [b'iwm', b'Iwam'], [b'iwo', b'Iwur'], [b'iws', b'Iwam, Sepik'], [b'ixc', b'Ixcatec'], [b'ixl', b'Ixil'], [b'iya', b'Iyayu'], [b'iyo', b'Mesaka'], [b'iyx', b'Yaka (Congo)'], [b'izh', b'Ingrian'], [b'izr', b'Izere'], [b'izz', b'Izii'], [b'jaa', 'Jamamad\xed'], [b'jab', b'Hyam'], [b'jac', b"Popti'"], [b'jad', b'Jahanka'], [b'jae', b'Yabem'], [b'jaf', b'Jara'], [b'jah', b'Jah Hut'], [b'jaj', b'Zazao'], [b'jak', b'Jakun'], [b'jal', b'Yalahatan'], [b'jam', b'Creole English, Jamaican'], [b'jan', b'Jandai'], [b'jao', b'Yanyuwa'], [b'jaq', b'Yaqay'], [b'jas', b'Javanese, New Caledonian'], [b'jat', b'Jakati'], [b'jau', b'Yaur'], [b'jav', b'Javanese'], [b'jax', b'Malay, Jambi'], [b'jay', b'Yan-nhangu'], [b'jaz', b'Jawe'], [b'jbe', b'Judeo-Berber'], [b'jbi', b'Badjiri'], [b'jbj', b'Arandai'], [b'jbk', b'Barikewa'], [b'jbn', b'Nafusi'], [b'jbo', b'Lojban'], [b'jbr', b'Jofotek-Bromnya'], [b'jbt', 'Jabut\xed'], [b'jbu', b'Jukun Takum'], [b'jbw', b'Yawijibaya'], [b'jcs', b'Jamaican Country Sign Language'], [b'jct', b'Krymchak'], [b'jda', b'Jad'], [b'jdg', b'Jadgali'], [b'jdt', b'Judeo-Tat'], [b'jeb', b'Jebero'], [b'jee', b'Jerung'], [b'jeg', b'Jeng'], [b'jeh', b'Jeh'], [b'jei', b'Yei'], [b'jek', b'Jeri Kuo'], [b'jel', b'Yelmek'], [b'jen', b'Dza'], [b'jer', b'Jere'], [b'jet', b'Manem'], [b'jeu', b'Jonkor Bourmataguil'], [b'jgb', b'Ngbee'], [b'jge', b'Judeo-Georgian'], [b'jgk', b'Gwak'], [b'jgo', b'Ngomba'], [b'jhi', b'Jehai'], [b'jhs', b'Jhankot Sign Language'], [b'jia', b'Jina'], [b'jib', b'Jibu'], [b'jic', b'Tol'], [b'jid', b'Bu'], [b'jie', b'Jilbe'], [b'jig', b'Djingili'], [b'jih', b'sTodsde'], [b'jii', b'Jiiddu'], [b'jil', b'Jilim'], [b'jim', b'Jimi (Cameroon)'], [b'jio', b'Jiamao'], [b'jiq', b'Guanyinqiao'], [b'jit', b'Jita'], [b'jiu', b'Jinuo, Youle'], [b'jiv', b'Shuar'], [b'jiy', b'Jinuo, Buyuan'], [b'jjr', b'Bankal'], [b'jkm', b'Karen, Mobwa'], [b'jko', b'Kubo'], [b'jkp', b'Karen, Paku'], [b'jkr', b'Koro (India)'], [b'jku', b'Labir'], [b'jle', b'Ngile'], [b'jls', b'Jamaican Sign Language'], [b'jma', b'Dima'], [b'jmb', b'Zumbun'], [b'jmc', b'Machame'], [b'jmd', b'Yamdena'], [b'jmi', b'Jimi (Nigeria)'], [b'jml', b'Jumli'], [b'jmn', b'Naga, Makuri'], [b'jmr', b'Kamara'], [b'jms', b'Mashi (Nigeria)'], [b'jmw', b'Mouwase'], [b'jmx', b'Mixtec, Western Juxtlahuaca'], [b'jna', b'Jangshung'], [b'jnd', b'Jandavra'], [b'jng', b'Yangman'], [b'jni', b'Janji'], [b'jnj', b'Yemsa'], [b'jnl', b'Rawat'], [b'jns', b'Jaunsari'], [b'job', b'Joba'], [b'jod', b'Wojenaka'], [b'jor', 'Jor\xe1'], [b'jos', b'Jordanian Sign Language'], [b'jow', b'Jowulu'], [b'jpa', b'Aramaic, Jewish Palestinian'], [b'jpn', b'Japanese'], [b'jpr', b'Judeo-Persian'], [b'jqr', b'Jaqaru'], [b'jra', b'Jarai'], [b'jrb', b'Judeo-Arabic'], [b'jrr', b'Jiru'], [b'jrt', b'Jorto'], [b'jru', 'Japrer\xeda'], [b'jsl', b'Japanese Sign Language'], [b'jua', 'J\xfama'], [b'jub', b'Wannu'], [b'juc', b'Jurchen'], [b'jud', b'Worodougou'], [b'juh', 'H\xf5ne'], [b'jui', b'Ngadjuri'], [b'juk', b'Wapan'], [b'jul', b'Jirel'], [b'jum', b'Jumjum'], [b'jun', b'Juang'], [b'juo', b'Jiba'], [b'jup', 'Hupd\xeb'], [b'jur', 'Jur\xfana'], [b'jus', b'Jumla Sign Language'], [b'jut', b'Jutish'], [b'juu', b'Ju'], [b'juw', 'W\xe3pha'], [b'juy', b'Juray'], [b'jvd', b'Javindo'], [b'jvn', b'Javanese, Caribbean'], [b'jwi', b'Jwira-Pepesa'], [b'jya', b'Jiarong'], [b'jye', b'Arabic, Judeo-Yemeni'], [b'jyy', b'Jaya'], [b'kaa', b'Kara-Kalpak'], [b'kab', b'Kabyle'], [b'kac', b'Kachin'], [b'kad', b'Adara'], [b'kae', b'Ketangalan'], [b'kaf', b'Katso'], [b'kag', b'Kajaman'], [b'kah', b'Kara (Central African Republic)'], [b'kai', b'Karekare'], [b'kaj', b'Jju'], [b'kak', b'Kallahan, Kayapa'], [b'kal', b'Kalaallisut'], [b'kam', b'Kamba (Kenya)'], [b'kan', b'Kannada'], [b'kao', b'Xaasongaxango'], [b'kap', b'Bezhta'], [b'kaq', b'Capanahua'], [b'kas', b'Kashmiri'], [b'kat', b'Georgian'], [b'kau', b'Kanuri'], [b'kav', 'Katuk\xedna'], [b'kaw', b'Kawi'], [b'kax', b'Kao'], [b'kay', 'Kamayur\xe1'], [b'kaz', b'Kazakh'], [b'kba', b'Kalarko'], [b'kbb', 'Kaxui\xe2na'], [b'kbc', 'Kadiw\xe9u'], [b'kbd', b'Kabardian'], [b'kbe', b'Kanju'], [b'kbf', b'Kakauhua'], [b'kbg', b'Khamba'], [b'kbh', 'Cams\xe1'], [b'kbi', b'Kaptiau'], [b'kbj', b'Kari'], [b'kbk', b'Koiari, Grass'], [b'kbl', b'Kanembu'], [b'kbm', b'Iwal'], [b'kbn', b'Kare (Central African Republic)'], [b'kbo', b'Keliko'], [b'kbp', 'Kabiy\xe8'], [b'kbq', b'Kamano'], [b'kbr', b'Kafa'], [b'kbs', b'Kande'], [b'kbt', b'Abadi'], [b'kbu', b'Kabutra'], [b'kbv', b'Dera (Indonesia)'], [b'kbw', b'Kaiep'], [b'kbx', b'Ap Ma'], [b'kby', b'Kanuri, Manga'], [b'kbz', b'Duhwa'], [b'kca', b'Khanty'], [b'kcb', b'Kawacha'], [b'kcc', b'Lubila'], [b'kcd', 'Kanum, Ngk\xe2lmpw'], [b'kce', b'Kaivi'], [b'kcf', b'Ukaan'], [b'kcg', b'Tyap'], [b'kch', b'Vono'], [b'kci', b'Kamantan'], [b'kcj', b'Kobiana'], [b'kck', b'Kalanga'], [b'kcl', b'Kela (Papua New Guinea)'], [b'kcm', b'Gula (Central African Republic)'], [b'kcn', b'Nubi'], [b'kco', b'Kinalakna'], [b'kcp', b'Kanga'], [b'kcq', b'Kamo'], [b'kcr', b'Katla'], [b'kcs', b'Koenoem'], [b'kct', b'Kaian'], [b'kcu', b'Kami (Tanzania)'], [b'kcv', b'Kete'], [b'kcw', b'Kabwari'], [b'kcx', b'Kachama-Ganjule'], [b'kcy', b'Korandje'], [b'kcz', b'Konongo'], [b'kda', b'Worimi'], [b'kdc', b'Kutu'], [b'kdd', b'Yankunytjatjara'], [b'kde', b'Makonde'], [b'kdf', b'Mamusi'], [b'kdg', b'Seba'], [b'kdh', b'Tem'], [b'kdi', b'Kumam'], [b'kdj', b'Karamojong'], [b'kdk', 'Num\xe8\xe8'], [b'kdl', b'Tsikimba'], [b'kdm', b'Kagoma'], [b'kdn', b'Kunda'], [b'kdp', b'Kaningdon-Nindem'], [b'kdq', b'Koch'], [b'kdr', b'Karaim'], [b'kdt', b'Kuy'], [b'kdu', b'Kadaru'], [b'kdw', b'Koneraw'], [b'kdx', b'Kam'], [b'kdy', b'Keder'], [b'kdz', b'Kwaja'], [b'kea', b'Kabuverdianu'], [b'keb', 'K\xe9l\xe9'], [b'kec', b'Keiga'], [b'ked', b'Kerewe'], [b'kee', b'Keres, Eastern'], [b'kef', b'Kpessi'], [b'keg', b'Tese'], [b'keh', b'Keak'], [b'kei', b'Kei'], [b'kej', b'Kadar'], [b'kek', 'Kekch\xed'], [b'kel', b'Kela (Democratic Republic of Congo)'], [b'kem', b'Kemak'], [b'ken', b'Kenyang'], [b'keo', b'Kakwa'], [b'kep', b'Kaikadi'], [b'keq', b'Kamar'], [b'ker', b'Kera'], [b'kes', b'Kugbo'], [b'ket', b'Ket'], [b'keu', b'Akebu'], [b'kev', b'Kanikkaran'], [b'kew', b'Kewa, West'], [b'kex', b'Kukna'], [b'key', b'Kupia'], [b'kez', b'Kukele'], [b'kfa', b'Kodava'], [b'kfb', b'Kolami, Northwestern'], [b'kfc', b'Konda-Dora'], [b'kfd', b'Koraga, Korra'], [b'kfe', b'Kota (India)'], [b'kff', b'Koya'], [b'kfg', b'Kudiya'], [b'kfh', b'Kurichiya'], [b'kfi', b'Kurumba, Kannada'], [b'kfj', b'Kemiehua'], [b'kfk', b'Kinnauri'], [b'kfl', b'Kung'], [b'kfm', b'Khunsari'], [b'kfn', b'Kuk'], [b'kfo', "Koro (C\xf4te d'Ivoire)"], [b'kfp', b'Korwa'], [b'kfq', b'Korku'], [b'kfr', b'Kachchi'], [b'kfs', b'Bilaspuri'], [b'kft', b'Kanjari'], [b'kfu', b'Katkari'], [b'kfv', b'Kurmukar'], [b'kfw', b'Naga, Kharam'], [b'kfx', b'Pahari, Kullu'], [b'kfy', b'Kumaoni'], [b'kfz', 'Koromf\xe9'], [b'kga', b'Koyaga'], [b'kgb', b'Kawe'], [b'kgc', b'Kasseng'], [b'kgd', b'Kataang'], [b'kge', b'Komering'], [b'kgf', b'Kube'], [b'kgg', b'Kusunda'], [b'kgi', b'Selangor Sign Language'], [b'kgj', b'Kham, Gamale'], [b'kgk', 'Kaiw\xe1'], [b'kgl', b'Kunggari'], [b'kgm', 'Karip\xfana'], [b'kgn', b'Karingani'], [b'kgo', b'Krongo'], [b'kgp', b'Kaingang'], [b'kgq', b'Kamoro'], [b'kgr', b'Abun'], [b'kgs', b'Kumbainggar'], [b'kgt', b'Somyev'], [b'kgu', b'Kobol'], [b'kgv', b'Karas'], [b'kgw', b'Karon Dori'], [b'kgx', b'Kamaru'], [b'kgy', b'Kyerung'], [b'kha', b'Khasi'], [b'khb', 'L\xfc'], [b'khc', b'Tukang Besi North'], [b'khd', 'Kanum, B\xe4di'], [b'khe', b'Korowai'], [b'khf', b'Khuen'], [b'khg', b'Tibetan, Khams'], [b'khh', b'Kehu'], [b'khj', b'Kuturmi'], [b'khk', b'Mongolian, Halh'], [b'khl', b'Lusi'], [b'khm', b'Khmer, Central'], [b'khn', b'Khandesi'], [b'kho', b'Khotanese'], [b'khp', b'Kapori'], [b'khq', b'Songhay, Koyra Chiini'], [b'khr', b'Kharia'], [b'khs', b'Kasua'], [b'kht', b'Khamti'], [b'khu', b'Nkhumbi'], [b'khv', b'Khvarshi'], [b'khw', b'Khowar'], [b'khx', b'Kanu'], [b'khy', b'Kele (Democratic Republic of Congo)'], [b'khz', b'Keapara'], [b'kia', b'Kim'], [b'kib', b'Koalib'], [b'kic', b'Kickapoo'], [b'kid', b'Koshin'], [b'kie', b'Kibet'], [b'kif', b'Kham, Eastern Parbate'], [b'kig', b'Kimaama'], [b'kih', b'Kilmeri'], [b'kii', b'Kitsai'], [b'kij', b'Kilivila'], [b'kik', b'Kikuyu'], [b'kil', b'Kariya'], [b'kim', b'Karagas'], [b'kin', b'Kinyarwanda'], [b'kio', b'Kiowa'], [b'kip', b'Kham, Sheshi'], [b'kiq', b'Kosadle'], [b'kir', b'Kirghiz'], [b'kis', b'Kis'], [b'kit', b'Agob'], [b'kiu', b'Kirmanjki (individual language)'], [b'kiv', b'Kimbu'], [b'kiw', b'Kiwai, Northeast'], [b'kix', b'Naga, Khiamniungan'], [b'kiy', b'Kirikiri'], [b'kiz', b'Kisi'], [b'kja', b'Mlap'], [b'kjb', b"Q'anjob'al"], [b'kjc', b'Konjo, Coastal'], [b'kjd', b'Kiwai, Southern'], [b'kje', b'Kisar'], [b'kjf', b'Khalaj'], [b'kjg', b'Khmu'], [b'kjh', b'Khakas'], [b'kji', b'Zabana'], [b'kjj', b'Khinalugh'], [b'kjk', b'Konjo, Highland'], [b'kjl', b'Kham, Western Parbate'], [b'kjm', 'Kh\xe1ng'], [b'kjn', b'Kunjen'], [b'kjo', b'Kinnauri, Harijan'], [b'kjp', b'Karen, Pwo Eastern'], [b'kjq', b'Keres, Western'], [b'kjr', b'Kurudu'], [b'kjs', b'Kewa, East'], [b'kjt', b'Karen, Phrae Pwo'], [b'kju', b'Kashaya'], [b'kjx', b'Ramopa'], [b'kjy', b'Erave'], [b'kjz', b'Bumthangkha'], [b'kka', b'Kakanda'], [b'kkb', b'Kwerisa'], [b'kkc', b'Odoodee'], [b'kkd', b'Kinuku'], [b'kke', b'Kakabe'], [b'kkf', b'Monpa, Kalaktang'], [b'kkg', b'Kalinga, Mabaka Valley'], [b'kkh', 'Kh\xfcn'], [b'kki', b'Kagulu'], [b'kkj', b'Kako'], [b'kkk', b'Kokota'], [b'kkl', b'Yale, Kosarek'], [b'kkm', b'Kiong'], [b'kkn', b'Kon Keu'], [b'kko', b'Karko'], [b'kkp', b'Gugubera'], [b'kkq', b'Kaiku'], [b'kkr', b'Kir-Balar'], [b'kks', b'Giiwo'], [b'kkt', b'Koi'], [b'kku', b'Tumi'], [b'kkv', b'Kangean'], [b'kkw', b'Teke-Kukuya'], [b'kkx', b'Kohin'], [b'kky', b'Guguyimidjir'], [b'kkz', b'Kaska'], [b'kla', b'Klamath-Modoc'], [b'klb', b'Kiliwa'], [b'klc', b'Kolbila'], [b'kld', b'Gamilaraay'], [b'kle', b'Kulung (Nepal)'], [b'klf', b'Kendeje'], [b'klg', b'Tagakaulo'], [b'klh', b'Weliki'], [b'kli', b'Kalumpang'], [b'klj', b'Khalaj, Turkic'], [b'klk', b'Kono (Nigeria)'], [b'kll', b'Kalagan, Kagan'], [b'klm', b'Migum'], [b'kln', b'Kalenjin'], [b'klo', b'Kapya'], [b'klp', b'Kamasa'], [b'klq', b'Rumu'], [b'klr', b'Khaling'], [b'kls', b'Kalasha'], [b'klt', b'Nukna'], [b'klu', b'Klao'], [b'klv', b'Maskelynes'], [b'klw', b'Lindu'], [b'klx', b'Koluwawa'], [b'kly', b'Kalao'], [b'klz', b'Kabola'], [b'kma', b'Konni'], [b'kmb', b'Kimbundu'], [b'kmc', b'Dong, Southern'], [b'kmd', b'Kalinga, Majukayang'], [b'kme', b'Bakole'], [b'kmf', b'Kare (Papua New Guinea)'], [b'kmg', 'K\xe2te'], [b'kmh', b'Kalam'], [b'kmi', b'Kami (Nigeria)'], [b'kmj', b'Kumarbhag Paharia'], [b'kmk', b'Kalinga, Limos'], [b'kml', b'Kalinga, Tanudan'], [b'kmm', b'Kom (India)'], [b'kmn', b'Awtuw'], [b'kmo', b'Kwoma'], [b'kmp', b'Gimme'], [b'kmq', b'Kwama'], [b'kmr', b'Kurdish, Northern'], [b'kms', b'Kamasau'], [b'kmt', b'Kemtuik'], [b'kmu', b'Kanite'], [b'kmv', 'Creole French, Karip\xfana'], [b'kmw', b'Komo (Democratic Republic of Congo)'], [b'kmx', b'Waboda'], [b'kmy', b'Koma'], [b'kmz', b'Khorasani Turkish'], [b'kna', b'Dera (Nigeria)'], [b'knb', b'Kalinga, Lubuagan'], [b'knc', b'Kanuri, Central'], [b'knd', b'Konda'], [b'kne', b'Kankanaey'], [b'knf', b'Mankanya'], [b'kng', b'Koongo'], [b'kni', b'Kanufi'], [b'knj', b'Kanjobal, Western'], [b'knk', b'Kuranko'], [b'knl', b'Keninjal'], [b'knm', 'Kanamar\xed'], [b'knn', b'Konkani (individual language)'], [b'kno', b'Kono (Sierra Leone)'], [b'knp', b'Kwanja'], [b'knq', b'Kintaq'], [b'knr', b'Kaningra'], [b'kns', b'Kensiu'], [b'knt', 'Katuk\xedna, Panoan'], [b'knu', b'Kono (Guinea)'], [b'knv', b'Tabo'], [b'knw', b'Kung-Ekoka'], [b'knx', b'Kendayan'], [b'kny', b'Kanyok'], [b'knz', 'Kalams\xe9'], [b'koa', b'Konomala'], [b'koc', b'Kpati'], [b'kod', b'Kodi'], [b'koe', b'Kacipo-Balesi'], [b'kof', b'Kubi'], [b'kog', b'Cogui'], [b'koh', b'Koyo'], [b'koi', b'Komi-Permyak'], [b'koj', b'Sara Dunjo'], [b'kok', b'Konkani (macrolanguage)'], [b'kol', b'Kol (Papua New Guinea)'], [b'kom', b'Komi'], [b'kon', b'Kongo'], [b'koo', b'Konzo'], [b'kop', b'Waube'], [b'koq', b'Kota (Gabon)'], [b'kor', b'Korean'], [b'kos', b'Kosraean'], [b'kot', b'Lagwan'], [b'kou', b'Koke'], [b'kov', b'Kudu-Camo'], [b'kow', b'Kugama'], [b'kox', b'Coxima'], [b'koy', b'Koyukon'], [b'koz', b'Korak'], [b'kpa', b'Kutto'], [b'kpb', b'Kurumba, Mullu'], [b'kpc', b'Curripaco'], [b'kpd', b'Koba'], [b'kpe', b'Kpelle'], [b'kpf', b'Komba'], [b'kpg', b'Kapingamarangi'], [b'kph', b'Kplang'], [b'kpi', b'Kofei'], [b'kpj', 'Karaj\xe1'], [b'kpk', b'Kpan'], [b'kpl', b'Kpala'], [b'kpm', b'Koho'], [b'kpn', 'Kepkiriw\xe1t'], [b'kpo', b'Ikposo'], [b'kpq', b'Korupun-Sela'], [b'kpr', b'Korafe-Yegha'], [b'kps', b'Tehit'], [b'kpt', b'Karata'], [b'kpu', b'Kafoa'], [b'kpv', b'Komi-Zyrian'], [b'kpw', b'Kobon'], [b'kpx', b'Koiali, Mountain'], [b'kpy', b'Koryak'], [b'kpz', b'Kupsabiny'], [b'kqa', b'Mum'], [b'kqb', b'Kovai'], [b'kqc', b'Doromu-Koki'], [b'kqd', b'Koy Sanjaq Surat'], [b'kqe', b'Kalagan'], [b'kqf', b'Kakabai'], [b'kqg', b'Khe'], [b'kqh', b'Kisankasa'], [b'kqi', b'Koitabu'], [b'kqj', b'Koromira'], [b'kqk', b'Gbe, Kotafon'], [b'kql', b'Kyenele'], [b'kqm', b'Khisa'], [b'kqn', b'Kaonde'], [b'kqo', b'Krahn, Eastern'], [b'kqp', 'Kimr\xe9'], [b'kqq', b'Krenak'], [b'kqr', b'Kimaragang'], [b'kqs', b'Kissi, Northern'], [b'kqt', b'Kadazan, Klias River'], [b'kqu', b'Seroa'], [b'kqv', b'Okolod'], [b'kqw', b'Kandas'], [b'kqx', b'Mser'], [b'kqy', b'Koorete'], [b'kqz', b'Korana'], [b'kra', b'Kumhali'], [b'krb', b'Karkin'], [b'krc', b'Karachay-Balkar'], [b'krd', b'Kairui-Midiki'], [b'kre', 'Panar\xe1'], [b'krf', b'Koro (Vanuatu)'], [b'krh', b'Kurama'], [b'kri', b'Krio'], [b'krj', b'Kinaray-A'], [b'krk', b'Kerek'], [b'krl', b'Karelian'], [b'krm', b'Krim'], [b'krn', b'Sapo'], [b'krp', b'Korop'], [b'krr', b"Kru'ng 2"], [b'krs', b'Gbaya (Sudan)'], [b'krt', b'Kanuri, Tumari'], [b'kru', b'Kurukh'], [b'krv', b'Kavet'], [b'krw', b'Krahn, Western'], [b'krx', b'Karon'], [b'kry', b'Kryts'], [b'krz', b'Kanum, Sota'], [b'ksa', b'Shuwa-Zamani'], [b'ksb', b'Shambala'], [b'ksc', b'Kalinga, Southern'], [b'ksd', b'Kuanua'], [b'kse', b'Kuni'], [b'ksf', b'Bafia'], [b'ksg', b'Kusaghe'], [b'ksh', 'K\xf6lsch'], [b'ksi', b'Krisa'], [b'ksj', b'Uare'], [b'ksk', b'Kansa'], [b'ksl', b'Kumalu'], [b'ksm', b'Kumba'], [b'ksn', b'Kasiguranin'], [b'kso', b'Kofa'], [b'ksp', b'Kaba'], [b'ksq', b'Kwaami'], [b'ksr', b'Borong'], [b'kss', b'Kisi, Southern'], [b'kst', 'Winy\xe9'], [b'ksu', b'Khamyang'], [b'ksv', b'Kusu'], [b'ksw', b"Karen, S'gaw"], [b'ksx', b'Kedang'], [b'ksy', b'Kharia Thar'], [b'ksz', b'Kodaku'], [b'kta', b'Katua'], [b'ktb', b'Kambaata'], [b'ktc', b'Kholok'], [b'ktd', b'Kokata'], [b'kte', b'Nubri'], [b'ktf', b'Kwami'], [b'ktg', b'Kalkutung'], [b'kth', b'Karanga'], [b'kti', b'Muyu, North'], [b'ktj', b'Krumen, Plapo'], [b'ktk', b'Kaniet'], [b'ktl', b'Koroshi'], [b'ktm', b'Kurti'], [b'ktn', 'Kariti\xe2na'], [b'kto', b'Kuot'], [b'ktp', b'Kaduo'], [b'ktq', b'Katabaga'], [b'ktr', b'Kota Marudu Tinagas'], [b'kts', b'Muyu, South'], [b'ktt', b'Ketum'], [b'ktu', b'Kituba (Democratic Republic of Congo)'], [b'ktv', b'Katu, Eastern'], [b'ktw', b'Kato'], [b'ktx', 'Kaxarar\xed'], [b'kty', 'Kango (Bas-U\xe9l\xe9 District)'], [b'ktz', b"Ju/'hoan"], [b'kua', b'Kuanyama'], [b'kub', b'Kutep'], [b'kuc', b'Kwinsu'], [b'kud', b"'Auhelawa"], [b'kue', b'Kuman'], [b'kuf', b'Katu, Western'], [b'kug', b'Kupa'], [b'kuh', b'Kushi'], [b'kui', 'Kuik\xfaro-Kalap\xe1lo'], [b'kuj', b'Kuria'], [b'kuk', b"Kepo'"], [b'kul', b'Kulere'], [b'kum', b'Kumyk'], [b'kun', b'Kunama'], [b'kuo', b'Kumukio'], [b'kup', b'Kunimaipa'], [b'kuq', b'Karipuna'], [b'kur', b'Kurdish'], [b'kus', b'Kusaal'], [b'kut', b'Kutenai'], [b'kuu', b'Kuskokwim, Upper'], [b'kuv', b'Kur'], [b'kuw', b'Kpagua'], [b'kux', b'Kukatja'], [b'kuy', b"Kuuku-Ya'u"], [b'kuz', b'Kunza'], [b'kva', b'Bagvalal'], [b'kvb', b'Kubu'], [b'kvc', b'Kove'], [b'kvd', b'Kui (Indonesia)'], [b'kve', b'Kalabakan'], [b'kvf', b'Kabalai'], [b'kvg', b'Kuni-Boazi'], [b'kvh', b'Komodo'], [b'kvi', b'Kwang'], [b'kvj', b'Psikye'], [b'kvk', b'Korean Sign Language'], [b'kvl', b'Kayaw'], [b'kvm', b'Kendem'], [b'kvn', b'Kuna, Border'], [b'kvo', b'Dobel'], [b'kvp', b'Kompane'], [b'kvq', b'Karen, Geba'], [b'kvr', b'Kerinci'], [b'kvs', b'Kunggara'], [b'kvt', b'Karen, Lahta'], [b'kvu', b'Karen, Yinbaw'], [b'kvv', b'Kola'], [b'kvw', b'Wersing'], [b'kvx', b'Koli, Parkari'], [b'kvy', b'Karen, Yintale'], [b'kvz', b'Tsakwambo'], [b'kwa', 'D\xe2w'], [b'kwb', b'Kwa'], [b'kwc', b'Likwala'], [b'kwd', b'Kwaio'], [b'kwe', b'Kwerba'], [b'kwf', b"Kwara'ae"], [b'kwg', b'Sara Kaba Deme'], [b'kwh', b'Kowiai'], [b'kwi', b'Awa-Cuaiquer'], [b'kwj', b'Kwanga'], [b'kwk', b'Kwakiutl'], [b'kwl', b'Kofyar'], [b'kwm', b'Kwambi'], [b'kwn', b'Kwangali'], [b'kwo', b'Kwomtari'], [b'kwp', b'Kodia'], [b'kwq', b'Kwak'], [b'kwr', b'Kwer'], [b'kws', b'Kwese'], [b'kwt', b'Kwesten'], [b'kwu', b'Kwakum'], [b'kwv', 'Sara Kaba N\xe1\xe0'], [b'kww', b'Kwinti'], [b'kwx', b'Khirwar'], [b'kwy', b'Kongo, San Salvador'], [b'kwz', b'Kwadi'], [b'kxa', b'Kairiru'], [b'kxb', b'Krobu'], [b'kxc', b'Konso'], [b'kxd', b'Brunei'], [b'kxe', b'Kakihum'], [b'kxf', b'Karen, Manumanaw'], [b'kxh', b'Karo (Ethiopia)'], [b'kxi', b'Murut, Keningau'], [b'kxj', b'Kulfa'], [b'kxk', b'Karen, Zayein'], [b'kxl', b'Kurux, Nepali'], [b'kxm', b'Khmer, Northern'], [b'kxn', b'Melanau, Kanowit-Tanjong'], [b'kxo', 'Kano\xe9'], [b'kxp', b'Koli, Wadiyara'], [b'kxq', 'Kanum, Sm\xe4rky'], [b'kxr', b'Koro (Papua New Guinea)'], [b'kxs', b'Kangjia'], [b'kxt', b'Koiwat'], [b'kxu', b'Kui (India)'], [b'kxv', b'Kuvi'], [b'kxw', b'Konai'], [b'kxx', b'Likuba'], [b'kxy', b'Kayong'], [b'kxz', b'Kerewo'], [b'kya', b'Kwaya'], [b'kyb', b'Kalinga, Butbut'], [b'kyc', b'Kyaka'], [b'kyd', b'Karey'], [b'kye', b'Krache'], [b'kyf', b'Kouya'], [b'kyg', b'Keyagana'], [b'kyh', b'Karok'], [b'kyi', b'Kiput'], [b'kyj', b'Karao'], [b'kyk', b'Kamayo'], [b'kyl', b'Kalapuya'], [b'kym', b'Kpatili'], [b'kyn', b'Binukidnon, Northern'], [b'kyo', b'Kelon'], [b'kyp', b'Kang'], [b'kyq', b'Kenga'], [b'kyr', 'Kuru\xe1ya'], [b'kys', b'Kayan, Baram'], [b'kyt', b'Kayagar'], [b'kyu', b'Kayah, Western'], [b'kyv', b'Kayort'], [b'kyw', b'Kudmali'], [b'kyx', b'Rapoisi'], [b'kyy', b'Kambaira'], [b'kyz', 'Kayab\xed'], [b'kza', b'Karaboro, Western'], [b'kzb', b'Kaibobo'], [b'kzc', b'Kulango, Bondoukou'], [b'kzd', b'Kadai'], [b'kze', b'Kosena'], [b'kzf', b"Kaili, Da'a"], [b'kzg', b'Kikai'], [b'kzi', b'Kelabit'], [b'kzj', b'Kadazan, Coastal'], [b'kzk', b'Kazukuru'], [b'kzl', b'Kayeli'], [b'kzm', b'Kais'], [b'kzn', b'Kokola'], [b'kzo', b'Kaningi'], [b'kzp', b'Kaidipang'], [b'kzq', b'Kaike'], [b'kzr', b'Karang'], [b'kzs', b'Dusun, Sugut'], [b'kzt', b'Dusun, Tambunan'], [b'kzu', b'Kayupulau'], [b'kzv', b'Komyandaret'], [b'kzw', 'Karir\xed-Xoc\xf3'], [b'kzx', b'Kamarian'], [b'kzy', b'Kango (Tshopo District)'], [b'kzz', b'Kalabra'], [b'laa', b'Subanen, Southern'], [b'lab', b'Linear A'], [b'lac', b'Lacandon'], [b'lad', b'Ladino'], [b'lae', b'Pattani'], [b'laf', b'Lafofa'], [b'lag', b'Langi'], [b'lah', b'Lahnda'], [b'lai', b'Lambya'], [b'laj', b'Lango (Uganda)'], [b'lak', b'Laka (Nigeria)'], [b'lal', b'Lalia'], [b'lam', b'Lamba'], [b'lan', b'Laru'], [b'lao', b'Lao'], [b'lap', b'Laka (Chad)'], [b'laq', b'Qabiao'], [b'lar', b'Larteh'], [b'las', b'Lama (Togo)'], [b'lat', b'Latin'], [b'lau', b'Laba'], [b'lav', b'Latvian'], [b'law', b'Lauje'], [b'lax', b'Tiwa'], [b'lay', b'Lama (Myanmar)'], [b'laz', b'Aribwatsa'], [b'lba', b'Lui'], [b'lbb', b'Label'], [b'lbc', b'Lakkia'], [b'lbe', b'Lak'], [b'lbf', b'Tinani'], [b'lbg', b'Laopang'], [b'lbi', b"La'bi"], [b'lbj', b'Ladakhi'], [b'lbk', b'Bontok, Central'], [b'lbl', b'Bikol, Libon'], [b'lbm', b'Lodhi'], [b'lbn', b'Lamet'], [b'lbo', b'Laven'], [b'lbq', b'Wampar'], [b'lbr', b'Lohorung'], [b'lbs', b'Libyan Sign Language'], [b'lbt', b'Lachi'], [b'lbu', b'Labu'], [b'lbv', b'Lavatbura-Lamusong'], [b'lbw', b'Tolaki'], [b'lbx', b'Lawangan'], [b'lby', b'Lamu-Lamu'], [b'lbz', b'Lardil'], [b'lcc', b'Legenyem'], [b'lcd', b'Lola'], [b'lce', b'Loncong'], [b'lcf', b'Lubu'], [b'lch', b'Luchazi'], [b'lcl', b'Lisela'], [b'lcm', b'Tungag'], [b'lcp', b'Lawa, Western'], [b'lcq', b'Luhu'], [b'lcs', b'Lisabata-Nuniali'], [b'lda', b'Kla-Dan'], [b'ldb', 'Du\u0303ya'], [b'ldd', b'Luri'], [b'ldg', b'Lenyima'], [b'ldh', b'Lamja-Dengsa-Tola'], [b'ldi', b'Laari'], [b'ldj', b'Lemoro'], [b'ldk', b'Leelau'], [b'ldl', b'Kaan'], [b'ldm', b'Landoma'], [b'ldn', 'L\xe1adan'], [b'ldo', b'Loo'], [b'ldp', b'Tso'], [b'ldq', b'Lufu'], [b'lea', b'Lega-Shabunda'], [b'leb', b'Lala-Bisa'], [b'lec', b'Leco'], [b'led', b'Lendu'], [b'lee', 'Ly\xe9l\xe9'], [b'lef', b'Lelemi'], [b'leg', b'Lengua'], [b'leh', b'Lenje'], [b'lei', b'Lemio'], [b'lej', b'Lengola'], [b'lek', b'Leipon'], [b'lel', b'Lele (Democratic Republic of Congo)'], [b'lem', b'Nomaande'], [b'len', b'Lenca'], [b'leo', b'Leti (Cameroon)'], [b'lep', b'Lepcha'], [b'leq', b'Lembena'], [b'ler', b'Lenkau'], [b'les', b'Lese'], [b'let', b'Lesing-Gelimi'], [b'leu', b'Kara (Papua New Guinea)'], [b'lev', b'Lamma'], [b'lew', b'Kaili, Ledo'], [b'lex', b'Luang'], [b'ley', b'Lemolang'], [b'lez', b'Lezghian'], [b'lfa', b'Lefa'], [b'lfn', b'Lingua Franca Nova'], [b'lga', b'Lungga'], [b'lgb', b'Laghu'], [b'lgg', b'Lugbara'], [b'lgh', b'Laghuu'], [b'lgi', b'Lengilu'], [b'lgk', b'Lingarak'], [b'lgl', b'Wala'], [b'lgm', b'Lega-Mwenga'], [b'lgn', b'Opuuo'], [b'lgq', b'Logba'], [b'lgr', b'Lengo'], [b'lgt', b'Pahi'], [b'lgu', b'Longgu'], [b'lgz', b'Ligenza'], [b'lha', b'Laha (Viet Nam)'], [b'lhh', b'Laha (Indonesia)'], [b'lhi', b'Lahu Shi'], [b'lhl', b'Lohar, Lahul'], [b'lhm', b'Lhomi'], [b'lhn', b'Lahanan'], [b'lhp', b'Lhokpu'], [b'lhs', 'Mlahs\xf6'], [b'lht', b'Lo-Toga'], [b'lhu', b'Lahu'], [b'lia', b'Limba, West-Central'], [b'lib', b'Likum'], [b'lic', b'Hlai'], [b'lid', b'Nyindrou'], [b'lie', b'Likila'], [b'lif', b'Limbu'], [b'lig', b'Ligbi'], [b'lih', b'Lihir'], [b'lii', b'Lingkhim'], [b'lij', b'Ligurian'], [b'lik', b'Lika'], [b'lil', b'Lillooet'], [b'lim', b'Limburgan'], [b'lin', b'Lingala'], [b'lio', b'Liki'], [b'lip', b'Sekpele'], [b'liq', b'Libido'], [b'lir', b'English, Liberian'], [b'lis', b'Lisu'], [b'lit', b'Lithuanian'], [b'liu', b'Logorik'], [b'liv', b'Liv'], [b'liw', b'Col'], [b'lix', b'Liabuku'], [b'liy', b'Banda-Bambari'], [b'liz', b'Libinza'], [b'lja', b'Golpa'], [b'lje', b'Rampi'], [b'lji', b'Laiyolo'], [b'ljl', b"Li'o"], [b'ljp', b'Lampung Api'], [b'ljw', b'Yirandali'], [b'ljx', b'Yuru'], [b'lka', b'Lakalei'], [b'lkb', b'Kabras'], [b'lkc', b'Kucong'], [b'lkd', 'Lakond\xea'], [b'lke', b'Kenyi'], [b'lkh', b'Lakha'], [b'lki', b'Laki'], [b'lkj', b'Remun'], [b'lkl', b'Laeko-Libuat'], [b'lkm', b'Kalaamaya'], [b'lkn', b'Lakon'], [b'lko', b'Khayo'], [b'lkr', 'P\xe4ri'], [b'lks', b'Kisa'], [b'lkt', b'Lakota'], [b'lku', b'Kungkari'], [b'lky', b'Lokoya'], [b'lla', b'Lala-Roba'], [b'llb', b'Lolo'], [b'llc', b'Lele (Guinea)'], [b'lld', b'Ladin'], [b'lle', b'Lele (Papua New Guinea)'], [b'llf', b'Hermit'], [b'llg', b'Lole'], [b'llh', b'Lamu'], [b'lli', b'Teke-Laali'], [b'llj', b'Ladji Ladji'], [b'llk', b'Lelak'], [b'lll', b'Lilau'], [b'llm', b'Lasalimu'], [b'lln', b'Lele (Chad)'], [b'llo', b'Khlor'], [b'llp', b'Efate, North'], [b'llq', b'Lolak'], [b'lls', b'Lithuanian Sign Language'], [b'llu', b'Lau'], [b'llx', b'Lauan'], [b'lma', b'Limba, East'], [b'lmb', b'Merei'], [b'lmc', b'Limilngan'], [b'lmd', b'Lumun'], [b'lme', 'P\xe9v\xe9'], [b'lmf', b'Lembata, South'], [b'lmg', b'Lamogai'], [b'lmh', b'Lambichhong'], [b'lmi', b'Lombi'], [b'lmj', b'Lembata, West'], [b'lmk', b'Lamkang'], [b'lml', b'Hano'], [b'lmm', b'Lamam'], [b'lmn', b'Lambadi'], [b'lmo', b'Lombard'], [b'lmp', b'Limbum'], [b'lmq', b'Lamatuka'], [b'lmr', b'Lamalera'], [b'lmu', b'Lamenu'], [b'lmv', b'Lomaiviti'], [b'lmw', b'Miwok, Lake'], [b'lmx', b'Laimbue'], [b'lmy', b'Lamboya'], [b'lmz', b'Lumbee'], [b'lna', b'Langbashe'], [b'lnb', b'Mbalanhu'], [b'lnd', b'Lundayeh'], [b'lng', b'Langobardic'], [b'lnh', b'Lanoh'], [b'lni', b"Daantanai'"], [b'lnj', b'Leningitij'], [b'lnl', b'Banda, South Central'], [b'lnm', b'Langam'], [b'lnn', b'Lorediakarkar'], [b'lno', b'Lango (Sudan)'], [b'lns', b"Lamnso'"], [b'lnu', b'Longuda'], [b'lnw', b'Lanima'], [b'lnz', b'Lonzo'], [b'loa', b'Loloda'], [b'lob', b'Lobi'], [b'loc', b'Inonhan'], [b'loe', b'Saluan'], [b'lof', b'Logol'], [b'log', b'Logo'], [b'loh', b'Narim'], [b'loi', "Loma (C\xf4te d'Ivoire)"], [b'loj', b'Lou'], [b'lok', b'Loko'], [b'lol', b'Mongo'], [b'lom', b'Loma (Liberia)'], [b'lon', b'Lomwe, Malawi'], [b'loo', b'Lombo'], [b'lop', b'Lopa'], [b'loq', b'Lobala'], [b'lor', 'T\xe9\xe9n'], [b'los', b'Loniu'], [b'lot', b'Otuho'], [b'lou', b'Creole French, Louisiana'], [b'lov', b'Lopi'], [b'low', b'Lobu, Tampias'], [b'lox', b'Loun'], [b'loy', b'Loke'], [b'loz', b'Lozi'], [b'lpa', b'Lelepa'], [b'lpe', b'Lepki'], [b'lpn', b'Naga, Long Phuri'], [b'lpo', b'Lipo'], [b'lpx', b'Lopit'], [b'lra', b"Rara Bakati'"], [b'lrc', b'Luri, Northern'], [b'lre', b'Laurentian'], [b'lrg', b'Laragia'], [b'lri', b'Marachi'], [b'lrk', b'Loarki'], [b'lrl', b'Lari'], [b'lrm', b'Marama'], [b'lrn', b'Lorang'], [b'lro', b'Laro'], [b'lrr', b'Yamphu, Southern'], [b'lrt', b'Malay, Larantuka'], [b'lrv', b'Larevat'], [b'lrz', b'Lemerig'], [b'lsa', b'Lasgerdi'], [b'lsd', b'Lishana Deni'], [b'lse', b'Lusengo'], [b'lsg', b'Lyons Sign Language'], [b'lsh', b'Lish'], [b'lsi', b'Lashi'], [b'lsl', b'Latvian Sign Language'], [b'lsm', b'Saamia'], [b'lso', b'Laos Sign Language'], [b'lsp', b'Panamanian Sign Language'], [b'lsr', b'Aruop'], [b'lss', b'Lasi'], [b'lst', b'Trinidad and Tobago Sign Language'], [b'lsy', b'Mauritian Sign Language'], [b'ltc', b'Chinese, Late Middle'], [b'ltg', b'Latgalian'], [b'lti', b'Leti (Indonesia)'], [b'ltn', 'Latund\xea'], [b'lto', b'Tsotso'], [b'lts', b'Tachoni'], [b'ltu', b'Latu'], [b'ltz', b'Luxembourgish'], [b'lua', b'Luba-Lulua'], [b'lub', b'Luba-Katanga'], [b'luc', b'Aringa'], [b'lud', b'Ludian'], [b'lue', b'Luvale'], [b'luf', b'Laua'], [b'lug', b'Ganda'], [b'lui', b'Luiseno'], [b'luj', b'Luna'], [b'luk', b'Lunanakha'], [b'lul', b"Olu'bo"], [b'lum', b'Luimbi'], [b'lun', b'Lunda'], [b'luo', b'Luo (Kenya and Tanzania)'], [b'lup', b'Lumbu'], [b'luq', b'Lucumi'], [b'lur', b'Laura'], [b'lus', b'Lushai'], [b'lut', b'Lushootseed'], [b'luu', b'Lumba-Yakkha'], [b'luv', b'Luwati'], [b'luw', b'Luo (Cameroon)'], [b'luy', b'Luyia'], [b'luz', b'Luri, Southern'], [b'lva', b"Maku'a"], [b'lvk', b'Lavukaleve'], [b'lvs', b'Latvian, Standard'], [b'lvu', b'Levuka'], [b'lwa', b'Lwalu'], [b'lwe', b'Lewo Eleng'], [b'lwg', b'Wanga'], [b'lwh', b'Lachi, White'], [b'lwl', b'Lawa, Eastern'], [b'lwm', b'Laomian'], [b'lwo', b'Luwo'], [b'lwt', b'Lewotobi'], [b'lwu', b'Lawu'], [b'lww', b'Lewo'], [b'lya', b'Layakha'], [b'lyg', b'Lyngngam'], [b'lyn', b'Luyana'], [b'lzh', b'Chinese, Literary'], [b'lzl', b'Litzlitz'], [b'lzn', b'Naga, Leinong'], [b'lzz', b'Laz'], [b'maa', 'Mazatec, San Jer\xf3nimo Tec\xf3atl'], [b'mab', b'Mixtec, Yutanduchi'], [b'mad', b'Madurese'], [b'mae', b'Bo-Rukul'], [b'maf', b'Mafa'], [b'mag', b'Magahi'], [b'mah', b'Marshallese'], [b'mai', b'Maithili'], [b'maj', 'Mazatec, Jalapa De D\xedaz'], [b'mak', b'Makasar'], [b'mal', b'Malayalam'], [b'mam', b'Mam'], [b'man', b'Mandingo'], [b'maq', 'Mazatec, Chiquihuitl\xe1n'], [b'mar', b'Marathi'], [b'mas', b'Masai'], [b'mat', b'Matlatzinca, San Francisco'], [b'mau', b'Mazatec, Huautla'], [b'mav', 'Sater\xe9-Maw\xe9'], [b'maw', b'Mampruli'], [b'max', b'Malay, North Moluccan'], [b'maz', b'Mazahua, Central'], [b'mba', b'Higaonon'], [b'mbb', b'Manobo, Western Bukidnon'], [b'mbc', b'Macushi'], [b'mbd', b'Manobo, Dibabawon'], [b'mbe', b'Molale'], [b'mbf', b'Malay, Baba'], [b'mbh', b'Mangseng'], [b'mbi', b'Manobo, Ilianen'], [b'mbj', 'Nad\xebb'], [b'mbk', b'Malol'], [b'mbl', 'Maxakal\xed'], [b'mbm', b'Ombamba'], [b'mbn', 'Macagu\xe1n'], [b'mbo', b'Mbo (Cameroon)'], [b'mbp', b'Malayo'], [b'mbq', b'Maisin'], [b'mbr', 'Nukak Mak\xfa'], [b'mbs', b'Manobo, Sarangani'], [b'mbt', b'Manobo, Matigsalug'], [b'mbu', b'Mbula-Bwazza'], [b'mbv', b'Mbulungish'], [b'mbw', b'Maring'], [b'mbx', b'Mari (East Sepik Province)'], [b'mby', b'Memoni'], [b'mbz', b'Mixtec, Amoltepec'], [b'mca', b'Maca'], [b'mcb', b'Machiguenga'], [b'mcc', b'Bitur'], [b'mcd', b'Sharanahua'], [b'mce', b'Mixtec, Itundujia'], [b'mcf', 'Mats\xe9s'], [b'mcg', b'Mapoyo'], [b'mch', b'Maquiritari'], [b'mci', b'Mese'], [b'mcj', b'Mvanip'], [b'mck', b'Mbunda'], [b'mcl', b'Macaguaje'], [b'mcm', b'Creole Portuguese, Malaccan'], [b'mcn', b'Masana'], [b'mco', 'Mixe, Coatl\xe1n'], [b'mcp', b'Makaa'], [b'mcq', b'Ese'], [b'mcr', b'Menya'], [b'mcs', b'Mambai'], [b'mct', b'Mengisa'], [b'mcu', b'Mambila, Cameroon'], [b'mcv', b'Minanibai'], [b'mcw', b'Mawa (Chad)'], [b'mcx', b'Mpiemo'], [b'mcy', b'Watut, South'], [b'mcz', b'Mawan'], [b'mda', b'Mada (Nigeria)'], [b'mdb', b'Morigi'], [b'mdc', b'Male (Papua New Guinea)'], [b'mdd', b'Mbum'], [b'mde', b'Maba (Chad)'], [b'mdf', b'Moksha'], [b'mdg', b'Massalat'], [b'mdh', b'Maguindanaon'], [b'mdi', b'Mamvu'], [b'mdj', b'Mangbetu'], [b'mdk', b'Mangbutu'], [b'mdl', b'Maltese Sign Language'], [b'mdm', b'Mayogo'], [b'mdn', b'Mbati'], [b'mdp', b'Mbala'], [b'mdq', b'Mbole'], [b'mdr', b'Mandar'], [b'mds', b'Maria (Papua New Guinea)'], [b'mdt', b'Mbere'], [b'mdu', b'Mboko'], [b'mdv', 'Mixtec, Santa Luc\xeda Monteverde'], [b'mdw', b'Mbosi'], [b'mdx', b'Dizin'], [b'mdy', b'Male (Ethiopia)'], [b'mdz', 'Suru\xed Do Par\xe1'], [b'mea', b'Menka'], [b'meb', b'Ikobi'], [b'mec', b'Mara'], [b'med', b'Melpa'], [b'mee', b'Mengen'], [b'mef', b'Megam'], [b'meh', b'Mixtec, Southwestern Tlaxiaco'], [b'mei', b'Midob'], [b'mej', b'Meyah'], [b'mek', b'Mekeo'], [b'mel', b'Melanau, Central'], [b'mem', b'Mangala'], [b'men', b'Mende (Sierra Leone)'], [b'meo', b'Malay, Kedah'], [b'mep', b'Miriwung'], [b'meq', b'Merey'], [b'mer', b'Meru'], [b'mes', b'Masmaje'], [b'met', b'Mato'], [b'meu', b'Motu'], [b'mev', b'Mano'], [b'mew', b'Maaka'], [b'mey', b'Hassaniyya'], [b'mez', b'Menominee'], [b'mfa', b'Malay, Pattani'], [b'mfb', b'Bangka'], [b'mfc', b'Mba'], [b'mfd', b'Mendankwe-Nkwen'], [b'mfe', b'Morisyen'], [b'mff', b'Naki'], [b'mfg', b'Mogofin'], [b'mfh', b'Matal'], [b'mfi', b'Wandala'], [b'mfj', b'Mefele'], [b'mfk', b'Mofu, North'], [b'mfl', b'Putai'], [b'mfm', b'Marghi South'], [b'mfn', b'Mbembe, Cross River'], [b'mfo', b'Mbe'], [b'mfp', b'Malay, Makassar'], [b'mfq', b'Moba'], [b'mfr', b'Marithiel'], [b'mfs', b'Mexican Sign Language'], [b'mft', b'Mokerang'], [b'mfu', b'Mbwela'], [b'mfv', b'Mandjak'], [b'mfw', b'Mulaha'], [b'mfx', b'Melo'], [b'mfy', b'Mayo'], [b'mfz', b'Mabaan'], [b'mga', b'Irish, Middle (900-1200)'], [b'mgb', b'Mararit'], [b'mgc', b'Morokodo'], [b'mgd', b'Moru'], [b'mge', b'Mango'], [b'mgf', b'Maklew'], [b'mgg', b'Mpumpong'], [b'mgh', b'Makhuwa-Meetto'], [b'mgi', b'Lijili'], [b'mgj', b'Abureni'], [b'mgk', b'Mawes'], [b'mgl', b'Maleu-Kilenge'], [b'mgm', b'Mambae'], [b'mgn', b'Mbangi'], [b'mgo', b"Meta'"], [b'mgp', b'Magar, Eastern'], [b'mgq', b'Malila'], [b'mgr', b'Mambwe-Lungu'], [b'mgs', b'Manda (Tanzania)'], [b'mgt', b'Mongol'], [b'mgu', b'Mailu'], [b'mgv', b'Matengo'], [b'mgw', b'Matumbi'], [b'mgy', b'Mbunga'], [b'mgz', b'Mbugwe'], [b'mha', b'Manda (India)'], [b'mhb', b'Mahongwe'], [b'mhc', b'Mocho'], [b'mhd', b'Mbugu'], [b'mhe', b'Besisi'], [b'mhf', b'Mamaa'], [b'mhg', b'Margu'], [b'mhh', b'Maskoy Pidgin'], [b'mhi', b"Ma'di"], [b'mhj', b'Mogholi'], [b'mhk', b'Mungaka'], [b'mhl', b'Mauwake'], [b'mhm', b'Makhuwa-Moniga'], [b'mhn', 'M\xf3cheno'], [b'mho', b'Mashi (Zambia)'], [b'mhp', b'Malay, Balinese'], [b'mhq', b'Mandan'], [b'mhr', b'Mari, Eastern'], [b'mhs', b'Buru (Indonesia)'], [b'mht', b'Mandahuaca'], [b'mhu', b'Digaro-Mishmi'], [b'mhw', b'Mbukushu'], [b'mhx', b'Maru'], [b'mhy', b"Ma'anyan"], [b'mhz', b'Mor (Mor Islands)'], [b'mia', b'Miami'], [b'mib', 'Mixtec, Atatl\xe1huca'], [b'mic', b"Mi'kmaq"], [b'mid', b'Mandaic'], [b'mie', b'Mixtec, Ocotepec'], [b'mif', b'Mofu-Gudur'], [b'mig', b'Mixtec, San Miguel El Grande'], [b'mih', b'Mixtec, Chayuco'], [b'mii', 'Mixtec, Chigmecatitl\xe1n'], [b'mij', b'Abar'], [b'mik', b'Mikasuki'], [b'mil', 'Mixtec, Pe\xf1oles'], [b'mim', b'Mixtec, Alacatlatzala'], [b'min', b'Minangkabau'], [b'mio', b'Mixtec, Pinotepa Nacional'], [b'mip', b'Mixtec, Apasco-Apoala'], [b'miq', 'M\xedskito'], [b'mir', b'Mixe, Isthmus'], [b'mis', b'Uncoded languages'], [b'mit', b'Mixtec, Southern Puebla'], [b'miu', b'Mixtec, Cacaloxtepec'], [b'miw', b'Akoye'], [b'mix', b'Mixtec, Mixtepec'], [b'miy', b'Mixtec, Ayutla'], [b'miz', b'Mixtec, Coatzospan'], [b'mjc', b'Mixtec, San Juan Colorado'], [b'mjd', b'Maidu, Northwest'], [b'mje', b'Muskum'], [b'mjg', b'Tu'], [b'mjh', b'Mwera (Nyasa)'], [b'mji', b'Kim Mun'], [b'mjj', b'Mawak'], [b'mjk', b'Matukar'], [b'mjl', b'Mandeali'], [b'mjm', b'Medebur'], [b'mjn', b'Ma (Papua New Guinea)'], [b'mjo', b'Malankuravan'], [b'mjp', b'Malapandaram'], [b'mjq', b'Malaryan'], [b'mjr', b'Malavedan'], [b'mjs', b'Miship'], [b'mjt', b'Sauria Paharia'], [b'mju', b'Manna-Dora'], [b'mjv', b'Mannan'], [b'mjw', b'Karbi'], [b'mjx', b'Mahali'], [b'mjy', b'Mahican'], [b'mjz', b'Majhi'], [b'mka', b'Mbre'], [b'mkb', b'Mal Paharia'], [b'mkc', b'Siliput'], [b'mkd', b'Macedonian'], [b'mke', b'Mawchi'], [b'mkf', b'Miya'], [b'mkg', b'Mak (China)'], [b'mki', b'Dhatki'], [b'mkj', b'Mokilese'], [b'mkk', b'Byep'], [b'mkl', b'Mokole'], [b'mkm', b'Moklen'], [b'mkn', b'Malay, Kupang'], [b'mko', b'Mingang Doso'], [b'mkp', b'Moikodi'], [b'mkq', b'Miwok, Bay'], [b'mkr', b'Malas'], [b'mks', b'Mixtec, Silacayoapan'], [b'mkt', b'Vamale'], [b'mku', b'Maninka, Konyanka'], [b'mkv', b'Mafea'], [b'mkw', b'Kituba (Congo)'], [b'mkx', b'Manobo, Kinamiging'], [b'mky', b'Makian, East'], [b'mkz', b'Makasae'], [b'mla', b'Malo'], [b'mlb', b'Mbule'], [b'mlc', b'Cao Lan'], [b'mle', b'Manambu'], [b'mlf', b'Mal'], [b'mlg', b'Malagasy'], [b'mlh', b'Mape'], [b'mli', b'Malimpung'], [b'mlj', b'Miltu'], [b'mlk', b'Ilwana'], [b'mll', b'Malua Bay'], [b'mlm', b'Mulam'], [b'mln', b'Malango'], [b'mlo', b'Mlomp'], [b'mlp', b'Bargam'], [b'mlq', b'Maninkakan, Western'], [b'mlr', b'Vame'], [b'mls', b'Masalit'], [b'mlt', b'Maltese'], [b'mlu', b"To'abaita"], [b'mlv', b'Motlav'], [b'mlw', b'Moloko'], [b'mlx', b'Malfaxal'], [b'mlz', b'Malaynon'], [b'mma', b'Mama'], [b'mmb', b'Momina'], [b'mmc', 'Mazahua, Michoac\xe1n'], [b'mmd', b'Maonan'], [b'mme', b'Mae'], [b'mmf', b'Mundat'], [b'mmg', b'Ambrym, North'], [b'mmh', 'Mehin\xe1ku'], [b'mmi', b'Musar'], [b'mmj', b'Majhwar'], [b'mmk', b'Mukha-Dora'], [b'mml', b'Man Met'], [b'mmm', b'Maii'], [b'mmn', b'Mamanwa'], [b'mmo', b'Buang, Mangga'], [b'mmp', b'Siawi'], [b'mmq', b'Musak'], [b'mmr', b'Miao, Western Xiangxi'], [b'mmt', b'Malalamai'], [b'mmu', b'Mmaala'], [b'mmv', b'Miriti'], [b'mmw', b'Emae'], [b'mmx', b'Madak'], [b'mmy', b'Migaama'], [b'mmz', b'Mabaale'], [b'mna', b'Mbula'], [b'mnb', b'Muna'], [b'mnc', b'Manchu'], [b'mnd', 'Mond\xe9'], [b'mne', b'Naba'], [b'mnf', b'Mundani'], [b'mng', b'Mnong, Eastern'], [b'mnh', b'Mono (Democratic Republic of Congo)'], [b'mni', b'Manipuri'], [b'mnj', b'Munji'], [b'mnk', b'Mandinka'], [b'mnl', b'Tiale'], [b'mnm', b'Mapena'], [b'mnn', b'Mnong, Southern'], [b'mnp', b'Chinese, Min Bei'], [b'mnq', b'Minriq'], [b'mnr', b'Mono (USA)'], [b'mns', b'Mansi'], [b'mnu', b'Mer'], [b'mnv', b'Rennell-Bellona'], [b'mnw', b'Mon'], [b'mnx', b'Manikion'], [b'mny', b'Manyawa'], [b'mnz', b'Moni'], [b'moa', b'Mwan'], [b'moc', 'Mocov\xed'], [b'mod', b'Mobilian'], [b'moe', b'Montagnais'], [b'mog', b'Mongondow'], [b'moh', b'Mohawk'], [b'moi', b'Mboi'], [b'moj', b'Monzombo'], [b'mok', b'Morori'], [b'mom', b'Mangue'], [b'mon', b'Mongolian'], [b'moo', b'Monom'], [b'mop', 'Mop\xe1n Maya'], [b'moq', b'Mor (Bomberai Peninsula)'], [b'mor', b'Moro'], [b'mos', b'Mossi'], [b'mot', 'Bar\xed'], [b'mou', b'Mogum'], [b'mov', b'Mohave'], [b'mow', b'Moi (Congo)'], [b'mox', b'Molima'], [b'moy', b'Shekkacho'], [b'moz', b'Mukulu'], [b'mpa', b'Mpoto'], [b'mpb', b'Mullukmulluk'], [b'mpc', b'Mangarayi'], [b'mpd', b'Machinere'], [b'mpe', b'Majang'], [b'mpg', b'Marba'], [b'mph', b'Maung'], [b'mpi', b'Mpade'], [b'mpj', b'Martu Wangka'], [b'mpk', b'Mbara (Chad)'], [b'mpl', b'Watut, Middle'], [b'mpm', 'Mixtec, Yosond\xfaa'], [b'mpn', b'Mindiri'], [b'mpo', b'Miu'], [b'mpp', b'Migabac'], [b'mpq', 'Mat\xeds'], [b'mpr', b'Vangunu'], [b'mps', b'Dadibi'], [b'mpt', b'Mian'], [b'mpu', 'Makur\xe1p'], [b'mpv', b'Mungkip'], [b'mpw', b'Mapidian'], [b'mpx', b'Misima-Panaeati'], [b'mpy', b'Mapia'], [b'mpz', b'Mpi'], [b'mqa', b'Maba (Indonesia)'], [b'mqb', b'Mbuko'], [b'mqc', b'Mangole'], [b'mqe', b'Matepi'], [b'mqf', b'Momuna'], [b'mqg', b'Malay, Kota Bangun Kutai'], [b'mqh', b'Mixtec, Tlazoyaltepec'], [b'mqi', b'Mariri'], [b'mqj', b'Mamasa'], [b'mqk', b'Manobo, Rajah Kabunsuwan'], [b'mql', b'Mbelime'], [b'mqm', b'Marquesan, South'], [b'mqn', b'Moronene'], [b'mqo', b'Modole'], [b'mqp', b'Manipa'], [b'mqq', b'Minokok'], [b'mqr', b'Mander'], [b'mqs', b'Makian, West'], [b'mqt', b'Mok'], [b'mqu', b'Mandari'], [b'mqv', b'Mosimo'], [b'mqw', b'Murupi'], [b'mqx', b'Mamuju'], [b'mqy', b'Manggarai'], [b'mqz', b'Pano'], [b'mra', b'Mlabri'], [b'mrb', b'Marino'], [b'mrc', b'Maricopa'], [b'mrd', b'Magar, Western'], [b'mre', b"Martha's Vineyard Sign Language"], [b'mrf', b'Elseng'], [b'mrg', b'Mising'], [b'mrh', b'Chin, Mara'], [b'mri', b'Maori'], [b'mrj', b'Mari, Western'], [b'mrk', b'Hmwaveke'], [b'mrl', b'Mortlockese'], [b'mrm', b'Merlav'], [b'mrn', b'Cheke Holo'], [b'mro', b'Mru'], [b'mrp', b'Morouas'], [b'mrq', b'Marquesan, North'], [b'mrr', b'Maria (India)'], [b'mrs', b'Maragus'], [b'mrt', b'Marghi Central'], [b'mru', b'Mono (Cameroon)'], [b'mrv', b'Mangareva'], [b'mrw', b'Maranao'], [b'mrx', b'Maremgi'], [b'mry', b'Mandaya'], [b'mrz', b'Marind'], [b'msa', b'Malay (macrolanguage)'], [b'msb', b'Masbatenyo'], [b'msc', b'Maninka, Sankaran'], [b'msd', b'Yucatec Maya Sign Language'], [b'mse', b'Musey'], [b'msf', b'Mekwei'], [b'msg', b'Moraid'], [b'msh', b'Malagasy, Masikoro'], [b'msi', b'Malay, Sabah'], [b'msj', b'Ma (Democratic Republic of Congo)'], [b'msk', b'Mansaka'], [b'msl', b'Molof'], [b'msm', b'Manobo, Agusan'], [b'msn', 'Vur\xebs'], [b'mso', b'Mombum'], [b'msp', 'Maritsau\xe1'], [b'msq', b'Caac'], [b'msr', b'Mongolian Sign Language'], [b'mss', b'Masela, West'], [b'msu', b'Musom'], [b'msv', b'Maslam'], [b'msw', b'Mansoanka'], [b'msx', b'Moresada'], [b'msy', b'Aruamu'], [b'msz', b'Momare'], [b'mta', b'Manobo, Cotabato'], [b'mtb', b'Anyin Morofo'], [b'mtc', b'Munit'], [b'mtd', b'Mualang'], [b'mte', b'Mono (Solomon Islands)'], [b'mtf', b'Murik (Papua New Guinea)'], [b'mtg', b'Una'], [b'mth', b'Munggui'], [b'mti', b'Maiwa (Papua New Guinea)'], [b'mtj', b'Moskona'], [b'mtk', b"Mbe'"], [b'mtl', b'Montol'], [b'mtm', b'Mator'], [b'mtn', b'Matagalpa'], [b'mto', b'Mixe, Totontepec'], [b'mtp', 'Wich\xed Lhamt\xe9s Nocten'], [b'mtq', b'Muong'], [b'mtr', b'Mewari'], [b'mts', b'Yora'], [b'mtt', b'Mota'], [b'mtu', b'Mixtec, Tututepec'], [b'mtv', b"Asaro'o"], [b'mtw', b'Binukidnon, Southern'], [b'mtx', 'Mixtec, Tida\xe1'], [b'mty', b'Nabi'], [b'mua', b'Mundang'], [b'mub', b'Mubi'], [b'muc', b'Ajumbu'], [b'mud', b'Aleut, Mednyj'], [b'mue', b'Media Lengua'], [b'mug', b'Musgu'], [b'muh', 'M\xfcnd\xfc'], [b'mui', b'Musi'], [b'muj', b'Mabire'], [b'muk', b'Mugom'], [b'mul', b'Multiple languages'], [b'mum', b'Maiwala'], [b'muo', b'Nyong'], [b'mup', b'Malvi'], [b'muq', b'Miao, Eastern Xiangxi'], [b'mur', b'Murle'], [b'mus', b'Creek'], [b'mut', b'Muria, Western'], [b'muu', b'Yaaku'], [b'muv', b'Muthuvan'], [b'mux', b'Bo-Ung'], [b'muy', b'Muyang'], [b'muz', b'Mursi'], [b'mva', b'Manam'], [b'mvb', b'Mattole'], [b'mvd', b'Mamboru'], [b'mve', b'Marwari (Pakistan)'], [b'mvf', b'Mongolian, Peripheral'], [b'mvg', 'Mixtec, Yucua\xf1e'], [b'mvh', b'Mulgi'], [b'mvi', b'Miyako'], [b'mvk', b'Mekmek'], [b'mvl', b'Mbara (Australia)'], [b'mvm', b'Muya'], [b'mvn', b'Minaveha'], [b'mvo', b'Marovo'], [b'mvp', b'Duri'], [b'mvq', b'Moere'], [b'mvr', b'Marau'], [b'mvs', b'Massep'], [b'mvt', b'Mpotovoro'], [b'mvu', b'Marfa'], [b'mvv', b'Murut, Tagal'], [b'mvw', b'Machinga'], [b'mvx', b'Meoswar'], [b'mvy', b'Kohistani, Indus'], [b'mvz', b'Mesqan'], [b'mwa', b'Mwatebu'], [b'mwb', b'Juwal'], [b'mwc', b'Are'], [b'mwe', b'Mwera (Chimwera)'], [b'mwf', b'Murrinh-Patha'], [b'mwg', b'Aiklep'], [b'mwh', b'Mouk-Aria'], [b'mwi', b'Labo'], [b'mwj', b'Maligo'], [b'mwk', b'Maninkakan, Kita'], [b'mwl', b'Mirandese'], [b'mwm', b'Sar'], [b'mwn', b'Nyamwanga'], [b'mwo', b'Maewo, Central'], [b'mwp', b'Kala Lagaw Ya'], [b'mwq', 'Chin, M\xfcn'], [b'mwr', b'Marwari'], [b'mws', b'Mwimbi-Muthambi'], [b'mwt', b'Moken'], [b'mwu', b'Mittu'], [b'mwv', b'Mentawai'], [b'mww', b'Hmong Daw'], [b'mwx', b'Mediak'], [b'mwy', b'Mosiro'], [b'mwz', b'Moingi'], [b'mxa', b'Mixtec, Northwest Oaxaca'], [b'mxb', 'Mixtec, Tezoatl\xe1n'], [b'mxc', b'Manyika'], [b'mxd', b'Modang'], [b'mxe', b'Mele-Fila'], [b'mxf', b'Malgbe'], [b'mxg', b'Mbangala'], [b'mxh', b'Mvuba'], [b'mxi', b'Mozarabic'], [b'mxj', b'Miju-Mishmi'], [b'mxk', b'Monumbo'], [b'mxl', b'Gbe, Maxi'], [b'mxm', b'Meramera'], [b'mxn', b'Moi (Indonesia)'], [b'mxo', b'Mbowe'], [b'mxp', b'Mixe, Tlahuitoltepec'], [b'mxq', b'Mixe, Juquila'], [b'mxr', b'Murik (Malaysia)'], [b'mxs', b'Mixtec, Huitepec'], [b'mxt', b'Mixtec, Jamiltepec'], [b'mxu', b'Mada (Cameroon)'], [b'mxv', 'Mixtec, Metlat\xf3noc'], [b'mxw', b'Namo'], [b'mxx', b'Mahou'], [b'mxy', 'Mixtec, Southeastern Nochixtl\xe1n'], [b'mxz', b'Masela, Central'], [b'mya', b'Burmese'], [b'myb', b'Mbay'], [b'myc', b'Mayeka'], [b'myd', b'Maramba'], [b'mye', b'Myene'], [b'myf', b'Bambassi'], [b'myg', b'Manta'], [b'myh', b'Makah'], [b'myi', b'Mina (India)'], [b'myj', b'Mangayat'], [b'myk', b'Senoufo, Mamara'], [b'myl', b'Moma'], [b'mym', b"Me'en"], [b'myo', b'Anfillo'], [b'myp', 'Pirah\xe3'], [b'myr', b'Muniche'], [b'mys', b'Mesmes'], [b'myu', 'Munduruk\xfa'], [b'myv', b'Erzya'], [b'myw', b'Muyuw'], [b'myx', b'Masaaba'], [b'myy', b'Macuna'], [b'myz', b'Mandaic, Classical'], [b'mza', 'Mixtec, Santa Mar\xeda Zacatepec'], [b'mzb', b'Tumzabt'], [b'mzc', b'Madagascar Sign Language'], [b'mzd', b'Malimba'], [b'mze', b'Morawa'], [b'mzg', b'Monastic Sign Language'], [b'mzh', 'Wich\xed Lhamt\xe9s G\xfcisnay'], [b'mzi', 'Mazatec, Ixcatl\xe1n'], [b'mzj', b'Manya'], [b'mzk', b'Mambila, Nigeria'], [b'mzl', 'Mixe, Mazatl\xe1n'], [b'mzm', b'Mumuye'], [b'mzn', b'Mazanderani'], [b'mzo', b'Matipuhy'], [b'mzp', b'Movima'], [b'mzq', b'Mori Atas'], [b'mzr', 'Mar\xfabo'], [b'mzs', b'Macanese'], [b'mzt', b'Mintil'], [b'mzu', b'Inapang'], [b'mzv', b'Manza'], [b'mzw', b'Deg'], [b'mzx', b'Mawayana'], [b'mzy', b'Mozambican Sign Language'], [b'mzz', b'Maiadomu'], [b'naa', b'Namla'], [b'nab', 'Nambiku\xe1ra, Southern'], [b'nac', b'Narak'], [b'nad', b'Nijadali'], [b'nae', b"Naka'ela"], [b'naf', b'Nabak'], [b'nag', b'Naga Pidgin'], [b'naj', b'Nalu'], [b'nak', b'Nakanai'], [b'nal', b'Nalik'], [b'nam', b"Ngan'gityemerri"], [b'nan', b'Chinese, Min Nan'], [b'nao', b'Naaba'], [b'nap', b'Neapolitan'], [b'naq', b'Nama (Namibia)'], [b'nar', b'Iguta'], [b'nas', b'Naasioi'], [b'nat', b'Hungworo'], [b'nau', b'Nauru'], [b'nav', b'Navajo'], [b'naw', b'Nawuri'], [b'nax', b'Nakwi'], [b'nay', b'Narrinyeri'], [b'naz', b'Nahuatl, Coatepec'], [b'nba', b'Nyemba'], [b'nbb', b'Ndoe'], [b'nbc', b'Naga, Chang'], [b'nbd', b'Ngbinda'], [b'nbe', b'Naga, Konyak'], [b'nbg', b'Nagarchal'], [b'nbh', b'Ngamo'], [b'nbi', b'Naga, Mao'], [b'nbj', b'Ngarinman'], [b'nbk', b'Nake'], [b'nbl', b'Ndebele, South'], [b'nbm', b"Ngbaka Ma'bo"], [b'nbn', b'Kuri'], [b'nbo', b'Nkukoli'], [b'nbp', b'Nnam'], [b'nbq', b'Nggem'], [b'nbr', b'Numana-Nunku-Gbantu-Numbu'], [b'nbs', b'Namibian Sign Language'], [b'nbt', b'Na'], [b'nbu', b'Naga, Rongmei'], [b'nbv', b'Ngamambo'], [b'nbw', b'Ngbandi, Southern'], [b'nby', b'Ningera'], [b'nca', b'Iyo'], [b'ncb', b'Nicobarese, Central'], [b'ncc', b'Ponam'], [b'ncd', b'Nachering'], [b'nce', b'Yale'], [b'ncf', b'Notsi'], [b'ncg', b"Nisga'a"], [b'nch', b'Nahuatl, Central Huasteca'], [b'nci', b'Nahuatl, Classical'], [b'ncj', b'Nahuatl, Northern Puebla'], [b'nck', b'Nakara'], [b'ncl', 'Nahuatl, Michoac\xe1n'], [b'ncm', b'Nambo'], [b'ncn', b'Nauna'], [b'nco', b'Sibe'], [b'ncp', b'Ndaktup'], [b'ncr', b'Ncane'], [b'ncs', b'Nicaraguan Sign Language'], [b'nct', b'Naga, Chothe'], [b'ncu', b'Chumburung'], [b'ncx', b'Nahuatl, Central Puebla'], [b'ncz', b'Natchez'], [b'nda', b'Ndasa'], [b'ndb', b'Kenswei Nsei'], [b'ndc', b'Ndau'], [b'ndd', b'Nde-Nsele-Nta'], [b'nde', b'Ndebele, North'], [b'ndf', b'Nadruvian'], [b'ndg', b'Ndengereko'], [b'ndh', b'Ndali'], [b'ndi', b'Samba Leko'], [b'ndj', b'Ndamba'], [b'ndk', b'Ndaka'], [b'ndl', b'Ndolo'], [b'ndm', b'Ndam'], [b'ndn', b'Ngundi'], [b'ndo', b'Ndonga'], [b'ndp', b'Ndo'], [b'ndq', b'Ndombe'], [b'ndr', b'Ndoola'], [b'nds', b'German, Low'], [b'ndt', b'Ndunga'], [b'ndu', b'Dugun'], [b'ndv', b'Ndut'], [b'ndw', b'Ndobo'], [b'ndx', b'Nduga'], [b'ndy', b'Lutos'], [b'ndz', b'Ndogo'], [b'nea', b"Ngad'a, Eastern"], [b'neb', "Toura (C\xf4te d'Ivoire)"], [b'nec', b'Nedebang'], [b'ned', b'Nde-Gbite'], [b'nee', 'N\xeal\xeamwa-Nixumwak'], [b'nef', b'Nefamese'], [b'neg', b'Negidal'], [b'neh', b'Nyenkha'], [b'nei', b'Hittite, Neo-'], [b'nej', b'Neko'], [b'nek', b'Neku'], [b'nem', b'Nemi'], [b'nen', b'Nengone'], [b'neo', 'N\xe1-Meo'], [b'nep', b'Nepali (macrolanguage)'], [b'neq', b'Mixe, North Central'], [b'ner', b'Yahadian'], [b'nes', b'Kinnauri, Bhoti'], [b'net', b'Nete'], [b'neu', b'Neo'], [b'nev', b'Nyaheun'], [b'new', b'Newari'], [b'nex', b'Neme'], [b'ney', b'Neyo'], [b'nez', b'Nez Perce'], [b'nfa', b'Dhao'], [b'nfd', b'Ahwai'], [b'nfl', b'Ayiwo'], [b'nfr', b'Nafaanra'], [b'nfu', b'Mfumte'], [b'nga', b'Ngbaka'], [b'ngb', b'Ngbandi, Northern'], [b'ngc', b'Ngombe (Democratic Republic of Congo)'], [b'ngd', b'Ngando (Central African Republic)'], [b'nge', b'Ngemba'], [b'ngg', b'Ngbaka Manza'], [b'ngh', b'N/u'], [b'ngi', b'Ngizim'], [b'ngj', b'Ngie'], [b'ngk', b'Dalabon'], [b'ngl', b'Lomwe'], [b'ngm', b"Ngatik Men's Creole"], [b'ngn', b'Ngwo'], [b'ngo', b'Ngoni'], [b'ngp', b'Ngulu'], [b'ngq', b'Ngurimi'], [b'ngr', b'Engdewu'], [b'ngs', b'Gvoko'], [b'ngt', b'Ngeq'], [b'ngu', b'Nahuatl, Guerrero'], [b'ngv', b'Nagumi'], [b'ngw', b'Ngwaba'], [b'ngx', b'Nggwahyi'], [b'ngy', b'Tibea'], [b'ngz', b'Ngungwel'], [b'nha', b'Nhanda'], [b'nhb', b'Beng'], [b'nhc', b'Nahuatl, Tabasco'], [b'nhd', 'Chirip\xe1'], [b'nhe', b'Nahuatl, Eastern Huasteca'], [b'nhf', b'Nhuwala'], [b'nhg', b'Nahuatl, Tetelcingo'], [b'nhh', b'Nahari'], [b'nhi', 'Nahuatl, Zacatl\xe1n-Ahuacatl\xe1n-Tepetzintla'], [b'nhk', b'Nahuatl, Isthmus-Cosoleacaque'], [b'nhm', b'Nahuatl, Morelos'], [b'nhn', b'Nahuatl, Central'], [b'nho', b'Takuu'], [b'nhp', b'Nahuatl, Isthmus-Pajapan'], [b'nhq', b'Nahuatl, Huaxcaleca'], [b'nhr', b'Naro'], [b'nht', b'Nahuatl, Ometepec'], [b'nhu', b'Noone'], [b'nhv', b'Nahuatl, Temascaltepec'], [b'nhw', b'Nahuatl, Western Huasteca'], [b'nhx', b'Nahuatl, Isthmus-Mecayapan'], [b'nhy', b'Nahuatl, Northern Oaxaca'], [b'nhz', 'Nahuatl, Santa Mar\xeda La Alta'], [b'nia', b'Nias'], [b'nib', b'Nakame'], [b'nid', b'Ngandi'], [b'nie', b'Niellim'], [b'nif', b'Nek'], [b'nig', b'Ngalakan'], [b'nih', b'Nyiha (Tanzania)'], [b'nii', b'Nii'], [b'nij', b'Ngaju'], [b'nik', b'Nicobarese, Southern'], [b'nil', b'Nila'], [b'nim', b'Nilamba'], [b'nin', b'Ninzo'], [b'nio', b'Nganasan'], [b'niq', b'Nandi'], [b'nir', b'Nimboran'], [b'nis', b'Nimi'], [b'nit', b'Kolami, Southeastern'], [b'niu', b'Niuean'], [b'niv', b'Gilyak'], [b'niw', b'Nimo'], [b'nix', b'Hema'], [b'niy', b'Ngiti'], [b'niz', b'Ningil'], [b'nja', b'Nzanyi'], [b'njb', b'Naga, Nocte'], [b'njd', b'Ndonde Hamba'], [b'njh', b'Naga, Lotha'], [b'nji', b'Gudanji'], [b'njj', b'Njen'], [b'njl', b'Njalgulgule'], [b'njm', b'Naga, Angami'], [b'njn', b'Naga, Liangmai'], [b'njo', b'Naga, Ao'], [b'njr', b'Njerep'], [b'njs', b'Nisa'], [b'njt', b'Ndyuka-Trio Pidgin'], [b'nju', b'Ngadjunmaya'], [b'njx', b'Kunyi'], [b'njy', b'Njyem'], [b'njz', b'Nyishi'], [b'nka', b'Nkoya'], [b'nkb', b'Naga, Khoibu'], [b'nkc', b'Nkongho'], [b'nkd', b'Koireng'], [b'nke', b'Duke'], [b'nkf', b'Naga, Inpui'], [b'nkg', b'Nekgini'], [b'nkh', b'Naga, Khezha'], [b'nki', b'Naga, Thangal'], [b'nkj', b'Nakai'], [b'nkk', b'Nokuku'], [b'nkm', b'Namat'], [b'nkn', b'Nkangala'], [b'nko', b'Nkonya'], [b'nkp', b'Niuatoputapu'], [b'nkq', b'Nkami'], [b'nkr', b'Nukuoro'], [b'nks', b'Asmat, North'], [b'nkt', b'Nyika (Tanzania)'], [b'nku', b'Kulango, Bouna'], [b'nkv', b'Nyika (Malawi and Zambia)'], [b'nkw', b'Nkutu'], [b'nkx', b'Nkoroo'], [b'nkz', b'Nkari'], [b'nla', b'Ngombale'], [b'nlc', b'Nalca'], [b'nld', b'Dutch'], [b'nle', b'Nyala, East'], [b'nlg', b'Gela'], [b'nli', b'Grangali'], [b'nlj', b'Nyali'], [b'nlk', b'Yali, Ninia'], [b'nll', b'Nihali'], [b'nlo', b'Ngul'], [b'nlq', b'Naga, Lao'], [b'nlu', b'Nchumbulu'], [b'nlv', b'Nahuatl, Orizaba'], [b'nlw', b'Walangama'], [b'nlx', b'Nahali'], [b'nly', b'Nyamal'], [b'nlz', 'Nal\xf6go'], [b'nma', b'Naga, Maram'], [b'nmb', b'Nambas, Big'], [b'nmc', b'Ngam'], [b'nmd', b'Ndumu'], [b'nme', b'Naga, Mzieme'], [b'nmf', b'Naga, Tangkhul (India)'], [b'nmg', b'Kwasio'], [b'nmh', b'Naga, Monsang'], [b'nmi', b'Nyam'], [b'nmj', b'Ngombe (Central African Republic)'], [b'nmk', b'Namakura'], [b'nml', b'Ndemli'], [b'nmm', b'Manangba'], [b'nmn', '!X\xf3\xf5'], [b'nmo', b'Naga, Moyon'], [b'nmp', b'Nimanbur'], [b'nmq', b'Nambya'], [b'nmr', b'Nimbari'], [b'nms', b'Letemboi'], [b'nmt', b'Namonuito'], [b'nmu', b'Maidu, Northeast'], [b'nmv', b'Ngamini'], [b'nmw', b'Nimoa'], [b'nmx', b'Nama (Papua New Guinea)'], [b'nmy', b'Namuyi'], [b'nmz', b'Nawdm'], [b'nna', b'Nyangumarta'], [b'nnb', b'Nande'], [b'nnc', b'Nancere'], [b'nnd', b'Ambae, West'], [b'nne', b'Ngandyera'], [b'nnf', b'Ngaing'], [b'nng', b'Naga, Maring'], [b'nnh', b'Ngiemboon'], [b'nni', b'Nuaulu, North'], [b'nnj', b'Nyangatom'], [b'nnk', b'Nankina'], [b'nnl', b'Naga, Northern Rengma'], [b'nnm', b'Namia'], [b'nnn', b'Ngete'], [b'nno', b'Norwegian Nynorsk'], [b'nnp', b'Naga, Wancho'], [b'nnq', b'Ngindo'], [b'nnr', b'Narungga'], [b'nns', b'Ningye'], [b'nnt', b'Nanticoke'], [b'nnu', b'Dwang'], [b'nnv', b'Nugunu (Australia)'], [b'nnw', b'Nuni, Southern'], [b'nnx', b'Ngong'], [b'nny', b'Nyangga'], [b'nnz', b"Nda'nda'"], [b'noa', b'Woun Meu'], [b'nob', 'Norwegian Bokm\xe5l'], [b'noc', b'Nuk'], [b'nod', b'Thai, Northern'], [b'noe', b'Nimadi'], [b'nof', b'Nomane'], [b'nog', b'Nogai'], [b'noh', b'Nomu'], [b'noi', b'Noiri'], [b'noj', b'Nonuya'], [b'nok', b'Nooksack'], [b'nol', b'Nomlaki'], [b'nom', 'Nocam\xe1n'], [b'non', b'Norse, Old'], [b'nop', b'Numanggang'], [b'noq', b'Ngongo'], [b'nor', b'Norwegian'], [b'nos', b'Nisu, Eastern'], [b'not', b'Nomatsiguenga'], [b'nou', b'Ewage-Notu'], [b'nov', b'Novial'], [b'now', b'Nyambo'], [b'noy', b'Noy'], [b'noz', b'Nayi'], [b'npa', b'Nar Phu'], [b'npb', b'Nupbikha'], [b'npg', b'Naga, Ponyo-Gongwang'], [b'nph', b'Naga, Phom'], [b'npi', b'Nepali (individual language)'], [b'npl', b'Nahuatl, Southeastern Puebla'], [b'npn', b'Mondropolon'], [b'npo', b'Naga, Pochuri'], [b'nps', b'Nipsan'], [b'npu', b'Naga, Puimei'], [b'npy', b'Napu'], [b'nqg', b'Nago, Southern'], [b'nqk', b'Ede Nago, Kura'], [b'nqm', b'Ndom'], [b'nqn', b'Nen'], [b'nqo', b"N'Ko"], [b'nqq', b'Naga, Kyan-Karyaw'], [b'nqy', b'Naga, Akyaung Ari'], [b'nra', b'Ngom'], [b'nrb', b'Nara'], [b'nrc', b'Noric'], [b'nre', b'Naga, Southern Rengma'], [b'nrg', b'Narango'], [b'nri', b'Naga, Chokri'], [b'nrk', b'Ngarla'], [b'nrl', b'Ngarluma'], [b'nrm', b'Narom'], [b'nrn', b'Norn'], [b'nrp', b'Picene, North'], [b'nrr', b'Norra'], [b'nrt', b'Kalapuya, Northern'], [b'nru', b'Narua'], [b'nrx', b'Ngurmbur'], [b'nrz', b'Lala'], [b'nsa', b'Naga, Sangtam'], [b'nsc', b'Nshi'], [b'nsd', b'Nisu, Southern'], [b'nse', b'Nsenga'], [b'nsf', b'Nisu, Northwestern'], [b'nsg', b'Ngasa'], [b'nsh', b'Ngoshie'], [b'nsi', b'Nigerian Sign Language'], [b'nsk', b'Naskapi'], [b'nsl', b'Norwegian Sign Language'], [b'nsm', b'Naga, Sumi'], [b'nsn', b'Nehan'], [b'nso', b'Pedi'], [b'nsp', b'Nepalese Sign Language'], [b'nsq', b'Miwok, Northern Sierra'], [b'nsr', b'Maritime Sign Language'], [b'nss', b'Nali'], [b'nst', b'Naga, Tase'], [b'nsu', b'Nahuatl, Sierra Negra'], [b'nsv', b'Nisu, Southwestern'], [b'nsw', b'Navut'], [b'nsx', b'Nsongo'], [b'nsy', b'Nasal'], [b'nsz', b'Nisenan'], [b'nte', b'Nathembo'], [b'ntg', b'Ngantangarra'], [b'nti', b'Natioro'], [b'ntj', b'Ngaanyatjarra'], [b'ntk', b'Ikoma-Nata-Isenye'], [b'ntm', b'Nateni'], [b'nto', b'Ntomba'], [b'ntp', b'Tepehuan, Northern'], [b'ntr', b'Delo'], [b'nts', b'Natagaimas'], [b'ntu', 'Nat\xfcgu'], [b'ntw', b'Nottoway'], [b'ntx', b'Naga, Tangkhul (Myanmar)'], [b'nty', b'Mantsi'], [b'ntz', b'Natanzi'], [b'nua', b'Yuanga'], [b'nuc', b'Nukuini'], [b'nud', b'Ngala'], [b'nue', b'Ngundu'], [b'nuf', b'Nusu'], [b'nug', b'Nungali'], [b'nuh', b'Ndunda'], [b'nui', b'Ngumbi'], [b'nuj', b'Nyole'], [b'nuk', b'Nuu-chah-nulth'], [b'nul', b'Nusa Laut'], [b'num', b"Niuafo'ou"], [b'nun', b'Anong'], [b'nuo', 'Ngu\xf4n'], [b'nup', b'Nupe-Nupe-Tako'], [b'nuq', b'Nukumanu'], [b'nur', b'Nukuria'], [b'nus', b'Nuer'], [b'nut', b'Nung (Viet Nam)'], [b'nuu', b'Ngbundu'], [b'nuv', b'Nuni, Northern'], [b'nuw', b'Nguluwan'], [b'nux', b'Mehek'], [b'nuy', b'Nunggubuyu'], [b'nuz', b'Nahuatl, Tlamacazapa'], [b'nvh', b'Nasarian'], [b'nvm', b'Namiae'], [b'nvo', b'Nyokon'], [b'nwa', b'Nawathinehena'], [b'nwb', b'Nyabwa'], [b'nwc', b'Newari, Classical'], [b'nwe', b'Ngwe'], [b'nwg', b'Ngayawung'], [b'nwi', b'Tanna, Southwest'], [b'nwm', b'Nyamusa-Molo'], [b'nwo', b'Nauo'], [b'nwr', b'Nawaru'], [b'nwx', b'Newar, Middle'], [b'nwy', b'Nottoway-Meherrin'], [b'nxa', b'Nauete'], [b'nxd', b'Ngando (Democratic Republic of Congo)'], [b'nxe', b'Nage'], [b'nxg', b"Ngad'a"], [b'nxi', b'Nindi'], [b'nxk', b'Naga, Koki'], [b'nxl', b'Nuaulu, South'], [b'nxm', b'Numidian'], [b'nxn', b'Ngawun'], [b'nxq', b'Naxi'], [b'nxr', b'Ninggerum'], [b'nxu', b'Narau'], [b'nxx', b'Nafri'], [b'nya', b'Nyanja'], [b'nyb', b'Nyangbo'], [b'nyc', b'Nyanga-li'], [b'nyd', b'Nyore'], [b'nye', b'Nyengo'], [b'nyf', b'Giryama'], [b'nyg', b'Nyindu'], [b'nyh', b'Nyigina'], [b'nyi', b'Ama (Sudan)'], [b'nyj', b'Nyanga'], [b'nyk', b'Nyaneka'], [b'nyl', b'Nyeu'], [b'nym', b'Nyamwezi'], [b'nyn', b'Nyankole'], [b'nyo', b'Nyoro'], [b'nyp', b"Nyang'i"], [b'nyq', b'Nayini'], [b'nyr', b'Nyiha (Malawi)'], [b'nys', b'Nyunga'], [b'nyt', b'Nyawaygi'], [b'nyu', b'Nyungwe'], [b'nyv', b'Nyulnyul'], [b'nyw', b'Nyaw'], [b'nyx', b'Nganyaywana'], [b'nyy', b'Nyakyusa-Ngonde'], [b'nza', b'Mbembe, Tigon'], [b'nzb', b'Njebi'], [b'nzi', b'Nzima'], [b'nzk', b'Nzakara'], [b'nzm', b'Naga, Zeme'], [b'nzs', b'New Zealand Sign Language'], [b'nzu', b'Teke-Nzikou'], [b'nzy', b'Nzakambay'], [b'nzz', b'Dogon, Nanga Dama'], [b'oaa', b'Orok'], [b'oac', b'Oroch'], [b'oar', b'Aramaic, Old (up to 700 BCE)'], [b'oav', b'Avar, Old'], [b'obi', 'Obispe\xf1o'], [b'obk', b'Bontok, Southern'], [b'obl', b'Oblo'], [b'obm', b'Moabite'], [b'obo', b'Manobo, Obo'], [b'obr', b'Burmese, Old'], [b'obt', b'Breton, Old'], [b'obu', b'Obulom'], [b'oca', b'Ocaina'], [b'och', b'Chinese, Old'], [b'oci', b'Occitan (post 1500)'], [b'oco', b'Cornish, Old'], [b'ocu', b'Matlatzinca, Atzingo'], [b'oda', b'Odut'], [b'odk', b'Od'], [b'odt', b'Dutch, Old'], [b'odu', b'Odual'], [b'ofo', b'Ofo'], [b'ofs', b'Frisian, Old'], [b'ofu', b'Efutop'], [b'ogb', b'Ogbia'], [b'ogc', b'Ogbah'], [b'oge', b'Georgian, Old'], [b'ogg', b'Ogbogolo'], [b'ogo', b'Khana'], [b'ogu', b'Ogbronuagum'], [b'oht', b'Hittite, Old'], [b'ohu', b'Hungarian, Old'], [b'oia', b'Oirata'], [b'oin', b'One, Inebu'], [b'ojb', b'Ojibwa, Northwestern'], [b'ojc', b'Ojibwa, Central'], [b'ojg', b'Ojibwa, Eastern'], [b'oji', b'Ojibwa'], [b'ojp', b'Japanese, Old'], [b'ojs', b'Ojibwa, Severn'], [b'ojv', b'Ontong Java'], [b'ojw', b'Ojibwa, Western'], [b'oka', b'Okanagan'], [b'okb', b'Okobo'], [b'okd', b'Okodia'], [b'oke', b'Okpe (Southwestern Edo)'], [b'okg', b'Koko Babangk'], [b'okh', b'Koresh-e Rostam'], [b'oki', b'Okiek'], [b'okj', b'Oko-Juwoi'], [b'okk', b'One, Kwamtim'], [b'okl', b'Kentish Sign Language, Old'], [b'okm', b'Korean, Middle (10th-16th cent.)'], [b'okn', b'Oki-No-Erabu'], [b'oko', b'Korean, Old (3rd-9th cent.)'], [b'okr', b'Kirike'], [b'oks', b'Oko-Eni-Osayen'], [b'oku', b'Oku'], [b'okv', b'Orokaiva'], [b'okx', b'Okpe (Northwestern Edo)'], [b'ola', b'Walungge'], [b'old', b'Mochi'], [b'ole', b'Olekha'], [b'olk', b'Olkol'], [b'olm', b'Oloma'], [b'olo', b'Livvi'], [b'olr', b'Olrat'], [b'oma', b'Omaha-Ponca'], [b'omb', b'Ambae, East'], [b'omc', b'Mochica'], [b'ome', b'Omejes'], [b'omg', b'Omagua'], [b'omi', b'Omi'], [b'omk', b'Omok'], [b'oml', b'Ombo'], [b'omn', b'Minoan'], [b'omo', b'Utarmbung'], [b'omp', b'Manipuri, Old'], [b'omr', b'Marathi, Old'], [b'omt', b'Omotik'], [b'omu', b'Omurano'], [b'omw', b'Tairora, South'], [b'omx', b'Mon, Old'], [b'ona', b'Ona'], [b'onb', b'Lingao'], [b'one', b'Oneida'], [b'ong', b'Olo'], [b'oni', b'Onin'], [b'onj', b'Onjob'], [b'onk', b'One, Kabore'], [b'onn', b'Onobasulu'], [b'ono', b'Onondaga'], [b'onp', b'Sartang'], [b'onr', b'One, Northern'], [b'ons', b'Ono'], [b'ont', b'Ontenu'], [b'onu', b'Unua'], [b'onw', b'Nubian, Old'], [b'onx', b'Onin Based Pidgin'], [b'ood', b"Tohono O'odham"], [b'oog', b'Ong'], [b'oon', '\xd6nge'], [b'oor', b'Oorlams'], [b'oos', b'Ossetic, Old'], [b'opa', b'Okpamheri'], [b'opk', b'Kopkaka'], [b'opm', b'Oksapmin'], [b'opo', b'Opao'], [b'opt', b'Opata'], [b'opy', 'Ofay\xe9'], [b'ora', b'Oroha'], [b'orc', b'Orma'], [b'ore', 'Orej\xf3n'], [b'org', b'Oring'], [b'orh', b'Oroqen'], [b'ori', b'Oriya (macrolanguage)'], [b'orm', b'Oromo'], [b'orn', b'Orang Kanaq'], [b'oro', b'Orokolo'], [b'orr', b'Oruma'], [b'ors', b'Orang Seletar'], [b'ort', b'Oriya, Adivasi'], [b'oru', b'Ormuri'], [b'orv', b'Russian, Old'], [b'orw', b'Oro Win'], [b'orx', b'Oro'], [b'ory', b'Oriya (individual language)'], [b'orz', b'Ormu'], [b'osa', b'Osage'], [b'osc', b'Oscan'], [b'osi', b'Osing'], [b'oso', b'Ososo'], [b'osp', b'Spanish, Old'], [b'oss', b'Ossetian'], [b'ost', b'Osatu'], [b'osu', b'One, Southern'], [b'osx', b'Saxon, Old'], [b'ota', b'Turkish, Ottoman (1500-1928)'], [b'otb', b'Tibetan, Old'], [b'otd', b'Ot Danum'], [b'ote', b'Otomi, Mezquital'], [b'oti', b'Oti'], [b'otk', b'Turkish, Old'], [b'otl', b'Otomi, Tilapa'], [b'otm', b'Otomi, Eastern Highland'], [b'otn', b'Otomi, Tenango'], [b'otq', 'Otomi, Quer\xe9taro'], [b'otr', b'Otoro'], [b'ots', 'Otomi, Estado de M\xe9xico'], [b'ott', b'Otomi, Temoaya'], [b'otu', b'Otuke'], [b'otw', b'Ottawa'], [b'otx', b'Otomi, Texcatepec'], [b'oty', b'Tamil, Old'], [b'otz', b'Otomi, Ixtenco'], [b'oua', b'Tagargrent'], [b'oub', b'Glio-Oubi'], [b'oue', b'Oune'], [b'oui', b'Uighur, Old'], [b'oum', b'Ouma'], [b'oun', b'!O!ung'], [b'owi', b'Owiniga'], [b'owl', b'Welsh, Old'], [b'oyb', b'Oy'], [b'oyd', b'Oyda'], [b'oym', b'Wayampi'], [b'oyy', b"Oya'oya"], [b'ozm', b'Koonzime'], [b'pab', 'Parec\xeds'], [b'pac', b'Pacoh'], [b'pad', 'Paumar\xed'], [b'pae', b'Pagibete'], [b'paf', 'Paranaw\xe1t'], [b'pag', b'Pangasinan'], [b'pah', b'Tenharim'], [b'pai', b'Pe'], [b'pak', 'Parakan\xe3'], [b'pal', b'Pahlavi'], [b'pam', b'Pampanga'], [b'pan', b'Panjabi'], [b'pao', b'Paiute, Northern'], [b'pap', b'Papiamento'], [b'paq', b'Parya'], [b'par', b'Panamint'], [b'pas', b'Papasena'], [b'pat', b'Papitalai'], [b'pau', b'Palauan'], [b'pav', 'Paka\xe1snovos'], [b'paw', b'Pawnee'], [b'pax', 'Pankarar\xe9'], [b'pay', b'Pech'], [b'paz', 'Pankarar\xfa'], [b'pbb', 'P\xe1ez'], [b'pbc', b'Patamona'], [b'pbe', b'Popoloca, Mezontla'], [b'pbf', b'Popoloca, Coyotepec'], [b'pbg', b'Paraujano'], [b'pbh', "E'\xf1apa Woromaipu"], [b'pbi', b'Parkwa'], [b'pbl', b'Mak (Nigeria)'], [b'pbn', b'Kpasam'], [b'pbo', b'Papel'], [b'pbp', b'Badyara'], [b'pbr', b'Pangwa'], [b'pbs', b'Pame, Central'], [b'pbt', b'Pashto, Southern'], [b'pbu', b'Pashto, Northern'], [b'pbv', b'Pnar'], [b'pby', b'Pyu'], [b'pca', 'Popoloca, Santa In\xe9s Ahuatempan'], [b'pcb', b'Pear'], [b'pcc', b'Bouyei'], [b'pcd', b'Picard'], [b'pce', b'Palaung, Ruching'], [b'pcf', b'Paliyan'], [b'pcg', b'Paniya'], [b'pch', b'Pardhan'], [b'pci', b'Duruwa'], [b'pcj', b'Parenga'], [b'pck', b'Chin, Paite'], [b'pcl', b'Pardhi'], [b'pcm', b'Pidgin, Nigerian'], [b'pcn', b'Piti'], [b'pcp', b'Pacahuara'], [b'pcw', b'Pyapun'], [b'pda', b'Anam'], [b'pdc', b'German, Pennsylvania'], [b'pdi', b'Pa Di'], [b'pdn', b'Podena'], [b'pdo', b'Padoe'], [b'pdt', b'Plautdietsch'], [b'pdu', b'Kayan'], [b'pea', b'Indonesian, Peranakan'], [b'peb', b'Pomo, Eastern'], [b'ped', b'Mala (Papua New Guinea)'], [b'pee', b'Taje'], [b'pef', b'Pomo, Northeastern'], [b'peg', b'Pengo'], [b'peh', b'Bonan'], [b'pei', b'Chichimeca-Jonaz'], [b'pej', b'Pomo, Northern'], [b'pek', b'Penchal'], [b'pel', b'Pekal'], [b'pem', b'Phende'], [b'peo', b'Persian, Old (ca. 600-400 B.C.)'], [b'pep', b'Kunja'], [b'peq', b'Pomo, Southern'], [b'pes', b'Persian, Iranian'], [b'pev', 'P\xe9mono'], [b'pex', b'Petats'], [b'pey', b'Petjo'], [b'pez', b'Penan, Eastern'], [b'pfa', 'P\xe1\xe1fang'], [b'pfe', b'Peere'], [b'pfl', b'Pfaelzisch'], [b'pga', b'Creole Arabic, Sudanese'], [b'pgg', b'Pangwali'], [b'pgi', b'Pagi'], [b'pgk', b'Rerep'], [b'pgl', b'Irish, Primitive'], [b'pgn', b'Paelignian'], [b'pgs', b'Pangseng'], [b'pgu', b'Pagu'], [b'pha', b'Pa-Hng'], [b'phd', b'Phudagi'], [b'phg', b'Phuong'], [b'phh', b'Phukha'], [b'phk', b'Phake'], [b'phl', b'Phalura'], [b'phm', b'Phimbi'], [b'phn', b'Phoenician'], [b'pho', b'Phunoi'], [b'phq', b"Phana'"], [b'phr', b'Pahari-Potwari'], [b'pht', b'Phu Thai'], [b'phu', b'Phuan'], [b'phv', b'Pahlavani'], [b'phw', b'Phangduwali'], [b'pia', b'Pima Bajo'], [b'pib', b'Yine'], [b'pic', b'Pinji'], [b'pid', b'Piaroa'], [b'pie', b'Piro'], [b'pif', b'Pingelapese'], [b'pig', b'Pisabo'], [b'pih', b'Pitcairn-Norfolk'], [b'pii', b'Pini'], [b'pij', b'Pijao'], [b'pil', b'Yom'], [b'pim', b'Powhatan'], [b'pin', b'Piame'], [b'pio', b'Piapoco'], [b'pip', b'Pero'], [b'pir', b'Piratapuyo'], [b'pis', b'Pijin'], [b'pit', b'Pitta Pitta'], [b'piu', b'Pintupi-Luritja'], [b'piv', b'Pileni'], [b'piw', b'Pimbwe'], [b'pix', b'Piu'], [b'piy', b'Piya-Kwonci'], [b'piz', b'Pije'], [b'pjt', b'Pitjantjatjara'], [b'pka', 'Pr\u0101krit, Ardham\u0101gadh\u012b'], [b'pkb', b'Pokomo'], [b'pkc', b'Paekche'], [b'pkg', b'Pak-Tong'], [b'pkh', b'Pankhu'], [b'pkn', b'Pakanha'], [b'pko', 'P\xf6koot'], [b'pkp', b'Pukapuka'], [b'pkr', b'Kurumba, Attapady'], [b'pks', b'Pakistan Sign Language'], [b'pkt', b'Maleng'], [b'pku', b'Paku'], [b'pla', b'Miani'], [b'plb', b'Polonombauk'], [b'plc', b'Palawano, Central'], [b'pld', b'Polari'], [b'ple', b"Palu'e"], [b'plg', 'Pilag\xe1'], [b'plh', b'Paulohi'], [b'pli', b'Pali'], [b'plj', b'Polci'], [b'plk', b'Shina, Kohistani'], [b'pll', b'Palaung, Shwe'], [b'pln', b'Palenquero'], [b'plo', b'Popoluca, Oluta'], [b'plp', b'Palpa'], [b'plq', b'Palaic'], [b'plr', b'Senoufo, Palaka'], [b'pls', b'Popoloca, San Marcos Tlalcoyalco'], [b'plt', b'Malagasy, Plateau'], [b'plu', 'Palik\xfar'], [b'plv', b'Palawano, Southwest'], [b'plw', b"Palawano, Brooke's Point"], [b'ply', b'Bolyu'], [b'plz', b'Paluan'], [b'pma', b'Paama'], [b'pmb', b'Pambia'], [b'pmc', b'Palumata'], [b'pmd', b'Pallanganmiddang'], [b'pme', b'Pwaamei'], [b'pmf', b'Pamona'], [b'pmh', 'Pr\u0101krit, M\u0101h\u0101r\u0101\u1e63\u1e6dri'], [b'pmi', b'Pumi, Northern'], [b'pmj', b'Pumi, Southern'], [b'pmk', b'Pamlico'], [b'pml', b'Lingua Franca'], [b'pmm', b'Pomo'], [b'pmn', b'Pam'], [b'pmo', b'Pom'], [b'pmq', b'Pame, Northern'], [b'pmr', b'Paynamar'], [b'pms', b'Piemontese'], [b'pmt', b'Tuamotuan'], [b'pmu', b'Panjabi, Mirpur'], [b'pmw', b'Miwok, Plains'], [b'pmx', b'Naga, Poumei'], [b'pmy', b'Malay, Papuan'], [b'pmz', b'Pame, Southern'], [b'pna', b'Punan Bah-Biau'], [b'pnb', b'Panjabi, Western'], [b'pnc', b'Pannei'], [b'pne', b'Penan, Western'], [b'png', b'Pongu'], [b'pnh', b'Penrhyn'], [b'pni', b'Aoheng'], [b'pnj', b'Pinjarup'], [b'pnk', b'Paunaka'], [b'pnl', b'Paleni'], [b'pnm', b'Punan Batu 1'], [b'pnn', b'Pinai-Hagahai'], [b'pno', b'Panobo'], [b'pnp', b'Pancana'], [b'pnq', b'Pana (Burkina Faso)'], [b'pnr', b'Panim'], [b'pns', b'Ponosakan'], [b'pnt', b'Pontic'], [b'pnu', b'Bunu, Jiongnai'], [b'pnv', b'Pinigura'], [b'pnw', b'Panytyima'], [b'pnx', b'Phong-Kniang'], [b'pny', b'Pinyin'], [b'pnz', b'Pana (Central African Republic)'], [b'poc', b'Poqomam'], [b'pod', b'Ponares'], [b'poe', b'Popoloca, San Juan Atzingo'], [b'pof', b'Poke'], [b'pog', 'Potigu\xe1ra'], [b'poh', b"Poqomchi'"], [b'poi', b'Popoluca, Highland'], [b'pok', 'Pokang\xe1'], [b'pol', b'Polish'], [b'pom', b'Pomo, Southeastern'], [b'pon', b'Pohnpeian'], [b'poo', b'Pomo, Central'], [b'pop', 'Pwapw\xe2'], [b'poq', b'Popoluca, Texistepec'], [b'por', b'Portuguese'], [b'pos', b'Popoluca, Sayula'], [b'pot', b'Potawatomi'], [b'pov', b'Crioulo, Upper Guinea'], [b'pow', b'Popoloca, San Felipe Otlaltepec'], [b'pox', b'Polabian'], [b'poy', b'Pogolo'], [b'ppa', b'Pao'], [b'ppe', b'Papi'], [b'ppi', b'Paipai'], [b'ppk', b'Uma'], [b'ppl', b'Pipil'], [b'ppm', b'Papuma'], [b'ppn', b'Papapana'], [b'ppo', b'Folopa'], [b'ppp', b'Pelende'], [b'ppq', b'Pei'], [b'pps', 'Popoloca, San Lu\xeds Temalacayuca'], [b'ppt', b'Pare'], [b'ppu', b'Papora'], [b'pqa', b"Pa'a"], [b'pqm', b'Malecite-Passamaquoddy'], [b'prb', b"Lua'"], [b'prc', b'Parachi'], [b'prd', b'Parsi-Dari'], [b'pre', b'Principense'], [b'prf', b'Paranan'], [b'prg', b'Prussian'], [b'prh', b'Porohanon'], [b'pri', 'Paic\xee'], [b'prk', b'Parauk'], [b'prl', b'Peruvian Sign Language'], [b'prm', b'Kibiri'], [b'prn', b'Prasuni'], [b'pro', 'Proven\xe7al, Old (to 1500)'], [b'prp', b'Parsi'], [b'prq', 'Ash\xe9ninka Peren\xe9'], [b'prr', b'Puri'], [b'prs', b'Dari'], [b'prt', b'Phai'], [b'pru', b'Puragi'], [b'prw', b'Parawen'], [b'prx', b'Purik'], [b'pry', b'Pray 3'], [b'prz', b'Providencia Sign Language'], [b'psa', b'Awyu, Asue'], [b'psc', b'Persian Sign Language'], [b'psd', b'Plains Indian Sign Language'], [b'pse', b'Malay, Central'], [b'psg', b'Penang Sign Language'], [b'psh', b'Pashayi, Southwest'], [b'psi', b'Pashayi, Southeast'], [b'psl', b'Puerto Rican Sign Language'], [b'psm', b'Pauserna'], [b'psn', b'Panasuan'], [b'pso', b'Polish Sign Language'], [b'psp', b'Philippine Sign Language'], [b'psq', b'Pasi'], [b'psr', b'Portuguese Sign Language'], [b'pss', b'Kaulong'], [b'pst', b'Pashto, Central'], [b'psu', 'Pr\u0101krit, Sauraseni'], [b'psw', b'Port Sandwich'], [b'psy', b'Piscataway'], [b'pta', b'Pai Tavytera'], [b'pth', 'Patax\xf3 H\xe3-Ha-H\xe3e'], [b'pti', b'Pintiini'], [b'ptn', b'Patani'], [b'pto', "Zo'\xe9"], [b'ptp', b'Patep'], [b'ptr', b'Piamatsina'], [b'ptt', b'Enrekang'], [b'ptu', b'Bambam'], [b'ptv', b'Port Vato'], [b'ptw', b'Pentlatch'], [b'pty', b'Pathiya'], [b'pua', b'Purepecha, Western Highland'], [b'pub', b'Purum'], [b'puc', b'Punan Merap'], [b'pud', b'Punan Aput'], [b'pue', b'Puelche'], [b'puf', b'Punan Merah'], [b'pug', b'Phuie'], [b'pui', b'Puinave'], [b'puj', b'Punan Tubu'], [b'puk', b'Pu Ko'], [b'pum', b'Puma'], [b'puo', b'Puoc'], [b'pup', b'Pulabu'], [b'puq', b'Puquina'], [b'pur', 'Purubor\xe1'], [b'pus', b'Pushto'], [b'put', b'Putoh'], [b'puu', b'Punu'], [b'puw', b'Puluwatese'], [b'pux', b'Puare'], [b'puy', 'Purisime\xf1o'], [b'puz', b'Naga, Purum'], [b'pwa', b'Pawaia'], [b'pwb', b'Panawa'], [b'pwg', b'Gapapaiwa'], [b'pwi', b'Patwin'], [b'pwm', b'Molbog'], [b'pwn', b'Paiwan'], [b'pwo', b'Karen, Pwo Western'], [b'pwr', b'Powari'], [b'pww', b'Karen, Pwo Northern'], [b'pxm', b'Mixe, Quetzaltepec'], [b'pye', b'Krumen, Pye'], [b'pym', b'Fyam'], [b'pyn', 'Poyan\xe1wa'], [b'pys', b'Paraguayan Sign Language'], [b'pyu', b'Puyuma'], [b'pyx', b'Pyu (Myanmar)'], [b'pyy', b'Pyen'], [b'pzn', b'Naga, Para'], [b'qua', b'Quapaw'], [b'qub', 'Quechua, Huallaga Hu\xe1nuco'], [b'quc', b"K'iche'"], [b'qud', 'Quichua, Calder\xf3n Highland'], [b'que', b'Quechua'], [b'quf', b'Quechua, Lambayeque'], [b'qug', b'Quichua, Chimborazo Highland'], [b'quh', b'Quechua, South Bolivian'], [b'qui', b'Quileute'], [b'quk', b'Quechua, Chachapoyas'], [b'qul', b'Quechua, North Bolivian'], [b'qum', b'Sipacapense'], [b'qun', b'Quinault'], [b'qup', b'Quechua, Southern Pastaza'], [b'quq', b'Quinqui'], [b'qur', b'Quechua, Yanahuanca Pasco'], [b'qus', b'Quichua, Santiago del Estero'], [b'quv', b'Sacapulteco'], [b'quw', b'Quichua, Tena Lowland'], [b'qux', b'Quechua, Yauyos'], [b'quy', b'Quechua, Ayacucho'], [b'quz', b'Quechua, Cusco'], [b'qva', b'Quechua, Ambo-Pasco'], [b'qvc', b'Quechua, Cajamarca'], [b'qve', 'Quechua, Eastern Apur\xedmac'], [b'qvh', 'Quechua, Huamal\xedes-Dos de Mayo Hu\xe1nuco'], [b'qvi', b'Quichua, Imbabura Highland'], [b'qvj', b'Quichua, Loja Highland'], [b'qvl', b'Quechua, Cajatambo North Lima'], [b'qvm', b'Quechua, Margos-Yarowilca-Lauricocha'], [b'qvn', 'Quechua, North Jun\xedn'], [b'qvo', b'Quechua, Napo Lowland'], [b'qvp', b'Quechua, Pacaraos'], [b'qvs', 'Quechua, San Mart\xedn'], [b'qvw', b'Quechua, Huaylla Wanca'], [b'qvy', b'Queyu'], [b'qvz', b'Quichua, Northern Pastaza'], [b'qwa', b'Quechua, Corongo Ancash'], [b'qwc', b'Quechua, Classical'], [b'qwh', b'Quechua, Huaylas Ancash'], [b'qwm', b'Kuman (Russia)'], [b'qws', b'Quechua, Sihuas Ancash'], [b'qwt', b'Kwalhioqua-Tlatskanai'], [b'qxa', 'Quechua, Chiqui\xe1n Ancash'], [b'qxc', b'Quechua, Chincha'], [b'qxh', 'Quechua, Panao Hu\xe1nuco'], [b'qxl', b'Quichua, Salasaca Highland'], [b'qxn', b'Quechua, Northern Conchucos Ancash'], [b'qxo', b'Quechua, Southern Conchucos Ancash'], [b'qxp', b'Quechua, Puno'], [b'qxq', b"Qashqa'i"], [b'qxr', 'Quichua, Ca\xf1ar Highland'], [b'qxs', b'Qiang, Southern'], [b'qxt', b'Quechua, Santa Ana de Tusi Pasco'], [b'qxu', 'Quechua, Arequipa-La Uni\xf3n'], [b'qxw', b'Quechua, Jauja Wanca'], [b'qya', b'Quenya'], [b'qyp', b'Quiripi'], [b'raa', b'Dungmali'], [b'rab', b'Camling'], [b'rac', b'Rasawa'], [b'rad', b'Rade'], [b'raf', b'Meohang, Western'], [b'rag', b'Logooli'], [b'rah', b'Rabha'], [b'rai', b'Ramoaaina'], [b'raj', b'Rajasthani'], [b'rak', b'Tulu-Bohuai'], [b'ral', b'Ralte'], [b'ram', b'Canela'], [b'ran', b'Riantana'], [b'rao', b'Rao'], [b'rap', b'Rapanui'], [b'raq', b'Saam'], [b'rar', b'Rarotongan'], [b'ras', b'Tegali'], [b'rat', b'Razajerdi'], [b'rau', b'Raute'], [b'rav', b'Sampang'], [b'raw', b'Rawang'], [b'rax', b'Rang'], [b'ray', b'Rapa'], [b'raz', b'Rahambuu'], [b'rbb', b'Palaung, Rumai'], [b'rbk', b'Bontok, Northern'], [b'rbl', b'Bikol, Miraya'], [b'rbp', b'Barababaraba'], [b'rcf', 'Creole French, R\xe9union'], [b'rdb', b'Rudbari'], [b'rea', b'Rerau'], [b'reb', b'Rembong'], [b'ree', b'Kayan, Rejang'], [b'reg', b'Kara (Tanzania)'], [b'rei', b'Reli'], [b'rej', b'Rejang'], [b'rel', b'Rendille'], [b'rem', b'Remo'], [b'ren', b'Rengao'], [b'rer', b'Rer Bare'], [b'res', b'Reshe'], [b'ret', b'Retta'], [b'rey', b'Reyesano'], [b'rga', b'Roria'], [b'rge', b'Romano-Greek'], [b'rgk', b'Rangkas'], [b'rgn', b'Romagnol'], [b'rgr', 'Res\xedgaro'], [b'rgs', b'Roglai, Southern'], [b'rgu', b'Ringgou'], [b'rhg', b'Rohingya'], [b'rhp', b'Yahang'], [b'ria', b'Riang (India)'], [b'rie', b'Rien'], [b'rif', b'Tarifit'], [b'ril', b'Riang (Myanmar)'], [b'rim', b'Nyaturu'], [b'rin', b'Nungu'], [b'rir', b'Ribun'], [b'rit', b'Ritarungo'], [b'riu', b'Riung'], [b'rjg', b'Rajong'], [b'rji', b'Raji'], [b'rjs', b'Rajbanshi'], [b'rka', b'Kraol'], [b'rkb', b'Rikbaktsa'], [b'rkh', b'Rakahanga-Manihiki'], [b'rki', b'Rakhine'], [b'rkm', b'Marka'], [b'rkt', b'Rangpuri'], [b'rkw', b'Arakwal'], [b'rma', b'Rama'], [b'rmb', b'Rembarunga'], [b'rmc', b'Romani, Carpathian'], [b'rmd', b'Danish, Traveller'], [b'rme', b'Angloromani'], [b'rmf', b'Romani, Kalo Finnish'], [b'rmg', b'Norwegian, Traveller'], [b'rmh', b'Murkim'], [b'rmi', b'Lomavren'], [b'rmk', b'Romkun'], [b'rml', b'Romani, Baltic'], [b'rmm', b'Roma'], [b'rmn', b'Romani, Balkan'], [b'rmo', b'Romani, Sinte'], [b'rmp', b'Rempi'], [b'rmq', 'Cal\xf3'], [b'rms', b'Romanian Sign Language'], [b'rmt', b'Domari'], [b'rmu', b'Romani, Tavringer'], [b'rmv', b'Romanova'], [b'rmw', b'Romani, Welsh'], [b'rmx', b'Romam'], [b'rmy', b'Romani, Vlax'], [b'rmz', b'Marma'], [b'rna', b'Runa'], [b'rnd', b'Ruund'], [b'rng', b'Ronga'], [b'rnl', b'Ranglong'], [b'rnn', b'Roon'], [b'rnp', b'Rongpo'], [b'rnr', b'Nari Nari'], [b'rnw', b'Rungwa'], [b'rob', b"Tae'"], [b'roc', b'Roglai, Cacgia'], [b'rod', b'Rogo'], [b'roe', b'Ronji'], [b'rof', b'Rombo'], [b'rog', b'Roglai, Northern'], [b'roh', b'Romansh'], [b'rol', b'Romblomanon'], [b'rom', b'Romany'], [b'ron', b'Romanian'], [b'roo', b'Rotokas'], [b'rop', b'Kriol'], [b'ror', b'Rongga'], [b'rou', b'Runga'], [b'row', b'Dela-Oenale'], [b'rpn', b'Repanbitip'], [b'rpt', b'Rapting'], [b'rri', b'Ririo'], [b'rro', b'Waima'], [b'rrt', b'Arritinngithigh'], [b'rsb', b'Romano-Serbian'], [b'rsi', b'Rennellese Sign Language'], [b'rsl', b'Russian Sign Language'], [b'rtc', b'Chin, Rungtu'], [b'rth', b'Ratahan'], [b'rtm', b'Rotuman'], [b'rtw', b'Rathawi'], [b'rub', b'Gungu'], [b'ruc', b'Ruuli'], [b'rue', b'Rusyn'], [b'ruf', b'Luguru'], [b'rug', b'Roviana'], [b'ruh', b'Ruga'], [b'rui', b'Rufiji'], [b'ruk', b'Che'], [b'run', b'Rundi'], [b'ruo', b'Romanian, Istro'], [b'rup', b'Romanian, Macedo-'], [b'ruq', b'Romanian, Megleno'], [b'rus', b'Russian'], [b'rut', b'Rutul'], [b'ruu', b'Lobu, Lanas'], [b'ruy', b'Mala (Nigeria)'], [b'ruz', b'Ruma'], [b'rwa', b'Rawo'], [b'rwk', b'Rwa'], [b'rwm', b'Amba (Uganda)'], [b'rwo', b'Rawa'], [b'rwr', b'Marwari (India)'], [b'rxd', b'Ngardi'], [b'rxw', b'Karuwali'], [b'ryn', b'Amami-Oshima, Northern'], [b'rys', b'Yaeyama'], [b'ryu', b'Okinawan, Central'], [b'saa', b'Saba'], [b'sab', b'Buglere'], [b'sac', b'Meskwaki'], [b'sad', b'Sandawe'], [b'sae', 'Saban\xea'], [b'saf', b'Safaliba'], [b'sag', b'Sango'], [b'sah', b'Yakut'], [b'saj', b'Sahu'], [b'sak', b'Sake'], [b'sam', b'Aramaic, Samaritan'], [b'san', b'Sanskrit'], [b'sao', b'Sause'], [b'sap', 'Sanapan\xe1'], [b'saq', b'Samburu'], [b'sar', b'Saraveca'], [b'sas', b'Sasak'], [b'sat', b'Santali'], [b'sau', b'Saleman'], [b'sav', b'Saafi-Saafi'], [b'saw', b'Sawi'], [b'sax', b'Sa'], [b'say', b'Saya'], [b'saz', b'Saurashtra'], [b'sba', b'Ngambay'], [b'sbb', b'Simbo'], [b'sbc', b'Kele (Papua New Guinea)'], [b'sbd', b'Samo, Southern'], [b'sbe', b'Saliba'], [b'sbf', b'Shabo'], [b'sbg', b'Seget'], [b'sbh', b'Sori-Harengan'], [b'sbi', b'Seti'], [b'sbj', b'Surbakhal'], [b'sbk', b'Safwa'], [b'sbl', b'Sambal, Botolan'], [b'sbm', b'Sagala'], [b'sbn', b'Bhil, Sindhi'], [b'sbo', 'Sab\xfcm'], [b'sbp', b'Sangu (Tanzania)'], [b'sbq', b'Sileibi'], [b'sbr', b'Sembakung Murut'], [b'sbs', b'Subiya'], [b'sbt', b'Kimki'], [b'sbu', b'Bhoti, Stod'], [b'sbv', b'Sabine'], [b'sbw', b'Simba'], [b'sbx', b'Seberuang'], [b'sby', b'Soli'], [b'sbz', b'Sara Kaba'], [b'scb', b'Chut'], [b'sce', b'Dongxiang'], [b'scf', b'Creole French, San Miguel'], [b'scg', b'Sanggau'], [b'sch', b'Sakachep'], [b'sci', b'Creole Malay, Sri Lankan'], [b'sck', b'Sadri'], [b'scl', b'Shina'], [b'scn', b'Sicilian'], [b'sco', b'Scots'], [b'scp', b'Helambu Sherpa'], [b'scq', b"Sa'och"], [b'scs', b'Slavey, North'], [b'scu', b'Shumcho'], [b'scv', b'Sheni'], [b'scw', b'Sha'], [b'scx', b'Sicel'], [b'sda', b"Toraja-Sa'dan"], [b'sdb', b'Shabak'], [b'sdc', b'Sardinian, Sassarese'], [b'sde', b'Surubu'], [b'sdf', b'Sarli'], [b'sdg', b'Savi'], [b'sdh', b'Kurdish, Southern'], [b'sdj', b'Suundi'], [b'sdk', b'Sos Kundi'], [b'sdl', b'Saudi Arabian Sign Language'], [b'sdm', b'Semandang'], [b'sdn', b'Sardinian, Gallurese'], [b'sdo', b'Bidayuh, Bukar-Sadung'], [b'sdp', b'Sherdukpen'], [b'sdr', b'Sadri, Oraon'], [b'sds', b'Sened'], [b'sdt', b'Shuadit'], [b'sdu', b'Sarudu'], [b'sdx', b'Melanau, Sibu'], [b'sdz', b'Sallands'], [b'sea', b'Semai'], [b'seb', b'Senoufo, Shempire'], [b'sec', b'Sechelt'], [b'sed', b'Sedang'], [b'see', b'Seneca'], [b'sef', b'Senoufo, Cebaara'], [b'seg', b'Segeju'], [b'seh', b'Sena'], [b'sei', b'Seri'], [b'sej', b'Sene'], [b'sek', b'Sekani'], [b'sel', b'Selkup'], [b'sen', 'S\xe9noufo, Nanerig\xe9'], [b'seo', b'Suarmin'], [b'sep', 'S\xe9noufo, S\xecc\xect\xe9'], [b'seq', 'S\xe9noufo, Senara'], [b'ser', b'Serrano'], [b'ses', b'Songhai, Koyraboro Senni'], [b'set', b'Sentani'], [b'seu', b'Serui-Laut'], [b'sev', b'Senoufo, Nyarafolo'], [b'sew', b'Sewa Bay'], [b'sey', b'Secoya'], [b'sez', b'Chin, Senthang'], [b'sfb', b'Langue des signes de Belgique Francophone'], [b'sfe', b'Subanen, Eastern'], [b'sfm', b'Miao, Small Flowery'], [b'sfs', b'South African Sign Language'], [b'sfw', b'Sehwi'], [b'sga', b'Irish, Old (to 900)'], [b'sgb', b'Ayta, Mag-antsi'], [b'sgc', b'Kipsigis'], [b'sgd', b'Surigaonon'], [b'sge', b'Segai'], [b'sgg', b'Swiss-German Sign Language'], [b'sgh', b'Shughni'], [b'sgi', b'Suga'], [b'sgj', b'Surgujia'], [b'sgk', b'Sangkong'], [b'sgm', b'Singa'], [b'sgo', b'Songa'], [b'sgp', b'Singpho'], [b'sgr', b'Sangisari'], [b'sgs', b'Samogitian'], [b'sgt', b'Brokpake'], [b'sgu', b'Salas'], [b'sgw', b'Sebat Bet Gurage'], [b'sgx', b'Sierra Leone Sign Language'], [b'sgy', b'Sanglechi'], [b'sgz', b'Sursurunga'], [b'sha', b'Shall-Zwall'], [b'shb', b'Ninam'], [b'shc', b'Sonde'], [b'shd', b'Kundal Shahi'], [b'she', b'Sheko'], [b'shg', b'Shua'], [b'shh', b'Shoshoni'], [b'shi', b'Tachelhit'], [b'shj', b'Shatt'], [b'shk', b'Shilluk'], [b'shl', b'Shendu'], [b'shm', b'Shahrudi'], [b'shn', b'Shan'], [b'sho', b'Shanga'], [b'shp', b'Shipibo-Conibo'], [b'shq', b'Sala'], [b'shr', b'Shi'], [b'shs', b'Shuswap'], [b'sht', b'Shasta'], [b'shu', b'Arabic, Chadian'], [b'shv', b'Shehri'], [b'shw', b'Shwai'], [b'shx', b'She'], [b'shy', b'Tachawit'], [b'shz', b'Senoufo, Syenara'], [b'sia', b'Sami, Akkala'], [b'sib', b'Sebop'], [b'sid', b'Sidamo'], [b'sie', b'Simaa'], [b'sif', b'Siamou'], [b'sig', b'Paasaal'], [b'sih', b'Zire'], [b'sii', b'Shom Peng'], [b'sij', b'Numbami'], [b'sik', b'Sikiana'], [b'sil', b'Sisaala, Tumulung'], [b'sim', b'Mende (Papua New Guinea)'], [b'sin', b'Sinhala'], [b'sip', b'Sikkimese'], [b'siq', b'Sonia'], [b'sir', b'Siri'], [b'sis', b'Siuslaw'], [b'siu', b'Sinagen'], [b'siv', b'Sumariup'], [b'siw', b'Siwai'], [b'six', b'Sumau'], [b'siy', b'Sivandi'], [b'siz', b'Siwi'], [b'sja', b'Epena'], [b'sjb', b'Sajau Basap'], [b'sjd', b'Sami, Kildin'], [b'sje', b'Sami, Pite'], [b'sjg', b'Assangori'], [b'sjk', b'Sami, Kemi'], [b'sjl', b'Sajalong'], [b'sjm', b'Mapun'], [b'sjn', b'Sindarin'], [b'sjo', b'Xibe'], [b'sjp', b'Surjapuri'], [b'sjr', b'Siar-Lak'], [b'sjs', b'Senhaja De Srair'], [b'sjt', b'Sami, Ter'], [b'sju', b'Sami, Ume'], [b'sjw', b'Shawnee'], [b'ska', b'Skagit'], [b'skb', b'Saek'], [b'skc', b'Ma Manda'], [b'skd', b'Miwok, Southern Sierra'], [b'ske', b'Seke (Vanuatu)'], [b'skf', 'Sakirabi\xe1'], [b'skg', b'Malagasy, Sakalava'], [b'skh', b'Sikule'], [b'ski', b'Sika'], [b'skj', b'Seke (Nepal)'], [b'skk', b'Sok'], [b'skm', b'Kutong'], [b'skn', b'Subanon, Kolibugan'], [b'sko', b'Seko Tengah'], [b'skp', b'Sekapan'], [b'skq', b'Sininkere'], [b'skr', b'Seraiki'], [b'sks', b'Maia'], [b'skt', b'Sakata'], [b'sku', b'Sakao'], [b'skv', b'Skou'], [b'skw', b'Creole Dutch, Skepi'], [b'skx', b'Seko Padang'], [b'sky', b'Sikaiana'], [b'skz', b'Sekar'], [b'slc', 'S\xe1liba'], [b'sld', b'Sissala'], [b'sle', b'Sholaga'], [b'slf', b'Swiss-Italian Sign Language'], [b'slg', b'Selungai Murut'], [b'slh', b'Salish, Southern Puget Sound'], [b'sli', b'Silesian, Lower'], [b'slj', 'Salum\xe1'], [b'slk', b'Slovak'], [b'sll', b'Salt-Yui'], [b'slm', b'Sama, Pangutaran'], [b'sln', b'Salinan'], [b'slp', b'Lamaholot'], [b'slq', b'Salchuq'], [b'slr', b'Salar'], [b'sls', b'Singapore Sign Language'], [b'slt', b'Sila'], [b'slu', b'Selaru'], [b'slv', b'Slovenian'], [b'slw', b'Sialum'], [b'slx', b'Salampasu'], [b'sly', b'Selayar'], [b'slz', b"Ma'ya"], [b'sma', b'Sami, Southern'], [b'smb', b'Simbari'], [b'smc', b'Som'], [b'smd', b'Sama'], [b'sme', b'Sami, Northern'], [b'smf', b'Auwe'], [b'smg', b'Simbali'], [b'smh', b'Samei'], [b'smj', b'Lule Sami'], [b'smk', b'Bolinao'], [b'sml', b'Sama, Central'], [b'smm', b'Musasa'], [b'smn', b'Sami, Inari'], [b'smo', b'Samoan'], [b'smp', b'Samaritan'], [b'smq', b'Samo'], [b'smr', b'Simeulue'], [b'sms', b'Sami, Skolt'], [b'smt', b'Simte'], [b'smu', b'Somray'], [b'smv', b'Samvedi'], [b'smw', b'Sumbawa'], [b'smx', b'Samba'], [b'smy', b'Semnani'], [b'smz', b'Simeku'], [b'sna', b'Shona'], [b'snb', b'Sebuyau'], [b'snc', b'Sinaugoro'], [b'snd', b'Sindhi'], [b'sne', b'Bidayuh, Bau'], [b'snf', b'Noon'], [b'sng', b'Sanga (Democratic Republic of Congo)'], [b'snh', b'Shinabo'], [b'sni', b'Sensi'], [b'snj', b'Sango, Riverain'], [b'snk', b'Soninke'], [b'snl', b'Sangil'], [b'snm', b"Ma'di, Southern"], [b'snn', b'Siona'], [b'sno', b'Snohomish'], [b'snp', b'Siane'], [b'snq', b'Sangu (Gabon)'], [b'snr', b'Sihan'], [b'sns', b'South West Bay'], [b'snu', b'Senggi'], [b'snv', b"Sa'ban"], [b'snw', b'Selee'], [b'snx', b'Sam'], [b'sny', b'Saniyo-Hiyewe'], [b'snz', b'Sinsauru'], [b'soa', b'Thai Song'], [b'sob', b'Sobei'], [b'soc', b'So (Democratic Republic of Congo)'], [b'sod', b'Songoora'], [b'soe', b'Songomeno'], [b'sog', b'Sogdian'], [b'soh', b'Aka'], [b'soi', b'Sonha'], [b'soj', b'Soi'], [b'sok', b'Sokoro'], [b'sol', b'Solos'], [b'som', b'Somali'], [b'soo', b'Songo'], [b'sop', b'Songe'], [b'soq', b'Kanasi'], [b'sor', b'Somrai'], [b'sos', b'Seeku'], [b'sot', b'Sotho, Southern'], [b'sou', b'Thai, Southern'], [b'sov', b'Sonsorol'], [b'sow', b'Sowanda'], [b'sox', b'Swo'], [b'soy', b'Miyobe'], [b'soz', b'Temi'], [b'spa', b'Spanish'], [b'spb', b'Sepa (Indonesia)'], [b'spc', 'Sap\xe9'], [b'spd', b'Saep'], [b'spe', b'Sepa (Papua New Guinea)'], [b'spg', b'Sian'], [b'spi', b'Saponi'], [b'spk', b'Sengo'], [b'spl', b'Selepet'], [b'spm', b'Akukem'], [b'spo', b'Spokane'], [b'spp', b'Senoufo, Supyire'], [b'spq', b'Spanish, Loreto-Ucayali'], [b'spr', b'Saparua'], [b'sps', b'Saposa'], [b'spt', b'Bhoti, Spiti'], [b'spu', b'Sapuan'], [b'spv', b'Sambalpuri'], [b'spx', b'Picene, South'], [b'spy', b'Sabaot'], [b'sqa', b'Shama-Sambuga'], [b'sqh', b'Shau'], [b'sqi', b'Albanian'], [b'sqk', b'Albanian Sign Language'], [b'sqm', b'Suma'], [b'sqn', b'Susquehannock'], [b'sqo', b'Sorkhei'], [b'sqq', b'Sou'], [b'sqr', b'Arabic, Siculo'], [b'sqs', b'Sri Lankan Sign Language'], [b'sqt', b'Soqotri'], [b'squ', b'Squamish'], [b'sra', b'Saruga'], [b'srb', b'Sora'], [b'src', b'Sardinian, Logudorese'], [b'srd', b'Sardinian'], [b'sre', b'Sara'], [b'srf', b'Nafi'], [b'srg', b'Sulod'], [b'srh', b'Sarikoli'], [b'sri', b'Siriano'], [b'srk', b'Serudung Murut'], [b'srl', b'Isirawa'], [b'srm', b'Saramaccan'], [b'srn', b'Sranan Tongo'], [b'sro', b'Sardinian, Campidanese'], [b'srp', b'Serbian'], [b'srq', 'Sirion\xf3'], [b'srr', b'Serer'], [b'srs', b'Sarsi'], [b'srt', b'Sauri'], [b'sru', 'Suru\xed'], [b'srv', b'Sorsoganon, Southern'], [b'srw', b'Serua'], [b'srx', b'Sirmauri'], [b'sry', b'Sera'], [b'srz', b'Shahmirzadi'], [b'ssb', b'Sama, Southern'], [b'ssc', b'Suba-Simbiti'], [b'ssd', b'Siroi'], [b'sse', b'Balangingi'], [b'ssf', b'Thao'], [b'ssg', b'Seimat'], [b'ssh', b'Arabic, Shihhi'], [b'ssi', b'Sansi'], [b'ssj', b'Sausi'], [b'ssk', b'Sunam'], [b'ssl', b'Sisaala, Western'], [b'ssm', b'Semnam'], [b'ssn', b'Waata'], [b'sso', b'Sissano'], [b'ssp', b'Spanish Sign Language'], [b'ssq', b"So'a"], [b'ssr', b'Swiss-French Sign Language'], [b'sss', 'S\xf4'], [b'sst', b'Sinasina'], [b'ssu', b'Susuami'], [b'ssv', b'Shark Bay'], [b'ssw', b'Swati'], [b'ssx', b'Samberigi'], [b'ssy', b'Saho'], [b'ssz', b'Sengseng'], [b'sta', b'Settla'], [b'stb', b'Subanen, Northern'], [b'std', b'Sentinel'], [b'ste', b'Liana-Seti'], [b'stf', b'Seta'], [b'stg', b'Trieng'], [b'sth', b'Shelta'], [b'sti', b'Stieng, Bulo'], [b'stj', b'Samo, Matya'], [b'stk', b'Arammba'], [b'stl', b'Stellingwerfs'], [b'stm', b'Setaman'], [b'stn', b'Owa'], [b'sto', b'Stoney'], [b'stp', b'Tepehuan, Southeastern'], [b'stq', b'Saterfriesisch'], [b'str', b'Salish, Straits'], [b'sts', b'Shumashti'], [b'stt', b'Stieng, Budeh'], [b'stu', b'Samtao'], [b'stv', b"Silt'e"], [b'stw', b'Satawalese'], [b'sty', b'Tatar, Siberian'], [b'sua', b'Sulka'], [b'sub', b'Suku'], [b'suc', b'Subanon, Western'], [b'sue', b'Suena'], [b'sug', b'Suganga'], [b'sui', b'Suki'], [b'suj', b'Shubi'], [b'suk', b'Sukuma'], [b'sun', b'Sundanese'], [b'suq', b'Suri'], [b'sur', b'Mwaghavul'], [b'sus', b'Susu'], [b'sut', b'Subtiaba'], [b'suv', b'Puroik'], [b'suw', b'Sumbwa'], [b'sux', b'Sumerian'], [b'suy', 'Suy\xe1'], [b'suz', b'Sunwar'], [b'sva', b'Svan'], [b'svb', b'Ulau-Suain'], [b'svc', b'Creole English, Vincentian'], [b'sve', b'Serili'], [b'svk', b'Slovakian Sign Language'], [b'svm', b'Slavomolisano'], [b'svr', b'Savara'], [b'svs', b'Savosavo'], [b'svx', b'Skalvian'], [b'swa', b'Swahili (macrolanguage)'], [b'swb', b'Comorian, Maore'], [b'swc', b'Swahili, Congo'], [b'swe', b'Swedish'], [b'swf', b'Sere'], [b'swg', b'Swabian'], [b'swh', b'Swahili (individual language)'], [b'swi', b'Sui'], [b'swj', b'Sira'], [b'swk', b'Sena, Malawi'], [b'swl', b'Swedish Sign Language'], [b'swm', b'Samosa'], [b'swn', b'Sawknah'], [b'swo', b'Shanenawa'], [b'swp', b'Suau'], [b'swq', b'Sharwa'], [b'swr', b'Saweru'], [b'sws', b'Seluwasan'], [b'swt', b'Sawila'], [b'swu', b'Suwawa'], [b'swv', b'Shekhawati'], [b'sww', b'Sowa'], [b'swx', 'Suruah\xe1'], [b'swy', b'Sarua'], [b'sxb', b'Suba'], [b'sxc', b'Sicanian'], [b'sxe', b'Sighu'], [b'sxg', b'Shixing'], [b'sxk', b'Kalapuya, Southern'], [b'sxl', b'Selian'], [b'sxm', b'Samre'], [b'sxn', b'Sangir'], [b'sxo', b'Sorothaptic'], [b'sxr', b'Saaroa'], [b'sxs', b'Sasaru'], [b'sxu', b'Saxon, Upper'], [b'sxw', b'Gbe, Saxwe'], [b'sya', b'Siang'], [b'syb', b'Subanen, Central'], [b'syc', b'Syriac, Classical'], [b'syi', b'Seki'], [b'syk', b'Sukur'], [b'syl', b'Sylheti'], [b'sym', b'Samo, Maya'], [b'syn', b'Senaya'], [b'syo', b'Suoy'], [b'syr', b'Syriac'], [b'sys', b'Sinyar'], [b'syw', b'Kagate'], [b'syy', b'Al-Sayyid Bedouin Sign Language'], [b'sza', b'Semelai'], [b'szb', b'Ngalum'], [b'szc', b'Semaq Beri'], [b'szd', b'Seru'], [b'sze', b'Seze'], [b'szg', b'Sengele'], [b'szl', b'Silesian'], [b'szn', b'Sula'], [b'szp', b'Suabo'], [b'szv', b'Isu (Fako Division)'], [b'szw', b'Sawai'], [b'taa', b'Tanana, Lower'], [b'tab', b'Tabassaran'], [b'tac', b'Tarahumara, Lowland'], [b'tad', b'Tause'], [b'tae', b'Tariana'], [b'taf', 'Tapirap\xe9'], [b'tag', b'Tagoi'], [b'tah', b'Tahitian'], [b'taj', b'Tamang, Eastern'], [b'tak', b'Tala'], [b'tal', b'Tal'], [b'tam', b'Tamil'], [b'tan', b'Tangale'], [b'tao', b'Yami'], [b'tap', b'Taabwa'], [b'taq', b'Tamasheq'], [b'tar', b'Tarahumara, Central'], [b'tas', b'Tay Boi'], [b'tat', b'Tatar'], [b'tau', b'Tanana, Upper'], [b'tav', b'Tatuyo'], [b'taw', b'Tai'], [b'tax', b'Tamki'], [b'tay', b'Atayal'], [b'taz', b'Tocho'], [b'tba', 'Aikan\xe3'], [b'tbb', b'Tapeba'], [b'tbc', b'Takia'], [b'tbd', b'Kaki Ae'], [b'tbe', b'Tanimbili'], [b'tbf', b'Mandara'], [b'tbg', b'Tairora, North'], [b'tbh', b'Thurawal'], [b'tbi', b'Gaam'], [b'tbj', b'Tiang'], [b'tbk', b'Tagbanwa, Calamian'], [b'tbl', b'Tboli'], [b'tbm', b'Tagbu'], [b'tbn', b'Tunebo, Barro Negro'], [b'tbo', b'Tawala'], [b'tbp', b'Taworta'], [b'tbr', b'Tumtum'], [b'tbs', b'Tanguat'], [b'tbt', b'Tembo (Kitembo)'], [b'tbu', b'Tubar'], [b'tbv', b'Tobo'], [b'tbw', b'Tagbanwa'], [b'tbx', b'Kapin'], [b'tby', b'Tabaru'], [b'tbz', b'Ditammari'], [b'tca', b'Ticuna'], [b'tcb', b'Tanacross'], [b'tcc', b'Datooga'], [b'tcd', b'Tafi'], [b'tce', b'Tutchone, Southern'], [b'tcf', b"Me'phaa, Malinaltepec"], [b'tcg', b'Tamagario'], [b'tch', b'Creole English, Turks And Caicos'], [b'tci', 'W\xe1ra'], [b'tck', b'Tchitchege'], [b'tcl', b'Taman (Myanmar)'], [b'tcm', b'Tanahmerah'], [b'tcn', b'Tichurong'], [b'tco', b'Taungyo'], [b'tcp', b'Chin, Tawr'], [b'tcq', b'Kaiy'], [b'tcs', b'Creole, Torres Strait'], [b'tct', b"T'en"], [b'tcu', b'Tarahumara, Southeastern'], [b'tcw', 'Totonac, Tecpatl\xe1n'], [b'tcx', b'Toda'], [b'tcy', b'Tulu'], [b'tcz', b'Chin, Thado'], [b'tda', b'Tagdal'], [b'tdb', b'Panchpargania'], [b'tdc', 'Ember\xe1-Tad\xf3'], [b'tdd', 'Tai N\xfca'], [b'tde', b'Dogon, Tiranige Diga'], [b'tdf', b'Talieng'], [b'tdg', b'Tamang, Western'], [b'tdh', b'Thulung'], [b'tdi', b'Tomadino'], [b'tdj', b'Tajio'], [b'tdk', b'Tambas'], [b'tdl', b'Sur'], [b'tdn', b'Tondano'], [b'tdo', b'Teme'], [b'tdq', b'Tita'], [b'tdr', b'Todrah'], [b'tds', b'Doutai'], [b'tdt', b'Tetun Dili'], [b'tdu', b'Dusun, Tempasuk'], [b'tdv', b'Toro'], [b'tdx', b'Malagasy, Tandroy-Mahafaly'], [b'tdy', b'Tadyawan'], [b'tea', b'Temiar'], [b'teb', b'Tetete'], [b'tec', b'Terik'], [b'ted', b'Krumen, Tepo'], [b'tee', b'Tepehua, Huehuetla'], [b'tef', b'Teressa'], [b'teg', b'Teke-Tege'], [b'teh', b'Tehuelche'], [b'tei', b'Torricelli'], [b'tek', b'Teke, Ibali'], [b'tel', b'Telugu'], [b'tem', b'Timne'], [b'ten', b'Tama (Colombia)'], [b'teo', b'Teso'], [b'tep', b'Tepecano'], [b'teq', b'Temein'], [b'ter', b'Tereno'], [b'tes', b'Tengger'], [b'tet', b'Tetum'], [b'teu', b'Soo'], [b'tev', b'Teor'], [b'tew', b'Tewa (USA)'], [b'tex', b'Tennet'], [b'tey', b'Tulishi'], [b'tfi', b'Gbe, Tofin'], [b'tfn', b'Tanaina'], [b'tfo', b'Tefaro'], [b'tfr', b'Teribe'], [b'tft', b'Ternate'], [b'tga', b'Sagalla'], [b'tgb', b'Tobilung'], [b'tgc', b'Tigak'], [b'tgd', b'Ciwogai'], [b'tge', b'Tamang, Eastern Gorkha'], [b'tgf', b'Chalikha'], [b'tgh', b'Creole English, Tobagonian'], [b'tgi', b'Lawunuia'], [b'tgj', b'Tagin'], [b'tgk', b'Tajik'], [b'tgl', b'Tagalog'], [b'tgn', b'Tandaganon'], [b'tgo', b'Sudest'], [b'tgp', b'Tangoa'], [b'tgq', b'Tring'], [b'tgr', b'Tareng'], [b'tgs', b'Nume'], [b'tgt', b'Tagbanwa, Central'], [b'tgu', b'Tanggu'], [b'tgv', b'Tingui-Boto'], [b'tgw', b'Senoufo, Tagwana'], [b'tgx', b'Tagish'], [b'tgy', b'Togoyo'], [b'tgz', b'Tagalaka'], [b'tha', b'Thai'], [b'thc', b'Tai Hang Tong'], [b'thd', b'Thayore'], [b'the', b'Tharu, Chitwania'], [b'thf', b'Thangmi'], [b'thh', b'Tarahumara, Northern'], [b'thi', b'Tai Long'], [b'thk', b'Tharaka'], [b'thl', b'Tharu, Dangaura'], [b'thm', b'Aheu'], [b'thn', b'Thachanadan'], [b'thp', b'Thompson'], [b'thq', b'Tharu, Kochila'], [b'thr', b'Tharu, Rana'], [b'ths', b'Thakali'], [b'tht', b'Tahltan'], [b'thu', b'Thuri'], [b'thv', b'Tamahaq, Tahaggart'], [b'thw', b'Thudam'], [b'thx', b'The'], [b'thy', b'Tha'], [b'thz', b'Tamajeq, Tayart'], [b'tia', b'Tamazight, Tidikelt'], [b'tic', b'Tira'], [b'tid', b'Tidong'], [b'tif', b'Tifal'], [b'tig', b'Tigre'], [b'tih', b'Murut, Timugon'], [b'tii', b'Tiene'], [b'tij', b'Tilung'], [b'tik', b'Tikar'], [b'til', b'Tillamook'], [b'tim', b'Timbe'], [b'tin', b'Tindi'], [b'tio', b'Teop'], [b'tip', b'Trimuris'], [b'tiq', 'Ti\xe9fo'], [b'tir', b'Tigrinya'], [b'tis', b'Itneg, Masadiit'], [b'tit', b'Tinigua'], [b'tiu', b'Adasen'], [b'tiv', b'Tiv'], [b'tiw', b'Tiwi'], [b'tix', b'Tiwa, Southern'], [b'tiy', b'Tiruray'], [b'tiz', b'Tai Hongjin'], [b'tja', b'Tajuasohn'], [b'tjg', b'Tunjung'], [b'tji', b'Tujia, Northern'], [b'tjl', b'Tai Laing'], [b'tjm', b'Timucua'], [b'tjn', b'Tonjon'], [b'tjo', b'Tamazight, Temacine'], [b'tjs', b'Tujia, Southern'], [b'tju', b'Tjurruru'], [b'tjw', b'Djabwurrung'], [b'tka', 'Truk\xe1'], [b'tkb', b'Buksa'], [b'tkd', b'Tukudede'], [b'tke', b'Takwane'], [b'tkf', 'Tukumanf\xe9d'], [b'tkg', b'Malagasy, Tesaka'], [b'tkl', b'Tokelau'], [b'tkm', b'Takelma'], [b'tkn', b'Toku-No-Shima'], [b'tkp', b'Tikopia'], [b'tkq', b'Tee'], [b'tkr', b'Tsakhur'], [b'tks', b'Takestani'], [b'tkt', b'Tharu, Kathoriya'], [b'tku', b'Totonac, Upper Necaxa'], [b'tkw', b'Teanu'], [b'tkx', b'Tangko'], [b'tkz', b'Takua'], [b'tla', b'Tepehuan, Southwestern'], [b'tlb', b'Tobelo'], [b'tlc', b'Totonac, Yecuatla'], [b'tld', b'Talaud'], [b'tlf', b'Telefol'], [b'tlg', b'Tofanma'], [b'tlh', b'Klingon'], [b'tli', b'Tlingit'], [b'tlj', b'Talinga-Bwisi'], [b'tlk', b'Taloki'], [b'tll', b'Tetela'], [b'tlm', b'Tolomako'], [b'tln', b"Talondo'"], [b'tlo', b'Talodi'], [b'tlp', 'Totonac, Filomena Mata-Coahuitl\xe1n'], [b'tlq', b'Tai Loi'], [b'tlr', b'Talise'], [b'tls', b'Tambotalo'], [b'tlt', b'Teluti'], [b'tlu', b'Tulehu'], [b'tlv', b'Taliabu'], [b'tlx', b'Khehek'], [b'tly', b'Talysh'], [b'tma', b'Tama (Chad)'], [b'tmb', b'Katbol'], [b'tmc', b'Tumak'], [b'tmd', b'Haruai'], [b'tme', 'Trememb\xe9'], [b'tmf', b'Toba-Maskoy'], [b'tmg', 'Ternate\xf1o'], [b'tmh', b'Tamashek'], [b'tmi', b'Tutuba'], [b'tmj', b'Samarokena'], [b'tmk', b'Tamang, Northwestern'], [b'tml', b'Citak, Tamnim'], [b'tmm', b'Tai Thanh'], [b'tmn', b'Taman (Indonesia)'], [b'tmo', b'Temoq'], [b'tmp', 'Tai M\xe8ne'], [b'tmq', b'Tumleo'], [b'tmr', b'Aramaic, Jewish Babylonian (ca. 200-1200 CE)'], [b'tms', b'Tima'], [b'tmt', b'Tasmate'], [b'tmu', b'Iau'], [b'tmv', b'Tembo (Motembo)'], [b'tmw', b'Temuan'], [b'tmy', b'Tami'], [b'tmz', b'Tamanaku'], [b'tna', b'Tacana'], [b'tnb', b'Tunebo, Western'], [b'tnc', 'Tanimuca-Retuar\xe3'], [b'tnd', b'Tunebo, Angosturas'], [b'tne', b'Kallahan, Tinoc'], [b'tng', b'Tobanga'], [b'tnh', b'Maiani'], [b'tni', b'Tandia'], [b'tnk', b'Kwamera'], [b'tnl', b'Lenakel'], [b'tnm', b'Tabla'], [b'tnn', b'Tanna, North'], [b'tno', b'Toromono'], [b'tnp', b'Whitesands'], [b'tnq', b'Taino'], [b'tnr', 'M\xe9nik'], [b'tns', b'Tenis'], [b'tnt', b'Tontemboan'], [b'tnu', b'Tay Khang'], [b'tnv', b'Tangchangya'], [b'tnw', b'Tonsawang'], [b'tnx', b'Tanema'], [b'tny', b'Tongwe'], [b'tnz', b'Tonga (Thailand)'], [b'tob', b'Toba'], [b'toc', b'Totonac, Coyutla'], [b'tod', b'Toma'], [b'toe', b'Tomedes'], [b'tof', b'Gizrra'], [b'tog', b'Tonga (Nyasa)'], [b'toh', b'Gitonga'], [b'toi', b'Tonga (Zambia)'], [b'toj', b'Tojolabal'], [b'tol', b'Tolowa'], [b'tom', b'Tombulu'], [b'ton', b'Tonga (Tonga Islands)'], [b'too', 'Totonac, Xicotepec De Ju\xe1rez'], [b'top', b'Totonac, Papantla'], [b'toq', b'Toposa'], [b'tor', b'Banda, Togbo-Vara'], [b'tos', b'Totonac, Highland'], [b'tou', b'Tho'], [b'tov', b'Taromi, Upper'], [b'tow', b'Jemez'], [b'tox', b'Tobian'], [b'toy', b'Topoiyo'], [b'toz', b'To'], [b'tpa', b'Taupota'], [b'tpc', "Me'phaa, Azoy\xfa"], [b'tpe', b'Tippera'], [b'tpf', b'Tarpia'], [b'tpg', b'Kula'], [b'tpi', b'Tok Pisin'], [b'tpj', 'Tapiet\xe9'], [b'tpk', b'Tupinikin'], [b'tpl', b"Me'phaa, Tlacoapa"], [b'tpm', b'Tampulma'], [b'tpn', 'Tupinamb\xe1'], [b'tpo', b'Tai Pao'], [b'tpp', b'Tepehua, Pisaflores'], [b'tpq', b'Tukpa'], [b'tpr', 'Tupar\xed'], [b'tpt', b'Tepehua, Tlachichilco'], [b'tpu', b'Tampuan'], [b'tpv', b'Tanapag'], [b'tpw', 'Tup\xed'], [b'tpx', b"Me'phaa, Acatepec"], [b'tpy', b'Trumai'], [b'tpz', b'Tinputz'], [b'tqb', 'Temb\xe9'], [b'tql', b'Lehali'], [b'tqm', b'Turumsa'], [b'tqn', b'Tenino'], [b'tqo', b'Toaripi'], [b'tqp', b'Tomoip'], [b'tqq', b'Tunni'], [b'tqr', b'Torona'], [b'tqt', b'Totonac, Western'], [b'tqu', b'Touo'], [b'tqw', b'Tonkawa'], [b'tra', b'Tirahi'], [b'trb', b'Terebu'], [b'trc', b'Triqui, Copala'], [b'trd', b'Turi'], [b'tre', b'Tarangan, East'], [b'trf', b'Creole English, Trinidadian'], [b'trg', 'Lish\xe1n Did\xe1n'], [b'trh', b'Turaka'], [b'tri', 'Tri\xf3'], [b'trj', b'Toram'], [b'trl', b'Scottish, Traveller'], [b'trm', b'Tregami'], [b'trn', b'Trinitario'], [b'tro', b'Naga, Tarao'], [b'trp', b'Kok Borok'], [b'trq', 'Triqui, San Mart\xedn Itunyoso'], [b'trr', b'Taushiro'], [b'trs', b'Triqui, Chicahuaxtla'], [b'trt', b'Tunggare'], [b'tru', b'Turoyo'], [b'trv', b'Taroko'], [b'trw', b'Torwali'], [b'trx', b'Bidayuh, Tringgus-Sembaan'], [b'try', b'Turung'], [b'trz', 'Tor\xe1'], [b'tsa', b'Tsaangi'], [b'tsb', b'Tsamai'], [b'tsc', b'Tswa'], [b'tsd', b'Tsakonian'], [b'tse', b'Tunisian Sign Language'], [b'tsf', b'Tamang, Southwestern'], [b'tsg', b'Tausug'], [b'tsh', b'Tsuvan'], [b'tsi', b'Tsimshian'], [b'tsj', b'Tshangla'], [b'tsk', b'Tseku'], [b'tsl', "Ts'\xfcn-Lao"], [b'tsm', b'Turkish Sign Language'], [b'tsn', b'Tswana'], [b'tso', b'Tsonga'], [b'tsp', b'Toussian, Northern'], [b'tsq', b'Thai Sign Language'], [b'tsr', b'Akei'], [b'tss', b'Taiwan Sign Language'], [b'tst', b'Songway Kiini, Tondi'], [b'tsu', b'Tsou'], [b'tsv', b'Tsogo'], [b'tsw', b'Tsishingini'], [b'tsx', b'Mubami'], [b'tsy', b'Tebul Sign Language'], [b'tsz', b'Purepecha'], [b'tta', b'Tutelo'], [b'ttb', b'Gaa'], [b'ttc', b'Tektiteko'], [b'ttd', b'Tauade'], [b'tte', b'Bwanabwana'], [b'ttf', b'Tuotomb'], [b'ttg', b'Tutong'], [b'tth', b"Ta'oih, Upper"], [b'tti', b'Tobati'], [b'ttj', b'Tooro'], [b'ttk', b'Totoro'], [b'ttl', b'Totela'], [b'ttm', b'Tutchone, Northern'], [b'ttn', b'Towei'], [b'tto', b"Ta'oih, Lower"], [b'ttp', b'Tombelala'], [b'ttq', b'Tamajaq, Tawallammat'], [b'ttr', b'Tera'], [b'tts', b'Thai, Northeastern'], [b'ttt', b'Tat, Muslim'], [b'ttu', b'Torau'], [b'ttv', b'Titan'], [b'ttw', b'Long Wat'], [b'tty', b'Sikaritai'], [b'ttz', b'Tsum'], [b'tua', b'Wiarumus'], [b'tub', 'T\xfcbatulabal'], [b'tuc', b'Mutu'], [b'tud', 'Tux\xe1'], [b'tue', b'Tuyuca'], [b'tuf', b'Tunebo, Central'], [b'tug', b'Tunia'], [b'tuh', b'Taulil'], [b'tui', b'Tupuri'], [b'tuj', b'Tugutil'], [b'tuk', b'Turkmen'], [b'tul', b'Tula'], [b'tum', b'Tumbuka'], [b'tun', b'Tunica'], [b'tuo', b'Tucano'], [b'tuq', b'Tedaga'], [b'tur', b'Turkish'], [b'tus', b'Tuscarora'], [b'tuu', b'Tututni'], [b'tuv', b'Turkana'], [b'tux', 'Tuxin\xe1wa'], [b'tuy', b'Tugen'], [b'tuz', b'Turka'], [b'tva', b'Vaghua'], [b'tvd', b'Tsuvadi'], [b'tve', b"Te'un"], [b'tvk', b'Ambrym, Southeast'], [b'tvl', b'Tuvalu'], [b'tvm', b'Tela-Masbuar'], [b'tvn', b'Tavoyan'], [b'tvo', b'Tidore'], [b'tvs', b'Taveta'], [b'tvt', b'Naga, Tutsa'], [b'tvu', b'Tunen'], [b'tvw', b'Sedoa'], [b'tvy', b'Pidgin, Timor'], [b'twa', b'Twana'], [b'twb', b'Tawbuid, Western'], [b'twc', b'Teshenawa'], [b'twd', b'Twents'], [b'twe', b'Tewa (Indonesia)'], [b'twf', b'Tiwa, Northern'], [b'twg', b'Tereweng'], [b'twh', 'Tai D\xf3n'], [b'twi', b'Twi'], [b'twl', b'Tawara'], [b'twm', b'Monpa, Tawang'], [b'twn', b'Twendi'], [b'two', b'Tswapong'], [b'twp', b'Ere'], [b'twq', b'Tasawaq'], [b'twr', b'Tarahumara, Southwestern'], [b'twt', 'Turiw\xe1ra'], [b'twu', b'Termanu'], [b'tww', b'Tuwari'], [b'twx', b'Tewe'], [b'twy', b'Tawoyan'], [b'txa', b'Tombonuo'], [b'txb', b'Tokharian B'], [b'txc', b'Tsetsaut'], [b'txe', b'Totoli'], [b'txg', b'Tangut'], [b'txh', b'Thracian'], [b'txi', b'Ikpeng'], [b'txm', b'Tomini'], [b'txn', b'Tarangan, West'], [b'txo', b'Toto'], [b'txq', b'Tii'], [b'txr', b'Tartessian'], [b'txs', b'Tonsea'], [b'txt', b'Citak'], [b'txu', 'Kayap\xf3'], [b'txx', b'Tatana'], [b'txy', b'Malagasy, Tanosy'], [b'tya', b'Tauya'], [b'tye', b'Kyanga'], [b'tyh', b"O'du"], [b'tyi', b'Teke-Tsaayi'], [b'tyj', b'Tai Do'], [b'tyl', b'Thu Lao'], [b'tyn', b'Kombai'], [b'typ', b'Thaypan'], [b'tyr', b'Tai Daeng'], [b'tys', 'T\xe0y Sa Pa'], [b'tyt', 'T\xe0y Tac'], [b'tyu', b'Kua'], [b'tyv', b'Tuvinian'], [b'tyx', b'Teke-Tyee'], [b'tyz', 'T\xe0y'], [b'tza', b'Tanzanian Sign Language'], [b'tzh', b'Tzeltal'], [b'tzj', b"Tz'utujil"], [b'tzl', b'Talossan'], [b'tzm', b'Tamazight, Central Atlas'], [b'tzn', b'Tugun'], [b'tzo', b'Tzotzil'], [b'tzx', b'Tabriak'], [b'uam', 'Uamu\xe9'], [b'uan', b'Kuan'], [b'uar', b'Tairuma'], [b'uba', b'Ubang'], [b'ubi', b'Ubi'], [b'ubl', b"Bikol, Buhi'non"], [b'ubr', b'Ubir'], [b'ubu', b'Umbu-Ungu'], [b'uby', b'Ubykh'], [b'uda', b'Uda'], [b'ude', b'Udihe'], [b'udg', b'Muduga'], [b'udi', b'Udi'], [b'udj', b'Ujir'], [b'udl', b'Wuzlam'], [b'udm', b'Udmurt'], [b'udu', b'Uduk'], [b'ues', b'Kioko'], [b'ufi', b'Ufim'], [b'uga', b'Ugaritic'], [b'ugb', b'Kuku-Ugbanh'], [b'uge', b'Ughele'], [b'ugn', b'Ugandan Sign Language'], [b'ugo', b'Ugong'], [b'ugy', b'Uruguayan Sign Language'], [b'uha', b'Uhami'], [b'uhn', b'Damal'], [b'uig', b'Uighur'], [b'uis', b'Uisai'], [b'uiv', b'Iyive'], [b'uji', b'Tanjijili'], [b'uka', b'Kaburi'], [b'ukg', b'Ukuriguma'], [b'ukh', b'Ukhwejo'], [b'ukl', b'Ukrainian Sign Language'], [b'ukp', b'Ukpe-Bayobiri'], [b'ukq', b'Ukwa'], [b'ukr', b'Ukrainian'], [b'uks', 'Urub\xfa-Kaapor Sign Language'], [b'uku', b'Ukue'], [b'ukw', b'Ukwuani-Aboh-Ndoni'], [b'uky', b'Kuuk-Yak'], [b'ula', b'Fungwa'], [b'ulb', b'Ulukwumi'], [b'ulc', b'Ulch'], [b'ule', b'Lule'], [b'ulf', b'Usku'], [b'uli', b'Ulithian'], [b'ulk', b'Meriam'], [b'ull', b'Ullatan'], [b'ulm', b"Ulumanda'"], [b'uln', b'Unserdeutsch'], [b'ulu', b"Uma' Lung"], [b'ulw', b'Ulwa'], [b'uma', b'Umatilla'], [b'umb', b'Umbundu'], [b'umc', b'Marrucinian'], [b'umd', b'Umbindhamu'], [b'umg', b'Umbuygamu'], [b'umi', b'Ukit'], [b'umm', b'Umon'], [b'umn', b'Naga, Makyan'], [b'umo', 'Umot\xedna'], [b'ump', b'Umpila'], [b'umr', b'Umbugarla'], [b'ums', b'Pendau'], [b'umu', b'Munsee'], [b'una', b'Watut, North'], [b'und', b'Undetermined'], [b'une', b'Uneme'], [b'ung', b'Ngarinyin'], [b'unk', 'Enawen\xe9-Naw\xe9'], [b'unm', b'Unami'], [b'unn', b'Kurnai'], [b'unr', b'Mundari'], [b'unu', b'Unubahe'], [b'unx', b'Munda'], [b'unz', b'Kaili, Unde'], [b'uok', b'Uokha'], [b'upi', b'Umeda'], [b'upv', b'Uripiv-Wala-Rano-Atchin'], [b'ura', b'Urarina'], [b'urb', 'Urub\xfa-Kaapor'], [b'urc', b'Urningangg'], [b'urd', b'Urdu'], [b'ure', b'Uru'], [b'urf', b'Uradhi'], [b'urg', b'Urigina'], [b'urh', b'Urhobo'], [b'uri', b'Urim'], [b'urk', b"Urak Lawoi'"], [b'url', b'Urali'], [b'urm', b'Urapmin'], [b'urn', b'Uruangnirin'], [b'uro', b'Ura (Papua New Guinea)'], [b'urp', b'Uru-Pa-In'], [b'urr', b'Lehalurup'], [b'urt', b'Urat'], [b'uru', b'Urumi'], [b'urv', b'Uruava'], [b'urw', b'Sop'], [b'urx', b'Urimo'], [b'ury', b'Orya'], [b'urz', b'Uru-Eu-Wau-Wau'], [b'usa', b'Usarufa'], [b'ush', b'Ushojo'], [b'usi', b'Usui'], [b'usk', b'Usaghade'], [b'usp', b'Uspanteco'], [b'usu', b'Uya'], [b'uta', b'Otank'], [b'ute', b'Ute-Southern Paiute'], [b'utp', b'Amba (Solomon Islands)'], [b'utr', b'Etulo'], [b'utu', b'Utu'], [b'uum', b'Urum'], [b'uun', b'Kulon-Pazeh'], [b'uur', b'Ura (Vanuatu)'], [b'uuu', b'U'], [b'uve', b'Uvean, West'], [b'uvh', b'Uri'], [b'uvl', b'Lote'], [b'uwa', b'Kuku-Uwanh'], [b'uya', b'Doko-Uyanga'], [b'uzb', b'Uzbek'], [b'uzn', b'Uzbek, Northern'], [b'uzs', b'Uzbek, Southern'], [b'vaa', b'Vaagri Booli'], [b'vae', b'Vale'], [b'vaf', b'Vafsi'], [b'vag', b'Vagla'], [b'vah', b'Varhadi-Nagpuri'], [b'vai', b'Vai'], [b'vaj', b'Vasekela Bushman'], [b'val', b'Vehes'], [b'vam', b'Vanimo'], [b'van', b'Valman'], [b'vao', b'Vao'], [b'vap', b'Vaiphei'], [b'var', b'Huarijio'], [b'vas', b'Vasavi'], [b'vau', b'Vanuma'], [b'vav', b'Varli'], [b'vay', b'Wayu'], [b'vbb', b'Babar, Southeast'], [b'vbk', b'Bontok, Southwestern'], [b'vec', b'Venetian'], [b'ved', b'Veddah'], [b'vel', b'Veluws'], [b'vem', b'Vemgo-Mabas'], [b'ven', b'Venda'], [b'veo', 'Venture\xf1o'], [b'vep', b'Veps'], [b'ver', b'Mom Jango'], [b'vgr', b'Vaghri'], [b'vgt', b'Vlaamse Gebarentaal'], [b'vic', b'Creole English, Virgin Islands'], [b'vid', b'Vidunda'], [b'vie', b'Vietnamese'], [b'vif', b'Vili'], [b'vig', b'Viemo'], [b'vil', b'Vilela'], [b'vin', b'Vinza'], [b'vis', b'Vishavan'], [b'vit', b'Viti'], [b'viv', b'Iduna'], [b'vka', b'Kariyarra'], [b'vki', b'Ija-Zuba'], [b'vkj', b'Kujarge'], [b'vkk', b'Kaur'], [b'vkl', b'Kulisusu'], [b'vkm', b'Kamakan'], [b'vko', b'Kodeoha'], [b'vkp', b'Creole Portuguese, Korlai'], [b'vkt', b'Malay, Tenggarong Kutai'], [b'vku', b'Kurrama'], [b'vlp', b'Valpei'], [b'vls', b'Vlaams'], [b'vma', b'Martuyhunira'], [b'vmb', b'Barbaram'], [b'vmc', b'Mixtec, Juxtlahuaca'], [b'vmd', b'Koraga, Mudu'], [b'vme', b'Masela, East'], [b'vmf', 'Mainfr\xe4nkisch'], [b'vmg', b'Lungalunga'], [b'vmh', b'Maraghei'], [b'vmi', b'Miwa'], [b'vmj', b'Mixtec, Ixtayutla'], [b'vmk', b'Makhuwa-Shirima'], [b'vml', b'Malgana'], [b'vmm', b'Mixtec, Mitlatongo'], [b'vmp', b'Mazatec, Soyaltepec'], [b'vmq', b'Mixtec, Soyaltepec'], [b'vmr', b'Marenje'], [b'vms', b'Moksela'], [b'vmu', b'Muluridyi'], [b'vmv', b'Maidu, Valley'], [b'vmw', b'Makhuwa'], [b'vmx', b'Mixtec, Tamazola'], [b'vmy', b'Mazatec, Ayautla'], [b'vmz', 'Mazatec, Mazatl\xe1n'], [b'vnk', b'Vano'], [b'vnm', b'Vinmavis'], [b'vnp', b'Vunapu'], [b'vol', 'Volap\xfck'], [b'vor', b'Voro'], [b'vot', b'Votic'], [b'vra', b"Vera'a"], [b'vro', 'V\xf5ro'], [b'vrs', b'Varisi'], [b'vrt', b'Burmbar'], [b'vsi', b'Moldova Sign Language'], [b'vsl', b'Venezuelan Sign Language'], [b'vsv', b'Valencian Sign Language'], [b'vto', b'Vitou'], [b'vum', b'Vumbu'], [b'vun', b'Vunjo'], [b'vut', b'Vute'], [b'vwa', b'Awa (China)'], [b'waa', b'Walla Walla'], [b'wab', b'Wab'], [b'wac', b'Wasco-Wishram'], [b'wad', b'Wandamen'], [b'wae', b'Walser'], [b'waf', 'Wakon\xe1'], [b'wag', b"Wa'ema"], [b'wah', b'Watubela'], [b'wai', b'Wares'], [b'waj', b'Waffa'], [b'wal', b'Wolaytta'], [b'wam', b'Wampanoag'], [b'wan', b'Wan'], [b'wao', b'Wappo'], [b'wap', b'Wapishana'], [b'waq', b'Wageman'], [b'war', b'Waray (Philippines)'], [b'was', b'Washo'], [b'wat', b'Kaninuwa'], [b'wau', 'Waur\xe1'], [b'wav', b'Waka'], [b'waw', b'Waiwai'], [b'wax', b'Watam'], [b'way', b'Wayana'], [b'waz', b'Wampur'], [b'wba', b'Warao'], [b'wbb', b'Wabo'], [b'wbe', b'Waritai'], [b'wbf', b'Wara'], [b'wbh', b'Wanda'], [b'wbi', b'Vwanji'], [b'wbj', b'Alagwa'], [b'wbk', b'Waigali'], [b'wbl', b'Wakhi'], [b'wbm', b'Wa'], [b'wbp', b'Warlpiri'], [b'wbq', b'Waddar'], [b'wbr', b'Wagdi'], [b'wbt', b'Wanman'], [b'wbv', b'Wajarri'], [b'wbw', b'Woi'], [b'wca', 'Yanom\xe1mi'], [b'wci', b'Gbe, Waci'], [b'wdd', b'Wandji'], [b'wdg', b'Wadaginam'], [b'wdj', b'Wadjiginy'], [b'wdk', b'Wadikali'], [b'wdu', b'Wadjigu'], [b'wdy', b'Wadjabangayi'], [b'wea', b'Wewaw'], [b'wec', 'W\xe8 Western'], [b'wed', b'Wedau'], [b'weg', b'Wergaia'], [b'weh', b'Weh'], [b'wei', b'Kiunum'], [b'wem', b'Gbe, Weme'], [b'weo', b'Wemale'], [b'wep', b'Westphalien'], [b'wer', b'Weri'], [b'wes', b'Pidgin, Cameroon'], [b'wet', b'Perai'], [b'weu', b'Chin, Rawngtu'], [b'wew', b'Wejewa'], [b'wfg', b'Yafi'], [b'wga', b'Wagaya'], [b'wgb', b'Wagawaga'], [b'wgg', b'Wangganguru'], [b'wgi', b'Wahgi'], [b'wgo', b'Waigeo'], [b'wgu', b'Wirangu'], [b'wgy', b'Warrgamay'], [b'wha', b'Manusela'], [b'whg', b'Wahgi, North'], [b'whk', b'Kenyah, Wahau'], [b'whu', b'Kayan, Wahau'], [b'wib', b'Toussian, Southern'], [b'wic', b'Wichita'], [b'wie', b'Wik-Epa'], [b'wif', b'Wik-Keyangan'], [b'wig', b'Wik-Ngathana'], [b'wih', b"Wik-Me'anha"], [b'wii', b'Minidien'], [b'wij', b'Wik-Iiyanh'], [b'wik', b'Wikalkan'], [b'wil', b'Wilawila'], [b'wim', b'Wik-Mungkan'], [b'win', b'Ho-Chunk'], [b'wir', 'Wiraf\xe9d'], [b'wiu', b'Wiru'], [b'wiv', b'Vitu'], [b'wiy', b'Wiyot'], [b'wja', b'Waja'], [b'wji', b'Warji'], [b'wka', b"Kw'adza"], [b'wkb', b'Kumbaran'], [b'wkd', b'Wakde'], [b'wkl', b'Kalanadi'], [b'wku', b'Kunduvadi'], [b'wkw', b'Wakawaka'], [b'wky', b'Wangkayutyuru'], [b'wla', b'Walio'], [b'wlc', b'Comorian, Mwali'], [b'wle', b'Wolane'], [b'wlg', b'Kunbarlang'], [b'wli', b'Waioli'], [b'wlk', b'Wailaki'], [b'wll', b'Wali (Sudan)'], [b'wlm', b'Welsh, Middle'], [b'wln', b'Walloon'], [b'wlo', b'Wolio'], [b'wlr', b'Wailapa'], [b'wls', b'Wallisian'], [b'wlu', b'Wuliwuli'], [b'wlv', 'Wich\xed Lhamt\xe9s Vejoz'], [b'wlw', b'Walak'], [b'wlx', b'Wali (Ghana)'], [b'wly', b'Waling'], [b'wma', b'Mawa (Nigeria)'], [b'wmb', b'Wambaya'], [b'wmc', b'Wamas'], [b'wmd', 'Mamaind\xe9'], [b'wme', b'Wambule'], [b'wmh', b"Waima'a"], [b'wmi', b'Wamin'], [b'wmm', b'Maiwa (Indonesia)'], [b'wmn', b'Waamwang'], [b'wmo', b'Wom (Papua New Guinea)'], [b'wms', b'Wambon'], [b'wmt', b'Walmajarri'], [b'wmw', b'Mwani'], [b'wmx', b'Womo'], [b'wnb', b'Wanambre'], [b'wnc', b'Wantoat'], [b'wnd', b'Wandarang'], [b'wne', b'Waneci'], [b'wng', b'Wanggom'], [b'wni', b'Comorian, Ndzwani'], [b'wnk', b'Wanukaka'], [b'wnm', b'Wanggamala'], [b'wnn', b'Wunumara'], [b'wno', b'Wano'], [b'wnp', b'Wanap'], [b'wnu', b'Usan'], [b'wnw', b'Wintu'], [b'wny', b'Wanyi'], [b'woa', b'Tyaraity'], [b'wob', 'W\xe8 Northern'], [b'woc', b'Wogeo'], [b'wod', b'Wolani'], [b'woe', b'Woleaian'], [b'wof', b'Wolof, Gambian'], [b'wog', b'Wogamusin'], [b'woi', b'Kamang'], [b'wok', b'Longto'], [b'wol', b'Wolof'], [b'wom', b'Wom (Nigeria)'], [b'won', b'Wongo'], [b'woo', b'Manombai'], [b'wor', b'Woria'], [b'wos', b'Hanga Hundi'], [b'wow', b'Wawonii'], [b'woy', b'Weyto'], [b'wpc', b'Maco'], [b'wra', b'Warapu'], [b'wrb', b'Warluwara'], [b'wrd', b'Warduji'], [b'wrg', b'Warungu'], [b'wrh', b'Wiradhuri'], [b'wri', b'Wariyangga'], [b'wrk', b'Garrwa'], [b'wrl', b'Warlmanpa'], [b'wrm', b'Warumungu'], [b'wrn', b'Warnang'], [b'wro', b'Worrorra'], [b'wrp', b'Waropen'], [b'wrr', b'Wardaman'], [b'wrs', b'Waris'], [b'wru', b'Waru'], [b'wrv', b'Waruna'], [b'wrw', b'Gugu Warra'], [b'wrx', b'Wae Rana'], [b'wry', b'Merwari'], [b'wrz', b'Waray (Australia)'], [b'wsa', b'Warembori'], [b'wsi', b'Wusi'], [b'wsk', b'Waskia'], [b'wsr', b'Owenia'], [b'wss', b'Wasa'], [b'wsu', b'Wasu'], [b'wsv', b'Wotapuri-Katarqalai'], [b'wtf', b'Watiwa'], [b'wth', b'Wathawurrung'], [b'wti', b'Berta'], [b'wtk', b'Watakataui'], [b'wtm', b'Mewati'], [b'wtw', b'Wotu'], [b'wua', b'Wikngenchera'], [b'wub', b'Wunambal'], [b'wud', b'Wudu'], [b'wuh', b'Wutunhua'], [b'wul', b'Silimo'], [b'wum', b'Wumbvu'], [b'wun', b'Bungu'], [b'wur', b'Wurrugu'], [b'wut', b'Wutung'], [b'wuu', b'Chinese, Wu'], [b'wuv', b'Wuvulu-Aua'], [b'wux', b'Wulna'], [b'wuy', b'Wauyai'], [b'wwa', b'Waama'], [b'wwb', b'Wakabunga'], [b'wwo', b'Wetamut'], [b'wwr', b'Warrwa'], [b'www', b'Wawa'], [b'wxa', b'Waxianghua'], [b'wxw', b'Wardandi'], [b'wya', b'Wyandot'], [b'wyb', b'Wangaaybuwan-Ngiyambaa'], [b'wyi', b'Woiwurrung'], [b'wym', b'Wymysorys'], [b'wyr', 'Wayor\xf3'], [b'wyy', b'Fijian, Western'], [b'xaa', b'Arabic, Andalusian'], [b'xab', b'Sambe'], [b'xac', b'Kachari'], [b'xad', b'Adai'], [b'xae', b'Aequian'], [b'xag', b'Aghwan'], [b'xai', 'Kaimb\xe9'], [b'xal', b'Kalmyk'], [b'xam', b'/Xam'], [b'xan', b'Xamtanga'], [b'xao', b'Khao'], [b'xap', b'Apalachee'], [b'xaq', b'Aquitanian'], [b'xar', b'Karami'], [b'xas', b'Kamas'], [b'xat', b'Katawixi'], [b'xau', b'Kauwera'], [b'xav', 'Xav\xe1nte'], [b'xaw', b'Kawaiisu'], [b'xay', b'Kayan Mahakam'], [b'xba', b'Kamba (Brazil)'], [b'xbb', b'Burdekin, Lower'], [b'xbc', b'Bactrian'], [b'xbd', b'Bindal'], [b'xbe', b'Bigambal'], [b'xbg', b'Bunganditj'], [b'xbi', b'Kombio'], [b'xbj', b'Birrpayi'], [b'xbm', b'Breton, Middle'], [b'xbn', b'Kenaboi'], [b'xbo', b'Bolgarian'], [b'xbp', b'Bibbulman'], [b'xbr', b'Kambera'], [b'xbw', 'Kambiw\xe1'], [b'xbx', 'Kabix\xed'], [b'xby', b'Batyala'], [b'xcb', b'Cumbric'], [b'xcc', b'Camunic'], [b'xce', b'Celtiberian'], [b'xcg', b'Gaulish, Cisalpine'], [b'xch', b'Chemakum'], [b'xcl', b'Armenian, Classical'], [b'xcm', b'Comecrudo'], [b'xcn', b'Cotoname'], [b'xco', b'Chorasmian'], [b'xcr', b'Carian'], [b'xct', b'Tibetan, Classical'], [b'xcu', b'Curonian'], [b'xcv', b'Chuvantsy'], [b'xcw', b'Coahuilteco'], [b'xcy', b'Cayuse'], [b'xda', b'Darkinyung'], [b'xdc', b'Dacian'], [b'xdk', b'Dharuk'], [b'xdm', b'Edomite'], [b'xdy', b'Dayak, Malayic'], [b'xeb', b'Eblan'], [b'xed', b'Hdi'], [b'xeg', b'//Xegwi'], [b'xel', b'Kelo'], [b'xem', b'Kembayan'], [b'xep', b'Epi-Olmec'], [b'xer', 'Xer\xe9nte'], [b'xes', b'Kesawai'], [b'xet', 'Xet\xe1'], [b'xeu', b'Keoru-Ahia'], [b'xfa', b'Faliscan'], [b'xga', b'Galatian'], [b'xgb', b'Gbin'], [b'xgd', b'Gudang'], [b'xgf', 'Gabrielino-Fernande\xf1o'], [b'xgg', b'Goreng'], [b'xgi', b'Garingbal'], [b'xgl', b'Galindan'], [b'xgm', b'Guwinmal'], [b'xgr', b'Garza'], [b'xgu', b'Unggumi'], [b'xgw', b'Guwa'], [b'xha', b'Harami'], [b'xhc', b'Hunnic'], [b'xhd', b'Hadrami'], [b'xhe', b'Khetrani'], [b'xho', b'Xhosa'], [b'xhr', b'Hernican'], [b'xht', b'Hattic'], [b'xhu', b'Hurrian'], [b'xhv', b'Khua'], [b'xib', b'Iberian'], [b'xii', b'Xiri'], [b'xil', b'Illyrian'], [b'xin', b'Xinca'], [b'xip', 'Xipin\xe1wa'], [b'xir', 'Xiri\xe2na'], [b'xiv', b'Indus Valley Language'], [b'xiy', b'Xipaya'], [b'xjb', b'Minjungbal'], [b'xjt', b'Jaitmatang'], [b'xka', b'Kalkoti'], [b'xkb', b'Nago, Northern'], [b'xkc', b"Kho'ini"], [b'xkd', b'Kayan, Mendalam'], [b'xke', b'Kereho'], [b'xkf', b'Khengkha'], [b'xkg', b'Kagoro'], [b'xkh', b'Karahawyana'], [b'xki', b'Kenyan Sign Language'], [b'xkj', b'Kajali'], [b'xkk', b"Kaco'"], [b'xkl', b'Mainstream Kenyah'], [b'xkn', b'Kayan, Kayan River'], [b'xko', b'Kiorr'], [b'xkp', b'Kabatei'], [b'xkq', b'Koroni'], [b'xkr', 'Xakriab\xe1'], [b'xks', b'Kumbewaha'], [b'xkt', b'Kantosi'], [b'xku', b'Kaamba'], [b'xkv', b'Kgalagadi'], [b'xkw', b'Kembra'], [b'xkx', b'Karore'], [b'xky', b"Uma' Lasan"], [b'xkz', b'Kurtokha'], [b'xla', b'Kamula'], [b'xlb', b'Loup B'], [b'xlc', b'Lycian'], [b'xld', b'Lydian'], [b'xle', b'Lemnian'], [b'xlg', b'Ligurian (Ancient)'], [b'xli', b'Liburnian'], [b'xln', b'Alanic'], [b'xlo', b'Loup A'], [b'xlp', b'Lepontic'], [b'xls', b'Lusitanian'], [b'xlu', b'Luwian, Cuneiform'], [b'xly', b'Elymian'], [b'xma', b'Mushungulu'], [b'xmb', b'Mbonga'], [b'xmc', b'Makhuwa-Marrevone'], [b'xmd', b'Mbudum'], [b'xme', b'Median'], [b'xmf', b'Mingrelian'], [b'xmg', b'Mengaka'], [b'xmh', b'Kuku-Muminh'], [b'xmj', b'Majera'], [b'xmk', b'Macedonian, Ancient'], [b'xml', b'Malaysian Sign Language'], [b'xmm', b'Malay, Manado'], [b'xmn', b'Persian, Manichaean Middle'], [b'xmo', b'Morerebi'], [b'xmp', b"Kuku-Mu'inh"], [b'xmq', b'Kuku-Mangk'], [b'xmr', b'Meroitic'], [b'xms', b'Moroccan Sign Language'], [b'xmt', b'Matbat'], [b'xmu', b'Kamu'], [b'xmv', b'Malagasy, Antankarana'], [b'xmw', b'Malagasy, Tsimihety'], [b'xmx', b'Maden'], [b'xmy', b'Mayaguduna'], [b'xmz', b'Mori Bawah'], [b'xna', b'North Arabian, Ancient'], [b'xnb', b'Kanakanabu'], [b'xng', b'Mongolian, Middle'], [b'xnh', b'Kuanhua'], [b'xni', b'Ngarigu'], [b'xnk', b'Nganakarti'], [b'xnn', b'Kankanay, Northern'], [b'xno', b'Anglo-Norman'], [b'xnr', b'Kangri'], [b'xns', b'Kanashi'], [b'xnt', b'Narragansett'], [b'xnu', b'Nukunul'], [b'xny', b'Nyiyaparli'], [b'xnz', b'Kenzi'], [b'xoc', b"O'chi'chi'"], [b'xod', b'Kokoda'], [b'xog', b'Soga'], [b'xoi', b'Kominimung'], [b'xok', b'Xokleng'], [b'xom', b'Komo (Sudan)'], [b'xon', b'Konkomba'], [b'xoo', 'Xukur\xfa'], [b'xop', b'Kopar'], [b'xor', b'Korubo'], [b'xow', b'Kowaki'], [b'xpa', b'Pirriya'], [b'xpc', b'Pecheneg'], [b'xpe', b'Kpelle, Liberia'], [b'xpg', b'Phrygian'], [b'xpi', b'Pictish'], [b'xpj', b'Mpalitjanh'], [b'xpk', b'Pano, Kulina'], [b'xpm', b'Pumpokol'], [b'xpn', 'Kapinaw\xe1'], [b'xpo', b'Pochutec'], [b'xpp', b'Puyo-Paekche'], [b'xpq', b'Mohegan-Pequot'], [b'xpr', b'Parthian'], [b'xps', b'Pisidian'], [b'xpt', b'Punthamara'], [b'xpu', b'Punic'], [b'xpy', b'Puyo'], [b'xqa', b'Karakhanid'], [b'xqt', b'Qatabanian'], [b'xra', 'Krah\xf4'], [b'xrb', b'Karaboro, Eastern'], [b'xrd', b'Gundungurra'], [b'xre', b'Kreye'], [b'xrg', b'Minang'], [b'xri', b'Krikati-Timbira'], [b'xrm', b'Armazic'], [b'xrn', b'Arin'], [b'xrq', b'Karranga'], [b'xrr', b'Raetic'], [b'xrt', b'Aranama-Tamique'], [b'xru', b'Marriammu'], [b'xrw', b'Karawa'], [b'xsa', b'Sabaean'], [b'xsb', b'Sambal'], [b'xsc', b'Scythian'], [b'xsd', b'Sidetic'], [b'xse', b'Sempan'], [b'xsh', b'Shamang'], [b'xsi', b'Sio'], [b'xsj', b'Subi'], [b'xsl', b'Slavey, South'], [b'xsm', b'Kasem'], [b'xsn', b'Sanga (Nigeria)'], [b'xso', b'Solano'], [b'xsp', b'Silopi'], [b'xsq', b'Makhuwa-Saka'], [b'xsr', b'Sherpa'], [b'xss', b'Assan'], [b'xsu', 'Sanum\xe1'], [b'xsv', b'Sudovian'], [b'xsy', b'Saisiyat'], [b'xta', b'Mixtec, Alcozauca'], [b'xtb', b'Mixtec, Chazumba'], [b'xtc', b'Katcha-Kadugli-Miri'], [b'xtd', b'Mixtec, Diuxi-Tilantongo'], [b'xte', b'Ketengban'], [b'xtg', b'Gaulish, Transalpine'], [b'xth', b'Yitha Yitha'], [b'xti', b'Mixtec, Sinicahua'], [b'xtj', b'Mixtec, San Juan Teita'], [b'xtl', b'Mixtec, Tijaltepec'], [b'xtm', 'Mixtec, Magdalena Pe\xf1asco'], [b'xtn', b'Mixtec, Northern Tlaxiaco'], [b'xto', b'Tokharian A'], [b'xtp', b'Mixtec, San Miguel Piedras'], [b'xtq', b'Tumshuqese'], [b'xtr', b'Tripuri, Early'], [b'xts', b'Mixtec, Sindihui'], [b'xtt', b'Mixtec, Tacahua'], [b'xtu', b'Mixtec, Cuyamecalco'], [b'xtv', b'Thawa'], [b'xtw', 'Tawand\xea'], [b'xty', b'Mixtec, Yoloxochitl'], [b'xtz', b'Tasmanian'], [b'xua', b'Kurumba, Alu'], [b'xub', b'Kurumba, Betta'], [b'xud', b'Umiida'], [b'xug', b'Kunigami'], [b'xuj', b'Kurumba, Jennu'], [b'xul', b'Ngunawal'], [b'xum', b'Umbrian'], [b'xun', b'Unggaranggu'], [b'xuo', b'Kuo'], [b'xup', b'Umpqua, Upper'], [b'xur', b'Urartian'], [b'xut', b'Kuthant'], [b'xuu', b'Kxoe'], [b'xve', b'Venetic'], [b'xvi', b'Kamviri'], [b'xvn', b'Vandalic'], [b'xvo', b'Volscian'], [b'xvs', b'Vestinian'], [b'xwa', b'Kwaza'], [b'xwc', b'Woccon'], [b'xwd', b'Wadi Wadi'], [b'xwe', b'Gbe, Xwela'], [b'xwg', b'Kwegu'], [b'xwj', b'Wajuk'], [b'xwk', b'Wangkumara'], [b'xwl', b'Gbe, Western Xwla'], [b'xwo', b'Oirat, Written'], [b'xwr', b'Kwerba Mamberamo'], [b'xwt', b'Wotjobaluk'], [b'xww', b'Wemba Wemba'], [b'xxb', b'Boro (Ghana)'], [b'xxk', b"Ke'o"], [b'xxm', b'Minkin'], [b'xxr', 'Korop\xf3'], [b'xxt', b'Tambora'], [b'xya', b'Yaygir'], [b'xyb', b'Yandjibara'], [b'xyj', b'Mayi-Yapi'], [b'xyk', b'Mayi-Kulan'], [b'xyl', b'Yalakalore'], [b'xyt', b'Mayi-Thakurti'], [b'xyy', b'Yorta Yorta'], [b'xzh', b'Zhang-Zhung'], [b'xzm', b'Zemgalian'], [b'xzp', b'Zapotec, Ancient'], [b'yaa', b'Yaminahua'], [b'yab', b'Yuhup'], [b'yac', b'Yali, Pass Valley'], [b'yad', b'Yagua'], [b'yae', 'Pum\xe9'], [b'yaf', b'Yaka (Democratic Republic of Congo)'], [b'yag', 'Y\xe1mana'], [b'yah', b'Yazgulyam'], [b'yai', b'Yagnobi'], [b'yaj', b'Banda-Yangere'], [b'yak', b'Yakama'], [b'yal', b'Yalunka'], [b'yam', b'Yamba'], [b'yan', b'Mayangna'], [b'yao', b'Yao'], [b'yap', b'Yapese'], [b'yaq', b'Yaqui'], [b'yar', b'Yabarana'], [b'yas', b'Nugunu (Cameroon)'], [b'yat', b'Yambeta'], [b'yau', b'Yuwana'], [b'yav', b'Yangben'], [b'yaw', 'Yawalapit\xed'], [b'yax', b'Yauma'], [b'yay', b'Agwagwune'], [b'yaz', b'Lokaa'], [b'yba', b'Yala'], [b'ybb', b'Yemba'], [b'ybe', b'Yugur, West'], [b'ybh', b'Yakha'], [b'ybi', b'Yamphu'], [b'ybj', b'Hasha'], [b'ybk', b'Bokha'], [b'ybl', b'Yukuben'], [b'ybm', b'Yaben'], [b'ybn', 'Yaba\xe2na'], [b'ybo', b'Yabong'], [b'ybx', b'Yawiyo'], [b'yby', b'Yaweyuha'], [b'ych', b'Chesu'], [b'ycl', b'Lolopo'], [b'ycn', b'Yucuna'], [b'ycp', b'Chepya'], [b'yda', b'Yanda'], [b'ydd', b'Yiddish, Eastern'], [b'yde', b'Yangum Dey'], [b'ydg', b'Yidgha'], [b'ydk', b'Yoidik'], [b'yds', b'Yiddish Sign Language'], [b'yea', b'Ravula'], [b'yec', b'Yeniche'], [b'yee', b'Yimas'], [b'yei', b'Yeni'], [b'yej', b'Yevanic'], [b'yel', b'Yela'], [b'yer', b'Tarok'], [b'yes', b'Nyankpa'], [b'yet', b'Yetfa'], [b'yeu', b'Yerukula'], [b'yev', b'Yapunda'], [b'yey', b'Yeyi'], [b'yga', b'Malyangapa'], [b'ygi', b'Yiningayi'], [b'ygl', b'Yangum Gel'], [b'ygm', b'Yagomi'], [b'ygp', b'Gepo'], [b'ygr', b'Yagaria'], [b'ygu', b'Yugul'], [b'ygw', b'Yagwoia'], [b'yha', b'Buyang, Baha'], [b'yhd', b'Arabic, Judeo-Iraqi'], [b'yhl', b'Phowa, Hlepho'], [b'yia', b'Yinggarda'], [b'yid', b'Yiddish'], [b'yif', b'Ache'], [b'yig', b'Nasu, Wusa'], [b'yih', b'Yiddish, Western'], [b'yii', b'Yidiny'], [b'yij', b'Yindjibarndi'], [b'yik', b'Lalo, Dongshanba'], [b'yil', b'Yindjilandji'], [b'yim', b'Naga, Yimchungru'], [b'yin', b'Yinchia'], [b'yip', b'Pholo'], [b'yiq', b'Miqie'], [b'yir', b'Awyu, North'], [b'yis', b'Yis'], [b'yit', b'Lalu, Eastern'], [b'yiu', b'Awu'], [b'yiv', b'Nisu, Northern'], [b'yix', b'Yi, Axi'], [b'yiz', b'Azhe'], [b'yka', b'Yakan'], [b'ykg', b'Yukaghir, Northern'], [b'yki', b'Yoke'], [b'ykk', b'Yakaikeke'], [b'ykl', b'Khlula'], [b'ykm', b'Kap'], [b'ykn', b'Kua-nsi'], [b'yko', b'Yasa'], [b'ykr', b'Yekora'], [b'ykt', b'Kathu'], [b'yku', b'Kuamasi'], [b'yky', b'Yakoma'], [b'yla', b'Yaul'], [b'ylb', b'Yaleba'], [b'yle', b'Yele'], [b'ylg', b'Yelogu'], [b'yli', b'Yali, Angguruk'], [b'yll', b'Yil'], [b'ylm', b'Limi'], [b'yln', b'Buyang, Langnian'], [b'ylo', b'Yi, Naluo'], [b'ylr', b'Yalarnnga'], [b'ylu', b'Aribwaung'], [b'yly', 'Ny\xe2layu'], [b'ymb', b'Yambes'], [b'ymc', b'Muji, Southern'], [b'ymd', b'Muda'], [b'yme', b'Yameo'], [b'ymg', b'Yamongeri'], [b'ymh', b'Mili'], [b'ymi', b'Moji'], [b'ymk', b'Makwe'], [b'yml', b'Iamalele'], [b'ymm', b'Maay'], [b'ymn', b'Yamna'], [b'ymo', b'Yangum Mon'], [b'ymp', b'Yamap'], [b'ymq', b'Muji, Qila'], [b'ymr', b'Malasar'], [b'yms', b'Mysian'], [b'ymt', b'Mator-Taygi-Karagas'], [b'ymx', b'Muji, Northern'], [b'ymz', b'Muzi'], [b'yna', b'Aluo'], [b'ynd', b'Yandruwandha'], [b'yne', b"Lang'e"], [b'yng', b'Yango'], [b'ynh', b'Yangho'], [b'ynk', b'Yupik, Naukan'], [b'ynl', b'Yangulam'], [b'ynn', b'Yana'], [b'yno', b'Yong'], [b'ynq', b'Yendang'], [b'yns', b'Yansi'], [b'ynu', b'Yahuna'], [b'yob', b'Yoba'], [b'yog', b'Yogad'], [b'yoi', b'Yonaguni'], [b'yok', b'Yokuts'], [b'yol', b'Yola'], [b'yom', b'Yombe'], [b'yon', b'Yongkom'], [b'yor', b'Yoruba'], [b'yot', b'Yotti'], [b'yox', b'Yoron'], [b'yoy', b'Yoy'], [b'ypa', b'Phala'], [b'ypb', b'Phowa, Labo'], [b'ypg', b'Phola'], [b'yph', b'Phupha'], [b'ypm', b'Phuma'], [b'ypn', b'Phowa, Ani'], [b'ypo', b'Phola, Alo'], [b'ypp', b'Phupa'], [b'ypz', b'Phuza'], [b'yra', b'Yerakai'], [b'yrb', b'Yareba'], [b'yre', 'Yaour\xe9'], [b'yri', 'Yar\xed'], [b'yrk', b'Nenets'], [b'yrl', b'Nhengatu'], [b'yrm', b'Yirrk-Mel'], [b'yrn', b'Yerong'], [b'yrs', b'Yarsun'], [b'yrw', b'Yarawata'], [b'yry', b'Yarluyandi'], [b'ysc', b'Yassic'], [b'ysd', b'Samatao'], [b'ysg', b'Sonaga'], [b'ysl', b'Yugoslavian Sign Language'], [b'ysn', b'Sani'], [b'yso', b'Nisi (China)'], [b'ysp', b'Lolopo, Southern'], [b'ysr', b'Yupik, Sirenik'], [b'yss', b'Yessan-Mayo'], [b'ysy', b'Sanie'], [b'yta', b'Talu'], [b'ytl', b'Tanglang'], [b'ytp', b'Thopho'], [b'ytw', b'Yout Wam'], [b'yty', b'Yatay'], [b'yua', b'Yucateco'], [b'yub', b'Yugambal'], [b'yuc', b'Yuchi'], [b'yud', b'Arabic, Judeo-Tripolitanian'], [b'yue', b'Chinese, Yue'], [b'yuf', b'Havasupai-Walapai-Yavapai'], [b'yug', b'Yug'], [b'yui', 'Yurut\xed'], [b'yuj', b'Karkar-Yuri'], [b'yuk', b'Yuki'], [b'yul', b'Yulu'], [b'yum', b'Quechan'], [b'yun', b'Bena (Nigeria)'], [b'yup', b'Yukpa'], [b'yuq', b'Yuqui'], [b'yur', b'Yurok'], [b'yut', b'Yopno'], [b'yuu', b'Yugh'], [b'yuw', b'Yau (Morobe Province)'], [b'yux', b'Yukaghir, Southern'], [b'yuy', b'Yugur, East'], [b'yuz', b'Yuracare'], [b'yva', b'Yawa'], [b'yvt', b'Yavitero'], [b'ywa', b'Kalou'], [b'ywg', b'Yinhawangka'], [b'ywl', b'Lalu, Western'], [b'ywn', b'Yawanawa'], [b'ywq', b'Yi, Wuding-Luquan'], [b'ywr', b'Yawuru'], [b'ywt', b'Lalo, Xishanba'], [b'ywu', b'Nasu, Wumeng'], [b'yww', b'Yawarawarga'], [b'yxa', b'Mayawali'], [b'yxg', b'Yagara'], [b'yxl', b'Yardliyawarra'], [b'yxm', b'Yinwum'], [b'yxu', b'Yuyu'], [b'yxy', b'Yabula Yabula'], [b'yyr', b'Yir Yoront'], [b'yyu', b'Yau (Sandaun Province)'], [b'yyz', b'Ayizi'], [b'yzg', b"Buyang, E'ma"], [b'yzk', b'Zokhuo'], [b'zaa', 'Zapotec, Sierra de Ju\xe1rez'], [b'zab', 'Zapotec, San Juan Guelav\xeda'], [b'zac', 'Zapotec, Ocotl\xe1n'], [b'zad', b'Zapotec, Cajonos'], [b'zae', b'Zapotec, Yareni'], [b'zaf', b'Zapotec, Ayoquesco'], [b'zag', b'Zaghawa'], [b'zah', b'Zangwal'], [b'zai', b'Zapotec, Isthmus'], [b'zaj', b'Zaramo'], [b'zak', b'Zanaki'], [b'zal', b'Zauzou'], [b'zam', 'Zapotec, Miahuatl\xe1n'], [b'zao', b'Zapotec, Ozolotepec'], [b'zap', b'Zapotec'], [b'zaq', 'Zapotec, Alo\xe1pam'], [b'zar', 'Zapotec, Rinc\xf3n'], [b'zas', b'Zapotec, Santo Domingo Albarradas'], [b'zat', b'Zapotec, Tabaa'], [b'zau', b'Zangskari'], [b'zav', b'Zapotec, Yatzachi'], [b'zaw', b'Zapotec, Mitla'], [b'zax', b'Zapotec, Xadani'], [b'zay', b'Zayse-Zergulla'], [b'zaz', b'Zari'], [b'zbc', b'Berawan, Central'], [b'zbe', b'Berawan, East'], [b'zbl', b'Blissymbols'], [b'zbt', b'Batui'], [b'zbw', b'Berawan, West'], [b'zca', b'Zapotec, Coatecas Altas'], [b'zch', b'Zhuang, Central Hongshuihe'], [b'zdj', b'Comorian, Ngazidja'], [b'zea', b'Zeeuws'], [b'zeg', b'Zenag'], [b'zeh', b'Zhuang, Eastern Hongshuihe'], [b'zen', b'Zenaga'], [b'zga', b'Kinga'], [b'zgb', b'Zhuang, Guibei'], [b'zgh', b'Tamazight, Standard Moroccan'], [b'zgm', b'Zhuang, Minz'], [b'zgn', b'Zhuang, Guibian'], [b'zgr', b'Magori'], [b'zha', b'Zhuang'], [b'zhb', b'Zhaba'], [b'zhd', b'Zhuang, Dai'], [b'zhi', b'Zhire'], [b'zhn', b'Zhuang, Nong'], [b'zho', b'Chinese'], [b'zhw', b'Zhoa'], [b'zia', b'Zia'], [b'zib', b'Zimbabwe Sign Language'], [b'zik', b'Zimakani'], [b'zil', b'Zialo'], [b'zim', b'Mesme'], [b'zin', b'Zinza'], [b'zir', b'Ziriya'], [b'ziw', b'Zigula'], [b'ziz', b'Zizilivakan'], [b'zka', b'Kaimbulawa'], [b'zkb', b'Koibal'], [b'zkd', b'Kadu'], [b'zkg', b'Koguryo'], [b'zkh', b'Khorezmian'], [b'zkk', b'Karankawa'], [b'zkn', b'Kanan'], [b'zko', b'Kott'], [b'zkp', 'Kaing\xe1ng, S\xe3o Paulo'], [b'zkr', b'Zakhring'], [b'zkt', b'Kitan'], [b'zku', b'Kaurna'], [b'zkv', b'Krevinian'], [b'zkz', b'Khazar'], [b'zlj', b'Zhuang, Liujiang'], [b'zlm', b'Malay (individual language)'], [b'zln', b'Zhuang, Lianshan'], [b'zlq', b'Zhuang, Liuqian'], [b'zma', b'Manda (Australia)'], [b'zmb', b'Zimba'], [b'zmc', b'Margany'], [b'zmd', b'Maridan'], [b'zme', b'Mangerr'], [b'zmf', b'Mfinu'], [b'zmg', b'Marti Ke'], [b'zmh', b'Makolkol'], [b'zmi', b'Negeri Sembilan Malay'], [b'zmj', b'Maridjabin'], [b'zmk', b'Mandandanyi'], [b'zml', b'Madngele'], [b'zmm', b'Marimanindji'], [b'zmn', b'Mbangwe'], [b'zmo', b'Molo'], [b'zmp', b'Mpuono'], [b'zmq', b'Mituku'], [b'zmr', b'Maranunggu'], [b'zms', b'Mbesa'], [b'zmt', b'Maringarr'], [b'zmu', b'Muruwari'], [b'zmv', b'Mbariman-Gudhinma'], [b'zmw', b'Mbo (Democratic Republic of Congo)'], [b'zmx', b'Bomitaba'], [b'zmy', b'Mariyedi'], [b'zmz', b'Mbandja'], [b'zna', b'Zan Gula'], [b'zne', b'Zande (individual language)'], [b'zng', b'Mang'], [b'znk', b'Manangkari'], [b'zns', b'Mangas'], [b'zoc', 'Zoque, Copainal\xe1'], [b'zoh', b'Zoque, Chimalapa'], [b'zom', b'Zou'], [b'zoo', 'Zapotec, Asunci\xf3n Mixtepec'], [b'zoq', b'Zoque, Tabasco'], [b'zor', 'Zoque, Ray\xf3n'], [b'zos', 'Zoque, Francisco Le\xf3n'], [b'zpa', b'Zapotec, Lachiguiri'], [b'zpb', b'Zapotec, Yautepec'], [b'zpc', b'Zapotec, Choapan'], [b'zpd', 'Zapotec, Southeastern Ixtl\xe1n'], [b'zpe', b'Zapotec, Petapa'], [b'zpf', b'Zapotec, San Pedro Quiatoni'], [b'zpg', b'Zapotec, Guevea De Humboldt'], [b'zph', b'Zapotec, Totomachapan'], [b'zpi', 'Zapotec, Santa Mar\xeda Quiegolani'], [b'zpj', b'Zapotec, Quiavicuzas'], [b'zpk', b'Zapotec, Tlacolulita'], [b'zpl', 'Zapotec, Lachix\xedo'], [b'zpm', b'Zapotec, Mixtepec'], [b'zpn', 'Zapotec, Santa In\xe9s Yatzechi'], [b'zpo', 'Zapotec, Amatl\xe1n'], [b'zpp', b'Zapotec, El Alto'], [b'zpq', b'Zapotec, Zoogocho'], [b'zpr', b'Zapotec, Santiago Xanica'], [b'zps', 'Zapotec, Coatl\xe1n'], [b'zpt', 'Zapotec, San Vicente Coatl\xe1n'], [b'zpu', 'Zapotec, Yal\xe1lag'], [b'zpv', b'Zapotec, Chichicapan'], [b'zpw', b'Zapotec, Zaniza'], [b'zpx', b'Zapotec, San Baltazar Loxicha'], [b'zpy', b'Zapotec, Mazaltepec'], [b'zpz', b'Zapotec, Texmelucan'], [b'zqe', b'Zhuang, Qiubei'], [b'zra', b'Kara (Korea)'], [b'zrg', b'Mirgan'], [b'zrn', b'Zerenkel'], [b'zro', 'Z\xe1paro'], [b'zrp', b'Zarphatic'], [b'zrs', b'Mairasi'], [b'zsa', b'Sarasira'], [b'zsk', b'Kaskean'], [b'zsl', b'Zambian Sign Language'], [b'zsm', b'Malay, Standard'], [b'zsr', b'Zapotec, Southern Rincon'], [b'zsu', b'Sukurum'], [b'zte', b'Zapotec, Elotepec'], [b'ztg', 'Zapotec, Xanagu\xeda'], [b'ztl', 'Zapotec, Lapagu\xeda-Guivini'], [b'ztm', 'Zapotec, San Agust\xedn Mixtepec'], [b'ztn', b'Zapotec, Santa Catarina Albarradas'], [b'ztp', b'Zapotec, Loxicha'], [b'ztq', 'Zapotec, Quioquitani-Quier\xed'], [b'zts', b'Zapotec, Tilquiapan'], [b'ztt', b'Zapotec, Tejalapan'], [b'ztu', 'Zapotec, G\xfcil\xe1'], [b'ztx', b'Zapotec, Zaachila'], [b'zty', b'Zapotec, Yatee'], [b'zua', b'Zeem'], [b'zuh', b'Tokano'], [b'zul', b'Zulu'], [b'zum', b'Kumzari'], [b'zun', b'Zuni'], [b'zuy', b'Zumaya'], [b'zwa', b'Zay'], [b'zxx', b'No linguistic content'], [b'zyb', b'Zhuang, Yongbei'], [b'zyg', b'Zhuang, Yang'], [b'zyj', b'Zhuang, Youjiang'], [b'zyn', b'Zhuang, Yongnan'], [b'zyp', b'Chin, Zyphe'], [b'zza', b'Zaza'], [b'zzj', b'Zhuang, Zuojiang']]), + ), + ] From ac9bc9454d5b5c709edee8fcb9394f655f443b6c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 22 Jan 2016 04:02:12 -0400 Subject: [PATCH 006/205] Update source app code for new extracted formtools package. --- mayan/apps/sources/wizards.py | 3 ++- mayan/settings/base.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/mayan/apps/sources/wizards.py b/mayan/apps/sources/wizards.py index 47f74d2a3c..7f510f60d2 100644 --- a/mayan/apps/sources/wizards.py +++ b/mayan/apps/sources/wizards.py @@ -1,12 +1,13 @@ from __future__ import unicode_literals from django.contrib import messages -from django.contrib.formtools.wizard.views import SessionWizardView from django.core.urlresolvers import reverse from django.http import HttpResponseRedirect from django.utils.http import urlencode from django.utils.translation import ugettext_lazy as _ +from formtools.wizard.views import SessionWizardView + from common.mixins import ViewPermissionCheckMixin from documents.forms import DocumentTypeSelectForm from documents.permissions import permission_document_create diff --git a/mayan/settings/base.py b/mayan/settings/base.py index b10c746d48..8941b735fc 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -43,7 +43,6 @@ INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.admindocs', 'django.contrib.auth', - 'django.contrib.comments', 'django.contrib.contenttypes', 'django.contrib.messages', 'django.contrib.sessions', @@ -57,6 +56,7 @@ INSTALLED_APPS = ( 'corsheaders', 'djcelery', 'filetransfers', + 'formtools', 'mptt', 'pure_pagination', 'rest_framework', From 20535529dc8f6a8576376505ee6bfca3375e81a3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 22 Jan 2016 04:51:48 -0400 Subject: [PATCH 007/205] Fix address in about template. --- mayan/apps/appearance/templates/appearance/about.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/appearance/templates/appearance/about.html b/mayan/apps/appearance/templates/appearance/about.html index d1f6e385b5..c94ae93ada 100644 --- a/mayan/apps/appearance/templates/appearance/about.html +++ b/mayan/apps/appearance/templates/appearance/about.html @@ -77,11 +77,11 @@

- https://github.com/mayan-edms/mayan-edms/ + https://gitlab.com/mayan-edms/mayan-edms/

- https://github.com/mayan-edms/mayan-edms/issues + https://gitlab.com/mayan-edms/mayan-edms/issues

From 6b3fe7a87619fe5ebb35ba71c5a3b3727c39d42f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 22 Jan 2016 04:52:47 -0400 Subject: [PATCH 008/205] Fix futher Django Warnings. --- mayan/apps/common/classes.py | 3 +- mayan/apps/common/widgets.py | 2 +- mayan/apps/document_signatures/apps.py | 5 --- mayan/apps/document_signatures/hooks.py | 43 +++++++++++++++++++++++++ mayan/apps/document_states/handlers.py | 4 +-- mayan/apps/documents/handlers.py | 6 ++-- mayan/apps/documents/statistics.py | 14 ++++++-- mayan/apps/metadata/handlers.py | 3 +- mayan/apps/ocr/apps.py | 5 ++- mayan/apps/ocr/handlers.py | 3 +- mayan/apps/sources/handlers.py | 11 +++++-- mayan/apps/statistics/classes.py | 8 +++-- 12 files changed, 86 insertions(+), 21 deletions(-) create mode 100644 mayan/apps/document_signatures/hooks.py diff --git a/mayan/apps/common/classes.py b/mayan/apps/common/classes.py index e8c4b9c252..8aef2dbd7d 100644 --- a/mayan/apps/common/classes.py +++ b/mayan/apps/common/classes.py @@ -4,7 +4,6 @@ from django.core.exceptions import PermissionDenied from django.db import models from django.utils.translation import ugettext -from acls.models import AccessControlList from permissions import Permission @@ -126,6 +125,8 @@ class Filter(object): return unicode(self.label) def get_queryset(self, user): + from acls.models import AccessControlList + queryset = self.model.objects.all() for kwargs in self.filter_kwargs: queryset = queryset.filter(**kwargs) diff --git a/mayan/apps/common/widgets.py b/mayan/apps/common/widgets.py index 32033da86f..2dfd6551ee 100644 --- a/mayan/apps/common/widgets.py +++ b/mayan/apps/common/widgets.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals import os from django import forms -from django.forms.util import flatatt +from django.forms.utils import flatatt from django.utils.encoding import force_unicode, force_text from django.utils.html import conditional_escape, format_html from django.utils.safestring import mark_safe diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index 69dc4a245b..f9e807da6d 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -1,14 +1,11 @@ from __future__ import unicode_literals -import io import logging from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission from common import MayanAppConfig, menu_facet, menu_sidebar -from django_gpg.exceptions import GPGDecryptionError -from django_gpg.runtime import gpg from documents.models import Document, DocumentVersion from .hooks import document_pre_open_hook, document_version_post_save_hook @@ -34,8 +31,6 @@ class DocumentSignaturesApp(MayanAppConfig): def ready(self): super(DocumentSignaturesApp, self).ready() - DocumentVersionSignature = self.get_model('DocumentVersionSignature') - DocumentVersion.register_post_save_hook( 1, document_version_post_save_hook ) diff --git a/mayan/apps/document_signatures/hooks.py b/mayan/apps/document_signatures/hooks.py new file mode 100644 index 0000000000..4dcf94dcd7 --- /dev/null +++ b/mayan/apps/document_signatures/hooks.py @@ -0,0 +1,43 @@ +from __future__ import unicode_literals + +import io +import logging + +from django_gpg.exceptions import GPGDecryptionError +from django_gpg.runtime import gpg + +logger = logging.getLogger(__name__) + + +def document_pre_open_hook(descriptor, instance): + from .models import DocumentVersionSignature + + if DocumentVersionSignature.objects.has_embedded_signature(document_version=instance): + # If it has an embedded signature, decrypt + try: + result = gpg.decrypt_file(descriptor, close_descriptor=False) + # gpg return a string, turn it into a file like object + except GPGDecryptionError: + # At least return the original raw content + descriptor.seek(0) + return descriptor + else: + descriptor.close() + return io.BytesIO(result.data) + else: + return descriptor + + +def document_version_post_save_hook(instance): + logger.debug('instance: %s', instance) + from .models import DocumentVersionSignature + + try: + document_signature = DocumentVersionSignature.objects.get( + document_version=instance + ) + except DocumentVersionSignature.DoesNotExist: + document_signature = DocumentVersionSignature.objects.create( + document_version=instance + ) + document_signature.check_for_embedded_signature() diff --git a/mayan/apps/document_states/handlers.py b/mayan/apps/document_states/handlers.py index 291b9e03d3..35675647dc 100644 --- a/mayan/apps/document_states/handlers.py +++ b/mayan/apps/document_states/handlers.py @@ -1,8 +1,8 @@ from __future__ import unicode_literals -from .models import Workflow - def launch_workflow(sender, instance, created, **kwargs): + Workflow = sender.get_model('Workflow') + if created: Workflow.objects.launch_for(instance) diff --git a/mayan/apps/documents/handlers.py b/mayan/apps/documents/handlers.py index c188dc2288..393cc9ec78 100644 --- a/mayan/apps/documents/handlers.py +++ b/mayan/apps/documents/handlers.py @@ -2,9 +2,9 @@ from __future__ import unicode_literals from django.utils.translation import ugettext_lazy as _ -from .models import DocumentType - def create_default_document_type(sender, **kwargs): - if not DocumentType.objects.count(): + DocumentType = sender.get_model('DocumentType') + + if not DocumentType.objects.count(): DocumentType.objects.create(label=_('Default')) diff --git a/mayan/apps/documents/statistics.py b/mayan/apps/documents/statistics.py index 95937b9940..12d0a71f49 100644 --- a/mayan/apps/documents/statistics.py +++ b/mayan/apps/documents/statistics.py @@ -4,10 +4,10 @@ import datetime import qsstats -from .models import Document, DocumentPage, DocumentVersion - def new_documents_per_month(): + from .models import Document + qss = qsstats.QuerySetStats(Document.passthrough.all(), 'date_added') today = datetime.date.today() @@ -21,6 +21,8 @@ def new_documents_per_month(): def new_document_versions_per_month(): + from .models import DocumentVersion + qss = qsstats.QuerySetStats(DocumentVersion.objects.all(), 'document__date_added') today = datetime.date.today() @@ -34,6 +36,8 @@ def new_document_versions_per_month(): def new_document_pages_per_month(): + from .models import DocumentPage + qss = qsstats.QuerySetStats(DocumentPage.objects.all(), 'document_version__document__date_added') today = datetime.date.today() @@ -47,6 +51,8 @@ def new_document_pages_per_month(): def total_document_per_month(): + from .models import Document + qss = qsstats.QuerySetStats(Document.objects.all(), 'date_added') this_year = datetime.date.today().year @@ -72,6 +78,8 @@ def total_document_per_month(): def total_document_version_per_month(): + from .models import DocumentVersion + qss = qsstats.QuerySetStats(DocumentVersion.objects.all(), 'document__date_added') this_year = datetime.date.today().year @@ -97,6 +105,8 @@ def total_document_version_per_month(): def total_document_page_per_month(): + from .models import DocumentPage + qss = qsstats.QuerySetStats(DocumentPage.objects.all(), 'document_version__document__date_added') this_year = datetime.date.today().year diff --git a/mayan/apps/metadata/handlers.py b/mayan/apps/metadata/handlers.py index 9d559dbca2..dc27e86bf0 100644 --- a/mayan/apps/metadata/handlers.py +++ b/mayan/apps/metadata/handlers.py @@ -2,7 +2,6 @@ from __future__ import unicode_literals import logging -from .models import DocumentMetadata from .tasks import task_add_required_metadata_type, task_remove_metadata_type logger = logging.getLogger(__name__) @@ -37,6 +36,8 @@ def post_post_document_type_change_metadata(sender, instance, **kwargs): for metadata in instance.metadata.all(): metadata.delete(enforce_required=False) + DocumentMetadata = sender.get_model('DocumentMetadata') + # Add new document type metadata types to document for document_type_metadata_type in instance.document_type.metadata.filter(required=True): DocumentMetadata.objects.create( diff --git a/mayan/apps/ocr/apps.py b/mayan/apps/ocr/apps.py index 2b8afff5b9..bee3e8b293 100644 --- a/mayan/apps/ocr/apps.py +++ b/mayan/apps/ocr/apps.py @@ -33,16 +33,19 @@ from .permissions import permission_ocr_document, permission_ocr_content_view from .settings import ( setting_pdftotext_path, setting_tesseract_path ) -from .tasks import task_do_ocr logger = logging.getLogger(__name__) def document_ocr_submit(self): + from .tasks import task_do_ocr + task_do_ocr.apply_async(args=(self.latest_version.pk,)) def document_version_ocr_submit(self): + from .tasks import task_do_ocr + task_do_ocr.apply_async( kwargs={'document_version_pk': self.pk}, countdown=settings_db_sync_task_delay.value diff --git a/mayan/apps/ocr/handlers.py b/mayan/apps/ocr/handlers.py index 5d3f769eeb..959398e10b 100644 --- a/mayan/apps/ocr/handlers.py +++ b/mayan/apps/ocr/handlers.py @@ -4,7 +4,6 @@ import logging logger = logging.getLogger(__name__) -from .models import DocumentTypeSettings from .settings import setting_auto_ocr @@ -16,6 +15,8 @@ def post_version_upload_ocr(sender, instance, **kwargs): def initialize_new_ocr_settings(sender, instance, **kwargs): + DocumentTypeSettings = sender.get_model('DocumentTypeSettings') + if kwargs['created']: DocumentTypeSettings.objects.create( document_type=instance, auto_ocr=setting_auto_ocr.value diff --git a/mayan/apps/sources/handlers.py b/mayan/apps/sources/handlers.py index f3c4c163a6..0af79e626b 100644 --- a/mayan/apps/sources/handlers.py +++ b/mayan/apps/sources/handlers.py @@ -5,10 +5,11 @@ from django.utils.translation import ugettext_lazy as _ from converter.models import Transformation from .literals import SOURCE_UNCOMPRESS_CHOICE_ASK -from .models import POP3Email, IMAPEmail, WatchFolderSource, WebFormSource def create_default_document_source(sender, **kwargs): + WebFormSource = sender.get_model('WebFormSource') + if not WebFormSource.objects.count(): WebFormSource.objects.create( label=_('Default'), uncompress=SOURCE_UNCOMPRESS_CHOICE_ASK @@ -16,6 +17,8 @@ def create_default_document_source(sender, **kwargs): def copy_transformations_to_version(sender, **kwargs): + Transformation = sender.get_model('Transformation') + instance = kwargs['instance'] # TODO: Fix this, source should be previous version @@ -25,7 +28,11 @@ def copy_transformations_to_version(sender, **kwargs): ) -def initialize_periodic_tasks(**kwargs): +def initialize_periodic_tasks(sender, **kwargs): + POP3Email = sender.get_model('POP3Email') + IMAPEmail = sender.get_model('IMAPEmail') + WatchFolderSource = sender.get_model('WatchFolderSource') + for source in POP3Email.objects.filter(enabled=True): source.save() diff --git a/mayan/apps/statistics/classes.py b/mayan/apps/statistics/classes.py index 333b288d48..7943e0f6c0 100644 --- a/mayan/apps/statistics/classes.py +++ b/mayan/apps/statistics/classes.py @@ -7,8 +7,6 @@ from djcelery.models import PeriodicTask from mayan.celery import app -from .models import StatisticResult - class StatisticNamespace(object): _registry = {} @@ -45,6 +43,8 @@ class Statistic(object): @staticmethod def purge_schedules(): + from .models import StatisticResult + queryset = PeriodicTask.objects.filter(name__startswith='statistics.').exclude(name__in=Statistic.get_task_names()) for periodic_task in queryset: @@ -112,12 +112,16 @@ class Statistic(object): return 'statistics.task_execute_statistic_{}'.format(self.slug) def store_results(self, results): + from .models import StatisticResult + StatisticResult.objects.filter(slug=self.slug).delete() statistic_result, created = StatisticResult.objects.get_or_create(slug=self.slug) statistic_result.store_data(data=results) def get_results(self): + from .models import StatisticResult + try: return StatisticResult.objects.get(slug=self.slug).get_data() except StatisticResult.DoesNotExist: From 0b830c380daa6a57f02046a164c354a1526bc30f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 26 Jan 2016 03:55:10 -0400 Subject: [PATCH 009/205] Silence furder Django 1.8 warnings about ContentType imports. Fix get_model in handlers. --- mayan/apps/acls/models.py | 4 ++-- mayan/apps/common/urls.py | 4 +++- mayan/apps/converter/models.py | 4 ++-- mayan/apps/document_states/handlers.py | 4 +++- mayan/apps/documents/handlers.py | 3 ++- mayan/apps/metadata/handlers.py | 4 +++- mayan/apps/ocr/handlers.py | 6 ++++-- mayan/apps/sources/handlers.py | 13 ++++++------- 8 files changed, 25 insertions(+), 17 deletions(-) diff --git a/mayan/apps/acls/models.py b/mayan/apps/acls/models.py index daea547249..a17612a95c 100644 --- a/mayan/apps/acls/models.py +++ b/mayan/apps/acls/models.py @@ -2,7 +2,7 @@ from __future__ import absolute_import, unicode_literals import logging -from django.contrib.contenttypes import generic +from django.contrib.contenttypes.fields import GenericForeignKey from django.contrib.contenttypes.models import ContentType from django.db import models from django.utils.encoding import python_2_unicode_compatible @@ -26,7 +26,7 @@ class AccessControlList(models.Model): related_name='object_content_type' ) object_id = models.PositiveIntegerField() - content_object = generic.GenericForeignKey( + content_object = GenericForeignKey( ct_field='content_type', fk_field='object_id', ) diff --git a/mayan/apps/common/urls.py b/mayan/apps/common/urls.py index 7440753df3..ae32b7d82f 100644 --- a/mayan/apps/common/urls.py +++ b/mayan/apps/common/urls.py @@ -57,6 +57,8 @@ urlpatterns += patterns( ), ( r'^favicon\.ico$', - RedirectView.as_view(url=static('appearance/images/favicon.ico')) + RedirectView.as_view( + permanent=True, url=static('appearance/images/favicon.ico') + ) ), ) diff --git a/mayan/apps/converter/models.py b/mayan/apps/converter/models.py index 3f27dab0ad..817ee605ee 100644 --- a/mayan/apps/converter/models.py +++ b/mayan/apps/converter/models.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals import logging -from django.contrib.contenttypes import generic +from django.contrib.contenttypes.fields import GenericForeignKey from django.contrib.contenttypes.models import ContentType from django.db import models from django.db.models import Max @@ -25,7 +25,7 @@ class Transformation(models.Model): content_type = models.ForeignKey(ContentType) object_id = models.PositiveIntegerField() - content_object = generic.GenericForeignKey('content_type', 'object_id') + content_object = GenericForeignKey('content_type', 'object_id') order = models.PositiveIntegerField( blank=True, db_index=True, default=0, help_text=_( diff --git a/mayan/apps/document_states/handlers.py b/mayan/apps/document_states/handlers.py index 35675647dc..e97fdcfed4 100644 --- a/mayan/apps/document_states/handlers.py +++ b/mayan/apps/document_states/handlers.py @@ -1,8 +1,10 @@ from __future__ import unicode_literals +from django.db.models import get_model + def launch_workflow(sender, instance, created, **kwargs): - Workflow = sender.get_model('Workflow') + Workflow = get_model('document_states', 'Workflow') if created: Workflow.objects.launch_for(instance) diff --git a/mayan/apps/documents/handlers.py b/mayan/apps/documents/handlers.py index 393cc9ec78..ec185e87d6 100644 --- a/mayan/apps/documents/handlers.py +++ b/mayan/apps/documents/handlers.py @@ -1,10 +1,11 @@ from __future__ import unicode_literals +from django.db.models import get_model from django.utils.translation import ugettext_lazy as _ def create_default_document_type(sender, **kwargs): - DocumentType = sender.get_model('DocumentType') + DocumentType = get_model('documents', 'DocumentType') if not DocumentType.objects.count(): DocumentType.objects.create(label=_('Default')) diff --git a/mayan/apps/metadata/handlers.py b/mayan/apps/metadata/handlers.py index dc27e86bf0..d65e7a8c13 100644 --- a/mayan/apps/metadata/handlers.py +++ b/mayan/apps/metadata/handlers.py @@ -2,6 +2,8 @@ from __future__ import unicode_literals import logging +from django.db.models import get_model + from .tasks import task_add_required_metadata_type, task_remove_metadata_type logger = logging.getLogger(__name__) @@ -36,7 +38,7 @@ def post_post_document_type_change_metadata(sender, instance, **kwargs): for metadata in instance.metadata.all(): metadata.delete(enforce_required=False) - DocumentMetadata = sender.get_model('DocumentMetadata') + DocumentMetadata = get_model('metadata', 'DocumentMetadata') # Add new document type metadata types to document for document_type_metadata_type in instance.document_type.metadata.filter(required=True): diff --git a/mayan/apps/ocr/handlers.py b/mayan/apps/ocr/handlers.py index 959398e10b..5e41ae6074 100644 --- a/mayan/apps/ocr/handlers.py +++ b/mayan/apps/ocr/handlers.py @@ -2,10 +2,12 @@ from __future__ import unicode_literals import logging -logger = logging.getLogger(__name__) +from django.db.models import get_model from .settings import setting_auto_ocr +logger = logging.getLogger(__name__) + def post_version_upload_ocr(sender, instance, **kwargs): logger.debug('received post_version_upload') @@ -15,7 +17,7 @@ def post_version_upload_ocr(sender, instance, **kwargs): def initialize_new_ocr_settings(sender, instance, **kwargs): - DocumentTypeSettings = sender.get_model('DocumentTypeSettings') + DocumentTypeSettings = get_model('ocr', 'DocumentTypeSettings') if kwargs['created']: DocumentTypeSettings.objects.create( diff --git a/mayan/apps/sources/handlers.py b/mayan/apps/sources/handlers.py index 0af79e626b..7204cab63e 100644 --- a/mayan/apps/sources/handlers.py +++ b/mayan/apps/sources/handlers.py @@ -1,14 +1,13 @@ from __future__ import unicode_literals +from django.db.models import get_model from django.utils.translation import ugettext_lazy as _ -from converter.models import Transformation - from .literals import SOURCE_UNCOMPRESS_CHOICE_ASK def create_default_document_source(sender, **kwargs): - WebFormSource = sender.get_model('WebFormSource') + WebFormSource = get_model('sources', 'WebFormSource') if not WebFormSource.objects.count(): WebFormSource.objects.create( @@ -17,7 +16,7 @@ def create_default_document_source(sender, **kwargs): def copy_transformations_to_version(sender, **kwargs): - Transformation = sender.get_model('Transformation') + Transformation = get_model('converter', 'Transformation') instance = kwargs['instance'] @@ -29,9 +28,9 @@ def copy_transformations_to_version(sender, **kwargs): def initialize_periodic_tasks(sender, **kwargs): - POP3Email = sender.get_model('POP3Email') - IMAPEmail = sender.get_model('IMAPEmail') - WatchFolderSource = sender.get_model('WatchFolderSource') + POP3Email = get_model('sources', 'POP3Email') + IMAPEmail = get_model('sources', 'IMAPEmail') + WatchFolderSource = get_model('sources', 'WatchFolderSource') for source in POP3Email.objects.filter(enabled=True): source.save() From 59661f643b4a7f24517d460335cbcb0bc4f0b68a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 26 Jan 2016 03:55:44 -0400 Subject: [PATCH 010/205] Update API pagination for DRF 3.3.2. --- mayan/settings/base.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mayan/settings/base.py b/mayan/settings/base.py index 8941b735fc..3c845f441d 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -239,14 +239,12 @@ LOGIN_EXEMPT_URLS = ( ) # ---------- Django REST framework ----------- REST_FRAMEWORK = { - 'PAGINATE_BY': 10, - 'PAGINATE_BY_PARAM': 'page_size', - 'MAX_PAGINATE_BY': 100, 'DEFAULT_AUTHENTICATION_CLASSES': ( 'rest_framework.authentication.BasicAuthentication', 'rest_framework.authentication.TokenAuthentication', 'rest_framework.authentication.SessionAuthentication', - ) + ), + 'PAGE_SIZE': 10, } # --------- Pagination -------- PAGINATION_SETTINGS = { From 2dd4ca1f1394e016acbcdfd3fcc839d9cece1df4 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 26 Jan 2016 05:14:07 -0400 Subject: [PATCH 011/205] Workaround undocumented backward incompatible change in python-gnupy 0.3.8. --- mayan/apps/django_gpg/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/django_gpg/api.py b/mayan/apps/django_gpg/api.py index 7a388e607b..aadc50bc37 100644 --- a/mayan/apps/django_gpg/api.py +++ b/mayan/apps/django_gpg/api.py @@ -252,7 +252,7 @@ class GPG(object): if close_descriptor: input_descriptor.close() - if not result.status: + if not result.status or result.status == 'no data was provided': raise GPGDecryptionError('Unable to decrypt file') return result From 24644e353823ddd63ab987e71d1805cf467b59e3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Jan 2016 18:34:32 -0400 Subject: [PATCH 012/205] Remove select_related using reverse related name field. --- mayan/apps/metadata/views.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/mayan/apps/metadata/views.py b/mayan/apps/metadata/views.py index 5f67012d17..1ad80529ec 100644 --- a/mayan/apps/metadata/views.py +++ b/mayan/apps/metadata/views.py @@ -40,9 +40,7 @@ def metadata_edit(request, document_id=None, document_id_list=None): if not documents: raise Document.DoesNotExist elif document_id_list: - documents = Document.objects.select_related('metadata').filter( - pk__in=document_id_list - ) + documents = Document.objects.filter(pk__in=document_id_list) try: Permission.check_permissions( @@ -333,9 +331,7 @@ def metadata_remove(request, document_id=None, document_id_list=None): if not documents: raise Document.DoesNotExist elif document_id_list: - documents = Document.objects.select_related('metadata').filter( - pk__in=document_id_list - ) + documents = Document.objects.filter(pk__in=document_id_list) try: Permission.check_permissions( From 830e83d107f61bc8c41e685038564818106a9c41 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Jan 2016 04:21:18 -0400 Subject: [PATCH 013/205] Remove unused template. --- .../templates/appearance/tools.html | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 mayan/apps/appearance/templates/appearance/tools.html diff --git a/mayan/apps/appearance/templates/appearance/tools.html b/mayan/apps/appearance/templates/appearance/tools.html deleted file mode 100644 index 7139b7d150..0000000000 --- a/mayan/apps/appearance/templates/appearance/tools.html +++ /dev/null @@ -1,26 +0,0 @@ -{% extends 'appearance/base.html' %} - -{% block title %}{{ title }}{% endblock %} - -{% block content %} -

- {{ title }} -

-
- {% for key, value in blocks.items %} -
-
-

{{ value.title }}

-
-
-
    - {% for link in value.links %} -
  • - {% include 'navigation/generic_subnavigation.html' %}{% if link.description %} - {{ link.description }}{% endif %} -
  • - {% endfor %} -
-
-
- {% endfor %} -{% endblock %} From 09f4d674a47b0738d8bcdb9061f66bd2266b4289 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Jan 2016 04:40:31 -0400 Subject: [PATCH 014/205] Pass the request instance to properly resolve the setup and tools links. --- mayan/apps/common/views.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/mayan/apps/common/views.py b/mayan/apps/common/views.py index a094c17136..a02eb7e167 100644 --- a/mayan/apps/common/views.py +++ b/mayan/apps/common/views.py @@ -170,10 +170,10 @@ class SetupListView(TemplateView): def get_context_data(self, **kwargs): data = super(SetupListView, self).get_context_data(**kwargs) + context = RequestContext(self.request) + context['request'] = self.request data.update({ - 'resolved_links': menu_setup.resolve( - context=RequestContext(self.request) - ), + 'resolved_links': menu_setup.resolve(context=context), 'title': _('Setup items'), }) return data @@ -183,7 +183,10 @@ class ToolsListView(SimpleView): template_name = 'appearance/generic_list_horizontal.html' def get_menu_links(self): - return menu_tools.resolve(context=RequestContext(self.request)) + context = RequestContext(self.request) + context['request'] = self.request + + return menu_tools.resolve(context=context) def get_extra_context(self): return { From d5c73eaad64ba62c8038b097e621f8885c71cf67 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Jan 2016 04:42:26 -0400 Subject: [PATCH 015/205] Rename the 'Content' search label to 'OCR' for proper meaning. --- mayan/apps/ocr/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/ocr/apps.py b/mayan/apps/ocr/apps.py index bee3e8b293..d213396ac2 100644 --- a/mayan/apps/ocr/apps.py +++ b/mayan/apps/ocr/apps.py @@ -101,7 +101,7 @@ class OCRApp(MayanAppConfig): ) document_search.add_model_field( - field='versions__pages__ocr_content__content', label=_('Content') + field='versions__pages__ocr_content__content', label=_('OCR') ) menu_facet.bind_links( From 27d864443847a24eae79ba54df5c9dd6ab65a140 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Jan 2016 05:43:08 -0400 Subject: [PATCH 016/205] Silence 90% of remaining Django 1.8 model warnings. --- mayan/apps/acls/classes.py | 6 +++- mayan/apps/checkouts/apps.py | 6 +++- mayan/apps/checkouts/tasks.py | 7 +++- mayan/apps/common/classes.py | 5 ++- mayan/apps/common/handlers.py | 11 +++++-- mayan/apps/common/mixins.py | 10 +++++- mayan/apps/common/tasks.py | 6 +++- mayan/apps/document_comments/apps.py | 6 +++- mayan/apps/document_indexing/apps.py | 11 +++++-- mayan/apps/document_indexing/tasks.py | 19 +++++++++-- mayan/apps/document_indexing/widgets.py | 7 ++-- mayan/apps/document_signatures/apps.py | 10 +++++- mayan/apps/document_signatures/hooks.py | 12 +++++-- mayan/apps/document_signatures/links.py | 10 +++++- mayan/apps/document_states/apps.py | 6 +++- mayan/apps/documents/handlers.py | 6 ++-- mayan/apps/documents/tasks.py | 44 +++++++++++++++++++++++-- mayan/apps/folders/apps.py | 6 +++- mayan/apps/linking/apps.py | 6 +++- mayan/apps/mailer/apps.py | 6 +++- mayan/apps/metadata/apps.py | 10 +++++- mayan/apps/metadata/handlers.py | 8 +++-- mayan/apps/metadata/tasks.py | 20 ++++++++--- mayan/apps/navigation/classes.py | 6 +++- mayan/apps/ocr/apps.py | 14 +++++++- mayan/apps/permissions/classes.py | 10 +++++- mayan/apps/sources/apps.py | 6 +++- mayan/apps/sources/tasks.py | 28 ++++++++++++++-- mayan/apps/tags/apps.py | 6 +++- 29 files changed, 264 insertions(+), 44 deletions(-) diff --git a/mayan/apps/acls/classes.py b/mayan/apps/acls/classes.py index 1cd9ef2d0f..8750160937 100644 --- a/mayan/apps/acls/classes.py +++ b/mayan/apps/acls/classes.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals, absolute_import import logging -from permissions.models import StoredPermission +from django.apps import apps logger = logging.getLogger(__name__) @@ -20,6 +20,10 @@ class ModelPermission(object): @classmethod def get_for_instance(cls, instance): + StoredPermission = apps.get_model( + app_label='permissions', model_name='StoredPermission' + ) + try: permissions = cls._registry[type(instance)] except KeyError: diff --git a/mayan/apps/checkouts/apps.py b/mayan/apps/checkouts/apps.py index 660dce0b1c..8de707d522 100644 --- a/mayan/apps/checkouts/apps.py +++ b/mayan/apps/checkouts/apps.py @@ -4,11 +4,11 @@ from datetime import timedelta from kombu import Exchange, Queue +from django.apps import apps from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission from common import MayanAppConfig, menu_facet, menu_main, menu_sidebar -from documents.models import Document from mayan.celery import app from rest_api.classes import APIEndPoint @@ -35,6 +35,10 @@ class CheckoutsApp(MayanAppConfig): APIEndPoint(app=self, version_string='1') + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + DocumentCheckout = self.get_model('DocumentCheckout') Document.add_to_class( diff --git a/mayan/apps/checkouts/tasks.py b/mayan/apps/checkouts/tasks.py index 5b4327d0e7..9b5ea5d9a8 100644 --- a/mayan/apps/checkouts/tasks.py +++ b/mayan/apps/checkouts/tasks.py @@ -2,17 +2,22 @@ from __future__ import unicode_literals import logging +from django.apps import apps + from lock_manager import Lock, LockError from mayan.celery import app from .literals import CHECKOUT_EXPIRATION_LOCK_EXPIRE -from .models import DocumentCheckout logger = logging.getLogger(__name__) @app.task(ignore_result=True) def task_check_expired_check_outs(): + DocumentCheckout = apps.get_model( + app_label='checkouts', model_name='DocumentCheckout' + ) + logger.debug('executing...') lock_id = 'task_expired_check_outs' try: diff --git a/mayan/apps/common/classes.py b/mayan/apps/common/classes.py index 8aef2dbd7d..d342ab062e 100644 --- a/mayan/apps/common/classes.py +++ b/mayan/apps/common/classes.py @@ -1,5 +1,6 @@ from __future__ import unicode_literals +from django.apps import apps from django.core.exceptions import PermissionDenied from django.db import models from django.utils.translation import ugettext @@ -125,7 +126,9 @@ class Filter(object): return unicode(self.label) def get_queryset(self, user): - from acls.models import AccessControlList + AccessControlList = apps.get_model( + app_label='acls', model_name='AccessControlList' + ) queryset = self.model.objects.all() for kwargs in self.filter_kwargs: diff --git a/mayan/apps/common/handlers.py b/mayan/apps/common/handlers.py index e992516818..8fffc54769 100644 --- a/mayan/apps/common/handlers.py +++ b/mayan/apps/common/handlers.py @@ -1,12 +1,15 @@ from __future__ import unicode_literals +from django.apps import apps from django.conf import settings from django.utils import timezone, translation -from .models import UserLocaleProfile - def user_locale_profile_session_config(sender, request, user, **kwargs): + UserLocaleProfile = apps.get_model( + app_label='common', model_name='UserLocaleProfile' + ) + user_locale_profile, created = UserLocaleProfile.objects.get_or_create( user=user ) @@ -34,5 +37,9 @@ def user_locale_profile_session_config(sender, request, user, **kwargs): def user_locale_profile_create(sender, instance, created, **kwargs): + UserLocaleProfile = apps.get_model( + app_label='common', model_name='UserLocaleProfile' + ) + if created: UserLocaleProfile.objects.create(user=instance) diff --git a/mayan/apps/common/mixins.py b/mayan/apps/common/mixins.py index 39e90bdcf2..535a81c660 100644 --- a/mayan/apps/common/mixins.py +++ b/mayan/apps/common/mixins.py @@ -1,5 +1,6 @@ from __future__ import unicode_literals +from django.apps import apps from django.conf import settings from django.contrib import messages from django.core.exceptions import PermissionDenied @@ -7,7 +8,6 @@ from django.core.urlresolvers import reverse from django.http import HttpResponseRedirect from django.utils.translation import ungettext -from acls.models import AccessControlList from permissions import Permission __all__ = ( @@ -85,6 +85,10 @@ class ObjectListPermissionFilterMixin(object): object_permission = None def get_queryset(self): + AccessControlList = apps.get_model( + app_label='acls', model_name='AccessControlList' + ) + queryset = super(ObjectListPermissionFilterMixin, self).get_queryset() if self.object_permission: @@ -113,6 +117,10 @@ class ObjectPermissionCheckMixin(object): return self.get_object() def dispatch(self, request, *args, **kwargs): + AccessControlList = apps.get_model( + app_label='acls', model_name='AccessControlList' + ) + if self.object_permission: try: Permission.check_permissions( diff --git a/mayan/apps/common/tasks.py b/mayan/apps/common/tasks.py index c45b2ddf36..4a0027a36d 100644 --- a/mayan/apps/common/tasks.py +++ b/mayan/apps/common/tasks.py @@ -3,12 +3,12 @@ from __future__ import unicode_literals from datetime import timedelta import logging +from django.apps import apps from django.utils.timezone import now from mayan.celery import app from .literals import UPLOAD_EXPIRATION_INTERVAL -from .models import SharedUploadedFile logger = logging.getLogger(__name__) @@ -17,6 +17,10 @@ logger = logging.getLogger(__name__) def task_delete_stale_uploads(): logger.info('Executing') + SharedUploadedFile = apps.get_model( + app_label='common', model_name='SharedUploadedFile' + ) + for expired_upload in SharedUploadedFile.objects.filter(datetime__lt=now() - timedelta(seconds=UPLOAD_EXPIRATION_INTERVAL)): expired_upload.delete() diff --git a/mayan/apps/document_comments/apps.py b/mayan/apps/document_comments/apps.py index 5b52b73d98..c4d5f3dfd4 100644 --- a/mayan/apps/document_comments/apps.py +++ b/mayan/apps/document_comments/apps.py @@ -1,10 +1,10 @@ from __future__ import unicode_literals +from django.apps import apps from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission from common import MayanAppConfig, menu_facet, menu_object, menu_sidebar -from documents.models import Document from navigation import SourceColumn from .links import ( @@ -25,6 +25,10 @@ class DocumentCommentsApp(MayanAppConfig): def ready(self): super(DocumentCommentsApp, self).ready() + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + Comment = self.get_model('Comment') ModelPermission.register( diff --git a/mayan/apps/document_indexing/apps.py b/mayan/apps/document_indexing/apps.py index 6dc211800a..aef05f315d 100644 --- a/mayan/apps/document_indexing/apps.py +++ b/mayan/apps/document_indexing/apps.py @@ -2,6 +2,7 @@ from __future__ import absolute_import, unicode_literals from kombu import Exchange, Queue +from django.apps import apps from django.db.models.signals import post_save, post_delete from django.utils.translation import ugettext_lazy as _ @@ -11,10 +12,8 @@ from common import ( ) from common.classes import Package from common.widgets import two_state_template -from documents.models import Document from documents.signals import post_document_created from mayan.celery import app -from metadata.models import DocumentMetadata from navigation import SourceColumn from rest_api.classes import APIEndPoint @@ -43,6 +42,14 @@ class DocumentIndexingApp(MayanAppConfig): def ready(self): super(DocumentIndexingApp, self).ready() + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + + DocumentMetadata = apps.get_model( + app_label='metadata', model_name='DocumentMetadata' + ) + DocumentIndexInstanceNode = self.get_model('DocumentIndexInstanceNode') Index = self.get_model('Index') IndexInstance = self.get_model('IndexInstance') diff --git a/mayan/apps/document_indexing/tasks.py b/mayan/apps/document_indexing/tasks.py index 007af049e9..507ba9bdd4 100644 --- a/mayan/apps/document_indexing/tasks.py +++ b/mayan/apps/document_indexing/tasks.py @@ -2,20 +2,23 @@ from __future__ import unicode_literals import logging +from django.apps import apps from django.db import OperationalError from mayan.celery import app -from documents.models import Document from lock_manager import Lock, LockError from .literals import RETRY_DELAY -from .models import IndexInstanceNode logger = logging.getLogger(__name__) @app.task(bind=True, default_retry_delay=RETRY_DELAY, max_retries=None, ignore_result=True) def task_delete_empty_index_nodes(self): + IndexInstanceNode = apps.get_model( + app_label='document_indexing', model_name='IndexInstanceNode' + ) + try: rebuild_lock = Lock.acquire_lock( 'document_indexing_task_do_rebuild_all_indexes' @@ -32,6 +35,14 @@ def task_delete_empty_index_nodes(self): @app.task(bind=True, default_retry_delay=RETRY_DELAY, max_retries=None, ignore_result=True) def task_index_document(self, document_id): + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + + IndexInstanceNode = apps.get_model( + app_label='document_indexing', model_name='IndexInstanceNode' + ) + try: rebuild_lock = Lock.acquire_lock( 'document_indexing_task_do_rebuild_all_indexes' @@ -74,6 +85,10 @@ def task_index_document(self, document_id): @app.task(bind=True, default_retry_delay=RETRY_DELAY, ignore_result=True) def task_do_rebuild_all_indexes(self): + IndexInstanceNode = apps.get_model( + app_label='document_indexing', model_name='IndexInstanceNode' + ) + if Lock.check_existing(name__startswith='document_indexing_task_update_index_document'): # A document index update is happening, wait raise self.retry() diff --git a/mayan/apps/document_indexing/widgets.py b/mayan/apps/document_indexing/widgets.py index c207851bae..f7371e92c0 100644 --- a/mayan/apps/document_indexing/widgets.py +++ b/mayan/apps/document_indexing/widgets.py @@ -1,11 +1,10 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals +from django.apps import apps from django.utils.html import mark_safe from django.utils.translation import ugettext -from .models import IndexInstanceNode - def get_instance_link(index_instance_node, text=None, simple=False): """ @@ -64,6 +63,10 @@ def get_breadcrumbs(index_instance_node, simple=False, single_link=False, includ def index_instance_item_link(index_instance_item): + IndexInstanceNode = apps.get_model( + app_label='document_indexing', model_name='IndexInstanceNode' + ) + if isinstance(index_instance_item, IndexInstanceNode): if index_instance_item.index_template_node.link_documents: icon_template = '' diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index f9e807da6d..dcf953a593 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -2,11 +2,11 @@ from __future__ import unicode_literals import logging +from django.apps import apps from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission from common import MayanAppConfig, menu_facet, menu_sidebar -from documents.models import Document, DocumentVersion from .hooks import document_pre_open_hook, document_version_post_save_hook from .links import ( @@ -31,6 +31,14 @@ class DocumentSignaturesApp(MayanAppConfig): def ready(self): super(DocumentSignaturesApp, self).ready() + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + + DocumentVersion = apps.get_model( + app_label='documents', model_name='DocumentVersion' + ) + DocumentVersion.register_post_save_hook( 1, document_version_post_save_hook ) diff --git a/mayan/apps/document_signatures/hooks.py b/mayan/apps/document_signatures/hooks.py index 4dcf94dcd7..0065d2c425 100644 --- a/mayan/apps/document_signatures/hooks.py +++ b/mayan/apps/document_signatures/hooks.py @@ -3,6 +3,7 @@ from __future__ import unicode_literals import io import logging +from django.apps import apps from django_gpg.exceptions import GPGDecryptionError from django_gpg.runtime import gpg @@ -10,7 +11,11 @@ logger = logging.getLogger(__name__) def document_pre_open_hook(descriptor, instance): - from .models import DocumentVersionSignature + logger.debug('instance: %s', instance) + + DocumentVersionSignature = apps.get_model( + app_label='document_signatures', model_name='DocumentVersionSignature' + ) if DocumentVersionSignature.objects.has_embedded_signature(document_version=instance): # If it has an embedded signature, decrypt @@ -30,7 +35,10 @@ def document_pre_open_hook(descriptor, instance): def document_version_post_save_hook(instance): logger.debug('instance: %s', instance) - from .models import DocumentVersionSignature + + DocumentVersionSignature = apps.get_model( + app_label='document_signatures', model_name='DocumentVersionSignature' + ) try: document_signature = DocumentVersionSignature.objects.get( diff --git a/mayan/apps/document_signatures/links.py b/mayan/apps/document_signatures/links.py index ffd17b870a..3a2436ca1e 100644 --- a/mayan/apps/document_signatures/links.py +++ b/mayan/apps/document_signatures/links.py @@ -1,10 +1,10 @@ from __future__ import unicode_literals +from django.apps import apps from django.utils.translation import ugettext_lazy as _ from navigation import Link -from .models import DocumentVersionSignature from .permissions import ( permission_document_verify, permission_signature_delete, permission_signature_download, permission_signature_upload, @@ -12,6 +12,10 @@ from .permissions import ( def can_upload_detached_signature(context): + DocumentVersionSignature = apps.get_model( + app_label='document_signatures', model_name='DocumentVersionSignature' + ) + return not DocumentVersionSignature.objects.has_detached_signature( context['object'].latest_version ) and not DocumentVersionSignature.objects.has_embedded_signature( @@ -20,6 +24,10 @@ def can_upload_detached_signature(context): def can_delete_detached_signature(context): + DocumentVersionSignature = apps.get_model( + app_label='document_signatures', model_name='DocumentVersionSignature' + ) + return DocumentVersionSignature.objects.has_detached_signature( context['object'].latest_version ) diff --git a/mayan/apps/document_states/apps.py b/mayan/apps/document_states/apps.py index 0af6eb8132..7e71d5b1a2 100644 --- a/mayan/apps/document_states/apps.py +++ b/mayan/apps/document_states/apps.py @@ -1,5 +1,6 @@ from __future__ import unicode_literals +from django.apps import apps from django.db.models.signals import post_save from django.utils.translation import ugettext_lazy as _ @@ -8,7 +9,6 @@ from common import ( menu_sidebar ) from common.widgets import two_state_template -from documents.models import Document from navigation import SourceColumn from .handlers import launch_workflow @@ -33,6 +33,10 @@ class DocumentStatesApp(MayanAppConfig): def ready(self): super(DocumentStatesApp, self).ready() + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + Workflow = self.get_model('Workflow') WorkflowInstance = self.get_model('WorkflowInstance') WorkflowInstanceLogEntry = self.get_model('WorkflowInstanceLogEntry') diff --git a/mayan/apps/documents/handlers.py b/mayan/apps/documents/handlers.py index ec185e87d6..bcde760c69 100644 --- a/mayan/apps/documents/handlers.py +++ b/mayan/apps/documents/handlers.py @@ -1,11 +1,13 @@ from __future__ import unicode_literals -from django.db.models import get_model +from django.apps import apps from django.utils.translation import ugettext_lazy as _ def create_default_document_type(sender, **kwargs): - DocumentType = get_model('documents', 'DocumentType') + DocumentType = apps.get_model( + app_label='documents', model_name='DocumentType' + ) if not DocumentType.objects.count(): DocumentType.objects.create(label=_('Default')) diff --git a/mayan/apps/documents/tasks.py b/mayan/apps/documents/tasks.py index f35c47b023..4427eb3145 100644 --- a/mayan/apps/documents/tasks.py +++ b/mayan/apps/documents/tasks.py @@ -2,34 +2,44 @@ from __future__ import unicode_literals import logging +from django.apps import apps from django.contrib.auth.models import User from django.db import OperationalError from mayan.celery import app -from common.models import SharedUploadedFile - from .literals import ( UPDATE_PAGE_COUNT_RETRY_DELAY, UPLOAD_NEW_VERSION_RETRY_DELAY, NEW_DOCUMENT_RETRY_DELAY ) -from .models import Document, DocumentPage, DocumentType, DocumentVersion logger = logging.getLogger(__name__) @app.task(ignore_result=True) def task_check_delete_periods(): + DocumentType = apps.get_model( + app_label='documents', model_name='DocumentType' + ) + DocumentType.objects.check_delete_periods() @app.task(ignore_result=True) def task_check_trash_periods(): + DocumentType = apps.get_model( + app_label='documents', model_name='DocumentType' + ) + DocumentType.objects.check_trash_periods() @app.task(ignore_result=True) def task_clear_image_cache(): + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + logger.info('Starting document cache invalidation') Document.objects.invalidate_cache() logger.info('Finished document cache invalidation') @@ -37,6 +47,10 @@ def task_clear_image_cache(): @app.task(ignore_result=True) def task_delete_stubs(): + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + logger.info('Executing') Document.objects.delete_stubs() logger.info('Finshed') @@ -44,12 +58,20 @@ def task_delete_stubs(): @app.task(compression='zlib') def task_get_document_page_image(document_page_id, *args, **kwargs): + DocumentPage = apps.get_model( + app_label='documents', model_name='DocumentPage' + ) + document_page = DocumentPage.objects.get(pk=document_page_id) return document_page.get_image(*args, **kwargs) @app.task(bind=True, default_retry_delay=UPDATE_PAGE_COUNT_RETRY_DELAY, ignore_result=True) def task_update_page_count(self, version_id): + DocumentVersion = apps.get_model( + app_label='documents', model_name='DocumentVersion' + ) + document_version = DocumentVersion.objects.get(pk=version_id) try: document_version.update_page_count() @@ -64,6 +86,14 @@ def task_update_page_count(self, version_id): @app.task(bind=True, default_retry_delay=NEW_DOCUMENT_RETRY_DELAY, ignore_result=True) def task_upload_new_document(self, document_type_id, shared_uploaded_file_id, description=None, label=None, language=None, user_id=None): + SharedUploadedFile = apps.get_model( + app_label='common', model_name='SharedUploadedFile' + ) + + DocumentType = apps.get_model( + app_label='documents', model_name='DocumentType' + ) + try: document_type = DocumentType.objects.get(pk=document_type_id) shared_file = SharedUploadedFile.objects.get( @@ -106,6 +136,14 @@ def task_upload_new_document(self, document_type_id, shared_uploaded_file_id, de @app.task(bind=True, default_retry_delay=UPLOAD_NEW_VERSION_RETRY_DELAY, ignore_result=True) def task_upload_new_version(self, document_id, shared_uploaded_file_id, user_id, comment=None): + SharedUploadedFile = apps.get_model( + app_label='common', model_name='SharedUploadedFile' + ) + + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + try: document = Document.objects.get(pk=document_id) shared_file = SharedUploadedFile.objects.get( diff --git a/mayan/apps/folders/apps.py b/mayan/apps/folders/apps.py index 467949f6d5..dc0c51a4ef 100644 --- a/mayan/apps/folders/apps.py +++ b/mayan/apps/folders/apps.py @@ -1,5 +1,6 @@ from __future__ import unicode_literals +from django.apps import apps from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission @@ -9,7 +10,6 @@ from common import ( MayanAppConfig, menu_facet, menu_main, menu_object, menu_secondary, menu_sidebar, menu_multi_item ) -from documents.models import Document from navigation import SourceColumn from rest_api.classes import APIEndPoint @@ -35,6 +35,10 @@ class FoldersApp(MayanAppConfig): def ready(self): super(FoldersApp, self).ready() + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + DocumentFolder = self.get_model('DocumentFolder') Folder = self.get_model('Folder') diff --git a/mayan/apps/linking/apps.py b/mayan/apps/linking/apps.py index 8a0ac798ff..9931161a9e 100644 --- a/mayan/apps/linking/apps.py +++ b/mayan/apps/linking/apps.py @@ -1,5 +1,6 @@ from __future__ import unicode_literals +from django.apps import apps from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission @@ -10,7 +11,6 @@ from common import ( menu_sidebar ) from common.widgets import two_state_template -from documents.models import Document from navigation import SourceColumn from .links import ( @@ -34,6 +34,10 @@ class LinkingApp(MayanAppConfig): def ready(self): super(LinkingApp, self).ready() + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + ResolvedSmartLink = self.get_model('ResolvedSmartLink') SmartLink = self.get_model('SmartLink') SmartLinkCondition = self.get_model('SmartLinkCondition') diff --git a/mayan/apps/mailer/apps.py b/mayan/apps/mailer/apps.py index b7eefbb8f7..1313135125 100644 --- a/mayan/apps/mailer/apps.py +++ b/mayan/apps/mailer/apps.py @@ -2,11 +2,11 @@ from __future__ import unicode_literals from kombu import Exchange, Queue +from django.apps import apps from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission from common import MayanAppConfig, menu_object, menu_tools -from documents.models import Document from mayan.celery import app from navigation import SourceColumn @@ -26,6 +26,10 @@ class MailerApp(MayanAppConfig): def ready(self): super(MailerApp, self).ready() + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + LogEntry = self.get_model('LogEntry') SourceColumn( diff --git a/mayan/apps/metadata/apps.py b/mayan/apps/metadata/apps.py index 79281600c8..8bb0df6364 100644 --- a/mayan/apps/metadata/apps.py +++ b/mayan/apps/metadata/apps.py @@ -4,6 +4,7 @@ import logging from kombu import Exchange, Queue +from django.apps import apps from django.db.models.signals import post_delete, post_save from django.utils.translation import ugettext_lazy as _ @@ -14,7 +15,6 @@ from common import ( ) from common.classes import ModelAttribute, Filter from common.widgets import two_state_template -from documents.models import Document, DocumentType from documents.search import document_search from documents.signals import post_document_type_change from documents.permissions import permission_document_view @@ -54,6 +54,14 @@ class MetadataApp(MayanAppConfig): def ready(self): super(MetadataApp, self).ready() + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + + DocumentType = apps.get_model( + app_label='documents', model_name='DocumentType' + ) + DocumentMetadata = self.get_model('DocumentMetadata') DocumentTypeMetadataType = self.get_model('DocumentTypeMetadataType') MetadataType = self.get_model('MetadataType') diff --git a/mayan/apps/metadata/handlers.py b/mayan/apps/metadata/handlers.py index d65e7a8c13..da408481e4 100644 --- a/mayan/apps/metadata/handlers.py +++ b/mayan/apps/metadata/handlers.py @@ -1,8 +1,8 @@ from __future__ import unicode_literals -import logging +from django.apps import apps -from django.db.models import get_model +import logging from .tasks import task_add_required_metadata_type, task_remove_metadata_type @@ -38,7 +38,9 @@ def post_post_document_type_change_metadata(sender, instance, **kwargs): for metadata in instance.metadata.all(): metadata.delete(enforce_required=False) - DocumentMetadata = get_model('metadata', 'DocumentMetadata') + DocumentMetadata = apps.get_model( + app_label='metadata', model_name='DocumentMetadata' + ) # Add new document type metadata types to document for document_type_metadata_type in instance.document_type.metadata.filter(required=True): diff --git a/mayan/apps/metadata/tasks.py b/mayan/apps/metadata/tasks.py index be2540cc0f..ebf0f6d596 100644 --- a/mayan/apps/metadata/tasks.py +++ b/mayan/apps/metadata/tasks.py @@ -1,16 +1,20 @@ +from __future__ import unicode_literals + import logging +from django.apps import apps + from mayan.celery import app -from documents.models import DocumentType - -from .models import DocumentMetadata, MetadataType - logger = logging.getLogger(__name__) @app.task(ignore_result=True) def task_remove_metadata_type(document_type_id, metadata_type_id): + DocumentMetadata = apps.get_model( + app_label='metadata', model_name='DocumentMetadata' + ) + DocumentMetadata.objects.filter( document__document_type__id=document_type_id, metadata_type__id=metadata_type_id @@ -19,6 +23,14 @@ def task_remove_metadata_type(document_type_id, metadata_type_id): @app.task(ignore_result=True) def task_add_required_metadata_type(document_type_id, metadata_type_id): + DocumentType = apps.get_model( + app_label='documents', model_name='DocumentType' + ) + + MetadataType = apps.get_model( + app_label='metadata', model_name='MetadataType' + ) + metadata_type = MetadataType.objects.get(pk=metadata_type_id) for document in DocumentType.objects.get(pk=document_type_id).documents.all(): diff --git a/mayan/apps/navigation/classes.py b/mayan/apps/navigation/classes.py index 0515991962..6a32c07466 100644 --- a/mayan/apps/navigation/classes.py +++ b/mayan/apps/navigation/classes.py @@ -5,6 +5,7 @@ import logging import urllib import urlparse +from django.apps import apps from django.conf import settings from django.core.exceptions import PermissionDenied from django.core.urlresolvers import resolve, reverse @@ -13,7 +14,6 @@ from django.template.defaulttags import URLNode from django.utils.encoding import smart_str, smart_unicode from django.utils.http import urlencode, urlquote -from acls.models import AccessControlList from common.utils import return_attrib from permissions import Permission @@ -218,6 +218,10 @@ class Link(object): self.view = view def resolve(self, context, resolved_object=None): + AccessControlList = apps.get_model( + app_label='acls', model_name='AccessControlList' + ) + request = Variable('request').resolve(context) current_path = request.META['PATH_INFO'] current_view = resolve(current_path).view_name diff --git a/mayan/apps/ocr/apps.py b/mayan/apps/ocr/apps.py index d213396ac2..a25271b601 100644 --- a/mayan/apps/ocr/apps.py +++ b/mayan/apps/ocr/apps.py @@ -5,6 +5,7 @@ import logging from kombu import Exchange, Queue import sh +from django.apps import apps from django.db.models.signals import post_save from django.utils.translation import ugettext_lazy as _ @@ -14,7 +15,6 @@ from common import ( menu_tools ) from common.settings import settings_db_sync_task_delay -from documents.models import Document, DocumentType, DocumentVersion from documents.search import document_search from documents.signals import post_version_upload from documents.widgets import document_link @@ -60,6 +60,18 @@ class OCRApp(MayanAppConfig): def ready(self): super(OCRApp, self).ready() + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + + DocumentType = apps.get_model( + app_label='documents', model_name='DocumentType' + ) + + DocumentVersion = apps.get_model( + app_label='documents', model_name='DocumentVersion' + ) + DocumentVersionOCRError = self.get_model('DocumentVersionOCRError') APIEndPoint(app=self, version_string='1') diff --git a/mayan/apps/permissions/classes.py b/mayan/apps/permissions/classes.py index e8659a0708..290f9f9a3b 100644 --- a/mayan/apps/permissions/classes.py +++ b/mayan/apps/permissions/classes.py @@ -2,11 +2,11 @@ from __future__ import unicode_literals import logging +from django.apps import apps from django.core.exceptions import PermissionDenied from django.utils.translation import ugettext_lazy as _ from .exceptions import InvalidNamespace -from .models import StoredPermission logger = logging.getLogger(__name__) @@ -64,6 +64,10 @@ class Permission(object): @classmethod def get_for_holder(cls, holder): + StoredPermission = apps.get_model( + app_label='permissions', model_name='StoredPermission' + ) + return StoredPermission.get_for_holder(holder) @classmethod @@ -100,6 +104,10 @@ class Permission(object): @property def stored_permission(self): + StoredPermission = apps.get_model( + app_label='permissions', model_name='StoredPermission' + ) + try: return self.__class__._stored_permissions_cache[self.uuid] except KeyError: diff --git a/mayan/apps/sources/apps.py b/mayan/apps/sources/apps.py index cc4230d710..ed1167f63e 100644 --- a/mayan/apps/sources/apps.py +++ b/mayan/apps/sources/apps.py @@ -1,5 +1,6 @@ from __future__ import absolute_import, unicode_literals +from django.apps import apps from django.utils.translation import ugettext_lazy as _ from kombu import Exchange, Queue @@ -10,7 +11,6 @@ from common import ( ) from common.signals import post_initial_setup, post_upgrade from converter.links import link_transformation_list -from documents.models import Document from documents.signals import post_version_upload from mayan.celery import app from navigation import SourceColumn @@ -41,6 +41,10 @@ class SourcesApp(MayanAppConfig): def ready(self): super(SourcesApp, self).ready() + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + POP3Email = self.get_model('POP3Email') IMAPEmail = self.get_model('IMAPEmail') Source = self.get_model('Source') diff --git a/mayan/apps/sources/tasks.py b/mayan/apps/sources/tasks.py index 9d6ee5c1e1..3dc60a1242 100644 --- a/mayan/apps/sources/tasks.py +++ b/mayan/apps/sources/tasks.py @@ -1,5 +1,6 @@ import logging +from django.apps import apps from django.contrib.auth.models import User from django.core.files import File from django.db import OperationalError @@ -8,17 +9,18 @@ from django.utils.translation import ugettext_lazy as _ from mayan.celery import app from common.compressed_files import CompressedFile, NotACompressedFile -from common.models import SharedUploadedFile -from documents.models import DocumentType from .literals import DEFAULT_SOURCE_TASK_RETRY_DELAY -from .models import Source logger = logging.getLogger(__name__) @app.task(ignore_result=True) def task_check_interval_source(source_id): + Source = apps.get_model( + app_label='sources', model_name='Source' + ) + source = Source.objects.get_subclass(pk=source_id) if source.enabled: try: @@ -34,6 +36,18 @@ def task_check_interval_source(source_id): @app.task(bind=True, default_retry_delay=DEFAULT_SOURCE_TASK_RETRY_DELAY, ignore_result=True) def task_upload_document(self, source_id, document_type_id, shared_uploaded_file_id, description=None, label=None, language=None, metadata_dict_list=None, user_id=None): + SharedUploadedFile = apps.get_model( + app_label='common', model_name='SharedUploadedFile' + ) + + DocumentType = apps.get_model( + app_label='documents', model_name='DocumentType' + ) + + Source = apps.get_model( + app_label='sources', model_name='Source' + ) + try: document_type = DocumentType.objects.get(pk=document_type_id) source = Source.objects.get_subclass(pk=source_id) @@ -72,6 +86,14 @@ def task_upload_document(self, source_id, document_type_id, shared_uploaded_file @app.task(bind=True, default_retry_delay=DEFAULT_SOURCE_TASK_RETRY_DELAY, ignore_result=True) def task_source_handle_upload(self, document_type_id, shared_uploaded_file_id, source_id, description=None, expand=False, label=None, language=None, metadata_dict_list=None, skip_list=None, user_id=None): + SharedUploadedFile = apps.get_model( + app_label='common', model_name='SharedUploadedFile' + ) + + DocumentType = apps.get_model( + app_label='documents', model_name='DocumentType' + ) + try: document_type = DocumentType.objects.get(pk=document_type_id) shared_upload = SharedUploadedFile.objects.get( diff --git a/mayan/apps/tags/apps.py b/mayan/apps/tags/apps.py index df13311c11..02061d5639 100644 --- a/mayan/apps/tags/apps.py +++ b/mayan/apps/tags/apps.py @@ -1,5 +1,6 @@ from __future__ import unicode_literals +from django.apps import apps from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission @@ -9,7 +10,6 @@ from common import ( MayanAppConfig, menu_facet, menu_secondary, menu_object, menu_main, menu_multi_item, menu_sidebar ) -from documents.models import Document from documents.search import document_search from navigation import SourceColumn from rest_api.classes import APIEndPoint @@ -35,6 +35,10 @@ class TagsApp(MayanAppConfig): def ready(self): super(TagsApp, self).ready() + Document = apps.get_model( + app_label='documents', model_name='Document' + ) + DocumentTag = self.get_model('DocumentTag') Tag = self.get_model('Tag') From 2ebb84f18fbb0bb2b4b0afbfd83f55019e604ec8 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Jan 2016 05:55:15 -0400 Subject: [PATCH 017/205] Remove remaining direct references to the User model. Closes GitLab issue #225. --- mayan/apps/authentication/tests/test_views.py | 4 ++-- mayan/apps/document_states/tests/test_views.py | 4 ++-- mayan/apps/documents/tasks.py | 6 +++--- mayan/apps/documents/tests/test_api.py | 7 ++++--- mayan/apps/dynamic_search/tests/test_api.py | 4 ++-- mayan/apps/dynamic_search/tests/test_models.py | 4 ++-- mayan/apps/dynamic_search/tests/test_views.py | 4 ++-- mayan/apps/folders/tests/test_api.py | 4 ++-- mayan/apps/folders/tests/test_models.py | 4 ++-- mayan/apps/ocr/tests/test_api.py | 4 ++-- mayan/apps/sources/tasks.py | 4 ++-- mayan/apps/sources/tests/test_views.py | 4 ++-- mayan/apps/tags/tests/test_api.py | 4 ++-- mayan/apps/user_management/api_views.py | 7 ++++--- mayan/apps/user_management/views.py | 6 +++--- 15 files changed, 36 insertions(+), 34 deletions(-) diff --git a/mayan/apps/authentication/tests/test_views.py b/mayan/apps/authentication/tests/test_views.py index edd4b3ef2f..8c02c02ee4 100644 --- a/mayan/apps/authentication/tests/test_views.py +++ b/mayan/apps/authentication/tests/test_views.py @@ -1,7 +1,7 @@ from __future__ import absolute_import, unicode_literals from django.conf import settings -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.core.urlresolvers import reverse from django.test import TestCase, override_settings from django.test.client import Client @@ -19,7 +19,7 @@ class UserLoginTestCase(TestCase): """ def setUp(self): - self.admin_user = User.objects.create_superuser( + self.admin_user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) diff --git a/mayan/apps/document_states/tests/test_views.py b/mayan/apps/document_states/tests/test_views.py index 1641775012..283ba7833d 100644 --- a/mayan/apps/document_states/tests/test_views.py +++ b/mayan/apps/document_states/tests/test_views.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.core.files import File from django.core.urlresolvers import reverse from django.test.client import Client @@ -25,7 +25,7 @@ from .literals import ( class DocumentStateViewTestCase(TestCase): def setUp(self): - self.admin_user = User.objects.create_superuser( + self.admin_user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) diff --git a/mayan/apps/documents/tasks.py b/mayan/apps/documents/tasks.py index 4427eb3145..744385928c 100644 --- a/mayan/apps/documents/tasks.py +++ b/mayan/apps/documents/tasks.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals import logging from django.apps import apps -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.db import OperationalError from mayan.celery import app @@ -100,7 +100,7 @@ def task_upload_new_document(self, document_type_id, shared_uploaded_file_id, de pk=shared_uploaded_file_id ) if user_id: - user = User.objects.get(pk=user_id) + user = get_user_model().objects.get(pk=user_id) else: user = None @@ -150,7 +150,7 @@ def task_upload_new_version(self, document_id, shared_uploaded_file_id, user_id, pk=shared_uploaded_file_id ) if user_id: - user = User.objects.get(pk=user_id) + user = get_user_model().objects.get(pk=user_id) else: user = None diff --git a/mayan/apps/documents/tests/test_api.py b/mayan/apps/documents/tests/test_api.py index 75d668342f..9f0c1e50fd 100644 --- a/mayan/apps/documents/tests/test_api.py +++ b/mayan/apps/documents/tests/test_api.py @@ -6,7 +6,8 @@ import time from json import loads -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model + from django.core.files import File from django.core.urlresolvers import reverse from django.test import override_settings @@ -32,7 +33,7 @@ class DocumentTypeAPITestCase(APITestCase): """ def setUp(self): - self.admin_user = User.objects.create_superuser( + self.admin_user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) @@ -95,7 +96,7 @@ class DocumentAPITestCase(APITestCase): """ def setUp(self): - self.admin_user = User.objects.create_superuser( + self.admin_user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) diff --git a/mayan/apps/dynamic_search/tests/test_api.py b/mayan/apps/dynamic_search/tests/test_api.py index a09c384b1f..632a240ea6 100644 --- a/mayan/apps/dynamic_search/tests/test_api.py +++ b/mayan/apps/dynamic_search/tests/test_api.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals from json import loads -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.core.files import File from django.core.urlresolvers import reverse from django.test import override_settings @@ -23,7 +23,7 @@ class SearchAPITestCase(APITestCase): """ def setUp(self): - self.admin_user = User.objects.create_superuser( + self.admin_user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) diff --git a/mayan/apps/dynamic_search/tests/test_models.py b/mayan/apps/dynamic_search/tests/test_models.py index 7d8244ca0c..559f9ae697 100644 --- a/mayan/apps/dynamic_search/tests/test_models.py +++ b/mayan/apps/dynamic_search/tests/test_models.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.core.files.base import File from django.test import TestCase @@ -14,7 +14,7 @@ from user_management.tests import ( class DocumentSearchTestCase(TestCase): def setUp(self): - self.admin_user = User.objects.create_superuser( + self.admin_user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) diff --git a/mayan/apps/dynamic_search/tests/test_views.py b/mayan/apps/dynamic_search/tests/test_views.py index 9a349e3a7a..b6640e170b 100644 --- a/mayan/apps/dynamic_search/tests/test_views.py +++ b/mayan/apps/dynamic_search/tests/test_views.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.core.files.base import File from django.core.urlresolvers import reverse from django.test import TestCase @@ -20,7 +20,7 @@ class Issue46TestCase(TestCase): """ def setUp(self): - self.admin_user = User.objects.create_superuser( + self.admin_user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) diff --git a/mayan/apps/folders/tests/test_api.py b/mayan/apps/folders/tests/test_api.py index 94301ce285..b3e75e2999 100644 --- a/mayan/apps/folders/tests/test_api.py +++ b/mayan/apps/folders/tests/test_api.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.core.files import File from django.core.urlresolvers import reverse from django.test import override_settings @@ -24,7 +24,7 @@ class FolderAPITestCase(APITestCase): """ def setUp(self): - self.admin_user = User.objects.create_superuser( + self.admin_user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) diff --git a/mayan/apps/folders/tests/test_models.py b/mayan/apps/folders/tests/test_models.py index 196429c25c..bd2ce4f2de 100644 --- a/mayan/apps/folders/tests/test_models.py +++ b/mayan/apps/folders/tests/test_models.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.core.files.base import File from django.test import TestCase @@ -24,7 +24,7 @@ class FolderTestCase(TestCase): file_object=File(file_object) ) - self.user = User.objects.create_superuser( + self.user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) diff --git a/mayan/apps/ocr/tests/test_api.py b/mayan/apps/ocr/tests/test_api.py index 6e2ef8a01e..11855f280b 100644 --- a/mayan/apps/ocr/tests/test_api.py +++ b/mayan/apps/ocr/tests/test_api.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals import json -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.core.files import File from django.core.urlresolvers import reverse @@ -22,7 +22,7 @@ class OCRAPITestCase(APITestCase): """ def setUp(self): - self.admin_user = User.objects.create_superuser( + self.admin_user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) diff --git a/mayan/apps/sources/tasks.py b/mayan/apps/sources/tasks.py index 3dc60a1242..5d75516dec 100644 --- a/mayan/apps/sources/tasks.py +++ b/mayan/apps/sources/tasks.py @@ -1,7 +1,7 @@ import logging from django.apps import apps -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.core.files import File from django.db import OperationalError from django.utils.translation import ugettext_lazy as _ @@ -56,7 +56,7 @@ def task_upload_document(self, source_id, document_type_id, shared_uploaded_file ) if user_id: - user = User.objects.get(pk=user_id) + user = get_user_model().objects.get(pk=user_id) else: user = None diff --git a/mayan/apps/sources/tests/test_views.py b/mayan/apps/sources/tests/test_views.py index 0a2960cc0d..5c75b39022 100644 --- a/mayan/apps/sources/tests/test_views.py +++ b/mayan/apps/sources/tests/test_views.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.core.urlresolvers import reverse from django.test.client import Client from django.test import TestCase, override_settings @@ -31,7 +31,7 @@ class UploadDocumentTestCase(TestCase): label=TEST_DOCUMENT_TYPE ) - self.admin_user = User.objects.create_superuser( + self.admin_user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) diff --git a/mayan/apps/tags/tests/test_api.py b/mayan/apps/tags/tests/test_api.py index 582242fed9..73ec5b9f14 100644 --- a/mayan/apps/tags/tests/test_api.py +++ b/mayan/apps/tags/tests/test_api.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.core.files import File from django.core.urlresolvers import reverse from django.test import override_settings @@ -27,7 +27,7 @@ class TagAPITestCase(APITestCase): """ def setUp(self): - self.admin_user = User.objects.create_superuser( + self.admin_user = get_user_model().objects.create_superuser( username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, password=TEST_ADMIN_PASSWORD ) diff --git a/mayan/apps/user_management/api_views.py b/mayan/apps/user_management/api_views.py index d4cb4e8fce..945267fc5a 100644 --- a/mayan/apps/user_management/api_views.py +++ b/mayan/apps/user_management/api_views.py @@ -1,6 +1,7 @@ from __future__ import unicode_literals -from django.contrib.auth.models import Group, User +from django.contrib.auth import get_user_model +from django.contrib.auth.models import Group from rest_framework import generics @@ -83,7 +84,7 @@ class APIUserListView(generics.ListCreateAPIView): mayan_object_permissions = {'GET': (permission_user_view,)} mayan_view_permissions = {'POST': (permission_user_create,)} permission_classes = (MayanPermission,) - queryset = User.objects.all() + queryset = get_user_model().objects.all() serializer_class = UserSerializer def get(self, *args, **kwargs): @@ -108,7 +109,7 @@ class APIUserView(generics.RetrieveUpdateDestroyAPIView): 'DELETE': (permission_user_delete,) } permission_classes = (MayanPermission,) - queryset = User.objects.all() + queryset = get_user_model().objects.all() serializer_class = UserSerializer def delete(self, *args, **kwargs): diff --git a/mayan/apps/user_management/views.py b/mayan/apps/user_management/views.py index 5ac4cf73cf..d90cad59ac 100644 --- a/mayan/apps/user_management/views.py +++ b/mayan/apps/user_management/views.py @@ -3,7 +3,7 @@ from __future__ import absolute_import, unicode_literals from django.conf import settings from django.contrib import messages from django.contrib.auth import get_user_model -from django.contrib.auth.models import Group, User +from django.contrib.auth.models import Group from django.core.urlresolvers import reverse, reverse_lazy from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404, render_to_response @@ -86,7 +86,7 @@ class GroupMembersView(AssignRemoveView): def left_list(self): return AssignRemoveView.generate_choices( - User.objects.exclude( + get_user_model().objects.exclude( groups=self.get_object() ).exclude(is_staff=True).exclude(is_superuser=True) ) @@ -131,7 +131,7 @@ class UserGroupsView(AssignRemoveView): } def get_object(self): - return get_object_or_404(User, pk=self.kwargs['pk']) + return get_object_or_404(get_user_model(), pk=self.kwargs['pk']) def left_list(self): return AssignRemoveView.generate_choices( From eae11a1b0cd5f4b6982e0d237a76378c9799665c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Jan 2016 06:04:28 -0400 Subject: [PATCH 018/205] Fix remaining tests for Django 1.8. Closes GitLab issue #246. --- mayan/apps/documents/tasks.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mayan/apps/documents/tasks.py b/mayan/apps/documents/tasks.py index 744385928c..49f00c8fde 100644 --- a/mayan/apps/documents/tasks.py +++ b/mayan/apps/documents/tasks.py @@ -144,6 +144,10 @@ def task_upload_new_version(self, document_id, shared_uploaded_file_id, user_id, app_label='documents', model_name='Document' ) + DocumentVersion = apps.get_model( + app_label='documents', model_name='DocumentVersion' + ) + try: document = Document.objects.get(pk=document_id) shared_file = SharedUploadedFile.objects.get( From 2bb96ca98d11ff23af575e57fa5b5f95643fe8e0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Jan 2016 06:09:27 -0400 Subject: [PATCH 019/205] Add HISTORY entry for upcomming version 2.1. --- HISTORY.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index c0219dade8..331559114b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,9 @@ +2.1 (2016-XX) +- Upgrade to use Django 1.8.8. Issue #246. +- Upgrade requirements. +- Remove remaining references to Django's User model. Issue #225 +- Rename 'Content' search box to 'OCR'. + 2.0.1 (2016-01-22) ================== - Fix GitLab issue #243, "System allows a user to skip entering values for a required metadata field while uploading a new document" From 8614bc4bfc94dd02d48d7c94969a999f5d7f186a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 4 Feb 2016 15:32:59 -0400 Subject: [PATCH 020/205] Remove included login required middleware using django-stronghold instead (http://mikegrouchy.com/django-stronghold/). GitLab Issue #206 --- HISTORY.rst | 1 + .../authentication/middleware/__init__.py | 0 .../middleware/login_required_middleware.py | 35 ------------------- mayan/apps/authentication/views.py | 3 ++ mayan/settings/base.py | 25 ++----------- requirements/base.txt | 1 + 6 files changed, 7 insertions(+), 58 deletions(-) delete mode 100644 mayan/apps/authentication/middleware/__init__.py delete mode 100644 mayan/apps/authentication/middleware/login_required_middleware.py diff --git a/HISTORY.rst b/HISTORY.rst index 331559114b..bf4c85d3ff 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,7 @@ - Upgrade requirements. - Remove remaining references to Django's User model. Issue #225 - Rename 'Content' search box to 'OCR'. +- Remove included login required middleware using django-stronghold instead (http://mikegrouchy.com/django-stronghold/). 2.0.1 (2016-01-22) ================== diff --git a/mayan/apps/authentication/middleware/__init__.py b/mayan/apps/authentication/middleware/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/mayan/apps/authentication/middleware/login_required_middleware.py b/mayan/apps/authentication/middleware/login_required_middleware.py deleted file mode 100644 index 6dbb0113e2..0000000000 --- a/mayan/apps/authentication/middleware/login_required_middleware.py +++ /dev/null @@ -1,35 +0,0 @@ -from __future__ import unicode_literals - -import re - -from django.http import HttpResponseRedirect -from django.conf import settings -from django.core.urlresolvers import reverse - -EXEMPT_URLS = [re.compile(reverse(settings.LOGIN_URL).lstrip('/'))] -if hasattr(settings, 'LOGIN_EXEMPT_URLS'): - EXEMPT_URLS += [re.compile(expr) for expr in settings.LOGIN_EXEMPT_URLS] - - -class LoginRequiredMiddleware: - """ - Middleware that requires a user to be authenticated to view any page other - than LOGIN_URL. Exemptions to this requirement can optionally be specified - in settings via a list of regular expressions in LOGIN_EXEMPT_URLS (which - you can copy from your urls.py). - - Requires authentication middleware and template context processors to be - loaded. You'll get an error if they aren't. - """ - - def process_request(self, request): - assert hasattr(request, 'user'), "The Login Required middleware\ - requires authentication middleware to be installed. Edit your\ - MIDDLEWARE_CLASSES setting to insert\ - 'django.contrib.auth.middlware.AuthenticationMiddleware'. If that doesn't\ - work, ensure your TEMPLATE_CONTEXT_PROCESSORS setting includes\ - 'django.core.context_processors.auth'." - if not request.user.is_authenticated(): - path = request.path_info.lstrip('/') - if not any(m.match(path) for m in EXEMPT_URLS): - return HttpResponseRedirect(reverse(settings.LOGIN_URL)) diff --git a/mayan/apps/authentication/views.py b/mayan/apps/authentication/views.py index e0316f1a8b..8d21556f7c 100644 --- a/mayan/apps/authentication/views.py +++ b/mayan/apps/authentication/views.py @@ -8,10 +8,13 @@ from django.http import HttpResponseRedirect from django.shortcuts import redirect from django.utils.translation import ugettext_lazy as _ +from stronghold.decorators import public + from .forms import EmailAuthenticationForm from .settings import setting_login_method +@public def login_view(request): """ Control how the use is to be authenticated, options are 'email' and diff --git a/mayan/settings/base.py b/mayan/settings/base.py index 3c845f441d..d805872b4a 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -62,6 +62,7 @@ INSTALLED_APPS = ( 'rest_framework', 'rest_framework.authtoken', 'solo', + 'stronghold', 'widget_tweaks', # Base generic 'acls', @@ -111,7 +112,7 @@ MIDDLEWARE_CLASSES = ( 'django.middleware.locale.LocaleMiddleware', 'common.middleware.timezone.TimezoneMiddleware', 'common.middleware.strip_spaces_widdleware.SpacelessMiddleware', - 'authentication.middleware.login_required_middleware.LoginRequiredMiddleware', + 'stronghold.middleware.LoginRequiredMiddleware', 'common.middleware.ajax_redirect.AjaxRedirect', ) @@ -215,28 +216,6 @@ COMPRESS_PARSER = 'compressor.parser.HtmlParser' LOGIN_URL = 'authentication:login_view' LOGIN_REDIRECT_URL = 'common:home' INTERNAL_IPS = ('127.0.0.1',) -# -------- LoginRequiredMiddleware ---------- -LOGIN_EXEMPT_URLS = ( - r'^favicon\.ico$', - r'^about\.html$', - r'^legal/', # allow the entire /legal/* subsection - r'^%s-static/' % PROJECT_NAME, - - r'^accounts/register/$', - r'^accounts/register/complete/$', - r'^accounts/register/closed/$', - - r'^accounts/activate/complete/', - r'^accounts/activate/(?P\w+)/$', - - r'^authentication/password/reset/$', - r'^authentication/password/reset/confirm/(?P[0-9A-Za-z]+)-(?P.+)/$', - r'^authentication/password/reset/complete/$', - r'^authentication/password/reset/done/$', - - r'^api/', - r'^docs/', -) # ---------- Django REST framework ----------- REST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES': ( diff --git a/requirements/base.txt b/requirements/base.txt index 4202489a91..cc68b931b2 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -17,6 +17,7 @@ django-model-utils==2.4 django-mptt==0.8.0 django-qsstats-magic==0.7.2 django-rest-swagger==0.3.4 +django-stronghold==0.2.7 django-suit==0.2.16 django-widget-tweaks==1.4.1 djangorestframework==3.3.2 From 10eb7d49b23d0ef9b1f3accb024fbeab63518ba7 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 4 Feb 2016 17:39:27 -0400 Subject: [PATCH 021/205] Update API tests to use login instead of force_authenticate. --- mayan/apps/authentication/tests/test_views.py | 9 ++++++--- mayan/apps/documents/tests/test_api.py | 14 +++++++++----- mayan/apps/dynamic_search/tests/test_api.py | 4 +++- mayan/apps/folders/tests/test_api.py | 4 +++- mayan/apps/ocr/tests/test_api.py | 4 +++- mayan/apps/tags/tests/test_api.py | 4 +++- 6 files changed, 27 insertions(+), 12 deletions(-) diff --git a/mayan/apps/authentication/tests/test_views.py b/mayan/apps/authentication/tests/test_views.py index 8c02c02ee4..314e5ba43a 100644 --- a/mayan/apps/authentication/tests/test_views.py +++ b/mayan/apps/authentication/tests/test_views.py @@ -29,7 +29,8 @@ class UserLoginTestCase(TestCase): def test_normal_behaviour(self): response = self.client.get(reverse('documents:document_list')) self.assertRedirects( - response, 'http://testserver/authentication/login/' + response, + 'http://testserver/authentication/login/?next=/documents/list/' ) @override_settings(AUTHENTICATION_LOGIN_METHOD='username') @@ -63,7 +64,8 @@ class UserLoginTestCase(TestCase): def test_username_login_via_views(self): response = self.client.get(reverse('documents:document_list')) self.assertRedirects( - response, 'http://testserver/authentication/login/' + response, + 'http://testserver/authentication/login/?next=/documents/list/' ) response = self.client.post( @@ -81,7 +83,8 @@ class UserLoginTestCase(TestCase): with self.settings(AUTHENTICATION_BACKENDS=(TEST_EMAIL_AUTHENTICATION_BACKEND,)): response = self.client.get(reverse('documents:document_list')) self.assertRedirects( - response, 'http://testserver/authentication/login/' + response, + 'http://testserver/authentication/login/?next=/documents/list/' ) response = self.client.post( diff --git a/mayan/apps/documents/tests/test_api.py b/mayan/apps/documents/tests/test_api.py index 9f0c1e50fd..6763518c05 100644 --- a/mayan/apps/documents/tests/test_api.py +++ b/mayan/apps/documents/tests/test_api.py @@ -38,7 +38,9 @@ class DocumentTypeAPITestCase(APITestCase): password=TEST_ADMIN_PASSWORD ) - self.client.force_authenticate(user=self.admin_user) + self.client.login( + username=TEST_ADMIN_USERNAME, password=TEST_ADMIN_PASSWORD + ) def tearDown(self): self.admin_user.delete() @@ -101,7 +103,9 @@ class DocumentAPITestCase(APITestCase): password=TEST_ADMIN_PASSWORD ) - self.client.force_authenticate(user=self.admin_user) + self.client.login( + username=TEST_ADMIN_USERNAME, password=TEST_ADMIN_PASSWORD + ) self.document_type = DocumentType.objects.create( label=TEST_DOCUMENT_TYPE @@ -113,17 +117,17 @@ class DocumentAPITestCase(APITestCase): def test_document_upload(self): with open(TEST_DOCUMENT_PATH) as file_descriptor: - document_response = self.client.post( + response = self.client.post( reverse('rest_api:document-list'), { 'document_type': self.document_type.pk, 'file': file_descriptor } ) - document_data = loads(document_response.content) + document_data = loads(response.content) self.assertEqual( - document_response.status_code, status.HTTP_201_CREATED + response.status_code, status.HTTP_201_CREATED ) self.assertEqual(Document.objects.count(), 1) diff --git a/mayan/apps/dynamic_search/tests/test_api.py b/mayan/apps/dynamic_search/tests/test_api.py index 632a240ea6..df087c2178 100644 --- a/mayan/apps/dynamic_search/tests/test_api.py +++ b/mayan/apps/dynamic_search/tests/test_api.py @@ -28,7 +28,9 @@ class SearchAPITestCase(APITestCase): password=TEST_ADMIN_PASSWORD ) - self.client.force_authenticate(user=self.admin_user) + self.client.login( + username=TEST_ADMIN_USERNAME, password=TEST_ADMIN_PASSWORD + ) def test_search(self): document_type = DocumentType.objects.create( diff --git a/mayan/apps/folders/tests/test_api.py b/mayan/apps/folders/tests/test_api.py index b3e75e2999..2f97f574b8 100644 --- a/mayan/apps/folders/tests/test_api.py +++ b/mayan/apps/folders/tests/test_api.py @@ -29,7 +29,9 @@ class FolderAPITestCase(APITestCase): password=TEST_ADMIN_PASSWORD ) - self.client.force_authenticate(user=self.admin_user) + self.client.login( + username=TEST_ADMIN_USERNAME, password=TEST_ADMIN_PASSWORD + ) def test_folder_create(self): self.client.post( diff --git a/mayan/apps/ocr/tests/test_api.py b/mayan/apps/ocr/tests/test_api.py index 11855f280b..e6649853df 100644 --- a/mayan/apps/ocr/tests/test_api.py +++ b/mayan/apps/ocr/tests/test_api.py @@ -27,7 +27,9 @@ class OCRAPITestCase(APITestCase): password=TEST_ADMIN_PASSWORD ) - self.client.force_authenticate(user=self.admin_user) + self.client.login( + username=TEST_ADMIN_USERNAME, password=TEST_ADMIN_PASSWORD + ) self.document_type = DocumentType.objects.create( label=TEST_DOCUMENT_TYPE diff --git a/mayan/apps/tags/tests/test_api.py b/mayan/apps/tags/tests/test_api.py index 73ec5b9f14..679d5560cb 100644 --- a/mayan/apps/tags/tests/test_api.py +++ b/mayan/apps/tags/tests/test_api.py @@ -32,7 +32,9 @@ class TagAPITestCase(APITestCase): password=TEST_ADMIN_PASSWORD ) - self.client.force_authenticate(user=self.admin_user) + self.client.login( + username=TEST_ADMIN_USERNAME, password=TEST_ADMIN_PASSWORD + ) def tearDown(self): self.admin_user.delete() From 74d8f1d99475771d4176c3da2468d4647fa8fb13 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 4 Feb 2016 22:22:05 -0400 Subject: [PATCH 022/205] Add debug logging during general exception catch. --- mayan/apps/converter/views.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mayan/apps/converter/views.py b/mayan/apps/converter/views.py index 2e762f3d96..c1fe4044e2 100644 --- a/mayan/apps/converter/views.py +++ b/mayan/apps/converter/views.py @@ -114,7 +114,8 @@ class TransformationCreateView(SingleObjectCreateView): try: instance.full_clean() instance.save() - except: + except Exception as exception: + logger.debug('Invalid form, exception: %s', exception) return super(TransformationCreateView, self).form_invalid(form) else: return super(TransformationCreateView, self).form_valid(form) @@ -168,7 +169,8 @@ class TransformationEditView(SingleObjectEditView): try: instance.full_clean() instance.save() - except: + except Exception as exception: + logger.debug('Invalid form, exception: %s', exception) return super(TransformationEditView, self).form_invalid(form) else: return super(TransformationEditView, self).form_valid(form) From 652613452b447d6308c6648f44cfb2ad678b12f1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 5 Feb 2016 03:25:27 -0400 Subject: [PATCH 023/205] Add new document upload wizard step to attach tags. GitLab issue #208. --- .../appearance/generic_form_instance.html | 6 ++ mayan/apps/sources/literals.py | 5 + mayan/apps/sources/models.py | 7 +- mayan/apps/sources/tasks.py | 12 ++- mayan/apps/sources/views.py | 1 + mayan/apps/sources/wizards.py | 95 +++++++++++-------- mayan/apps/tags/forms.py | 21 ++++ 7 files changed, 104 insertions(+), 43 deletions(-) diff --git a/mayan/apps/appearance/templates/appearance/generic_form_instance.html b/mayan/apps/appearance/templates/appearance/generic_form_instance.html index 72e631d7cf..9eeef9aa9b 100644 --- a/mayan/apps/appearance/templates/appearance/generic_form_instance.html +++ b/mayan/apps/appearance/templates/appearance/generic_form_instance.html @@ -63,6 +63,12 @@
{% render_field field %}
+ {% elif field|widget_type == 'checkboxselectmultiple' %} + {% for option in field %} +
+ {{ option.render }} +
+ {% endfor %} {% else %} {% render_field field class+="form-control" %} {% endif %} diff --git a/mayan/apps/sources/literals.py b/mayan/apps/sources/literals.py index 0c10517073..6605994b2c 100644 --- a/mayan/apps/sources/literals.py +++ b/mayan/apps/sources/literals.py @@ -36,3 +36,8 @@ DEFAULT_METADATA_ATTACHMENT_NAME = 'metadata.yaml' DEFAULT_POP3_TIMEOUT = 60 DEFAULT_IMAP_MAILBOX = 'INBOX' DEFAULT_SOURCE_TASK_RETRY_DELAY = 10 + +# Upload wizard steps +STEP_DOCUMENT_TYPE = '0' +STEP_METADATA = '1' +STEP_TAGS = '2' diff --git a/mayan/apps/sources/models.py b/mayan/apps/sources/models.py index 1df74b26e1..22ad807261 100644 --- a/mayan/apps/sources/models.py +++ b/mayan/apps/sources/models.py @@ -28,6 +28,7 @@ from documents.models import Document, DocumentType from documents.settings import setting_language from metadata.api import save_metadata_list, set_bulk_metadata from metadata.models import MetadataType +from tags.models import Tag from .classes import Attachment, SourceUploadedFile, StagingFile from .literals import ( @@ -59,7 +60,7 @@ class Source(models.Model): def fullname(self): return ' '.join([self.class_fullname(), '"%s"' % self.label]) - def upload_document(self, file_object, document_type, description=None, label=None, language=None, metadata_dict_list=None, metadata_dictionary=None, user=None): + def upload_document(self, file_object, document_type, description=None, label=None, language=None, metadata_dict_list=None, metadata_dictionary=None, tag_ids=None, user=None): try: with transaction.atomic(): document = Document.objects.create( @@ -88,6 +89,10 @@ class Source(models.Model): metadata_dictionary=metadata_dictionary ) + if tag_ids: + for tag in Tag.objects.filter(pk__in=tag_ids): + tag.documents.add(document) + except Exception as exception: logger.critical( 'Unexpected exception while trying to create new document ' diff --git a/mayan/apps/sources/tasks.py b/mayan/apps/sources/tasks.py index 5d75516dec..6d26b7fa8d 100644 --- a/mayan/apps/sources/tasks.py +++ b/mayan/apps/sources/tasks.py @@ -35,7 +35,7 @@ def task_check_interval_source(source_id): @app.task(bind=True, default_retry_delay=DEFAULT_SOURCE_TASK_RETRY_DELAY, ignore_result=True) -def task_upload_document(self, source_id, document_type_id, shared_uploaded_file_id, description=None, label=None, language=None, metadata_dict_list=None, user_id=None): +def task_upload_document(self, source_id, document_type_id, shared_uploaded_file_id, description=None, label=None, language=None, metadata_dict_list=None, tag_ids=None, user_id=None): SharedUploadedFile = apps.get_model( app_label='common', model_name='SharedUploadedFile' ) @@ -64,7 +64,8 @@ def task_upload_document(self, source_id, document_type_id, shared_uploaded_file source.upload_document( file_object=file_object, document_type=document_type, description=description, label=label, language=language, - metadata_dict_list=metadata_dict_list, user=user + metadata_dict_list=metadata_dict_list, user=user, + tag_ids=tag_ids ) except OperationalError as exception: @@ -85,7 +86,7 @@ def task_upload_document(self, source_id, document_type_id, shared_uploaded_file @app.task(bind=True, default_retry_delay=DEFAULT_SOURCE_TASK_RETRY_DELAY, ignore_result=True) -def task_source_handle_upload(self, document_type_id, shared_uploaded_file_id, source_id, description=None, expand=False, label=None, language=None, metadata_dict_list=None, skip_list=None, user_id=None): +def task_source_handle_upload(self, document_type_id, shared_uploaded_file_id, source_id, description=None, expand=False, label=None, language=None, metadata_dict_list=None, skip_list=None, tag_ids=None, user_id=None): SharedUploadedFile = apps.get_model( app_label='common', model_name='SharedUploadedFile' ) @@ -114,7 +115,7 @@ def task_source_handle_upload(self, document_type_id, shared_uploaded_file_id, s 'description': description, 'document_type_id': document_type.pk, 'label': label, 'language': language, 'metadata_dict_list': metadata_dict_list, - 'source_id': source_id, 'user_id': user_id + 'source_id': source_id, 'tag_ids': tag_ids, 'user_id': user_id } if not skip_list: @@ -147,7 +148,8 @@ def task_source_handle_upload(self, document_type_id, shared_uploaded_file_id, s expand=expand, label=label, language=language, metadata_dict_list=metadata_dict_list, - skip_list=skip_list, user_id=user_id + skip_list=skip_list, tag_ids=tag_ids, + user_id=user_id ) return else: diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index 5d5afdbaa1..ef75f158a7 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -264,6 +264,7 @@ class UploadInteractiveView(UploadBaseView): metadata_dict_list=decode_metadata_from_url(self.request.GET), shared_uploaded_file_id=shared_uploaded_file.pk, source_id=self.source.pk, + tag_ids=self.request.GET.getlist('tags'), user_id=user_id, )) messages.success( diff --git a/mayan/apps/sources/wizards.py b/mayan/apps/sources/wizards.py index 7f510f60d2..97f00befda 100644 --- a/mayan/apps/sources/wizards.py +++ b/mayan/apps/sources/wizards.py @@ -12,26 +12,39 @@ from common.mixins import ViewPermissionCheckMixin from documents.forms import DocumentTypeSelectForm from documents.permissions import permission_document_create from metadata.forms import MetadataFormSet +from tags.forms import TagMultipleSelectionForm +from .literals import STEP_DOCUMENT_TYPE, STEP_METADATA, STEP_TAGS from .models import InteractiveSource +def has_metadata_types(wizard): + """ + Skip the 2nd step if document type has no associated metadata + """ + + cleaned_data = wizard.get_cleaned_data_for_step(STEP_DOCUMENT_TYPE) or {} + + document_type = cleaned_data.get('document_type') + + if document_type: + return document_type.metadata.exists() + + class DocumentCreateWizard(ViewPermissionCheckMixin, SessionWizardView): - form_list = (DocumentTypeSelectForm, MetadataFormSet) - template_name = 'appearance/generic_wizard.html' + condition_dict = {STEP_METADATA: has_metadata_types} extra_context = {} + form_list = (DocumentTypeSelectForm, MetadataFormSet, TagMultipleSelectionForm) + form_titles = { + DocumentTypeSelectForm: _('Step 1 of 3: Select document type'), + MetadataFormSet: _('Step 2 of 3: Enter document metadata'), + TagMultipleSelectionForm: _('Step 3 of 3: Select tags'), + } + template_name = 'appearance/generic_wizard.html' view_permission = permission_document_create - @staticmethod - def _has_metadata_types(wizard): - # Skip the 2nd step if document type has no associated metadata - try: - return wizard.get_cleaned_data_for_step('0')['document_type'].metadata.all().count() - except TypeError: - return False - def dispatch(self, request, *args, **kwargs): - if InteractiveSource.objects.filter(enabled=True).count() == 0: + if not InteractiveSource.objects.filter(enabled=True).exists(): messages.error( request, _( @@ -40,59 +53,67 @@ class DocumentCreateWizard(ViewPermissionCheckMixin, SessionWizardView): ) ) return HttpResponseRedirect(reverse('sources:setup_source_list')) + return super( DocumentCreateWizard, self ).dispatch(request, *args, **kwargs) - def __init__(self, *args, **kwargs): - super(DocumentCreateWizard, self).__init__(*args, **kwargs) - - self.condition_dict = {'1': DocumentCreateWizard._has_metadata_types} - - self.step_titles = [ - _('Step 1 of 2: Select document type'), - _('Step 2 of 2: Enter document metadata'), - ] - - def get_form_initial(self, step): - if step == '1': - initial = [] - - for document_type_metadata_type in self.get_cleaned_data_for_step('0')['document_type'].metadata.all(): - initial.append({ - 'document_type': self.get_cleaned_data_for_step('0')['document_type'], - 'metadata_type': document_type_metadata_type.metadata_type, - }) - - return initial - return self.initial_dict.get(step, {}) - def get_context_data(self, form, **kwargs): context = super( DocumentCreateWizard, self ).get_context_data(form=form, **kwargs) + context.update({ - 'step_title': self.step_titles[self.steps.step0], + 'step_title': self.form_titles[form.__class__], 'submit_label': _('Next step'), 'submit_icon': 'fa fa-arrow-right', 'title': _('Document upload wizard'), }) return context + def get_form_initial(self, step): + if step == STEP_METADATA: + initial = [] + + for document_type_metadata_type in self.get_cleaned_data_for_step(STEP_DOCUMENT_TYPE)['document_type'].metadata.all(): + initial.append( + { + 'document_type': self.get_cleaned_data_for_step(STEP_DOCUMENT_TYPE)['document_type'], + 'metadata_type': document_type_metadata_type.metadata_type, + } + ) + + return initial + return self.initial_dict.get(step, {}) + + def get_form_kwargs(self, step): + # Tags form needs the user instance to determine which tags to + # display + if step == STEP_TAGS: + return {'user': self.request.user} + + return {} + def done(self, *args, **kwargs): query_dict = {} + try: - query_dict['document_type_id'] = self.get_cleaned_data_for_step('0')['document_type'].pk + query_dict['document_type_id'] = self.get_cleaned_data_for_step(STEP_DOCUMENT_TYPE)['document_type'].pk except AttributeError: pass try: - for identifier, metadata in enumerate(self.get_cleaned_data_for_step('1')): + for identifier, metadata in enumerate(self.get_cleaned_data_for_step(STEP_METADATA)): query_dict['metadata%s_id' % identifier] = metadata['id'] query_dict['metadata%s_value' % identifier] = metadata['value'] except TypeError: pass + try: + query_dict['tags'] = self.get_cleaned_data_for_step(STEP_TAGS)['tags'] + except AttributeError: + pass + url = '?'.join( [ reverse('sources:upload_interactive'), diff --git a/mayan/apps/tags/forms.py b/mayan/apps/tags/forms.py index e8b70b496f..711b29620b 100644 --- a/mayan/apps/tags/forms.py +++ b/mayan/apps/tags/forms.py @@ -32,3 +32,24 @@ class TagListForm(forms.Form): self.fields['tag'] = forms.ModelChoiceField( queryset=queryset, label=_('Tags')) + + +class TagMultipleSelectionForm(forms.Form): + def __init__(self, *args, **kwargs): + user = kwargs.pop('user', None) + logger.debug('user: %s', user) + super(TagMultipleSelectionForm, self).__init__(*args, **kwargs) + + queryset = Tag.objects.all() + try: + Permission.check_permissions(user, (permission_tag_view,)) + except PermissionDenied: + queryset = AccessControlList.objects.filter_by_access( + permission_tag_view, user, queryset + ) + + self.fields['tags'] = forms.MultipleChoiceField( + label=_('Tags'), choices=queryset.values_list('id', 'label'), + help_text=_('Tags to attach to the document.'),required=False, + widget=forms.CheckboxSelectMultiple + ) From e85002d4acd48dd1da71c2ae176cbdadd778de98 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 7 Mar 2016 17:02:19 -0400 Subject: [PATCH 024/205] Add view test to check for duplicated folder creation. --- mayan/apps/folders/tests/test_views.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/mayan/apps/folders/tests/test_views.py b/mayan/apps/folders/tests/test_views.py index 2c4af11218..fc018db9c3 100644 --- a/mayan/apps/folders/tests/test_views.py +++ b/mayan/apps/folders/tests/test_views.py @@ -45,6 +45,27 @@ class FolderViewTestCase(GenericDocumentViewTestCase): self.assertEqual(Folder.objects.first().label, TEST_FOLDER_LABEL) self.assertEqual(Folder.objects.first().user, self.user) + def test_folder_create_duplicate_view_with_permission(self): + folder = Folder.objects.create( + label=TEST_FOLDER_LABEL, user=self.user + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_folder_create.stored_permission + ) + + response = self.post( + 'folders:folder_create', data={ + 'label': TEST_FOLDER_LABEL + } + ) + + self.assertContains(response, text='Error', status_code=200) + self.assertEqual(Folder.objects.count(), 1) + self.assertEqual(Folder.objects.first().pk, folder.pk) + def test_folder_delete_view_no_permission(self): self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) From 014ba4f4fea971076573f9d087901b9d817a1f4a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 7 Mar 2016 20:02:26 -0400 Subject: [PATCH 025/205] Remove strip spaces middleware and use spaceless template tag instead. Closes GitLab issue #255. --- .../apps/appearance/templates/appearance/base.html | 2 ++ .../common/middleware/strip_spaces_widdleware.py | 14 -------------- mayan/settings/base.py | 1 - 3 files changed, 2 insertions(+), 15 deletions(-) delete mode 100644 mayan/apps/common/middleware/strip_spaces_widdleware.py diff --git a/mayan/apps/appearance/templates/appearance/base.html b/mayan/apps/appearance/templates/appearance/base.html index 2e5771dc34..6f09a6b7da 100644 --- a/mayan/apps/appearance/templates/appearance/base.html +++ b/mayan/apps/appearance/templates/appearance/base.html @@ -6,6 +6,7 @@ {% load common_tags %} {% load navigation_tags %} +{% spaceless %} @@ -171,3 +172,4 @@ {% endcompress %} +{% endspaceless %} diff --git a/mayan/apps/common/middleware/strip_spaces_widdleware.py b/mayan/apps/common/middleware/strip_spaces_widdleware.py deleted file mode 100644 index b6d4a0ba7a..0000000000 --- a/mayan/apps/common/middleware/strip_spaces_widdleware.py +++ /dev/null @@ -1,14 +0,0 @@ -from __future__ import unicode_literals - -from django.utils.html import strip_spaces_between_tags - - -class SpacelessMiddleware(object): - """ - Remove spaces between tags in HTML responses to save on bandwidth - """ - - def process_response(self, request, response): - if 'text/html' in response.get('Content-Type', ''): - response.content = strip_spaces_between_tags(response.content) - return response diff --git a/mayan/settings/base.py b/mayan/settings/base.py index d805872b4a..2309cbed7e 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -111,7 +111,6 @@ MIDDLEWARE_CLASSES = ( 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'django.middleware.locale.LocaleMiddleware', 'common.middleware.timezone.TimezoneMiddleware', - 'common.middleware.strip_spaces_widdleware.SpacelessMiddleware', 'stronghold.middleware.LoginRequiredMiddleware', 'common.middleware.ajax_redirect.AjaxRedirect', ) From 74fd47d86ee90027b478678e1a4503cb8d58f812 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 8 Mar 2016 01:13:06 -0400 Subject: [PATCH 026/205] Unify handling for generic CBV views errors and 'object_name'. --- mayan/apps/common/generics.py | 110 ++++++++++++++-------------------- 1 file changed, 46 insertions(+), 64 deletions(-) diff --git a/mayan/apps/common/generics.py b/mayan/apps/common/generics.py index bf8230a0de..85b5912b6c 100644 --- a/mayan/apps/common/generics.py +++ b/mayan/apps/common/generics.py @@ -262,19 +262,6 @@ class SimpleView(ViewPermissionCheckMixin, ExtraContextMixin, TemplateView): class SingleObjectCreateView(ViewPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, CreateView): template_name = 'appearance/generic_form.html' - def form_invalid(self, form): - result = super(SingleObjectCreateView, self).form_invalid(form) - - try: - messages.error( - self.request, - _('Error creating new %s.') % self.extra_context['object_name'] - ) - except KeyError: - messages.error(self.request, _('Error creating object.')) - - return result - def form_valid(self, form): # This overrides the original Django form_valid method @@ -289,18 +276,26 @@ class SingleObjectCreateView(ViewPermissionCheckMixin, ExtraContextMixin, Redire else: save_extra_data = {} - self.object.save(**save_extra_data) - try: + self.object.save(**save_extra_data) + except Exception as exception: + context = self.get_context_data() + + messages.error( + self.request, + _('%(object)s not created, error: %(error)s') % { + 'object': context.get('object_name', _('Object')), + 'error': exception + } + ) + else: + context = self.get_context_data() + messages.success( self.request, _( '%s created successfully.' - ) % self.extra_context['object_name'] - ) - except KeyError: - messages.success( - self.request, _('New object created successfully.') + ) % context.get('object_name', _('Object')) ) return HttpResponseRedirect(self.get_success_url()) @@ -315,32 +310,28 @@ class SingleObjectDeleteView(DeleteExtraDataMixin, ViewPermissionCheckMixin, Obj return context def delete(self, request, *args, **kwargs): + self.object = self.get_object() + context = self.get_context_data() + try: result = super(SingleObjectDeleteView, self).delete(request, *args, **kwargs) except Exception as exception: - try: - messages.error( - self.request, - _('Error deleting %s.') % self.extra_context['object_name'] - ) - except KeyError: - messages.error( - self.request, _('Error deleting object.') - ) + messages.error( + self.request, + _('%(object)s not deleted, error: %(error)s.') % { + 'object': context.get('object_name', _('Object')), + 'error': exception + } + ) raise exception else: - try: - messages.success( - self.request, - _( - '%s deleted successfully.' - ) % self.extra_context['object_name'] - ) - except KeyError: - messages.success( - self.request, _('Object deleted successfully.') - ) + messages.success( + self.request, + _( + '%s deleted successfully.' + ) % context.get('object_name', _('Object')) + ) return result @@ -357,23 +348,6 @@ class SingleObjectDetailView(ViewPermissionCheckMixin, ObjectPermissionCheckMixi class SingleObjectEditView(ViewPermissionCheckMixin, ObjectPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, UpdateView): template_name = 'appearance/generic_form.html' - def form_invalid(self, form): - result = super(SingleObjectEditView, self).form_invalid(form) - - try: - messages.error( - self.request, - _( - 'Error saving %s details.' - ) % self.extra_context['object_name'] - ) - except KeyError: - messages.error( - self.request, _('Error saving details.') - ) - - return result - def form_valid(self, form): # This overrides the original Django form_valid method @@ -388,18 +362,26 @@ class SingleObjectEditView(ViewPermissionCheckMixin, ObjectPermissionCheckMixin, else: save_extra_data = {} - self.object.save(**save_extra_data) + context = self.get_context_data() try: + self.object.save(**save_extra_data) + except Exception as exception: + messages.error( + self.request, + _('%(object)s not updated, error: %(error)s.') % { + 'object': context.get('object_name', _('Object')), + 'error': exception + } + ) + + raise exception + else: messages.success( self.request, _( - '%s details saved successfully.' - ) % self.extra_context['object_name'] - ) - except KeyError: - messages.success( - self.request, _('Details saved successfully.') + '%s updated successfully.' + ) % context.get('object_name', _('Object')) ) return HttpResponseRedirect(self.get_success_url()) From 1c65b389ee409bc68ab8f0f8147f0d2f7eff2554 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 8 Mar 2016 01:20:10 -0400 Subject: [PATCH 027/205] Remove concept of ownership from folders by removing the user field. "Ownership" now is now determined by ACL of a folder, like the rest of the objects in the system. --- mayan/apps/folders/admin.py | 3 +- mayan/apps/folders/apps.py | 1 - .../migrations/0005_auto_20160308_0437.py | 23 ++++++ .../migrations/0006_auto_20160308_0445.py | 22 +++++ mayan/apps/folders/models.py | 4 +- mayan/apps/folders/serializers.py | 5 +- mayan/apps/folders/tests/test_api.py | 17 +--- mayan/apps/folders/tests/test_models.py | 14 ++-- mayan/apps/folders/tests/test_views.py | 49 +++--------- mayan/apps/folders/urls.py | 7 +- mayan/apps/folders/views.py | 80 ++++--------------- 11 files changed, 91 insertions(+), 134 deletions(-) create mode 100644 mayan/apps/folders/migrations/0005_auto_20160308_0437.py create mode 100644 mayan/apps/folders/migrations/0006_auto_20160308_0445.py diff --git a/mayan/apps/folders/admin.py b/mayan/apps/folders/admin.py index 6533d67751..b561a1fa53 100644 --- a/mayan/apps/folders/admin.py +++ b/mayan/apps/folders/admin.py @@ -8,5 +8,4 @@ from .models import Folder @admin.register(Folder) class FolderAdmin(admin.ModelAdmin): filter_horizontal = ('documents',) - list_display = ('label', 'user', 'datetime_created') - list_filter = ('user',) + list_display = ('label', 'datetime_created') diff --git a/mayan/apps/folders/apps.py b/mayan/apps/folders/apps.py index dc0c51a4ef..5e6af46e05 100644 --- a/mayan/apps/folders/apps.py +++ b/mayan/apps/folders/apps.py @@ -67,7 +67,6 @@ class FoldersApp(MayanAppConfig): SourceColumn( source=Folder, label=_('Created'), attribute='datetime_created' ) - SourceColumn(source=Folder, label=_('User'), attribute='user') SourceColumn( source=Folder, label=_('Documents'), func=lambda context: context['object'].get_document_count( diff --git a/mayan/apps/folders/migrations/0005_auto_20160308_0437.py b/mayan/apps/folders/migrations/0005_auto_20160308_0437.py new file mode 100644 index 0000000000..c90fbae92e --- /dev/null +++ b/mayan/apps/folders/migrations/0005_auto_20160308_0437.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations + + +def merge_label_and_user(apps, schema_editor): + Folder = apps.get_model('folders', 'Folder') + + for folder in Folder.objects.all(): + folder.label = '{}-{}'.format(folder.user.username, folder.label) + folder.save() + + +class Migration(migrations.Migration): + + dependencies = [ + ('folders', '0004_documentfolder'), + ] + + operations = [ + migrations.RunPython(merge_label_and_user), + ] diff --git a/mayan/apps/folders/migrations/0006_auto_20160308_0445.py b/mayan/apps/folders/migrations/0006_auto_20160308_0445.py new file mode 100644 index 0000000000..3fc73c6767 --- /dev/null +++ b/mayan/apps/folders/migrations/0006_auto_20160308_0445.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('folders', '0005_auto_20160308_0437'), + ] + + operations = [ + migrations.AlterUniqueTogether( + name='folder', + unique_together=set([('label',)]), + ), + migrations.RemoveField( + model_name='folder', + name='user', + ), + ] diff --git a/mayan/apps/folders/models.py b/mayan/apps/folders/models.py index a5e2a83d58..b6e97d87a4 100644 --- a/mayan/apps/folders/models.py +++ b/mayan/apps/folders/models.py @@ -1,6 +1,5 @@ from __future__ import absolute_import, unicode_literals -from django.contrib.auth.models import User from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse from django.db import models @@ -20,7 +19,6 @@ class Folder(models.Model): label = models.CharField( db_index=True, max_length=128, verbose_name=_('Label') ) - user = models.ForeignKey(User, verbose_name=_('User')) datetime_created = models.DateTimeField( auto_now_add=True, verbose_name=_('Datetime created') ) @@ -42,7 +40,7 @@ class Folder(models.Model): class Meta: ordering = ('label',) - unique_together = ('label', 'user') + unique_together = ('label', ) verbose_name = _('Folder') verbose_name_plural = _('Folders') diff --git a/mayan/apps/folders/serializers.py b/mayan/apps/folders/serializers.py index 7ccb0adc86..e3e5a39f33 100644 --- a/mayan/apps/folders/serializers.py +++ b/mayan/apps/folders/serializers.py @@ -18,16 +18,14 @@ class FolderSerializer(serializers.HyperlinkedModelSerializer): view_name='rest_api:folder-document-list' ) documents_count = serializers.SerializerMethodField() - user = UserSerializer(read_only=True) class Meta: extra_kwargs = { 'url': {'view_name': 'rest_api:folder-detail'}, - 'user': {'view_name': 'rest_api:user-detail'} } fields = ( 'datetime_created', 'documents', 'documents_count', 'id', 'label', - 'url', 'user' + 'url' ) model = Folder @@ -41,7 +39,6 @@ class NewFolderSerializer(serializers.Serializer): def create(self, validated_data): try: data = validated_data.copy() - data.update({'user': self.context['request'].user}) return Folder.objects.create(**data) except Exception as exception: raise ValidationError(exception) diff --git a/mayan/apps/folders/tests/test_api.py b/mayan/apps/folders/tests/test_api.py index 2f97f574b8..9f1cf2389c 100644 --- a/mayan/apps/folders/tests/test_api.py +++ b/mayan/apps/folders/tests/test_api.py @@ -42,12 +42,9 @@ class FolderAPITestCase(APITestCase): self.assertEqual(Folder.objects.count(), 1) self.assertEqual(folder.label, TEST_FOLDER_LABEL) - self.assertEqual(folder.user, self.admin_user) def test_folder_delete(self): - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.admin_user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) self.client.delete( reverse('rest_api:folder-detail', args=(folder.pk,)) @@ -56,9 +53,7 @@ class FolderAPITestCase(APITestCase): self.assertEqual(Folder.objects.count(), 0) def test_folder_edit(self): - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.admin_user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) self.client.put( reverse('rest_api:folder-detail', args=(folder.pk,)), @@ -71,9 +66,7 @@ class FolderAPITestCase(APITestCase): @override_settings(OCR_AUTO_OCR=False) def test_folder_add_document(self): - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.admin_user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) document_type = DocumentType.objects.create( label=TEST_DOCUMENT_TYPE @@ -93,9 +86,7 @@ class FolderAPITestCase(APITestCase): @override_settings(OCR_AUTO_OCR=False) def test_folder_remove_document(self): - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.admin_user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) document_type = DocumentType.objects.create( label=TEST_DOCUMENT_TYPE diff --git a/mayan/apps/folders/tests/test_models.py b/mayan/apps/folders/tests/test_models.py index bd2ce4f2de..6889fe6154 100644 --- a/mayan/apps/folders/tests/test_models.py +++ b/mayan/apps/folders/tests/test_models.py @@ -12,6 +12,8 @@ from user_management.tests.literals import ( from ..models import Folder +from .literals import TEST_FOLDER_LABEL + class FolderTestCase(TestCase): def setUp(self): @@ -32,23 +34,21 @@ class FolderTestCase(TestCase): def tearDown(self): self.document_type.delete() - def test_creation_of_folder(self): - folder = Folder.objects.create(label='test', user=self.user) + def test_folder_creation(self): + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) self.assertEqual(Folder.objects.all().count(), 1) self.assertEqual(list(Folder.objects.all()), [folder]) - folder.delete() def test_addition_of_documents(self): - folder = Folder.objects.create(label='test', user=self.user) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) folder.documents.add(self.document) self.assertEqual(folder.documents.count(), 1) self.assertEqual(list(folder.documents.all()), [self.document]) - folder.delete() def test_addition_and_deletion_of_documents(self): - folder = Folder.objects.create(label='test', user=self.user) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) folder.documents.add(self.document) self.assertEqual(folder.documents.count(), 1) @@ -58,5 +58,3 @@ class FolderTestCase(TestCase): self.assertEqual(folder.documents.count(), 0) self.assertEqual(list(folder.documents.all()), []) - - folder.delete() diff --git a/mayan/apps/folders/tests/test_views.py b/mayan/apps/folders/tests/test_views.py index fc018db9c3..274eb430c6 100644 --- a/mayan/apps/folders/tests/test_views.py +++ b/mayan/apps/folders/tests/test_views.py @@ -43,12 +43,9 @@ class FolderViewTestCase(GenericDocumentViewTestCase): self.assertContains(response, text='created', status_code=200) self.assertEqual(Folder.objects.count(), 1) self.assertEqual(Folder.objects.first().label, TEST_FOLDER_LABEL) - self.assertEqual(Folder.objects.first().user, self.user) def test_folder_create_duplicate_view_with_permission(self): - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) @@ -62,16 +59,14 @@ class FolderViewTestCase(GenericDocumentViewTestCase): } ) - self.assertContains(response, text='Error', status_code=200) + self.assertContains(response, text='exists', status_code=200) self.assertEqual(Folder.objects.count(), 1) self.assertEqual(Folder.objects.first().pk, folder.pk) def test_folder_delete_view_no_permission(self): self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.admin_user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) response = self.post('folders:folder_delete', args=(folder.pk,)) self.assertEqual(response.status_code, 403) @@ -84,9 +79,7 @@ class FolderViewTestCase(GenericDocumentViewTestCase): permission_folder_delete.stored_permission ) - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.admin_user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) response = self.post( 'folders:folder_delete', args=(folder.pk,), follow=True @@ -98,9 +91,7 @@ class FolderViewTestCase(GenericDocumentViewTestCase): def test_folder_edit_view_no_permission(self): self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) response = self.post( 'folders:folder_edit', args=(folder.pk,), data={ @@ -118,9 +109,7 @@ class FolderViewTestCase(GenericDocumentViewTestCase): permission_folder_edit.stored_permission ) - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) response = self.post( 'folders:folder_edit', args=(folder.pk,), data={ @@ -129,7 +118,7 @@ class FolderViewTestCase(GenericDocumentViewTestCase): ) folder = Folder.objects.get(pk=folder.pk) - self.assertContains(response, text='saved', status_code=200) + self.assertContains(response, text='update', status_code=200) self.assertEqual(folder.label, TEST_FOLDER_EDITED_LABEL) def test_folder_add_document_view_no_permission(self): @@ -137,9 +126,7 @@ class FolderViewTestCase(GenericDocumentViewTestCase): self.role.permissions.add(permission_folder_view.stored_permission) - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.admin_user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) response = self.post( 'folders:folder_add_document', args=(self.document.pk,), data={ @@ -163,9 +150,7 @@ class FolderViewTestCase(GenericDocumentViewTestCase): permission_document_view.stored_permission ) - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.admin_user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) response = self.post( 'folders:folder_add_document', args=(self.document.pk,), data={ @@ -185,9 +170,7 @@ class FolderViewTestCase(GenericDocumentViewTestCase): self.role.permissions.add(permission_folder_view.stored_permission) - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.admin_user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) response = self.post( 'folders:folder_add_multiple_documents', data={ @@ -207,9 +190,7 @@ class FolderViewTestCase(GenericDocumentViewTestCase): permission_folder_add_document.stored_permission ) - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.admin_user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) response = self.post( 'folders:folder_add_multiple_documents', data={ @@ -227,9 +208,7 @@ class FolderViewTestCase(GenericDocumentViewTestCase): def test_folder_remove_document_view_no_permission(self): self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) folder.documents.add(self.document) @@ -254,9 +233,7 @@ class FolderViewTestCase(GenericDocumentViewTestCase): permission_folder_remove_document.stored_permission ) - folder = Folder.objects.create( - label=TEST_FOLDER_LABEL, user=self.user - ) + folder = Folder.objects.create(label=TEST_FOLDER_LABEL) folder.documents.add(self.document) self.assertEqual(folder.documents.count(), 1) diff --git a/mayan/apps/folders/urls.py b/mayan/apps/folders/urls.py index 6e7055a501..9c0c5872e8 100644 --- a/mayan/apps/folders/urls.py +++ b/mayan/apps/folders/urls.py @@ -7,8 +7,8 @@ from .api_views import ( APIFolderDocumentView, APIFolderListView, APIFolderView ) from .views import ( - DocumentFolderListView, FolderCreateView, FolderDetailView, FolderEditView, - FolderListView + DocumentFolderListView, FolderCreateView, FolderDeleteView, + FolderDetailView, FolderEditView, FolderListView ) urlpatterns = patterns( @@ -17,7 +17,8 @@ urlpatterns = patterns( url(r'^create/$', FolderCreateView.as_view(), name='folder_create'), url(r'^(?P\d+)/edit/$', FolderEditView.as_view(), name='folder_edit'), url( - r'^(?P\d+)/delete/$', 'folder_delete', name='folder_delete' + r'^(?P\d+)/delete/$', FolderDeleteView.as_view(), + name='folder_delete' ), url(r'^(?P\d+)/$', FolderDetailView.as_view(), name='folder_view'), url( diff --git a/mayan/apps/folders/views.py b/mayan/apps/folders/views.py index 796fe8d6d1..b903aa850d 100644 --- a/mayan/apps/folders/views.py +++ b/mayan/apps/folders/views.py @@ -13,7 +13,8 @@ from django.utils.translation import ugettext_lazy as _, ungettext from acls.models import AccessControlList from common.views import ( - SingleObjectCreateView, SingleObjectEditView, SingleObjectListView + SingleObjectCreateView, SingleObjectDeleteView, SingleObjectEditView, + SingleObjectListView ) from documents.permissions import permission_document_view from documents.models import Document @@ -40,11 +41,13 @@ class FolderEditView(SingleObjectEditView): def get_extra_context(self): return { 'object': self.get_object(), + 'object_name': _('Folder'), 'title': _('Edit folder: %s') % self.get_object(), } class FolderListView(SingleObjectListView): + model = Folder object_permission = permission_folder_view def get_extra_context(self): @@ -53,81 +56,30 @@ class FolderListView(SingleObjectListView): 'title': _('Folders'), } - def get_folder_queryset(self): - return Folder.objects.all() - - def get_queryset(self): - self.queryset = self.get_folder_queryset() - return super(FolderListView, self).get_queryset() - class FolderCreateView(SingleObjectCreateView): fields = ('label',) model = Folder view_permission = permission_folder_create - def form_valid(self, form): - try: - Folder.objects.get( - label=form.cleaned_data['label'], user=self.request.user - ) - except Folder.DoesNotExist: - instance = form.save(commit=False) - instance.user = self.request.user - instance.save() - return super(FolderCreateView, self).form_valid(form) - else: - messages.error( - self.request, - _( - 'A folder named: %s, already exists.' - ) % form.cleaned_data['label'] - ) - return super(FolderCreateView, self).form_invalid(form) - def get_extra_context(self): return { + 'object_name': _('Folder'), 'title': _('Create folder'), } -def folder_delete(request, folder_id): - folder = get_object_or_404(Folder, pk=folder_id) +class FolderDeleteView(SingleObjectDeleteView): + model = Folder + object_permission = permission_folder_delete + post_action_redirect = reverse_lazy('folders:folder_list') - try: - Permission.check_permissions(request.user, (permission_folder_delete,)) - except PermissionDenied: - AccessControlList.objects.check_access( - permission_folder_delete, request.user, folder - ) - - post_action_redirect = reverse('folders:folder_list') - - previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - next = request.POST.get('next', request.GET.get('next', post_action_redirect if post_action_redirect else request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - - if request.method == 'POST': - try: - folder.delete() - messages.success(request, _('Folder: %s deleted successfully.') % folder) - except Exception as exception: - messages.error(request, _('Folder: %(folder)s delete error: %(error)s') % { - 'folder': folder, 'error': exception}) - - return HttpResponseRedirect(next) - - context = { - 'delete_view': True, - 'previous': previous, - 'next': next, - 'object': folder, - 'title': _('Delete the folder: %s?') % folder, - } - - return render_to_response( - 'appearance/generic_confirm.html', context, - context_instance=RequestContext(request) - ) + def get_extra_context(self): + return { + 'object_name': _('Folder'), + 'object': self.get_object(), + 'title': _('Delete the folder: %s?') % self.get_object(), + } class FolderDetailView(DocumentListView): @@ -260,7 +212,7 @@ class DocumentFolderListView(FolderListView): 'title': _('Folders containing document: %s') % self.document, } - def get_folder_queryset(self): + def get_queryset(self): return self.document.document_folders().all() From 730cbe922dffd8f090856eda756e25ef2f94929e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 8 Mar 2016 01:23:16 -0400 Subject: [PATCH 028/205] Update changelog. --- HISTORY.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 4fa58db1c3..e5464122ad 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,7 +5,9 @@ - Remove remaining references to Django's User model. Issue #225 - Rename 'Content' search box to 'OCR'. - Remove included login required middleware using django-stronghold instead (http://mikegrouchy.com/django-stronghold/). - +- Improve generation of success and error messages for class based views. +- Remove ownership concept from folders. +- Replace strip_spaces middleware with the spaceless template tag. Issue #255 2.0.2 (2016-02-09) ================== From 927c0bf65758905f8f3a53c1ab375d522d644efc Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 8 Mar 2016 02:21:03 -0400 Subject: [PATCH 029/205] Remove remaining usage of django.contrib.auth.model.User. GitLab issue #225. --- mayan/apps/common/forms.py | 6 +++--- mayan/apps/common/generics.py | 6 +----- mayan/apps/document_states/models.py | 4 ++-- mayan/apps/documents/models.py | 6 +++--- mayan/apps/dynamic_search/models.py | 6 ++++-- mayan/apps/folders/serializers.py | 1 - mayan/apps/tags/forms.py | 2 +- mayan/apps/user_management/apps.py | 6 ++++-- mayan/apps/user_management/forms.py | 4 ++-- mayan/apps/user_management/serializers.py | 5 +++-- mayan/apps/user_management/views.py | 17 +++++++++++++++-- 11 files changed, 38 insertions(+), 25 deletions(-) diff --git a/mayan/apps/common/forms.py b/mayan/apps/common/forms.py index 2e144d504f..039f016edb 100644 --- a/mayan/apps/common/forms.py +++ b/mayan/apps/common/forms.py @@ -4,7 +4,7 @@ import os from django import forms from django.conf import settings -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.db import models from django.utils.html import escape from django.utils.translation import ugettext_lazy as _ @@ -148,7 +148,7 @@ class UserForm(forms.ModelForm): """ class Meta: - model = User + model = get_user_model() fields = ('username', 'first_name', 'last_name', 'email') @@ -158,7 +158,7 @@ class UserForm_view(DetailForm): """ class Meta: - model = User + model = get_user_model() fields = ( 'username', 'first_name', 'last_name', 'email', 'is_staff', 'is_superuser', 'last_login', 'date_joined', 'groups' diff --git a/mayan/apps/common/generics.py b/mayan/apps/common/generics.py index 85b5912b6c..c7cd02129f 100644 --- a/mayan/apps/common/generics.py +++ b/mayan/apps/common/generics.py @@ -2,7 +2,6 @@ from __future__ import absolute_import, unicode_literals from django.conf import settings from django.contrib import messages -from django.contrib.auth.models import User from django.contrib.contenttypes.models import ContentType from django.http import HttpResponseRedirect from django.utils.translation import ugettext_lazy as _ @@ -43,10 +42,7 @@ class AssignRemoveView(ExtraContextMixin, ViewPermissionCheckMixin, ObjectPermis results = [] for choice in choices: ct = ContentType.objects.get_for_model(choice) - if isinstance(choice, User): - label = choice.get_full_name() if choice.get_full_name() else choice - else: - label = unicode(choice) + label = unicode(choice) results.append(('%s,%s' % (ct.model, choice.pk), '%s' % (label))) diff --git a/mayan/apps/document_states/models.py b/mayan/apps/document_states/models.py index f4035ed846..09fc7cf345 100644 --- a/mayan/apps/document_states/models.py +++ b/mayan/apps/document_states/models.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals import logging -from django.contrib.auth.models import User +from django.conf import settings from django.core.urlresolvers import reverse from django.db import IntegrityError, models from django.utils.encoding import python_2_unicode_compatible @@ -186,7 +186,7 @@ class WorkflowInstanceLogEntry(models.Model): transition = models.ForeignKey( WorkflowTransition, verbose_name=_('Transition') ) - user = models.ForeignKey(User, verbose_name=_('User')) + user = models.ForeignKey(settings.AUTH_USER_MODEL, verbose_name=_('User')) comment = models.TextField(blank=True, verbose_name=_('Comment')) def __str__(self): diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index c671b0d733..782713c4e8 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -5,7 +5,7 @@ import hashlib import logging import uuid -from django.contrib.auth.models import User +from django.conf import settings from django.core.exceptions import PermissionDenied from django.core.files import File from django.core.urlresolvers import reverse @@ -799,7 +799,7 @@ class RecentDocument(models.Model): a given user """ user = models.ForeignKey( - User, db_index=True, editable=False, verbose_name=_('User') + settings.AUTH_USER_MODEL, db_index=True, editable=False, verbose_name=_('User') ) document = models.ForeignKey( Document, editable=False, verbose_name=_('Document') @@ -815,7 +815,7 @@ class RecentDocument(models.Model): def natural_key(self): return self.document.natural_key() + self.user.natural_key() - natural_key.dependencies = ['documents.Document', 'auth.User'] + natural_key.dependencies = ['documents.Document', settings.AUTH_USER_MODEL] class Meta: ordering = ('-datetime_accessed',) diff --git a/mayan/apps/dynamic_search/models.py b/mayan/apps/dynamic_search/models.py index 9afc0c97dc..b3ee98b156 100644 --- a/mayan/apps/dynamic_search/models.py +++ b/mayan/apps/dynamic_search/models.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals import urllib import urlparse -from django.contrib.auth.models import User +from django.conf import settings from django.core.urlresolvers import reverse from django.db import models from django.utils.encoding import ( @@ -20,7 +20,9 @@ class RecentSearch(models.Model): Keeps a list of the [n] most recent search keywords for a given user """ - user = models.ForeignKey(User, editable=False, verbose_name=_('User')) + user = models.ForeignKey( + settings.AUTH_USER_MODEL, editable=False, verbose_name=_('User') + ) query = models.TextField(editable=False, verbose_name=_('Query')) datetime_created = models.DateTimeField( auto_now=True, db_index=True, verbose_name=_('Datetime created') diff --git a/mayan/apps/folders/serializers.py b/mayan/apps/folders/serializers.py index e3e5a39f33..554cc10c09 100644 --- a/mayan/apps/folders/serializers.py +++ b/mayan/apps/folders/serializers.py @@ -8,7 +8,6 @@ from django.utils.translation import ugettext_lazy as _ from documents.models import Document from documents.serializers import DocumentSerializer -from user_management.serializers import UserSerializer from .models import Folder diff --git a/mayan/apps/tags/forms.py b/mayan/apps/tags/forms.py index 711b29620b..b71631c11d 100644 --- a/mayan/apps/tags/forms.py +++ b/mayan/apps/tags/forms.py @@ -50,6 +50,6 @@ class TagMultipleSelectionForm(forms.Form): self.fields['tags'] = forms.MultipleChoiceField( label=_('Tags'), choices=queryset.values_list('id', 'label'), - help_text=_('Tags to attach to the document.'),required=False, + help_text=_('Tags to attach to the document.'), required=False, widget=forms.CheckboxSelectMultiple ) diff --git a/mayan/apps/user_management/apps.py b/mayan/apps/user_management/apps.py index 3de140ccd9..b01334daa4 100644 --- a/mayan/apps/user_management/apps.py +++ b/mayan/apps/user_management/apps.py @@ -1,7 +1,7 @@ from __future__ import unicode_literals from django.contrib.auth import get_user_model -from django.contrib.auth.models import User, Group +from django.contrib.auth.models import Group from django.utils.translation import ugettext_lazy as _ from actstream import registry @@ -31,6 +31,8 @@ class UserManagementApp(MayanAppConfig): def ready(self): super(UserManagementApp, self).ready() + User = get_user_model() + APIEndPoint(app=self, version_string='1') MetadataLookup( @@ -39,7 +41,7 @@ class UserManagementApp(MayanAppConfig): ) MetadataLookup( description=_('All the users.'), name='users', - value=get_user_model().objects.all() + value=User.objects.all() ) SourceColumn( diff --git a/mayan/apps/user_management/forms.py b/mayan/apps/user_management/forms.py index 9b1eff1a2e..96c85303df 100644 --- a/mayan/apps/user_management/forms.py +++ b/mayan/apps/user_management/forms.py @@ -1,13 +1,13 @@ from __future__ import unicode_literals from django import forms -from django.contrib.auth.models import User +from django.contrib.auth import get_user_model from django.utils.translation import ugettext_lazy as _ class UserForm(forms.ModelForm): class Meta: - model = User + model = get_user_model() fields = ('username', 'first_name', 'last_name', 'email', 'is_active',) diff --git a/mayan/apps/user_management/serializers.py b/mayan/apps/user_management/serializers.py index fb6cc90cf9..74a116aca4 100644 --- a/mayan/apps/user_management/serializers.py +++ b/mayan/apps/user_management/serializers.py @@ -1,6 +1,7 @@ from __future__ import unicode_literals -from django.contrib.auth.models import Group, User +from django.contrib.auth import get_user_model +from django.contrib.auth.models import Group from rest_framework import serializers @@ -31,7 +32,7 @@ class UserSerializer(serializers.HyperlinkedModelSerializer): 'is_active', 'is_superuser', 'last_login', 'last_name', 'password', 'url', 'username', ) - model = User + model = get_user_model() read_only_fields = ('last_login', 'date_joined') write_only_fields = ('password',) diff --git a/mayan/apps/user_management/views.py b/mayan/apps/user_management/views.py index d90cad59ac..8945375e81 100644 --- a/mayan/apps/user_management/views.py +++ b/mayan/apps/user_management/views.py @@ -4,6 +4,7 @@ from django.conf import settings from django.contrib import messages from django.contrib.auth import get_user_model from django.contrib.auth.models import Group +from django.contrib.contenttypes.models import ContentType from django.core.urlresolvers import reverse, reverse_lazy from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404, render_to_response @@ -72,6 +73,18 @@ class GroupMembersView(AssignRemoveView): right_list_title = _('Members of groups') view_permission = permission_group_edit + @staticmethod + def generate_choices(choices): + results = [] + for choice in choices: + ct = ContentType.objects.get_for_model(choice) + label = choice.get_full_name() if choice.get_full_name() else choice + + results.append(('%s,%s' % (ct.model, choice.pk), '%s' % (label))) + + # Sort results by the label not the key value + return sorted(results, key=lambda x: x[1]) + def add(self, item): self.get_object().user_set.add(item) @@ -85,14 +98,14 @@ class GroupMembersView(AssignRemoveView): return get_object_or_404(Group, pk=self.kwargs['pk']) def left_list(self): - return AssignRemoveView.generate_choices( + return GroupMembersView.generate_choices( get_user_model().objects.exclude( groups=self.get_object() ).exclude(is_staff=True).exclude(is_superuser=True) ) def right_list(self): - return AssignRemoveView.generate_choices( + return GroupMembersView.generate_choices( self.get_object().user_set.all() ) From ad328b2c3b2bd213f04f3228daae4dd31e9dc5c4 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 8 Mar 2016 02:32:03 -0400 Subject: [PATCH 030/205] Silence lock manager model import warning. --- mayan/apps/checkouts/tasks.py | 7 +++++-- mayan/apps/document_indexing/tasks.py | 21 ++++++++++++++++----- mayan/apps/lock_manager/__init__.py | 2 -- mayan/apps/ocr/tasks.py | 9 +++++++-- 4 files changed, 28 insertions(+), 11 deletions(-) diff --git a/mayan/apps/checkouts/tasks.py b/mayan/apps/checkouts/tasks.py index 9b5ea5d9a8..046c9a8e40 100644 --- a/mayan/apps/checkouts/tasks.py +++ b/mayan/apps/checkouts/tasks.py @@ -4,7 +4,7 @@ import logging from django.apps import apps -from lock_manager import Lock, LockError +from lock_manager import LockError from mayan.celery import app from .literals import CHECKOUT_EXPIRATION_LOCK_EXPIRE @@ -17,12 +17,15 @@ def task_check_expired_check_outs(): DocumentCheckout = apps.get_model( app_label='checkouts', model_name='DocumentCheckout' ) + Lock = apps.get_model( + app_label='lock_manager', model_name='Lock' + ) logger.debug('executing...') lock_id = 'task_expired_check_outs' try: logger.debug('trying to acquire lock: %s', lock_id) - lock = Lock.acquire_lock( + lock = Lock.objects.acquire_lock( name=lock_id, timeout=CHECKOUT_EXPIRATION_LOCK_EXPIRE ) logger.debug('acquired lock: %s', lock_id) diff --git a/mayan/apps/document_indexing/tasks.py b/mayan/apps/document_indexing/tasks.py index 507ba9bdd4..5b115d9d35 100644 --- a/mayan/apps/document_indexing/tasks.py +++ b/mayan/apps/document_indexing/tasks.py @@ -6,7 +6,7 @@ from django.apps import apps from django.db import OperationalError from mayan.celery import app -from lock_manager import Lock, LockError +from lock_manager import LockError from .literals import RETRY_DELAY @@ -18,9 +18,12 @@ def task_delete_empty_index_nodes(self): IndexInstanceNode = apps.get_model( app_label='document_indexing', model_name='IndexInstanceNode' ) + Lock = apps.get_model( + app_label='lock_manager', model_name='Lock' + ) try: - rebuild_lock = Lock.acquire_lock( + rebuild_lock = Lock.objects.acquire_lock( 'document_indexing_task_do_rebuild_all_indexes' ) except LockError as exception: @@ -43,8 +46,12 @@ def task_index_document(self, document_id): app_label='document_indexing', model_name='IndexInstanceNode' ) + Lock = apps.get_model( + app_label='lock_manager', model_name='Lock' + ) + try: - rebuild_lock = Lock.acquire_lock( + rebuild_lock = Lock.objects.acquire_lock( 'document_indexing_task_do_rebuild_all_indexes' ) except LockError as exception: @@ -52,7 +59,7 @@ def task_index_document(self, document_id): raise self.retry(exc=exception) else: try: - lock = Lock.acquire_lock( + lock = Lock.objects.acquire_lock( 'document_indexing_task_update_index_document_%d' % document_id ) except LockError as exception: @@ -89,12 +96,16 @@ def task_do_rebuild_all_indexes(self): app_label='document_indexing', model_name='IndexInstanceNode' ) + Lock = apps.get_model( + app_label='lock_manager', model_name='Lock' + ) + if Lock.check_existing(name__startswith='document_indexing_task_update_index_document'): # A document index update is happening, wait raise self.retry() try: - lock = Lock.acquire_lock( + lock = Lock.objects.acquire_lock( 'document_indexing_task_do_rebuild_all_indexes' ) except LockError as exception: diff --git a/mayan/apps/lock_manager/__init__.py b/mayan/apps/lock_manager/__init__.py index b6a5ddb03c..c2d5d99bd3 100644 --- a/mayan/apps/lock_manager/__init__.py +++ b/mayan/apps/lock_manager/__init__.py @@ -1,7 +1,5 @@ from __future__ import unicode_literals from .exceptions import LockError # NOQA -from .models import Lock as LockModel -Lock = LockModel.objects default_app_config = 'lock_manager.apps.LockManagerApp' diff --git a/mayan/apps/ocr/tasks.py b/mayan/apps/ocr/tasks.py index 485c28b447..7406a1bed3 100644 --- a/mayan/apps/ocr/tasks.py +++ b/mayan/apps/ocr/tasks.py @@ -4,11 +4,12 @@ import logging import sys import traceback +from django.apps import apps from django.conf import settings from django.db import OperationalError from documents.models import DocumentVersion -from lock_manager import Lock, LockError +from lock_manager import LockError from mayan.celery import app from .classes import TextExtractor @@ -21,12 +22,16 @@ logger = logging.getLogger(__name__) @app.task(bind=True, default_retry_delay=DO_OCR_RETRY_DELAY, ignore_result=True) def task_do_ocr(self, document_version_pk): + Lock = apps.get_model( + app_label='lock_manager', model_name='Lock' + ) + lock_id = 'task_do_ocr_doc_version-%d' % document_version_pk try: logger.debug('trying to acquire lock: %s', lock_id) # Acquire lock to avoid doing OCR on the same document version more than # once concurrently - lock = Lock.acquire_lock(lock_id, LOCK_EXPIRE) + lock = Lock.objects.acquire_lock(lock_id, LOCK_EXPIRE) logger.debug('acquired lock: %s', lock_id) document_version = None try: From d05345ed3c09fee3028f9e0f87652a920247fe81 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 8 Mar 2016 02:37:22 -0400 Subject: [PATCH 031/205] Update tests to match generic CBV success message. --- mayan/apps/permissions/tests/test_views.py | 2 +- mayan/apps/tags/tests/test_views.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/permissions/tests/test_views.py b/mayan/apps/permissions/tests/test_views.py index 88e0272b9c..10553f2d88 100644 --- a/mayan/apps/permissions/tests/test_views.py +++ b/mayan/apps/permissions/tests/test_views.py @@ -66,7 +66,7 @@ class PermissionsViewsTestCase(TestCase): }, follow=True ) - self.assertContains(response, 'saved', status_code=200) + self.assertContains(response, 'update', status_code=200) self.assertEqual(Role.objects.count(), 1) self.assertEqual(Role.objects.first().label, TEST_ROLE_LABEL_EDITED) diff --git a/mayan/apps/tags/tests/test_views.py b/mayan/apps/tags/tests/test_views.py index f89a30599d..a71cc1298c 100644 --- a/mayan/apps/tags/tests/test_views.py +++ b/mayan/apps/tags/tests/test_views.py @@ -147,7 +147,7 @@ class TagViewTestCase(GenericDocumentViewTestCase): }, follow=True ) - self.assertContains(response, text='saved', status_code=200) + self.assertContains(response, text='update', status_code=200) tag = Tag.objects.get(pk=self.tag.pk) self.assertEqual(tag.label, TEST_TAG_LABEL_EDITED) self.assertEqual(tag.color, TEST_TAG_COLOR_EDITED) From 9da4710c0f58ac7ef50fc9dae9eaa417c72c6f23 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 8 Mar 2016 02:38:15 -0400 Subject: [PATCH 032/205] Deselect the update checkbox for optional metadata by default. --- mayan/apps/metadata/forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mayan/apps/metadata/forms.py b/mayan/apps/metadata/forms.py index 30660c5246..3d5365b3ea 100644 --- a/mayan/apps/metadata/forms.py +++ b/mayan/apps/metadata/forms.py @@ -38,6 +38,7 @@ class MetadataForm(forms.Form): required_string = ' (%s)' % _('Required') else: self.fields['value'].required = False + self.fields['update'].initial = False self.fields['name'].initial = '%s%s' % ( ( From a7faf7f427b5cca835c630d39bf71356dcc69399 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 8 Mar 2016 03:39:23 -0400 Subject: [PATCH 033/205] Implement per document type document creation permission. Closes GitLab issue #232. --- HISTORY.rst | 7 +++++-- mayan/apps/acls/classes.py | 12 ++++-------- mayan/apps/documents/apps.py | 14 +++++++++----- mayan/apps/documents/forms.py | 31 +++++++++++++++++++++++++++---- mayan/apps/documents/views.py | 5 +++-- mayan/apps/sources/links.py | 4 ++-- mayan/apps/sources/views.py | 27 +++++++++++++++++++++------ mayan/apps/sources/wizards.py | 4 +++- 8 files changed, 74 insertions(+), 30 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index e5464122ad..8958e3a09f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,12 +2,15 @@ ============= - Upgrade to use Django 1.8.8. Issue #246. - Upgrade requirements. -- Remove remaining references to Django's User model. Issue #225 +- Remove remaining references to Django's User model. GitLab issue #225 - Rename 'Content' search box to 'OCR'. - Remove included login required middleware using django-stronghold instead (http://mikegrouchy.com/django-stronghold/). - Improve generation of success and error messages for class based views. - Remove ownership concept from folders. -- Replace strip_spaces middleware with the spaceless template tag. Issue #255 +- Replace strip_spaces middleware with the spaceless template tag. GitLab issue #255 +- Deselect the update checkbox for optional metadata by default. +- Silence all Django 1.8 model import warnings. +- Implement per document type document creation permission. Closes GitLab issue #232. 2.0.2 (2016-02-09) ================== diff --git a/mayan/apps/acls/classes.py b/mayan/apps/acls/classes.py index 8750160937..08f9b520e2 100644 --- a/mayan/apps/acls/classes.py +++ b/mayan/apps/acls/classes.py @@ -24,15 +24,11 @@ class ModelPermission(object): app_label='permissions', model_name='StoredPermission' ) - try: - permissions = cls._registry[type(instance)] - except KeyError: - try: - permissions = cls._registry[cls._proxies[type(instance)]] - except KeyError: - permissions = () + permissions = [] + permissions.extend(cls._registry.get(type(instance))) + permissions.extend(cls._registry.get(cls._proxies.get(type(instance)))) - pks = [permission.stored_permission.pk for permission in permissions] + pks = [permission.stored_permission.pk for permission in set(permissions)] return StoredPermission.objects.filter(pk__in=pks) @classmethod diff --git a/mayan/apps/documents/apps.py b/mayan/apps/documents/apps.py index 9927703d8c..4b410cdb2a 100644 --- a/mayan/apps/documents/apps.py +++ b/mayan/apps/documents/apps.py @@ -61,11 +61,11 @@ from .literals import ( DELETE_STALE_STUBS_INTERVAL ) from .permissions import ( - permission_document_delete, permission_document_download, - permission_document_edit, permission_document_new_version, - permission_document_print, permission_document_properties_edit, - permission_document_trash, permission_document_version_revert, - permission_document_view + permission_document_create, permission_document_delete, + permission_document_download, permission_document_edit, + permission_document_new_version, permission_document_print, + permission_document_properties_edit, permission_document_trash, + permission_document_version_revert, permission_document_view ) from .settings import setting_thumbnail_size from .statistics import ( @@ -126,6 +126,10 @@ class DocumentsApp(MayanAppConfig): ) ) + ModelPermission.register( + model=DocumentType, permissions=(permission_document_create,) + ) + ModelPermission.register_proxy( source=Document, model=DocumentType, ) diff --git a/mayan/apps/documents/forms.py b/mayan/apps/documents/forms.py index ad7808fd86..57b2bf7720 100644 --- a/mayan/apps/documents/forms.py +++ b/mayan/apps/documents/forms.py @@ -1,16 +1,24 @@ -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals + +import logging from django import forms +from django.core.exceptions import PermissionDenied from django.utils.translation import ugettext_lazy as _ +from acls.models import AccessControlList from common.forms import DetailForm +from permissions import Permission from .models import ( Document, DocumentType, DocumentPage, DocumentTypeFilename ) from .literals import DEFAULT_ZIP_FILENAME, PAGE_RANGE_CHOICES +from .permissions import permission_document_create from .widgets import DocumentPagesCarouselWidget, DocumentPageImageWidget +logger = logging.getLogger(__name__) + # Document page forms class DocumentPageForm(DetailForm): @@ -103,9 +111,24 @@ class DocumentTypeSelectForm(forms.Form): Form to select the document type of a document to be created, used as form #1 in the document creation wizard """ - document_type = forms.ModelChoiceField( - queryset=DocumentType.objects.all(), label=_('Document type') - ) + + def __init__(self, *args, **kwargs): + user = kwargs.pop('user', None) + logger.debug('user: %s', user) + super(DocumentTypeSelectForm, self).__init__(*args, **kwargs) + + queryset = DocumentType.objects.all() + try: + Permission.check_permissions(user, (permission_document_create,)) + except PermissionDenied: + queryset = AccessControlList.objects.filter_by_access( + permission_document_create, user, queryset + ) + + self.fields['document_type'] = forms.ModelChoiceField( + queryset=queryset, + label=_('Document type') + ) class DocumentTypeFilenameForm_create(forms.ModelForm): diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index 4ee92bbddb..d85f0ed0d7 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -650,7 +650,7 @@ def document_document_type_edit(request, document_id=None, document_id_list=None next = request.POST.get('next', request.GET.get('next', post_action_redirect if post_action_redirect else request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) if request.method == 'POST': - form = DocumentTypeSelectForm(request.POST) + form = DocumentTypeSelectForm(request.POST, user=request.user) if form.is_valid(): for instance in queryset: @@ -666,7 +666,8 @@ def document_document_type_edit(request, document_id=None, document_id_list=None return HttpResponseRedirect(next) else: form = DocumentTypeSelectForm( - initial={'document_type': queryset.first().document_type} + initial={'document_type': queryset.first().document_type}, + user=request.user ) context = { diff --git a/mayan/apps/sources/links.py b/mayan/apps/sources/links.py index 43503d61ce..e1a26d9cae 100644 --- a/mayan/apps/sources/links.py +++ b/mayan/apps/sources/links.py @@ -23,8 +23,8 @@ def document_new_version_not_blocked(context): link_document_create_multiple = Link( - icon='fa fa-upload', permissions=(permission_document_create,), - text=_('New document'), view='sources:document_create_multiple' + icon='fa fa-upload', text=_('New document'), + view='sources:document_create_multiple' ) link_document_create_siblings = Link( permissions=(permission_document_create,), text=_('Clone'), diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index ef75f158a7..367e60e9db 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -67,9 +67,18 @@ class SourceLogListView(SingleObjectListView): def document_create_siblings(request, document_id): - Permission.check_permissions(request.user, (permission_document_create,)) - document = get_object_or_404(Document, pk=document_id) + + try: + Permission.check_permissions( + request.user, (permission_document_create,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_document_create, request.user, + document.document_type + ) + query_dict = {} for pk, metadata in enumerate(document.metadata.all()): query_dict['metadata%s_id' % pk] = metadata.metadata_type_id @@ -205,10 +214,6 @@ class UploadInteractiveView(UploadBaseView): def dispatch(self, request, *args, **kwargs): self.subtemplates_list = [] - Permission.check_permissions( - request.user, (permission_document_create,) - ) - self.document_type = get_object_or_404( DocumentType, pk=self.request.GET.get( @@ -216,6 +221,16 @@ class UploadInteractiveView(UploadBaseView): ) ) + try: + Permission.check_permissions( + request.user, (permission_document_create,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_document_create, request.user, + self.document_type + ) + self.tab_links = UploadBaseView.get_active_tab_links() return super( diff --git a/mayan/apps/sources/wizards.py b/mayan/apps/sources/wizards.py index bd239e4381..23300b9eab 100644 --- a/mayan/apps/sources/wizards.py +++ b/mayan/apps/sources/wizards.py @@ -41,7 +41,6 @@ class DocumentCreateWizard(ViewPermissionCheckMixin, SessionWizardView): TagMultipleSelectionForm: _('Step 3 of 3: Select tags'), } template_name = 'appearance/generic_wizard.html' - view_permission = permission_document_create def dispatch(self, request, *args, **kwargs): if not InteractiveSource.objects.filter(enabled=True).exists(): @@ -89,6 +88,9 @@ class DocumentCreateWizard(ViewPermissionCheckMixin, SessionWizardView): def get_form_kwargs(self, step): # Tags form needs the user instance to determine which tags to # display + if step == STEP_DOCUMENT_TYPE: + return {'user': self.request.user} + if step == STEP_TAGS: return {'user': self.request.user} From 5a70bd09954317ae09546021e63eefdbb1e165ba Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 8 Mar 2016 03:44:22 -0400 Subject: [PATCH 034/205] Remove document clone function. --- mayan/apps/sources/apps.py | 8 ++------ mayan/apps/sources/links.py | 4 ---- mayan/apps/sources/urls.py | 4 ---- mayan/apps/sources/views.py | 24 ------------------------ 4 files changed, 2 insertions(+), 38 deletions(-) diff --git a/mayan/apps/sources/apps.py b/mayan/apps/sources/apps.py index ed1167f63e..df0f73c794 100644 --- a/mayan/apps/sources/apps.py +++ b/mayan/apps/sources/apps.py @@ -22,9 +22,8 @@ from .handlers import ( initialize_periodic_tasks ) from .links import ( - link_document_create_multiple, link_document_create_siblings, - link_setup_sources, link_setup_source_create_imap_email, - link_setup_source_create_pop3_email, + link_document_create_multiple, link_setup_sources, + link_setup_source_create_imap_email, link_setup_source_create_pop3_email, link_setup_source_create_watch_folder, link_setup_source_create_webform, link_setup_source_create_staging_folder, link_setup_source_delete, link_setup_source_edit, link_setup_source_logs, link_staging_file_delete, @@ -120,9 +119,6 @@ class SourcesApp(MayanAppConfig): ) menu_front_page.bind_links(links=(link_document_create_multiple,)) - menu_object.bind_links( - links=(link_document_create_siblings,), sources=(Document,) - ) menu_object.bind_links( links=( link_setup_source_edit, link_setup_source_delete, diff --git a/mayan/apps/sources/links.py b/mayan/apps/sources/links.py index e1a26d9cae..0a3846bec5 100644 --- a/mayan/apps/sources/links.py +++ b/mayan/apps/sources/links.py @@ -26,10 +26,6 @@ link_document_create_multiple = Link( icon='fa fa-upload', text=_('New document'), view='sources:document_create_multiple' ) -link_document_create_siblings = Link( - permissions=(permission_document_create,), text=_('Clone'), - view='sources:document_create_siblings', args='object.id' -) link_setup_sources = Link( icon='fa fa-upload', permissions=(permission_sources_setup_view,), text=_('Sources'), view='sources:setup_source_list' diff --git a/mayan/apps/sources/urls.py b/mayan/apps/sources/urls.py index bf40ded233..b52e01f902 100644 --- a/mayan/apps/sources/urls.py +++ b/mayan/apps/sources/urls.py @@ -67,10 +67,6 @@ urlpatterns = patterns( r'^create/from/local/multiple/$', DocumentCreateWizard.as_view(), name='document_create_multiple' ), - url( - r'^(?P\d+)/create/siblings/$', 'document_create_siblings', - name='document_create_siblings' - ), ) api_urls = patterns( diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index 367e60e9db..74d008be4d 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -66,30 +66,6 @@ class SourceLogListView(SingleObjectListView): } -def document_create_siblings(request, document_id): - document = get_object_or_404(Document, pk=document_id) - - try: - Permission.check_permissions( - request.user, (permission_document_create,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - permission_document_create, request.user, - document.document_type - ) - - query_dict = {} - for pk, metadata in enumerate(document.metadata.all()): - query_dict['metadata%s_id' % pk] = metadata.metadata_type_id - query_dict['metadata%s_value' % pk] = metadata.value - - query_dict['document_type_id'] = document.document_type_id - - url = reverse('sources:upload_interactive') - return HttpResponseRedirect('%s?%s' % (url, urlencode(query_dict))) - - class UploadBaseView(MultiFormView): template_name = 'appearance/generic_form.html' prefixes = {'source_form': 'source', 'document_form': 'document'} From 4d362c39571b6b53399f50a199876aa57d9b06a3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 8 Mar 2016 04:17:57 -0400 Subject: [PATCH 035/205] Add icons to the document face menu links. Increase icon size by 10%. Increase icon to text spacing to 3px. --- HISTORY.rst | 3 +++ .../appearance/static/appearance/css/base.css | 12 ++++++++++++ mayan/apps/checkouts/links.py | 2 +- mayan/apps/document_comments/links.py | 4 ++-- mayan/apps/document_indexing/links.py | 4 ++-- mayan/apps/document_signatures/links.py | 4 ++-- mayan/apps/document_states/links.py | 3 ++- mayan/apps/documents/links.py | 18 ++++++++++-------- mayan/apps/events/links.py | 4 ++-- mayan/apps/folders/links.py | 4 ++-- mayan/apps/linking/links.py | 5 +++-- mayan/apps/metadata/links.py | 4 ++-- mayan/apps/ocr/links.py | 4 ++-- mayan/apps/tags/links.py | 2 +- 14 files changed, 46 insertions(+), 27 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8958e3a09f..94c476b6f4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -11,6 +11,9 @@ - Deselect the update checkbox for optional metadata by default. - Silence all Django 1.8 model import warnings. - Implement per document type document creation permission. Closes GitLab issue #232. +- Add icons to the document face menu links. +- Increase icon size by 10%. +- Increase icon to text spacing to 3px. 2.0.2 (2016-02-09) ================== diff --git a/mayan/apps/appearance/static/appearance/css/base.css b/mayan/apps/appearance/static/appearance/css/base.css index 75bc2456fd..d3b7a596bb 100644 --- a/mayan/apps/appearance/static/appearance/css/base.css +++ b/mayan/apps/appearance/static/appearance/css/base.css @@ -134,3 +134,15 @@ hr { .radio ul li { list-style-type:none; } + +a i { + padding-right: 3px; +} + +.fa { + font-size: 110%; +} + +.fa-2x { + font-size: 200%; +} diff --git a/mayan/apps/checkouts/links.py b/mayan/apps/checkouts/links.py index db4cd628ae..23dfa6c805 100644 --- a/mayan/apps/checkouts/links.py +++ b/mayan/apps/checkouts/links.py @@ -42,7 +42,7 @@ link_checkin_document = Link( args='object.pk' ) link_checkout_info = Link( - permissions=( + icon='fa fa-shopping-cart', permissions=( permission_document_checkin, permission_document_checkin_override, permission_document_checkout ), text=_('Check in/out'), view='checkouts:checkout_info', args='object.pk' diff --git a/mayan/apps/document_comments/links.py b/mayan/apps/document_comments/links.py index ed93ed017c..bf53b39a56 100644 --- a/mayan/apps/document_comments/links.py +++ b/mayan/apps/document_comments/links.py @@ -18,6 +18,6 @@ link_comment_delete = Link( text=_('Delete'), view='comments:comment_delete', args='object.pk' ) link_comments_for_document = Link( - permissions=(permission_comment_view,), text=_('Comments'), - view='comments:comments_for_document', args='object.pk' + icon='fa fa-comment', permissions=(permission_comment_view,), + text=_('Comments'), view='comments:comments_for_document', args='object.pk' ) diff --git a/mayan/apps/document_indexing/links.py b/mayan/apps/document_indexing/links.py index 3c70b22705..d5b622393f 100644 --- a/mayan/apps/document_indexing/links.py +++ b/mayan/apps/document_indexing/links.py @@ -18,8 +18,8 @@ def is_not_root_node(context): link_document_index_list = Link( - permissions=(permission_document_view,), text=_('Indexes'), - view='indexing:document_index_list', args='object.pk' + icon='fa fa-list-ul', permissions=(permission_document_view,), + text=_('Indexes'), view='indexing:document_index_list', args='object.pk' ) link_index_list = Link( permissions=(permission_document_indexing_view,), text=_('Index list'), diff --git a/mayan/apps/document_signatures/links.py b/mayan/apps/document_signatures/links.py index 3a2436ca1e..955d7eb266 100644 --- a/mayan/apps/document_signatures/links.py +++ b/mayan/apps/document_signatures/links.py @@ -50,6 +50,6 @@ link_document_signature_upload = Link( view='signatures:document_signature_upload', args='object.pk' ) link_document_verify = Link( - permissions=(permission_document_verify,), text=_('Signatures'), - view='signatures:document_verify', args='object.pk' + icon='fa fa-certificate', permissions=(permission_document_verify,), + text=_('Signatures'), view='signatures:document_verify', args='object.pk' ) diff --git a/mayan/apps/document_states/links.py b/mayan/apps/document_states/links.py index 534c24f800..be928ac56d 100644 --- a/mayan/apps/document_states/links.py +++ b/mayan/apps/document_states/links.py @@ -11,7 +11,8 @@ from .permissions import ( ) link_document_workflow_instance_list = Link( - permissions=(permission_workflow_view,), text=_('Workflows'), + icon='fa fa-sitemap', permissions=(permission_workflow_view,), + text=_('Workflows'), view='document_states:document_workflow_instance_list', args='object.pk' ) link_setup_workflow_create = Link( diff --git a/mayan/apps/documents/links.py b/mayan/apps/documents/links.py index c206e302f0..a46aa8caf7 100644 --- a/mayan/apps/documents/links.py +++ b/mayan/apps/documents/links.py @@ -39,20 +39,22 @@ def is_min_zoom(context): # Facet link_document_preview = Link( - permissions=(permission_document_view,), text=_('Preview'), - view='documents:document_preview', args='object.id' + icon='fa fa-eye', permissions=(permission_document_view,), + text=_('Preview'), view='documents:document_preview', args='object.id' ) link_document_properties = Link( - permissions=(permission_document_view,), text=_('Properties'), - view='documents:document_properties', args='object.id' + icon='fa fa-info', permissions=(permission_document_view,), + text=_('Properties'), view='documents:document_properties', + args='object.id' ) link_document_version_list = Link( - permissions=(permission_document_view,), text=_('Versions'), - view='documents:document_version_list', args='object.pk' + icon='fa fa-code-fork', permissions=(permission_document_view,), + text=_('Versions'), view='documents:document_version_list', + args='object.pk' ) link_document_pages = Link( - permissions=(permission_document_view,), text=_('Pages'), - view='documents:document_pages', args='resolved_object.pk' + icon='fa fa-files-o', permissions=(permission_document_view,), + text=_('Pages'), view='documents:document_pages', args='resolved_object.pk' ) # Actions diff --git a/mayan/apps/events/links.py b/mayan/apps/events/links.py index 93ad5dcbab..d85e733b0b 100644 --- a/mayan/apps/events/links.py +++ b/mayan/apps/events/links.py @@ -27,7 +27,7 @@ link_events_list = Link( text=_('Events'), view='events:events_list' ) link_events_for_object = Link( - permissions=(permission_events_view,), text=_('Events'), - view='events:events_for_object', + icon='fa fa-list-ol', permissions=(permission_events_view,), + text=_('Events'), view='events:events_for_object', kwargs=get_kwargs_factory('resolved_object') ) diff --git a/mayan/apps/folders/links.py b/mayan/apps/folders/links.py index d6bd5bee82..ab8a3f95f6 100644 --- a/mayan/apps/folders/links.py +++ b/mayan/apps/folders/links.py @@ -12,8 +12,8 @@ from .permissions import ( ) link_document_folder_list = Link( - permissions=(permission_document_view,), text=_('Folders'), - view='folders:document_folder_list', args='object.pk' + icon='fa fa-folder', permissions=(permission_document_view,), + text=_('Folders'), view='folders:document_folder_list', args='object.pk' ) link_folder_add_document = Link( permissions=(permission_folder_add_document,), text=_('Add to a folder'), diff --git a/mayan/apps/linking/links.py b/mayan/apps/linking/links.py index 1c4807c8c7..2071f6b151 100644 --- a/mayan/apps/linking/links.py +++ b/mayan/apps/linking/links.py @@ -50,8 +50,9 @@ link_smart_link_instance_view = Link( ) ) link_smart_link_instances_for_document = Link( - permissions=(permission_document_view,), text=_('Smart links'), - view='linking:smart_link_instances_for_document', args='object.pk' + icon='fa fa-link', permissions=(permission_document_view,), + text=_('Smart links'), view='linking:smart_link_instances_for_document', + args='object.pk' ) link_smart_link_list = Link( permissions=(permission_smart_link_create,), text=_('Smart links'), diff --git a/mayan/apps/metadata/links.py b/mayan/apps/metadata/links.py index 3606df9fa4..39412bbfcb 100644 --- a/mayan/apps/metadata/links.py +++ b/mayan/apps/metadata/links.py @@ -35,8 +35,8 @@ link_metadata_remove = Link( args='object.pk' ) link_metadata_view = Link( - permissions=(permission_metadata_document_view,), text=_('Metadata'), - view='metadata:metadata_view', args='object.pk' + icon='fa fa-pencil', permissions=(permission_metadata_document_view,), + text=_('Metadata'), view='metadata:metadata_view', args='object.pk' ) link_setup_document_type_metadata = Link( permissions=(permission_document_type_edit,), text=_('Optional metadata'), diff --git a/mayan/apps/ocr/links.py b/mayan/apps/ocr/links.py index 85b3abcdab..bc4a935d81 100644 --- a/mayan/apps/ocr/links.py +++ b/mayan/apps/ocr/links.py @@ -10,8 +10,8 @@ from .permissions import ( ) link_document_content = Link( - permissions=(permission_ocr_content_view,), text=_('OCR'), - view='ocr:document_content', args='resolved_object.id' + icon='fa fa-font', permissions=(permission_ocr_content_view,), + text=_('OCR'), view='ocr:document_content', args='resolved_object.id' ) link_document_submit = Link( permissions=(permission_ocr_document,), text=_('Submit for OCR'), diff --git a/mayan/apps/tags/links.py b/mayan/apps/tags/links.py index cd59a9df13..8627cca4d3 100644 --- a/mayan/apps/tags/links.py +++ b/mayan/apps/tags/links.py @@ -37,7 +37,7 @@ link_tag_edit = Link( args='object.id' ) link_tag_document_list = Link( - permissions=(permission_tag_view,), text=_('Tags'), + icon='fa fa-tag', permissions=(permission_tag_view,), text=_('Tags'), view='tags:document_tags', args='object.pk' ) link_tag_list = Link(icon='fa fa-tag', text=_('Tags'), view='tags:tag_list') From 330e01972c5d37cb9bc9c50b8f6ca064aa3dd859 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 8 Mar 2016 04:21:29 -0400 Subject: [PATCH 036/205] Hide document facet menu links on small displays. --- .../templates/navigation/generic_link_instance.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/appearance/templates/navigation/generic_link_instance.html b/mayan/apps/appearance/templates/navigation/generic_link_instance.html index 933a15f0d8..f2d57259cd 100644 --- a/mayan/apps/appearance/templates/navigation/generic_link_instance.html +++ b/mayan/apps/appearance/templates/navigation/generic_link_instance.html @@ -1,5 +1,5 @@ {% if link.disabled %} - {% if link.icon %} {% endif %}{{ link.text }}{% if link.error %} - {{ link.error }}{% endif %}{% if horizontal %}{% if not forloop.last %} {% endif %}{% endif %} + {% if link.icon %} {% endif %}{{ link.text }}{% if link.error %} - {{ link.error }}{% endif %}{% if horizontal %}{% if not forloop.last %} {% endif %}{% endif %} {% else %} - {% if link.icon %} {% endif %}{{ link.text }}{% if link.error %} - {{ link.error }}{% endif %}{% if horizontal %}{% if not forloop.last %} {% endif %}{% endif %} + {% if link.icon %} {% endif %}{{ link.text }}{% if link.error %} - {{ link.error }}{% endif %}{% if horizontal %}{% if not forloop.last %} {% endif %}{% endif %} {% endif %} From bccf51117852f68c142fe0f85459a347a0f3312f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 9 Mar 2016 14:24:57 -0400 Subject: [PATCH 037/205] Add per document type document creation access control test. --- mayan/apps/sources/tests/test_views.py | 135 ++++++++++++++++--------- 1 file changed, 88 insertions(+), 47 deletions(-) diff --git a/mayan/apps/sources/tests/test_views.py b/mayan/apps/sources/tests/test_views.py index 5c75b39022..0239ecd286 100644 --- a/mayan/apps/sources/tests/test_views.py +++ b/mayan/apps/sources/tests/test_views.py @@ -5,7 +5,9 @@ from django.core.urlresolvers import reverse from django.test.client import Client from django.test import TestCase, override_settings +from acls.models import AccessControlList from documents.models import Document, DocumentType, NewVersionBlock +from documents.permissions import permission_document_create from documents.tests import ( TEST_DOCUMENT_PATH, TEST_SMALL_DOCUMENT_PATH, TEST_DOCUMENT_DESCRIPTION, TEST_DOCUMENT_TYPE @@ -13,19 +15,99 @@ from documents.tests import ( from documents.tests.test_views import GenericDocumentViewTestCase from user_management.tests import ( TEST_ADMIN_EMAIL, TEST_ADMIN_PASSWORD, TEST_ADMIN_USERNAME, + TEST_USER_PASSWORD, TEST_USER_USERNAME ) - from ..links import link_upload_version from ..literals import SOURCE_CHOICE_WEB_FORM from ..models import WebFormSource +TEST_SOURCE_LABEL = 'test' +TEST_SOURCE_UNCOMPRESS = 'n' + + +class DocumentUploadTestCase(GenericDocumentViewTestCase): + def setUp(self): + super(DocumentUploadTestCase, self).setUp() + self.source = WebFormSource.objects.create( + enabled=True, label=TEST_SOURCE_LABEL, + uncompress=TEST_SOURCE_UNCOMPRESS + ) + + self.document.delete() + + def test_upload_wizard_without_permission(self): + logged_in = self.client.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + with open(TEST_DOCUMENT_PATH) as file_object: + response = self.client.post( + reverse( + 'sources:upload_interactive', args=(self.source.pk,) + ), data={ + 'source-file': file_object, + 'document_type_id': self.document_type.pk, + } + ) + + self.assertEqual(response.status_code, 403) + self.assertEqual(Document.objects.count(), 0) + + def test_upload_wizard_with_permission(self): + logged_in = self.client.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + self.role.permissions.add( + permission_document_create.stored_permission + ) + + with open(TEST_DOCUMENT_PATH) as file_object: + response = self.client.post( + reverse( + 'sources:upload_interactive', args=(self.source.pk,) + ), data={ + 'source-file': file_object, + 'document_type_id': self.document_type.pk, + }, follow=True + ) + + self.assertTrue(b'queued' in response.content) + self.assertEqual(Document.objects.count(), 1) + + def test_upload_wizard_with_document_type_access(self): + """ + Test uploading of documents by granting the document create + permssion for the document type to the user + """ + + logged_in = self.client.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + # Create an access control entry giving the role the document + # create permission for the selected document type. + acl = AccessControlList.objects.create( + content_object=self.document_type, role=self.role + ) + acl.permissions.add(permission_document_create.stored_permission) + + with open(TEST_DOCUMENT_PATH) as file_object: + response = self.client.post( + reverse( + 'sources:upload_interactive', args=(self.source.pk,) + ), data={ + 'source-file': file_object, + 'document_type_id': self.document_type.pk, + }, follow=True + ) + + self.assertTrue(b'queued' in response.content) + self.assertEqual(Document.objects.count(), 1) + @override_settings(OCR_AUTO_OCR=False) -class UploadDocumentTestCase(TestCase): - """ - Test creating documents - """ - +class DocumentUploadIssueTestCase(TestCase): def setUp(self): self.document_type = DocumentType.objects.create( label=TEST_DOCUMENT_TYPE @@ -40,47 +122,6 @@ class UploadDocumentTestCase(TestCase): def tearDown(self): self.document_type.delete() - def test_upload_a_document(self): - # Login the admin user - logged_in = self.client.login( - username=TEST_ADMIN_USERNAME, password=TEST_ADMIN_PASSWORD - ) - self.assertTrue(logged_in) - self.assertTrue(self.admin_user.is_authenticated()) - - # Create new webform source - self.client.post( - reverse( - 'sources:setup_source_create', args=(SOURCE_CHOICE_WEB_FORM,) - ), {'label': 'test', 'uncompress': 'n', 'enabled': True} - ) - self.assertEqual(WebFormSource.objects.count(), 1) - - # Upload the test document - with open(TEST_DOCUMENT_PATH) as file_descriptor: - self.client.post( - reverse('sources:upload_interactive'), - { - 'document-language': 'eng', 'source-file': file_descriptor, - 'document_type_id': self.document_type.pk, - 'label': 'mayan_11_1.pdf' - } - ) - self.assertEqual(Document.objects.count(), 1) - - self.document = Document.objects.all().first() - self.assertEqual(self.document.exists(), True) - self.assertEqual(self.document.size, 272213) - - self.assertEqual(self.document.file_mimetype, 'application/pdf') - self.assertEqual(self.document.file_mime_encoding, 'binary') - self.assertEqual(self.document.label, 'mayan_11_1.pdf') - self.assertEqual( - self.document.checksum, - 'c637ffab6b8bb026ed3784afdb07663fddc60099853fae2be93890852a69ecf3' - ) - self.assertEqual(self.document.page_count, 47) - def test_issue_25(self): # Login the admin user logged_in = self.client.login( From 9b315a7cf43a7ebbfa476179393138c54669d4f9 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 9 Mar 2016 14:25:43 -0400 Subject: [PATCH 038/205] Simple list to tupple and queryset count optimizations. --- mayan/apps/sources/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index 74d008be4d..56d3174533 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -74,10 +74,10 @@ class UploadBaseView(MultiFormView): def get_tab_link_for_source(source, document=None): if document: view = 'sources:upload_version' - args = ['"{}"'.format(document.pk), '"{}"'.format(source.pk)] + args = ('"{}"'.format(document.pk), '"{}"'.format(source.pk),) else: view = 'sources:upload_interactive' - args = ['"{}"'.format(source.pk)] + args = ('"{}"'.format(source.pk),) return Link( text=source.label, @@ -123,7 +123,7 @@ class UploadBaseView(MultiFormView): enabled=True ).select_subclasses().first() - if InteractiveSource.objects.filter(enabled=True).count() == 0: + if not InteractiveSource.objects.filter(enabled=True).exists(): messages.error( request, _( From 5b6b35f1c3125fe49f6dde13c41d996cc952cda4 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 9 Mar 2016 14:39:16 -0400 Subject: [PATCH 039/205] Make document type deletion period optional. --- HISTORY.rst | 1 + .../migrations/0030_auto_20160309_1837.py | 24 +++++++++++++++++++ mayan/apps/documents/models.py | 9 +++---- 3 files changed, 30 insertions(+), 4 deletions(-) create mode 100644 mayan/apps/documents/migrations/0030_auto_20160309_1837.py diff --git a/HISTORY.rst b/HISTORY.rst index 94c476b6f4..77dd5ed73c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -14,6 +14,7 @@ - Add icons to the document face menu links. - Increase icon size by 10%. - Increase icon to text spacing to 3px. +- Make document type delete time period optional. 2.0.2 (2016-02-09) ================== diff --git a/mayan/apps/documents/migrations/0030_auto_20160309_1837.py b/mayan/apps/documents/migrations/0030_auto_20160309_1837.py new file mode 100644 index 0000000000..9712f700ed --- /dev/null +++ b/mayan/apps/documents/migrations/0030_auto_20160309_1837.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('documents', '0029_auto_20160122_0755'), + ] + + operations = [ + migrations.AlterField( + model_name='documenttype', + name='delete_time_period', + field=models.PositiveIntegerField(default=30, help_text='Amount of time after which documents of this type in the trash will be deleted.', null=True, verbose_name='Delete time period', blank=True), + ), + migrations.AlterField( + model_name='documenttype', + name='delete_time_unit', + field=models.CharField(default='days', choices=[('days', 'Days'), ('hours', 'Hours'), ('minutes', 'Minutes')], max_length=8, blank=True, null=True, verbose_name='Delete time unit'), + ), + ] diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index 782713c4e8..ab8b417b17 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -76,14 +76,15 @@ class DocumentType(models.Model): verbose_name=_('Trash time unit') ) delete_time_period = models.PositiveIntegerField( - default=DEFAULT_DELETE_PERIOD, help_text=_( + blank=True, default=DEFAULT_DELETE_PERIOD, help_text=_( 'Amount of time after which documents of this type in the trash ' 'will be deleted.' - ), verbose_name=_('Delete time period') + ), null=True, verbose_name=_('Delete time period') ) delete_time_unit = models.CharField( - choices=TIME_DELTA_UNIT_CHOICES, default=DEFAULT_DELETE_TIME_UNIT, - max_length=8, verbose_name=_('Delete time unit') + blank=True, choices=TIME_DELTA_UNIT_CHOICES, + default=DEFAULT_DELETE_TIME_UNIT, max_length=8, null=True, + verbose_name=_('Delete time unit') ) objects = DocumentTypeManager() From ba4768bcbb8d1159c46d4e1aedd0e7bef862286c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 9 Mar 2016 15:40:22 -0400 Subject: [PATCH 040/205] Revert icons to their original sizes. --- mayan/apps/appearance/static/appearance/css/base.css | 8 -------- 1 file changed, 8 deletions(-) diff --git a/mayan/apps/appearance/static/appearance/css/base.css b/mayan/apps/appearance/static/appearance/css/base.css index d3b7a596bb..df2a3566b8 100644 --- a/mayan/apps/appearance/static/appearance/css/base.css +++ b/mayan/apps/appearance/static/appearance/css/base.css @@ -138,11 +138,3 @@ hr { a i { padding-right: 3px; } - -.fa { - font-size: 110%; -} - -.fa-2x { - font-size: 200%; -} From 17f129e9e69139e586270b583b885880f904b35e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 9 Mar 2016 15:40:39 -0400 Subject: [PATCH 041/205] Add admin interface to the checkouts app. --- mayan/apps/checkouts/admin.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 mayan/apps/checkouts/admin.py diff --git a/mayan/apps/checkouts/admin.py b/mayan/apps/checkouts/admin.py new file mode 100644 index 0000000000..66aee04d6c --- /dev/null +++ b/mayan/apps/checkouts/admin.py @@ -0,0 +1,14 @@ +from __future__ import unicode_literals + +from django.contrib import admin + +from .models import DocumentCheckout + + +@admin.register(DocumentCheckout) +class DocumentCheckoutAdmin(admin.ModelAdmin): + list_display = ( + 'document', 'checkout_datetime', 'expiration_datetime', 'user', + 'block_new_version' + ) + list_display_links = None From 216673c691ae2d5cfb26d9e4aa7d18e2b72ef7e2 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 9 Mar 2016 15:58:53 -0400 Subject: [PATCH 042/205] Sort variables --- mayan/apps/common/forms.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mayan/apps/common/forms.py b/mayan/apps/common/forms.py index 039f016edb..338b5cbc50 100644 --- a/mayan/apps/common/forms.py +++ b/mayan/apps/common/forms.py @@ -111,20 +111,20 @@ class FilterForm(forms.Form): class LicenseForm(FileDisplayForm): - FILENAME = 'LICENSE' DIRECTORY = ('mayan',) + FILENAME = 'LICENSE' class LocaleProfileForm(forms.ModelForm): class Meta: - model = UserLocaleProfile fields = ('language', 'timezone') + model = UserLocaleProfile class LocaleProfileForm_view(DetailForm): class Meta: - model = UserLocaleProfile fields = ('language', 'timezone') + model = UserLocaleProfile class PackagesLicensesForm(forms.Form): @@ -148,8 +148,8 @@ class UserForm(forms.ModelForm): """ class Meta: - model = get_user_model() fields = ('username', 'first_name', 'last_name', 'email') + model = get_user_model() class UserForm_view(DetailForm): @@ -158,8 +158,8 @@ class UserForm_view(DetailForm): """ class Meta: - model = get_user_model() fields = ( 'username', 'first_name', 'last_name', 'email', 'is_staff', 'is_superuser', 'last_login', 'date_joined', 'groups' ) + model = get_user_model() From 2c9a01bdfc3f2393e238e264f4079aec4748a142 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 9 Mar 2016 23:22:31 -0400 Subject: [PATCH 043/205] Improve the date localte handling of the DetailView and DetailForm. --- .../appearance/generic_form_instance.html | 2 + mayan/apps/common/forms.py | 40 +++++++++---------- mayan/apps/common/generics.py | 8 ++-- mayan/apps/common/utils.py | 4 -- 4 files changed, 27 insertions(+), 27 deletions(-) diff --git a/mayan/apps/appearance/templates/appearance/generic_form_instance.html b/mayan/apps/appearance/templates/appearance/generic_form_instance.html index 9eeef9aa9b..4a60de4f58 100644 --- a/mayan/apps/appearance/templates/appearance/generic_form_instance.html +++ b/mayan/apps/appearance/templates/appearance/generic_form_instance.html @@ -69,6 +69,8 @@ {{ option.render }} {% endfor %} + {% elif field|widget_type == 'datetimeinput' %} + {{ field.value }} {% else %} {% render_field field class+="form-control" %} {% endif %} diff --git a/mayan/apps/common/forms.py b/mayan/apps/common/forms.py index 338b5cbc50..de34579cf6 100644 --- a/mayan/apps/common/forms.py +++ b/mayan/apps/common/forms.py @@ -40,27 +40,27 @@ class ChoiceForm(forms.Form): class DetailForm(forms.ModelForm): - def __init__(self, extra_fields=None, *args, **kwargs): + def __init__(self, *args, **kwargs): + self.extra_fields = kwargs.pop('extra_fields', ()) super(DetailForm, self).__init__(*args, **kwargs) - if extra_fields: - for extra_field in extra_fields: - result = return_attrib(self.instance, extra_field['field']) - label = 'label' in extra_field and extra_field['label'] or None - # TODO: Add others result types <=> Field types - if isinstance(result, models.query.QuerySet): - self.fields[extra_field['field']] = \ - forms.ModelMultipleChoiceField( - queryset=result, label=label) - else: - self.fields[extra_field['field']] = forms.CharField( - label=extra_field['label'], - initial=escape( - return_attrib( - self.instance, - extra_field['field'], None - ) - ), - widget=PlainWidget) + + for extra_field in self.extra_fields: + result = return_attrib(self.instance, extra_field['field']) + label = 'label' in extra_field and extra_field['label'] or None + # TODO: Add others result types <=> Field types + if isinstance(result, models.query.QuerySet): + self.fields[extra_field['field']] = \ + forms.ModelMultipleChoiceField( + queryset=result, label=label) + else: + self.fields[extra_field['field']] = forms.CharField( + label=extra_field['label'], + initial=return_attrib( + self.instance, + extra_field['field'], None + ), + widget=extra_field.get('widget', PlainWidget) + ) for field_name, field in self.fields.items(): if isinstance(field.widget, forms.widgets.SelectMultiple): diff --git a/mayan/apps/common/generics.py b/mayan/apps/common/generics.py index c7cd02129f..d46dc87fc2 100644 --- a/mayan/apps/common/generics.py +++ b/mayan/apps/common/generics.py @@ -8,7 +8,9 @@ from django.utils.translation import ugettext_lazy as _ from django.views.generic import ( FormView as DjangoFormView, DetailView, TemplateView ) -from django.views.generic.edit import CreateView, DeleteView, UpdateView +from django.views.generic.edit import ( + CreateView, DeleteView, ModelFormMixin, UpdateView +) from django.views.generic.list import ListView from pure_pagination.mixins import PaginationMixin @@ -332,12 +334,12 @@ class SingleObjectDeleteView(DeleteExtraDataMixin, ViewPermissionCheckMixin, Obj return result -class SingleObjectDetailView(ViewPermissionCheckMixin, ObjectPermissionCheckMixin, ExtraContextMixin, DetailView): +class SingleObjectDetailView(ViewPermissionCheckMixin, ObjectPermissionCheckMixin, ExtraContextMixin, ModelFormMixin, DetailView): template_name = 'appearance/generic_form.html' def get_context_data(self, **kwargs): context = super(SingleObjectDetailView, self).get_context_data(**kwargs) - context.update({'read_only': True}) + context.update({'read_only': True, 'form': self.get_form()}) return context diff --git a/mayan/apps/common/utils.py b/mayan/apps/common/utils.py index 1238d2efad..373c79dfa6 100644 --- a/mayan/apps/common/utils.py +++ b/mayan/apps/common/utils.py @@ -71,10 +71,6 @@ def get_descriptor(file_input, read=True): return file_input -def render_date_object(date_time_object): - return force_text(formats.localize(date_time_object, use_l10n=True)) - - def return_attrib(obj, attrib, arguments=None): try: if isinstance(attrib, types.FunctionType): From 6f02d96212c1116cc95e1f292601b0c2e5071ea9 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 9 Mar 2016 23:26:00 -0400 Subject: [PATCH 044/205] Update current user detail view to use DetailView CBV. --- mayan/apps/common/views.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mayan/apps/common/views.py b/mayan/apps/common/views.py index a02eb7e167..87598c1f17 100644 --- a/mayan/apps/common/views.py +++ b/mayan/apps/common/views.py @@ -25,17 +25,17 @@ class AboutView(TemplateView): template_name = 'appearance/about.html' -class CurrentUserDetailsView(TemplateView): - template_name = 'appearance/generic_form.html' +class CurrentUserDetailsView(SingleObjectDetailView): + form_class = UserForm_view - def get_context_data(self, **kwargs): - data = super(CurrentUserDetailsView, self).get_context_data(**kwargs) - data.update({ - 'form': UserForm_view(instance=self.request.user), - 'read_only': True, + def get_object(self): + return self.request.user + + def get_extra_context(self, **kwargs): + return { + 'object': self.get_object(), 'title': _('Current user details'), - }) - return data + } class CurrentUserEditView(SingleObjectEditView): From 45e90da21980e9afcf28d2b5a8d84b6ee317dd36 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 9 Mar 2016 23:27:02 -0400 Subject: [PATCH 045/205] Convert the checkout detail view to use the DetailView CBV. Update usage the DetailView CBV in the DocumentProperties view. Add checkout details view permission. --- mayan/apps/checkouts/apps.py | 3 +- mayan/apps/checkouts/forms.py | 46 +++++++++++++++++++ mayan/apps/checkouts/permissions.py | 3 ++ mayan/apps/checkouts/urls.py | 7 ++- mayan/apps/checkouts/views.py | 70 ++++++++--------------------- mayan/apps/documents/forms.py | 43 ++++++++++++++++++ mayan/apps/documents/views.py | 46 +------------------ 7 files changed, 119 insertions(+), 99 deletions(-) diff --git a/mayan/apps/checkouts/apps.py b/mayan/apps/checkouts/apps.py index 8de707d522..e1f27f0eba 100644 --- a/mayan/apps/checkouts/apps.py +++ b/mayan/apps/checkouts/apps.py @@ -19,7 +19,7 @@ from .links import ( from .literals import CHECK_EXPIRED_CHECK_OUTS_INTERVAL from .permissions import ( permission_document_checkin, permission_document_checkin_override, - permission_document_checkout + permission_document_checkout, permission_document_checkout_detail_view ) from .tasks import task_check_expired_check_outs # NOQA # This import is required so that celerybeat can find the task @@ -69,6 +69,7 @@ class CheckoutsApp(MayanAppConfig): permission_document_checkout, permission_document_checkin, permission_document_checkin_override, + permission_document_checkout_detail_view ) ) diff --git a/mayan/apps/checkouts/forms.py b/mayan/apps/checkouts/forms.py index 6e425401ee..8500dc07b3 100644 --- a/mayan/apps/checkouts/forms.py +++ b/mayan/apps/checkouts/forms.py @@ -1,7 +1,11 @@ from __future__ import unicode_literals from django import forms +from django.utils.translation import ugettext_lazy as _ +from common.forms import DetailForm + +from .literals import STATE_LABELS from .models import DocumentCheckout from .widgets import SplitTimeDeltaWidget @@ -13,3 +17,45 @@ class DocumentCheckoutForm(forms.ModelForm): widgets = { 'expiration_datetime': SplitTimeDeltaWidget() } + + +class DocumentCheckoutDefailForm(DetailForm): + def __init__(self, *args, **kwargs): + instance = kwargs['instance'] + + extra_fields = ( + { + 'label': _('Document status'), + 'field': lambda instance: STATE_LABELS[instance.checkout_state()] + }, + ) + + if instance.is_checked_out(): + checkout_info = instance.checkout_info() + extra_fields += ( + { + 'label': _('User'), + 'field': lambda instance: checkout_info.user.get_full_name() or checkout_info.user + }, + { + 'label': _('Check out time'), + 'field': lambda instance: checkout_info.checkout_datetime, + 'widget': forms.widgets.DateTimeInput + }, + { + 'label': _('Check out expiration'), + 'field': lambda instance: checkout_info.expiration_datetime, + 'widget': forms.widgets.DateTimeInput + }, + { + 'label': _('New versions allowed?'), + 'field': lambda instance: _('Yes') if not checkout_info.block_new_version else _('No') + }, + ) + + kwargs['extra_fields'] = extra_fields + super(DocumentCheckoutDefailForm, self).__init__(*args, **kwargs) + + class Meta: + fields = () + model = DocumentCheckout diff --git a/mayan/apps/checkouts/permissions.py b/mayan/apps/checkouts/permissions.py index b555d7e9c4..d385538564 100644 --- a/mayan/apps/checkouts/permissions.py +++ b/mayan/apps/checkouts/permissions.py @@ -15,3 +15,6 @@ permission_document_checkin_override = namespace.add_permission( permission_document_checkout = namespace.add_permission( name='checkout_document', label=_('Check out documents') ) +permission_document_checkout_detail_view = namespace.add_permission( + name='checkout_detail_view', label=_('Check out details view') +) diff --git a/mayan/apps/checkouts/urls.py b/mayan/apps/checkouts/urls.py index 5027aa4e83..dd192954ff 100644 --- a/mayan/apps/checkouts/urls.py +++ b/mayan/apps/checkouts/urls.py @@ -3,7 +3,10 @@ from __future__ import unicode_literals from django.conf.urls import patterns, url from .api_views import APICheckedoutDocumentListView, APICheckedoutDocumentView -from .views import CheckoutDocumentView, CheckoutListView, DocumentCheckinView +from .views import ( + CheckoutDocumentView, CheckoutDetailView, CheckoutListView, + DocumentCheckinView +) urlpatterns = patterns( 'checkouts.views', @@ -17,7 +20,7 @@ urlpatterns = patterns( name='checkin_document' ), url( - r'^(?P\d+)/check/info/$', 'checkout_info', + r'^(?P\d+)/check/info/$', CheckoutDetailView.as_view(), name='checkout_info' ), ) diff --git a/mayan/apps/checkouts/views.py b/mayan/apps/checkouts/views.py index d693e26b71..ac5c81aa06 100644 --- a/mayan/apps/checkouts/views.py +++ b/mayan/apps/checkouts/views.py @@ -12,17 +12,19 @@ from documents.models import Document from documents.views import DocumentListView from acls.models import AccessControlList -from common.generics import ConfirmView, SingleObjectCreateView -from common.utils import encapsulate, render_date_object +from common.generics import ( + ConfirmView, SingleObjectCreateView, SingleObjectDetailView +) +from common.utils import encapsulate from permissions import Permission from .exceptions import DocumentAlreadyCheckedOut, DocumentNotCheckedOut -from .forms import DocumentCheckoutForm +from .forms import DocumentCheckoutForm, DocumentCheckoutDefailForm from .literals import STATE_LABELS from .models import DocumentCheckout from .permissions import ( permission_document_checkin, permission_document_checkin_override, - permission_document_checkout + permission_document_checkout, permission_document_checkout_detail_view ) @@ -106,55 +108,21 @@ class CheckoutListView(DocumentListView): return DocumentCheckout.objects.checked_out_documents() -def checkout_info(request, document_pk): - document = get_object_or_404(Document, pk=document_pk) - try: - Permission.check_permissions( - request.user, ( - permission_document_checkout, permission_document_checkin - ) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - (permission_document_checkout, permission_document_checkin), - request.user, document - ) +class CheckoutDetailView(SingleObjectDetailView): + form_class = DocumentCheckoutDefailForm + model = Document + object_permission = permission_document_checkout_detail_view - paragraphs = [ - _('Document status: %s') % STATE_LABELS[document.checkout_state()] - ] + def get_extra_context(self): + return { + 'object': self.get_object(), + 'title': _( + 'Check out details for document: %s' + ) % self.get_object() + } - if document.is_checked_out(): - checkout_info = document.checkout_info() - paragraphs.append( - _('User: %s') % ( - checkout_info.user.get_full_name() or checkout_info.user - ) - ) - paragraphs.append( - _( - 'Check out time: %s' - ) % render_date_object(checkout_info.checkout_datetime) - ) - paragraphs.append( - _( - 'Check out expiration: %s' - ) % render_date_object(checkout_info.expiration_datetime) - ) - paragraphs.append( - _( - 'New versions allowed: %s' - ) % (_('Yes') if not checkout_info.block_new_version else _('No')) - ) - - return render_to_response( - 'appearance/generic_template.html', { - 'paragraphs': paragraphs, - 'object': document, - 'title': _('Check out details for document: %s') % document - }, - context_instance=RequestContext(request) - ) + def get_object(self): + return get_object_or_404(Document, pk=self.kwargs['pk']) class DocumentCheckinView(ConfirmView): diff --git a/mayan/apps/documents/forms.py b/mayan/apps/documents/forms.py index 57b2bf7720..a874daa6fb 100644 --- a/mayan/apps/documents/forms.py +++ b/mayan/apps/documents/forms.py @@ -4,6 +4,7 @@ import logging from django import forms from django.core.exceptions import PermissionDenied +from django.template.defaultfilters import filesizeformat from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList @@ -101,6 +102,48 @@ class DocumentPropertiesForm(DetailForm): """ Detail class form to display a document file based properties """ + def __init__(self, *args, **kwargs): + document = kwargs['instance'] + + extra_fields = [ + { + 'label': _('Date added'), + 'field': 'date_added', + 'widget': forms.widgets.DateTimeInput + }, + {'label': _('UUID'), 'field': 'uuid'}, + ] + + if document.latest_version: + extra_fields += ( + { + 'label': _('File mimetype'), + 'field': lambda x: document.file_mimetype or _('None') + }, + { + 'label': _('File encoding'), + 'field': lambda x: document.file_mime_encoding or _( + 'None' + ) + }, + { + 'label': _('File size'), + 'field': lambda document: filesizeformat( + document.size + ) if document.size else '-' + }, + {'label': _('Exists in storage'), 'field': 'exists'}, + { + 'label': _('File path in storage'), + 'field': 'latest_version.file' + }, + {'label': _('Checksum'), 'field': 'checksum'}, + {'label': _('Pages'), 'field': 'page_count'}, + ) + + kwargs['extra_fields'] = extra_fields + super(DocumentPropertiesForm, self).__init__(*args, **kwargs) + class Meta: fields = ('document_type', 'description', 'language') model = Document diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index d85f0ed0d7..6d6fb9e900 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -22,7 +22,6 @@ from common.generics import ( SingleObjectDetailView, SingleObjectEditView, SingleObjectListView ) from common.mixins import MultipleInstanceActionMixin -from common.utils import render_date_object from converter.literals import ( DEFAULT_PAGE_NUMBER, DEFAULT_ROTATION, DEFAULT_ZOOM_LEVEL ) @@ -533,6 +532,7 @@ class DocumentVersionListView(SingleObjectListView): class DocumentView(SingleObjectDetailView): + form_class = DocumentPropertiesForm model = Document object_permission = permission_document_view @@ -543,55 +543,11 @@ class DocumentView(SingleObjectDetailView): def get_extra_context(self): return { - 'form': self.get_form(), 'document': self.get_object(), 'object': self.get_object(), 'title': _('Properties for document: %s') % self.get_object(), } - def get_form(self): - document = self.get_object() - - document_fields = [ - { - 'label': _('Date added'), - 'field': lambda document: render_date_object( - document.date_added - ) - }, - {'label': _('UUID'), 'field': 'uuid'}, - ] - if document.latest_version: - document_fields.extend([ - { - 'label': _('File mimetype'), - 'field': lambda x: document.file_mimetype or _('None') - }, - { - 'label': _('File encoding'), - 'field': lambda x: document.file_mime_encoding or _( - 'None' - ) - }, - { - 'label': _('File size'), - 'field': lambda document: filesizeformat( - document.size - ) if document.size else '-' - }, - {'label': _('Exists in storage'), 'field': 'exists'}, - { - 'label': _('File path in storage'), - 'field': 'latest_version.file' - }, - {'label': _('Checksum'), 'field': 'checksum'}, - {'label': _('Pages'), 'field': 'page_count'}, - ]) - - return DocumentPropertiesForm( - instance=document, extra_fields=document_fields - ) - class EmptyTrashCanView(ConfirmView): extra_context = { From 180c38b746759caeb0f41a469090f2eaf2d6aca5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 9 Mar 2016 23:31:03 -0400 Subject: [PATCH 046/205] PEP8 cleanups. --- mayan/apps/checkouts/views.py | 4 +--- mayan/apps/common/forms.py | 1 - mayan/apps/common/utils.py | 2 -- mayan/apps/documents/views.py | 1 - 4 files changed, 1 insertion(+), 7 deletions(-) diff --git a/mayan/apps/checkouts/views.py b/mayan/apps/checkouts/views.py index ac5c81aa06..a469265964 100644 --- a/mayan/apps/checkouts/views.py +++ b/mayan/apps/checkouts/views.py @@ -4,8 +4,7 @@ from django.contrib import messages from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse from django.http import HttpResponseRedirect -from django.shortcuts import get_object_or_404, render_to_response -from django.template import RequestContext +from django.shortcuts import get_object_or_404 from django.utils.translation import ugettext_lazy as _ from documents.models import Document @@ -20,7 +19,6 @@ from permissions import Permission from .exceptions import DocumentAlreadyCheckedOut, DocumentNotCheckedOut from .forms import DocumentCheckoutForm, DocumentCheckoutDefailForm -from .literals import STATE_LABELS from .models import DocumentCheckout from .permissions import ( permission_document_checkin, permission_document_checkin_override, diff --git a/mayan/apps/common/forms.py b/mayan/apps/common/forms.py index de34579cf6..de1b8ec89e 100644 --- a/mayan/apps/common/forms.py +++ b/mayan/apps/common/forms.py @@ -6,7 +6,6 @@ from django import forms from django.conf import settings from django.contrib.auth import get_user_model from django.db import models -from django.utils.html import escape from django.utils.translation import ugettext_lazy as _ from .classes import Filter, Package diff --git a/mayan/apps/common/utils.py b/mayan/apps/common/utils.py index 373c79dfa6..fa82b89ce5 100644 --- a/mayan/apps/common/utils.py +++ b/mayan/apps/common/utils.py @@ -6,9 +6,7 @@ import tempfile import types from django.conf import settings -from django.utils import formats from django.utils.datastructures import MultiValueDict -from django.utils.encoding import force_text from django.utils.http import urlquote as django_urlquote from django.utils.http import urlencode as django_urlencode diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index 6d6fb9e900..5b58c10f41 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -8,7 +8,6 @@ from django.conf import settings from django.contrib import messages from django.core.exceptions import PermissionDenied from django.core.urlresolvers import resolve, reverse, reverse_lazy -from django.template.defaultfilters import filesizeformat from django.http import HttpResponse, HttpResponseRedirect from django.shortcuts import render_to_response, get_object_or_404 from django.template import RequestContext From 3532ed7c1e39d9d339e871c0cf0e7c3263c42f1f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 9 Mar 2016 23:35:34 -0400 Subject: [PATCH 047/205] Update changelog. --- HISTORY.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 77dd5ed73c..c6227d6ac3 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -15,6 +15,8 @@ - Increase icon size by 10%. - Increase icon to text spacing to 3px. - Make document type delete time period optional. +- Fixed date locale handling in document properties, checkout and user detail views. +- Add new permission: checkout details view. 2.0.2 (2016-02-09) ================== From dd2cef50c8aafedd0837b1c0c9503cd6c709dca4 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 10 Mar 2016 03:21:20 -0400 Subject: [PATCH 048/205] Fix document preview view. --- mayan/apps/documents/forms.py | 2 +- mayan/apps/documents/views.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/documents/forms.py b/mayan/apps/documents/forms.py index a874daa6fb..d1c6126f94 100644 --- a/mayan/apps/documents/forms.py +++ b/mayan/apps/documents/forms.py @@ -47,7 +47,7 @@ class DocumentPageForm(DetailForm): class DocumentPreviewForm(forms.Form): def __init__(self, *args, **kwargs): - document = kwargs.pop('document', None) + document = kwargs.pop('instance', None) super(DocumentPreviewForm, self).__init__(*args, **kwargs) self.fields['preview'].initial = document try: diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index 5b58c10f41..f72dc3f28f 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -289,6 +289,7 @@ class DocumentPageView(SimpleView): class DocumentPreviewView(SingleObjectDetailView): + form_class = DocumentPreviewForm model = Document object_permission = permission_document_view @@ -301,7 +302,6 @@ class DocumentPreviewView(SingleObjectDetailView): def get_extra_context(self): return { - 'form': DocumentPreviewForm(document=self.get_object()), 'hide_labels': True, 'object': self.get_object(), 'title': _('Preview of document: %s') % self.get_object(), From e10ff8e8bdd8a5a80d2cadb697180a690d9fa4be Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 10 Mar 2016 03:34:50 -0400 Subject: [PATCH 049/205] Fix tests. --- mayan/apps/checkouts/tests/test_views.py | 12 ++++++++++-- mayan/apps/documents/tests/test_views.py | 19 +++++++++++++------ 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/mayan/apps/checkouts/tests/test_views.py b/mayan/apps/checkouts/tests/test_views.py index ce15996dd6..294f9f4438 100644 --- a/mayan/apps/checkouts/tests/test_views.py +++ b/mayan/apps/checkouts/tests/test_views.py @@ -15,7 +15,7 @@ from user_management.tests import ( from ..models import DocumentCheckout from ..permissions import ( permission_document_checkin, permission_document_checkin_override, - permission_document_checkout + permission_document_checkout, permission_document_checkout_detail_view ) @@ -59,6 +59,9 @@ class DocumentCheckoutViewTestCase(GenericDocumentViewTestCase): self.role.permissions.add( permission_document_checkin.stored_permission ) + self.role.permissions.add( + permission_document_checkout_detail_view.stored_permission + ) response = self.post( 'checkouts:checkin_document', args=(self.document.pk,), follow=True @@ -98,6 +101,9 @@ class DocumentCheckoutViewTestCase(GenericDocumentViewTestCase): self.role.permissions.add( permission_document_checkout.stored_permission ) + self.role.permissions.add( + permission_document_checkout_detail_view.stored_permission + ) response = self.post( 'checkouts:checkout_document', args=(self.document.pk,), data={ @@ -214,7 +220,9 @@ class DocumentCheckoutViewTestCase(GenericDocumentViewTestCase): self.role.permissions.add( permission_document_checkin_override.stored_permission ) - + self.role.permissions.add( + permission_document_checkout_detail_view.stored_permission + ) response = self.post( 'checkouts:checkin_document', args=(self.document.pk,), follow=True ) diff --git a/mayan/apps/documents/tests/test_views.py b/mayan/apps/documents/tests/test_views.py index a543585062..3b5c0e2aa3 100644 --- a/mayan/apps/documents/tests/test_views.py +++ b/mayan/apps/documents/tests/test_views.py @@ -19,12 +19,13 @@ from ..models import ( DeletedDocument, Document, DocumentType, HASH_FUNCTION ) from ..permissions import ( - permission_document_delete, permission_document_download, - permission_document_properties_edit, permission_document_restore, - permission_document_tools, permission_document_trash, - permission_document_type_create, permission_document_type_delete, - permission_document_type_edit, permission_document_type_view, - permission_document_view, permission_empty_trash + permission_document_create, permission_document_delete, + permission_document_download, permission_document_properties_edit, + permission_document_restore, permission_document_tools, + permission_document_trash, permission_document_type_create, + permission_document_type_delete, permission_document_type_edit, + permission_document_type_view, permission_document_view, + permission_empty_trash ) from .literals import ( @@ -247,6 +248,9 @@ class DocumentsViewsTestCase(GenericDocumentViewTestCase): self.role.permissions.add( permission_document_properties_edit.stored_permission ) + self.role.permissions.add( + permission_document_create.stored_permission + ) response = self.post( 'documents:document_document_type_edit', args=(self.document.pk,), @@ -303,6 +307,9 @@ class DocumentsViewsTestCase(GenericDocumentViewTestCase): self.role.permissions.add( permission_document_properties_edit.stored_permission ) + self.role.permissions.add( + permission_document_create.stored_permission + ) response = self.post( 'documents:document_multiple_document_type_edit', From 60b7ed6a6d574116d7a4c3014e02b611c5851268 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 10 Mar 2016 03:35:15 -0400 Subject: [PATCH 050/205] PEP8 cleanups --- mayan/apps/metadata/tests/test_views.py | 4 ++-- mayan/apps/sources/apps.py | 5 ----- mayan/apps/sources/tests/test_views.py | 6 +++--- mayan/apps/sources/views.py | 1 - mayan/apps/sources/wizards.py | 1 - 5 files changed, 5 insertions(+), 12 deletions(-) diff --git a/mayan/apps/metadata/tests/test_views.py b/mayan/apps/metadata/tests/test_views.py index 7ed9e8290c..9e0c71d7eb 100644 --- a/mayan/apps/metadata/tests/test_views.py +++ b/mayan/apps/metadata/tests/test_views.py @@ -229,7 +229,7 @@ class DocumentMetadataTestCase(GenericDocumentViewTestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document_2 = self.document_type.new_document( file_object=File(file_object) - ) + ) self.document.metadata.create(metadata_type=self.metadata_type) document_2.metadata.create(metadata_type=self.metadata_type) @@ -261,7 +261,7 @@ class DocumentMetadataTestCase(GenericDocumentViewTestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document_2 = self.document_type.new_document( file_object=File(file_object) - ) + ) response = self.post( 'metadata:metadata_multiple_add', data={ diff --git a/mayan/apps/sources/apps.py b/mayan/apps/sources/apps.py index df0f73c794..076e4206b5 100644 --- a/mayan/apps/sources/apps.py +++ b/mayan/apps/sources/apps.py @@ -1,6 +1,5 @@ from __future__ import absolute_import, unicode_literals -from django.apps import apps from django.utils.translation import ugettext_lazy as _ from kombu import Exchange, Queue @@ -40,10 +39,6 @@ class SourcesApp(MayanAppConfig): def ready(self): super(SourcesApp, self).ready() - Document = apps.get_model( - app_label='documents', model_name='Document' - ) - POP3Email = self.get_model('POP3Email') IMAPEmail = self.get_model('IMAPEmail') Source = self.get_model('Source') diff --git a/mayan/apps/sources/tests/test_views.py b/mayan/apps/sources/tests/test_views.py index 0239ecd286..be0d2fed47 100644 --- a/mayan/apps/sources/tests/test_views.py +++ b/mayan/apps/sources/tests/test_views.py @@ -36,7 +36,7 @@ class DocumentUploadTestCase(GenericDocumentViewTestCase): self.document.delete() def test_upload_wizard_without_permission(self): - logged_in = self.client.login( + self.client.login( username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD ) @@ -54,7 +54,7 @@ class DocumentUploadTestCase(GenericDocumentViewTestCase): self.assertEqual(Document.objects.count(), 0) def test_upload_wizard_with_permission(self): - logged_in = self.client.login( + self.client.login( username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD ) @@ -81,7 +81,7 @@ class DocumentUploadTestCase(GenericDocumentViewTestCase): permssion for the document type to the user """ - logged_in = self.client.login( + self.client.login( username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD ) diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index 56d3174533..04c2e88165 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -7,7 +7,6 @@ from django.core.urlresolvers import reverse, reverse_lazy from django.http import HttpResponseRedirect from django.shortcuts import render_to_response, get_object_or_404 from django.template import RequestContext -from django.utils.http import urlencode from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList diff --git a/mayan/apps/sources/wizards.py b/mayan/apps/sources/wizards.py index 23300b9eab..9f790566f4 100644 --- a/mayan/apps/sources/wizards.py +++ b/mayan/apps/sources/wizards.py @@ -10,7 +10,6 @@ from formtools.wizard.views import SessionWizardView from common.mixins import ViewPermissionCheckMixin from documents.forms import DocumentTypeSelectForm -from documents.permissions import permission_document_create from metadata.forms import MetadataFormSet from tags.forms import TagMultipleSelectionForm From ed2f2480e6f684eeb16d038d70717b3263546358 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 10 Mar 2016 03:39:24 -0400 Subject: [PATCH 051/205] Fix Dutch locale typo, close GitLab issue #256. Add placeholder for 2.1 release notes. --- docs/releases/2.1.rst | 67 ++++++++++++++++++++++++++++++++++++++++++ mayan/settings/base.py | 2 +- 2 files changed, 68 insertions(+), 1 deletion(-) create mode 100644 docs/releases/2.1.rst diff --git a/docs/releases/2.1.rst b/docs/releases/2.1.rst new file mode 100644 index 0000000000..fd49997944 --- /dev/null +++ b/docs/releases/2.1.rst @@ -0,0 +1,67 @@ +=============================== +Mayan EDMS v2.1 release notes +=============================== + +Released: April, 2016 + +What's new +========== + +- Add HTML tags stripping to the browser title generation template. + +Removals +-------- +* None + +Upgrading from a previous version +--------------------------------- + +Using PIP +~~~~~~~~~ + +Type in the console:: + + $ pip install -U mayan-edms + +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. + +Next upgrade/add the new requirements:: + + $ pip install --upgrade -r requirements.txt + +Common steps +~~~~~~~~~~~~ + +Migrate existing database schema with:: + + $ mayan-edms.py performupgrade + +Add new static media:: + + $ mayan-edms.py collectstatic --noinput + +The upgrade procedure is now complete. + + +Backward incompatible changes +============================= + +* None + +Bugs fixed or issues closed +=========================== + +* `GitLab issue #250 `_ Empty optional lookup metadata trigger validation error. + +.. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/mayan/settings/base.py b/mayan/settings/base.py index 2309cbed7e..aef56a55c2 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -166,7 +166,7 @@ LANGUAGES = ( ('hr', _('Croatian')), ('id', _('Indonesian')), ('it', _('Italian')), - ('nl', _('Dutch (Nethherlands)')), + ('nl', _('Dutch (Netherlands)')), ('pl', _('Polish')), ('pt', _('Portuguese')), ('pt-br', _('Portuguese (Brazil)')), From 452bd45407d7e406d01bec9842a718efc07e127e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 10 Mar 2016 05:20:49 -0400 Subject: [PATCH 052/205] Initial support for HTML5 uploads. GitLab issue #162. --- .../appearance/static/appearance/js/base.js | 9 + .../appearance/templates/appearance/base.html | 2 + .../appearance/generic_form_instance.html | 2 +- .../generic_multiform_subtemplate.html | 8 +- mayan/apps/sources/forms.py | 6 +- .../static/sources/packages/dropzone.css | 388 ++++ .../static/sources/packages/dropzone.js | 1767 +++++++++++++++++ mayan/apps/sources/views.py | 5 + 8 files changed, 2182 insertions(+), 5 deletions(-) create mode 100644 mayan/apps/sources/static/sources/packages/dropzone.css create mode 100644 mayan/apps/sources/static/sources/packages/dropzone.js diff --git a/mayan/apps/appearance/static/appearance/js/base.js b/mayan/apps/appearance/static/appearance/js/base.js index c049f84e2d..a926fa6b6e 100644 --- a/mayan/apps/appearance/static/appearance/js/base.js +++ b/mayan/apps/appearance/static/appearance/js/base.js @@ -114,4 +114,13 @@ jQuery(document).ready(function() { }); }, 3000); + + Dropzone.options.html5upload = { + paramName: 'source-file', + addRemoveLinks: true, + createImageThumbnails: false, + dictDefaultMessage: 'Drop files or click here to upload files', + dictCancelUpload: 'Cancel upload', + dictRemoveFile: 'Clear' + }; }); diff --git a/mayan/apps/appearance/templates/appearance/base.html b/mayan/apps/appearance/templates/appearance/base.html index 6f09a6b7da..2b8e581d63 100644 --- a/mayan/apps/appearance/templates/appearance/base.html +++ b/mayan/apps/appearance/templates/appearance/base.html @@ -27,6 +27,7 @@ + {% block stylesheets %}{% endblock %} @@ -167,6 +168,7 @@ + {% block javascript %}{% endblock %} {% endcompress %} diff --git a/mayan/apps/appearance/templates/appearance/generic_form_instance.html b/mayan/apps/appearance/templates/appearance/generic_form_instance.html index 4a60de4f58..abb976f164 100644 --- a/mayan/apps/appearance/templates/appearance/generic_form_instance.html +++ b/mayan/apps/appearance/templates/appearance/generic_form_instance.html @@ -35,7 +35,7 @@ {% for field in form.visible_fields %}
{# We display the label then the field for all except checkboxes #} - {% if field|widget_type != 'checkboxinput' %} + {% if field|widget_type != 'checkboxinput' and not field.field.widget.attrs.hidden %} {% if not hide_labels %}{{ field.label_tag }}{% if field.field.required and not read_only %} ({% trans 'required' %}){% endif %}{% endif %} {% endif %} diff --git a/mayan/apps/appearance/templates/appearance/generic_multiform_subtemplate.html b/mayan/apps/appearance/templates/appearance/generic_multiform_subtemplate.html index 22ba6d3772..43146c60ed 100644 --- a/mayan/apps/appearance/templates/appearance/generic_multiform_subtemplate.html +++ b/mayan/apps/appearance/templates/appearance/generic_multiform_subtemplate.html @@ -8,9 +8,9 @@
{% if is_multipart %} -
+ {% else %} - + {% endif %} {% for form_name, form in forms.items %} @@ -61,7 +61,9 @@ {% if not read_only %}
- + {% if not form_disable_submit %} + + {% endif %} {% if previous %}   {% if cancel_label %}{{ cancel_label }}{% else %}{% trans 'Cancel' %}{% endif %} diff --git a/mayan/apps/sources/forms.py b/mayan/apps/sources/forms.py index 2658396995..85eb997e6f 100644 --- a/mayan/apps/sources/forms.py +++ b/mayan/apps/sources/forms.py @@ -68,7 +68,11 @@ class StagingUploadForm(UploadBaseForm): class WebFormUploadForm(UploadBaseForm): - file = forms.FileField(label=_('File')) + file = forms.FileField( + label=_('File'), widget=forms.widgets.FileInput( + attrs={'class': 'hidden', 'hidden': True} + ) + ) class WebFormSetupForm(forms.ModelForm): diff --git a/mayan/apps/sources/static/sources/packages/dropzone.css b/mayan/apps/sources/static/sources/packages/dropzone.css new file mode 100644 index 0000000000..0494d1ccf4 --- /dev/null +++ b/mayan/apps/sources/static/sources/packages/dropzone.css @@ -0,0 +1,388 @@ +/* + * The MIT License + * Copyright (c) 2012 Matias Meno + */ +@-webkit-keyframes passing-through { + 0% { + opacity: 0; + -webkit-transform: translateY(40px); + -moz-transform: translateY(40px); + -ms-transform: translateY(40px); + -o-transform: translateY(40px); + transform: translateY(40px); } + 30%, 70% { + opacity: 1; + -webkit-transform: translateY(0px); + -moz-transform: translateY(0px); + -ms-transform: translateY(0px); + -o-transform: translateY(0px); + transform: translateY(0px); } + 100% { + opacity: 0; + -webkit-transform: translateY(-40px); + -moz-transform: translateY(-40px); + -ms-transform: translateY(-40px); + -o-transform: translateY(-40px); + transform: translateY(-40px); } } +@-moz-keyframes passing-through { + 0% { + opacity: 0; + -webkit-transform: translateY(40px); + -moz-transform: translateY(40px); + -ms-transform: translateY(40px); + -o-transform: translateY(40px); + transform: translateY(40px); } + 30%, 70% { + opacity: 1; + -webkit-transform: translateY(0px); + -moz-transform: translateY(0px); + -ms-transform: translateY(0px); + -o-transform: translateY(0px); + transform: translateY(0px); } + 100% { + opacity: 0; + -webkit-transform: translateY(-40px); + -moz-transform: translateY(-40px); + -ms-transform: translateY(-40px); + -o-transform: translateY(-40px); + transform: translateY(-40px); } } +@keyframes passing-through { + 0% { + opacity: 0; + -webkit-transform: translateY(40px); + -moz-transform: translateY(40px); + -ms-transform: translateY(40px); + -o-transform: translateY(40px); + transform: translateY(40px); } + 30%, 70% { + opacity: 1; + -webkit-transform: translateY(0px); + -moz-transform: translateY(0px); + -ms-transform: translateY(0px); + -o-transform: translateY(0px); + transform: translateY(0px); } + 100% { + opacity: 0; + -webkit-transform: translateY(-40px); + -moz-transform: translateY(-40px); + -ms-transform: translateY(-40px); + -o-transform: translateY(-40px); + transform: translateY(-40px); } } +@-webkit-keyframes slide-in { + 0% { + opacity: 0; + -webkit-transform: translateY(40px); + -moz-transform: translateY(40px); + -ms-transform: translateY(40px); + -o-transform: translateY(40px); + transform: translateY(40px); } + 30% { + opacity: 1; + -webkit-transform: translateY(0px); + -moz-transform: translateY(0px); + -ms-transform: translateY(0px); + -o-transform: translateY(0px); + transform: translateY(0px); } } +@-moz-keyframes slide-in { + 0% { + opacity: 0; + -webkit-transform: translateY(40px); + -moz-transform: translateY(40px); + -ms-transform: translateY(40px); + -o-transform: translateY(40px); + transform: translateY(40px); } + 30% { + opacity: 1; + -webkit-transform: translateY(0px); + -moz-transform: translateY(0px); + -ms-transform: translateY(0px); + -o-transform: translateY(0px); + transform: translateY(0px); } } +@keyframes slide-in { + 0% { + opacity: 0; + -webkit-transform: translateY(40px); + -moz-transform: translateY(40px); + -ms-transform: translateY(40px); + -o-transform: translateY(40px); + transform: translateY(40px); } + 30% { + opacity: 1; + -webkit-transform: translateY(0px); + -moz-transform: translateY(0px); + -ms-transform: translateY(0px); + -o-transform: translateY(0px); + transform: translateY(0px); } } +@-webkit-keyframes pulse { + 0% { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); } + 10% { + -webkit-transform: scale(1.1); + -moz-transform: scale(1.1); + -ms-transform: scale(1.1); + -o-transform: scale(1.1); + transform: scale(1.1); } + 20% { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); } } +@-moz-keyframes pulse { + 0% { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); } + 10% { + -webkit-transform: scale(1.1); + -moz-transform: scale(1.1); + -ms-transform: scale(1.1); + -o-transform: scale(1.1); + transform: scale(1.1); } + 20% { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); } } +@keyframes pulse { + 0% { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); } + 10% { + -webkit-transform: scale(1.1); + -moz-transform: scale(1.1); + -ms-transform: scale(1.1); + -o-transform: scale(1.1); + transform: scale(1.1); } + 20% { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); } } +.dropzone, .dropzone * { + box-sizing: border-box; } + +.dropzone { + min-height: 150px; + border: 2px solid rgba(0, 0, 0, 0.3); + background: white; + padding: 20px 20px; } + .dropzone.dz-clickable { + cursor: pointer; } + .dropzone.dz-clickable * { + cursor: default; } + .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * { + cursor: pointer; } + .dropzone.dz-started .dz-message { + display: none; } + .dropzone.dz-drag-hover { + border-style: solid; } + .dropzone.dz-drag-hover .dz-message { + opacity: 0.5; } + .dropzone .dz-message { + text-align: center; + margin: 2em 0; } + .dropzone .dz-preview { + position: relative; + display: inline-block; + vertical-align: top; + margin: 16px; + min-height: 100px; } + .dropzone .dz-preview:hover { + z-index: 1000; } + .dropzone .dz-preview:hover .dz-details { + opacity: 1; } + .dropzone .dz-preview.dz-file-preview .dz-image { + border-radius: 20px; + background: #999; + background: linear-gradient(to bottom, #eee, #ddd); } + .dropzone .dz-preview.dz-file-preview .dz-details { + opacity: 1; } + .dropzone .dz-preview.dz-image-preview { + background: white; } + .dropzone .dz-preview.dz-image-preview .dz-details { + -webkit-transition: opacity 0.2s linear; + -moz-transition: opacity 0.2s linear; + -ms-transition: opacity 0.2s linear; + -o-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; } + .dropzone .dz-preview .dz-remove { + font-size: 14px; + text-align: center; + display: block; + cursor: pointer; + border: none; } + .dropzone .dz-preview .dz-remove:hover { + text-decoration: underline; } + .dropzone .dz-preview:hover .dz-details { + opacity: 1; } + .dropzone .dz-preview .dz-details { + z-index: 20; + position: absolute; + top: 0; + left: 0; + opacity: 0; + font-size: 13px; + min-width: 100%; + max-width: 100%; + padding: 2em 1em; + text-align: center; + color: rgba(0, 0, 0, 0.9); + line-height: 150%; } + .dropzone .dz-preview .dz-details .dz-size { + margin-bottom: 1em; + font-size: 16px; } + .dropzone .dz-preview .dz-details .dz-filename { + white-space: nowrap; } + .dropzone .dz-preview .dz-details .dz-filename:hover span { + border: 1px solid rgba(200, 200, 200, 0.8); + background-color: rgba(255, 255, 255, 0.8); } + .dropzone .dz-preview .dz-details .dz-filename:not(:hover) { + overflow: hidden; + text-overflow: ellipsis; } + .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span { + border: 1px solid transparent; } + .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span { + background-color: rgba(255, 255, 255, 0.4); + padding: 0 0.4em; + border-radius: 3px; } + .dropzone .dz-preview:hover .dz-image img { + -webkit-transform: scale(1.05, 1.05); + -moz-transform: scale(1.05, 1.05); + -ms-transform: scale(1.05, 1.05); + -o-transform: scale(1.05, 1.05); + transform: scale(1.05, 1.05); + -webkit-filter: blur(8px); + filter: blur(8px); } + .dropzone .dz-preview .dz-image { + border-radius: 20px; + overflow: hidden; + width: 120px; + height: 120px; + position: relative; + display: block; + z-index: 10; } + .dropzone .dz-preview .dz-image img { + display: block; } + .dropzone .dz-preview.dz-success .dz-success-mark { + -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); + -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); + -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); + -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); + animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); } + .dropzone .dz-preview.dz-error .dz-error-mark { + opacity: 1; + -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); + -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); + -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); + -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); + animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); } + .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark { + pointer-events: none; + opacity: 0; + z-index: 500; + position: absolute; + display: block; + top: 50%; + left: 50%; + margin-left: -27px; + margin-top: -27px; } + .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg { + display: block; + width: 54px; + height: 54px; } + .dropzone .dz-preview.dz-processing .dz-progress { + opacity: 1; + -webkit-transition: all 0.2s linear; + -moz-transition: all 0.2s linear; + -ms-transition: all 0.2s linear; + -o-transition: all 0.2s linear; + transition: all 0.2s linear; } + .dropzone .dz-preview.dz-complete .dz-progress { + opacity: 0; + -webkit-transition: opacity 0.4s ease-in; + -moz-transition: opacity 0.4s ease-in; + -ms-transition: opacity 0.4s ease-in; + -o-transition: opacity 0.4s ease-in; + transition: opacity 0.4s ease-in; } + .dropzone .dz-preview:not(.dz-processing) .dz-progress { + -webkit-animation: pulse 6s ease infinite; + -moz-animation: pulse 6s ease infinite; + -ms-animation: pulse 6s ease infinite; + -o-animation: pulse 6s ease infinite; + animation: pulse 6s ease infinite; } + .dropzone .dz-preview .dz-progress { + opacity: 1; + z-index: 1000; + pointer-events: none; + position: absolute; + height: 16px; + left: 50%; + top: 50%; + margin-top: -8px; + width: 80px; + margin-left: -40px; + background: rgba(255, 255, 255, 0.9); + -webkit-transform: scale(1); + border-radius: 8px; + overflow: hidden; } + .dropzone .dz-preview .dz-progress .dz-upload { + background: #333; + background: linear-gradient(to bottom, #666, #444); + position: absolute; + top: 0; + left: 0; + bottom: 0; + width: 0; + -webkit-transition: width 300ms ease-in-out; + -moz-transition: width 300ms ease-in-out; + -ms-transition: width 300ms ease-in-out; + -o-transition: width 300ms ease-in-out; + transition: width 300ms ease-in-out; } + .dropzone .dz-preview.dz-error .dz-error-message { + display: block; } + .dropzone .dz-preview.dz-error:hover .dz-error-message { + opacity: 1; + pointer-events: auto; } + .dropzone .dz-preview .dz-error-message { + pointer-events: none; + z-index: 1000; + position: absolute; + display: block; + display: none; + opacity: 0; + -webkit-transition: opacity 0.3s ease; + -moz-transition: opacity 0.3s ease; + -ms-transition: opacity 0.3s ease; + -o-transition: opacity 0.3s ease; + transition: opacity 0.3s ease; + border-radius: 8px; + font-size: 13px; + top: 130px; + left: -10px; + width: 140px; + background: #be2626; + background: linear-gradient(to bottom, #be2626, #a92222); + padding: 0.5em 1.2em; + color: white; } + .dropzone .dz-preview .dz-error-message:after { + content: ''; + position: absolute; + top: -6px; + left: 64px; + width: 0; + height: 0; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 6px solid #be2626; } diff --git a/mayan/apps/sources/static/sources/packages/dropzone.js b/mayan/apps/sources/static/sources/packages/dropzone.js new file mode 100644 index 0000000000..895b055a8f --- /dev/null +++ b/mayan/apps/sources/static/sources/packages/dropzone.js @@ -0,0 +1,1767 @@ + +/* + * + * More info at [www.dropzonejs.com](http://www.dropzonejs.com) + * + * Copyright (c) 2012, Matias Meno + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * 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. + * + */ + +(function() { + var Dropzone, Emitter, camelize, contentLoaded, detectVerticalSquash, drawImageIOSFix, noop, without, + __slice = [].slice, + __hasProp = {}.hasOwnProperty, + __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; + + noop = function() {}; + + Emitter = (function() { + function Emitter() {} + + Emitter.prototype.addEventListener = Emitter.prototype.on; + + Emitter.prototype.on = function(event, fn) { + this._callbacks = this._callbacks || {}; + if (!this._callbacks[event]) { + this._callbacks[event] = []; + } + this._callbacks[event].push(fn); + return this; + }; + + Emitter.prototype.emit = function() { + var args, callback, callbacks, event, _i, _len; + event = arguments[0], args = 2 <= arguments.length ? __slice.call(arguments, 1) : []; + this._callbacks = this._callbacks || {}; + callbacks = this._callbacks[event]; + if (callbacks) { + for (_i = 0, _len = callbacks.length; _i < _len; _i++) { + callback = callbacks[_i]; + callback.apply(this, args); + } + } + return this; + }; + + Emitter.prototype.removeListener = Emitter.prototype.off; + + Emitter.prototype.removeAllListeners = Emitter.prototype.off; + + Emitter.prototype.removeEventListener = Emitter.prototype.off; + + Emitter.prototype.off = function(event, fn) { + var callback, callbacks, i, _i, _len; + if (!this._callbacks || arguments.length === 0) { + this._callbacks = {}; + return this; + } + callbacks = this._callbacks[event]; + if (!callbacks) { + return this; + } + if (arguments.length === 1) { + delete this._callbacks[event]; + return this; + } + for (i = _i = 0, _len = callbacks.length; _i < _len; i = ++_i) { + callback = callbacks[i]; + if (callback === fn) { + callbacks.splice(i, 1); + break; + } + } + return this; + }; + + return Emitter; + + })(); + + Dropzone = (function(_super) { + var extend, resolveOption; + + __extends(Dropzone, _super); + + Dropzone.prototype.Emitter = Emitter; + + + /* + This is a list of all available events you can register on a dropzone object. + + You can register an event handler like this: + + dropzone.on("dragEnter", function() { }); + */ + + Dropzone.prototype.events = ["drop", "dragstart", "dragend", "dragenter", "dragover", "dragleave", "addedfile", "addedfiles", "removedfile", "thumbnail", "error", "errormultiple", "processing", "processingmultiple", "uploadprogress", "totaluploadprogress", "sending", "sendingmultiple", "success", "successmultiple", "canceled", "canceledmultiple", "complete", "completemultiple", "reset", "maxfilesexceeded", "maxfilesreached", "queuecomplete"]; + + Dropzone.prototype.defaultOptions = { + url: null, + method: "post", + withCredentials: false, + parallelUploads: 2, + uploadMultiple: false, + maxFilesize: 256, + paramName: "file", + createImageThumbnails: true, + maxThumbnailFilesize: 10, + thumbnailWidth: 120, + thumbnailHeight: 120, + filesizeBase: 1000, + maxFiles: null, + params: {}, + clickable: true, + ignoreHiddenFiles: true, + acceptedFiles: null, + acceptedMimeTypes: null, + autoProcessQueue: true, + autoQueue: true, + addRemoveLinks: false, + previewsContainer: null, + hiddenInputContainer: "body", + capture: null, + renameFilename: null, + dictDefaultMessage: "Drop files here to upload", + dictFallbackMessage: "Your browser does not support drag'n'drop file uploads.", + dictFallbackText: "Please use the fallback form below to upload your files like in the olden days.", + dictFileTooBig: "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.", + dictInvalidFileType: "You can't upload files of this type.", + dictResponseError: "Server responded with {{statusCode}} code.", + dictCancelUpload: "Cancel upload", + dictCancelUploadConfirmation: "Are you sure you want to cancel this upload?", + dictRemoveFile: "Remove file", + dictRemoveFileConfirmation: null, + dictMaxFilesExceeded: "You can not upload any more files.", + accept: function(file, done) { + return done(); + }, + init: function() { + return noop; + }, + forceFallback: false, + fallback: function() { + var child, messageElement, span, _i, _len, _ref; + this.element.className = "" + this.element.className + " dz-browser-not-supported"; + _ref = this.element.getElementsByTagName("div"); + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + child = _ref[_i]; + if (/(^| )dz-message($| )/.test(child.className)) { + messageElement = child; + child.className = "dz-message"; + continue; + } + } + if (!messageElement) { + messageElement = Dropzone.createElement("
"); + this.element.appendChild(messageElement); + } + span = messageElement.getElementsByTagName("span")[0]; + if (span) { + if (span.textContent != null) { + span.textContent = this.options.dictFallbackMessage; + } else if (span.innerText != null) { + span.innerText = this.options.dictFallbackMessage; + } + } + return this.element.appendChild(this.getFallbackForm()); + }, + resize: function(file) { + var info, srcRatio, trgRatio; + info = { + srcX: 0, + srcY: 0, + srcWidth: file.width, + srcHeight: file.height + }; + srcRatio = file.width / file.height; + info.optWidth = this.options.thumbnailWidth; + info.optHeight = this.options.thumbnailHeight; + if ((info.optWidth == null) && (info.optHeight == null)) { + info.optWidth = info.srcWidth; + info.optHeight = info.srcHeight; + } else if (info.optWidth == null) { + info.optWidth = srcRatio * info.optHeight; + } else if (info.optHeight == null) { + info.optHeight = (1 / srcRatio) * info.optWidth; + } + trgRatio = info.optWidth / info.optHeight; + if (file.height < info.optHeight || file.width < info.optWidth) { + info.trgHeight = info.srcHeight; + info.trgWidth = info.srcWidth; + } else { + if (srcRatio > trgRatio) { + info.srcHeight = file.height; + info.srcWidth = info.srcHeight * trgRatio; + } else { + info.srcWidth = file.width; + info.srcHeight = info.srcWidth / trgRatio; + } + } + info.srcX = (file.width - info.srcWidth) / 2; + info.srcY = (file.height - info.srcHeight) / 2; + return info; + }, + + /* + Those functions register themselves to the events on init and handle all + the user interface specific stuff. Overwriting them won't break the upload + but can break the way it's displayed. + You can overwrite them if you don't like the default behavior. If you just + want to add an additional event handler, register it on the dropzone object + and don't overwrite those options. + */ + drop: function(e) { + return this.element.classList.remove("dz-drag-hover"); + }, + dragstart: noop, + dragend: function(e) { + return this.element.classList.remove("dz-drag-hover"); + }, + dragenter: function(e) { + return this.element.classList.add("dz-drag-hover"); + }, + dragover: function(e) { + return this.element.classList.add("dz-drag-hover"); + }, + dragleave: function(e) { + return this.element.classList.remove("dz-drag-hover"); + }, + paste: noop, + reset: function() { + return this.element.classList.remove("dz-started"); + }, + addedfile: function(file) { + var node, removeFileEvent, removeLink, _i, _j, _k, _len, _len1, _len2, _ref, _ref1, _ref2, _results; + if (this.element === this.previewsContainer) { + this.element.classList.add("dz-started"); + } + if (this.previewsContainer) { + file.previewElement = Dropzone.createElement(this.options.previewTemplate.trim()); + file.previewTemplate = file.previewElement; + this.previewsContainer.appendChild(file.previewElement); + _ref = file.previewElement.querySelectorAll("[data-dz-name]"); + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + node = _ref[_i]; + node.textContent = this._renameFilename(file.name); + } + _ref1 = file.previewElement.querySelectorAll("[data-dz-size]"); + for (_j = 0, _len1 = _ref1.length; _j < _len1; _j++) { + node = _ref1[_j]; + node.innerHTML = this.filesize(file.size); + } + if (this.options.addRemoveLinks) { + file._removeLink = Dropzone.createElement("
" + this.options.dictRemoveFile + ""); + file.previewElement.appendChild(file._removeLink); + } + removeFileEvent = (function(_this) { + return function(e) { + e.preventDefault(); + e.stopPropagation(); + if (file.status === Dropzone.UPLOADING) { + return Dropzone.confirm(_this.options.dictCancelUploadConfirmation, function() { + return _this.removeFile(file); + }); + } else { + if (_this.options.dictRemoveFileConfirmation) { + return Dropzone.confirm(_this.options.dictRemoveFileConfirmation, function() { + return _this.removeFile(file); + }); + } else { + return _this.removeFile(file); + } + } + }; + })(this); + _ref2 = file.previewElement.querySelectorAll("[data-dz-remove]"); + _results = []; + for (_k = 0, _len2 = _ref2.length; _k < _len2; _k++) { + removeLink = _ref2[_k]; + _results.push(removeLink.addEventListener("click", removeFileEvent)); + } + return _results; + } + }, + removedfile: function(file) { + var _ref; + if (file.previewElement) { + if ((_ref = file.previewElement) != null) { + _ref.parentNode.removeChild(file.previewElement); + } + } + return this._updateMaxFilesReachedClass(); + }, + thumbnail: function(file, dataUrl) { + var thumbnailElement, _i, _len, _ref; + if (file.previewElement) { + file.previewElement.classList.remove("dz-file-preview"); + _ref = file.previewElement.querySelectorAll("[data-dz-thumbnail]"); + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + thumbnailElement = _ref[_i]; + thumbnailElement.alt = file.name; + thumbnailElement.src = dataUrl; + } + return setTimeout(((function(_this) { + return function() { + return file.previewElement.classList.add("dz-image-preview"); + }; + })(this)), 1); + } + }, + error: function(file, message) { + var node, _i, _len, _ref, _results; + if (file.previewElement) { + file.previewElement.classList.add("dz-error"); + if (typeof message !== "String" && message.error) { + message = message.error; + } + _ref = file.previewElement.querySelectorAll("[data-dz-errormessage]"); + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + node = _ref[_i]; + _results.push(node.textContent = message); + } + return _results; + } + }, + errormultiple: noop, + processing: function(file) { + if (file.previewElement) { + file.previewElement.classList.add("dz-processing"); + if (file._removeLink) { + return file._removeLink.textContent = this.options.dictCancelUpload; + } + } + }, + processingmultiple: noop, + uploadprogress: function(file, progress, bytesSent) { + var node, _i, _len, _ref, _results; + if (file.previewElement) { + _ref = file.previewElement.querySelectorAll("[data-dz-uploadprogress]"); + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + node = _ref[_i]; + if (node.nodeName === 'PROGRESS') { + _results.push(node.value = progress); + } else { + _results.push(node.style.width = "" + progress + "%"); + } + } + return _results; + } + }, + totaluploadprogress: noop, + sending: noop, + sendingmultiple: noop, + success: function(file) { + if (file.previewElement) { + return file.previewElement.classList.add("dz-success"); + } + }, + successmultiple: noop, + canceled: function(file) { + return this.emit("error", file, "Upload canceled."); + }, + canceledmultiple: noop, + complete: function(file) { + if (file._removeLink) { + file._removeLink.textContent = this.options.dictRemoveFile; + } + if (file.previewElement) { + return file.previewElement.classList.add("dz-complete"); + } + }, + completemultiple: noop, + maxfilesexceeded: noop, + maxfilesreached: noop, + queuecomplete: noop, + addedfiles: noop, + previewTemplate: "
\n
\n
\n
\n
\n
\n
\n
\n
\n \n Check\n \n \n \n \n \n
\n
\n \n Error\n \n \n \n \n \n \n \n
\n
" + }; + + extend = function() { + var key, object, objects, target, val, _i, _len; + target = arguments[0], objects = 2 <= arguments.length ? __slice.call(arguments, 1) : []; + for (_i = 0, _len = objects.length; _i < _len; _i++) { + object = objects[_i]; + for (key in object) { + val = object[key]; + target[key] = val; + } + } + return target; + }; + + function Dropzone(element, options) { + var elementOptions, fallback, _ref; + this.element = element; + this.version = Dropzone.version; + this.defaultOptions.previewTemplate = this.defaultOptions.previewTemplate.replace(/\n*/g, ""); + this.clickableElements = []; + this.listeners = []; + this.files = []; + if (typeof this.element === "string") { + this.element = document.querySelector(this.element); + } + if (!(this.element && (this.element.nodeType != null))) { + throw new Error("Invalid dropzone element."); + } + if (this.element.dropzone) { + throw new Error("Dropzone already attached."); + } + Dropzone.instances.push(this); + this.element.dropzone = this; + elementOptions = (_ref = Dropzone.optionsForElement(this.element)) != null ? _ref : {}; + this.options = extend({}, this.defaultOptions, elementOptions, options != null ? options : {}); + if (this.options.forceFallback || !Dropzone.isBrowserSupported()) { + return this.options.fallback.call(this); + } + if (this.options.url == null) { + this.options.url = this.element.getAttribute("action"); + } + if (!this.options.url) { + throw new Error("No URL provided."); + } + if (this.options.acceptedFiles && this.options.acceptedMimeTypes) { + throw new Error("You can't provide both 'acceptedFiles' and 'acceptedMimeTypes'. 'acceptedMimeTypes' is deprecated."); + } + if (this.options.acceptedMimeTypes) { + this.options.acceptedFiles = this.options.acceptedMimeTypes; + delete this.options.acceptedMimeTypes; + } + this.options.method = this.options.method.toUpperCase(); + if ((fallback = this.getExistingFallback()) && fallback.parentNode) { + fallback.parentNode.removeChild(fallback); + } + if (this.options.previewsContainer !== false) { + if (this.options.previewsContainer) { + this.previewsContainer = Dropzone.getElement(this.options.previewsContainer, "previewsContainer"); + } else { + this.previewsContainer = this.element; + } + } + if (this.options.clickable) { + if (this.options.clickable === true) { + this.clickableElements = [this.element]; + } else { + this.clickableElements = Dropzone.getElements(this.options.clickable, "clickable"); + } + } + this.init(); + } + + Dropzone.prototype.getAcceptedFiles = function() { + var file, _i, _len, _ref, _results; + _ref = this.files; + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + file = _ref[_i]; + if (file.accepted) { + _results.push(file); + } + } + return _results; + }; + + Dropzone.prototype.getRejectedFiles = function() { + var file, _i, _len, _ref, _results; + _ref = this.files; + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + file = _ref[_i]; + if (!file.accepted) { + _results.push(file); + } + } + return _results; + }; + + Dropzone.prototype.getFilesWithStatus = function(status) { + var file, _i, _len, _ref, _results; + _ref = this.files; + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + file = _ref[_i]; + if (file.status === status) { + _results.push(file); + } + } + return _results; + }; + + Dropzone.prototype.getQueuedFiles = function() { + return this.getFilesWithStatus(Dropzone.QUEUED); + }; + + Dropzone.prototype.getUploadingFiles = function() { + return this.getFilesWithStatus(Dropzone.UPLOADING); + }; + + Dropzone.prototype.getAddedFiles = function() { + return this.getFilesWithStatus(Dropzone.ADDED); + }; + + Dropzone.prototype.getActiveFiles = function() { + var file, _i, _len, _ref, _results; + _ref = this.files; + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + file = _ref[_i]; + if (file.status === Dropzone.UPLOADING || file.status === Dropzone.QUEUED) { + _results.push(file); + } + } + return _results; + }; + + Dropzone.prototype.init = function() { + var eventName, noPropagation, setupHiddenFileInput, _i, _len, _ref, _ref1; + if (this.element.tagName === "form") { + this.element.setAttribute("enctype", "multipart/form-data"); + } + if (this.element.classList.contains("dropzone") && !this.element.querySelector(".dz-message")) { + this.element.appendChild(Dropzone.createElement("
" + this.options.dictDefaultMessage + "
")); + } + if (this.clickableElements.length) { + setupHiddenFileInput = (function(_this) { + return function() { + if (_this.hiddenFileInput) { + _this.hiddenFileInput.parentNode.removeChild(_this.hiddenFileInput); + } + _this.hiddenFileInput = document.createElement("input"); + _this.hiddenFileInput.setAttribute("type", "file"); + if ((_this.options.maxFiles == null) || _this.options.maxFiles > 1) { + _this.hiddenFileInput.setAttribute("multiple", "multiple"); + } + _this.hiddenFileInput.className = "dz-hidden-input"; + if (_this.options.acceptedFiles != null) { + _this.hiddenFileInput.setAttribute("accept", _this.options.acceptedFiles); + } + if (_this.options.capture != null) { + _this.hiddenFileInput.setAttribute("capture", _this.options.capture); + } + _this.hiddenFileInput.style.visibility = "hidden"; + _this.hiddenFileInput.style.position = "absolute"; + _this.hiddenFileInput.style.top = "0"; + _this.hiddenFileInput.style.left = "0"; + _this.hiddenFileInput.style.height = "0"; + _this.hiddenFileInput.style.width = "0"; + document.querySelector(_this.options.hiddenInputContainer).appendChild(_this.hiddenFileInput); + return _this.hiddenFileInput.addEventListener("change", function() { + var file, files, _i, _len; + files = _this.hiddenFileInput.files; + if (files.length) { + for (_i = 0, _len = files.length; _i < _len; _i++) { + file = files[_i]; + _this.addFile(file); + } + } + _this.emit("addedfiles", files); + return setupHiddenFileInput(); + }); + }; + })(this); + setupHiddenFileInput(); + } + this.URL = (_ref = window.URL) != null ? _ref : window.webkitURL; + _ref1 = this.events; + for (_i = 0, _len = _ref1.length; _i < _len; _i++) { + eventName = _ref1[_i]; + this.on(eventName, this.options[eventName]); + } + this.on("uploadprogress", (function(_this) { + return function() { + return _this.updateTotalUploadProgress(); + }; + })(this)); + this.on("removedfile", (function(_this) { + return function() { + return _this.updateTotalUploadProgress(); + }; + })(this)); + this.on("canceled", (function(_this) { + return function(file) { + return _this.emit("complete", file); + }; + })(this)); + this.on("complete", (function(_this) { + return function(file) { + if (_this.getAddedFiles().length === 0 && _this.getUploadingFiles().length === 0 && _this.getQueuedFiles().length === 0) { + return setTimeout((function() { + return _this.emit("queuecomplete"); + }), 0); + } + }; + })(this)); + noPropagation = function(e) { + e.stopPropagation(); + if (e.preventDefault) { + return e.preventDefault(); + } else { + return e.returnValue = false; + } + }; + this.listeners = [ + { + element: this.element, + events: { + "dragstart": (function(_this) { + return function(e) { + return _this.emit("dragstart", e); + }; + })(this), + "dragenter": (function(_this) { + return function(e) { + noPropagation(e); + return _this.emit("dragenter", e); + }; + })(this), + "dragover": (function(_this) { + return function(e) { + var efct; + try { + efct = e.dataTransfer.effectAllowed; + } catch (_error) {} + e.dataTransfer.dropEffect = 'move' === efct || 'linkMove' === efct ? 'move' : 'copy'; + noPropagation(e); + return _this.emit("dragover", e); + }; + })(this), + "dragleave": (function(_this) { + return function(e) { + return _this.emit("dragleave", e); + }; + })(this), + "drop": (function(_this) { + return function(e) { + noPropagation(e); + return _this.drop(e); + }; + })(this), + "dragend": (function(_this) { + return function(e) { + return _this.emit("dragend", e); + }; + })(this) + } + } + ]; + this.clickableElements.forEach((function(_this) { + return function(clickableElement) { + return _this.listeners.push({ + element: clickableElement, + events: { + "click": function(evt) { + if ((clickableElement !== _this.element) || (evt.target === _this.element || Dropzone.elementInside(evt.target, _this.element.querySelector(".dz-message")))) { + _this.hiddenFileInput.click(); + } + return true; + } + } + }); + }; + })(this)); + this.enable(); + return this.options.init.call(this); + }; + + Dropzone.prototype.destroy = function() { + var _ref; + this.disable(); + this.removeAllFiles(true); + if ((_ref = this.hiddenFileInput) != null ? _ref.parentNode : void 0) { + this.hiddenFileInput.parentNode.removeChild(this.hiddenFileInput); + this.hiddenFileInput = null; + } + delete this.element.dropzone; + return Dropzone.instances.splice(Dropzone.instances.indexOf(this), 1); + }; + + Dropzone.prototype.updateTotalUploadProgress = function() { + var activeFiles, file, totalBytes, totalBytesSent, totalUploadProgress, _i, _len, _ref; + totalBytesSent = 0; + totalBytes = 0; + activeFiles = this.getActiveFiles(); + if (activeFiles.length) { + _ref = this.getActiveFiles(); + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + file = _ref[_i]; + totalBytesSent += file.upload.bytesSent; + totalBytes += file.upload.total; + } + totalUploadProgress = 100 * totalBytesSent / totalBytes; + } else { + totalUploadProgress = 100; + } + return this.emit("totaluploadprogress", totalUploadProgress, totalBytes, totalBytesSent); + }; + + Dropzone.prototype._getParamName = function(n) { + if (typeof this.options.paramName === "function") { + return this.options.paramName(n); + } else { + return "" + this.options.paramName + (this.options.uploadMultiple ? "[" + n + "]" : ""); + } + }; + + Dropzone.prototype._renameFilename = function(name) { + if (typeof this.options.renameFilename !== "function") { + return name; + } + return this.options.renameFilename(name); + }; + + Dropzone.prototype.getFallbackForm = function() { + var existingFallback, fields, fieldsString, form; + if (existingFallback = this.getExistingFallback()) { + return existingFallback; + } + fieldsString = "
"; + if (this.options.dictFallbackText) { + fieldsString += "

" + this.options.dictFallbackText + "

"; + } + fieldsString += "
"; + fields = Dropzone.createElement(fieldsString); + if (this.element.tagName !== "FORM") { + form = Dropzone.createElement(""); + form.appendChild(fields); + } else { + this.element.setAttribute("enctype", "multipart/form-data"); + this.element.setAttribute("method", this.options.method); + } + return form != null ? form : fields; + }; + + Dropzone.prototype.getExistingFallback = function() { + var fallback, getFallback, tagName, _i, _len, _ref; + getFallback = function(elements) { + var el, _i, _len; + for (_i = 0, _len = elements.length; _i < _len; _i++) { + el = elements[_i]; + if (/(^| )fallback($| )/.test(el.className)) { + return el; + } + } + }; + _ref = ["div", "form"]; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + tagName = _ref[_i]; + if (fallback = getFallback(this.element.getElementsByTagName(tagName))) { + return fallback; + } + } + }; + + Dropzone.prototype.setupEventListeners = function() { + var elementListeners, event, listener, _i, _len, _ref, _results; + _ref = this.listeners; + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + elementListeners = _ref[_i]; + _results.push((function() { + var _ref1, _results1; + _ref1 = elementListeners.events; + _results1 = []; + for (event in _ref1) { + listener = _ref1[event]; + _results1.push(elementListeners.element.addEventListener(event, listener, false)); + } + return _results1; + })()); + } + return _results; + }; + + Dropzone.prototype.removeEventListeners = function() { + var elementListeners, event, listener, _i, _len, _ref, _results; + _ref = this.listeners; + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + elementListeners = _ref[_i]; + _results.push((function() { + var _ref1, _results1; + _ref1 = elementListeners.events; + _results1 = []; + for (event in _ref1) { + listener = _ref1[event]; + _results1.push(elementListeners.element.removeEventListener(event, listener, false)); + } + return _results1; + })()); + } + return _results; + }; + + Dropzone.prototype.disable = function() { + var file, _i, _len, _ref, _results; + this.clickableElements.forEach(function(element) { + return element.classList.remove("dz-clickable"); + }); + this.removeEventListeners(); + _ref = this.files; + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + file = _ref[_i]; + _results.push(this.cancelUpload(file)); + } + return _results; + }; + + Dropzone.prototype.enable = function() { + this.clickableElements.forEach(function(element) { + return element.classList.add("dz-clickable"); + }); + return this.setupEventListeners(); + }; + + Dropzone.prototype.filesize = function(size) { + var cutoff, i, selectedSize, selectedUnit, unit, units, _i, _len; + selectedSize = 0; + selectedUnit = "b"; + if (size > 0) { + units = ['TB', 'GB', 'MB', 'KB', 'b']; + for (i = _i = 0, _len = units.length; _i < _len; i = ++_i) { + unit = units[i]; + cutoff = Math.pow(this.options.filesizeBase, 4 - i) / 10; + if (size >= cutoff) { + selectedSize = size / Math.pow(this.options.filesizeBase, 4 - i); + selectedUnit = unit; + break; + } + } + selectedSize = Math.round(10 * selectedSize) / 10; + } + return "" + selectedSize + " " + selectedUnit; + }; + + Dropzone.prototype._updateMaxFilesReachedClass = function() { + if ((this.options.maxFiles != null) && this.getAcceptedFiles().length >= this.options.maxFiles) { + if (this.getAcceptedFiles().length === this.options.maxFiles) { + this.emit('maxfilesreached', this.files); + } + return this.element.classList.add("dz-max-files-reached"); + } else { + return this.element.classList.remove("dz-max-files-reached"); + } + }; + + Dropzone.prototype.drop = function(e) { + var files, items; + if (!e.dataTransfer) { + return; + } + this.emit("drop", e); + files = e.dataTransfer.files; + this.emit("addedfiles", files); + if (files.length) { + items = e.dataTransfer.items; + if (items && items.length && (items[0].webkitGetAsEntry != null)) { + this._addFilesFromItems(items); + } else { + this.handleFiles(files); + } + } + }; + + Dropzone.prototype.paste = function(e) { + var items, _ref; + if ((e != null ? (_ref = e.clipboardData) != null ? _ref.items : void 0 : void 0) == null) { + return; + } + this.emit("paste", e); + items = e.clipboardData.items; + if (items.length) { + return this._addFilesFromItems(items); + } + }; + + Dropzone.prototype.handleFiles = function(files) { + var file, _i, _len, _results; + _results = []; + for (_i = 0, _len = files.length; _i < _len; _i++) { + file = files[_i]; + _results.push(this.addFile(file)); + } + return _results; + }; + + Dropzone.prototype._addFilesFromItems = function(items) { + var entry, item, _i, _len, _results; + _results = []; + for (_i = 0, _len = items.length; _i < _len; _i++) { + item = items[_i]; + if ((item.webkitGetAsEntry != null) && (entry = item.webkitGetAsEntry())) { + if (entry.isFile) { + _results.push(this.addFile(item.getAsFile())); + } else if (entry.isDirectory) { + _results.push(this._addFilesFromDirectory(entry, entry.name)); + } else { + _results.push(void 0); + } + } else if (item.getAsFile != null) { + if ((item.kind == null) || item.kind === "file") { + _results.push(this.addFile(item.getAsFile())); + } else { + _results.push(void 0); + } + } else { + _results.push(void 0); + } + } + return _results; + }; + + Dropzone.prototype._addFilesFromDirectory = function(directory, path) { + var dirReader, errorHandler, readEntries; + dirReader = directory.createReader(); + errorHandler = function(error) { + return typeof console !== "undefined" && console !== null ? typeof console.log === "function" ? console.log(error) : void 0 : void 0; + }; + readEntries = (function(_this) { + return function() { + return dirReader.readEntries(function(entries) { + var entry, _i, _len; + if (entries.length > 0) { + for (_i = 0, _len = entries.length; _i < _len; _i++) { + entry = entries[_i]; + if (entry.isFile) { + entry.file(function(file) { + if (_this.options.ignoreHiddenFiles && file.name.substring(0, 1) === '.') { + return; + } + file.fullPath = "" + path + "/" + file.name; + return _this.addFile(file); + }); + } else if (entry.isDirectory) { + _this._addFilesFromDirectory(entry, "" + path + "/" + entry.name); + } + } + readEntries(); + } + return null; + }, errorHandler); + }; + })(this); + return readEntries(); + }; + + Dropzone.prototype.accept = function(file, done) { + if (file.size > this.options.maxFilesize * 1024 * 1024) { + return done(this.options.dictFileTooBig.replace("{{filesize}}", Math.round(file.size / 1024 / 10.24) / 100).replace("{{maxFilesize}}", this.options.maxFilesize)); + } else if (!Dropzone.isValidFile(file, this.options.acceptedFiles)) { + return done(this.options.dictInvalidFileType); + } else if ((this.options.maxFiles != null) && this.getAcceptedFiles().length >= this.options.maxFiles) { + done(this.options.dictMaxFilesExceeded.replace("{{maxFiles}}", this.options.maxFiles)); + return this.emit("maxfilesexceeded", file); + } else { + return this.options.accept.call(this, file, done); + } + }; + + Dropzone.prototype.addFile = function(file) { + file.upload = { + progress: 0, + total: file.size, + bytesSent: 0 + }; + this.files.push(file); + file.status = Dropzone.ADDED; + this.emit("addedfile", file); + this._enqueueThumbnail(file); + return this.accept(file, (function(_this) { + return function(error) { + if (error) { + file.accepted = false; + _this._errorProcessing([file], error); + } else { + file.accepted = true; + if (_this.options.autoQueue) { + _this.enqueueFile(file); + } + } + return _this._updateMaxFilesReachedClass(); + }; + })(this)); + }; + + Dropzone.prototype.enqueueFiles = function(files) { + var file, _i, _len; + for (_i = 0, _len = files.length; _i < _len; _i++) { + file = files[_i]; + this.enqueueFile(file); + } + return null; + }; + + Dropzone.prototype.enqueueFile = function(file) { + if (file.status === Dropzone.ADDED && file.accepted === true) { + file.status = Dropzone.QUEUED; + if (this.options.autoProcessQueue) { + return setTimeout(((function(_this) { + return function() { + return _this.processQueue(); + }; + })(this)), 0); + } + } else { + throw new Error("This file can't be queued because it has already been processed or was rejected."); + } + }; + + Dropzone.prototype._thumbnailQueue = []; + + Dropzone.prototype._processingThumbnail = false; + + Dropzone.prototype._enqueueThumbnail = function(file) { + if (this.options.createImageThumbnails && file.type.match(/image.*/) && file.size <= this.options.maxThumbnailFilesize * 1024 * 1024) { + this._thumbnailQueue.push(file); + return setTimeout(((function(_this) { + return function() { + return _this._processThumbnailQueue(); + }; + })(this)), 0); + } + }; + + Dropzone.prototype._processThumbnailQueue = function() { + if (this._processingThumbnail || this._thumbnailQueue.length === 0) { + return; + } + this._processingThumbnail = true; + return this.createThumbnail(this._thumbnailQueue.shift(), (function(_this) { + return function() { + _this._processingThumbnail = false; + return _this._processThumbnailQueue(); + }; + })(this)); + }; + + Dropzone.prototype.removeFile = function(file) { + if (file.status === Dropzone.UPLOADING) { + this.cancelUpload(file); + } + this.files = without(this.files, file); + this.emit("removedfile", file); + if (this.files.length === 0) { + return this.emit("reset"); + } + }; + + Dropzone.prototype.removeAllFiles = function(cancelIfNecessary) { + var file, _i, _len, _ref; + if (cancelIfNecessary == null) { + cancelIfNecessary = false; + } + _ref = this.files.slice(); + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + file = _ref[_i]; + if (file.status !== Dropzone.UPLOADING || cancelIfNecessary) { + this.removeFile(file); + } + } + return null; + }; + + Dropzone.prototype.createThumbnail = function(file, callback) { + var fileReader; + fileReader = new FileReader; + fileReader.onload = (function(_this) { + return function() { + if (file.type === "image/svg+xml") { + _this.emit("thumbnail", file, fileReader.result); + if (callback != null) { + callback(); + } + return; + } + return _this.createThumbnailFromUrl(file, fileReader.result, callback); + }; + })(this); + return fileReader.readAsDataURL(file); + }; + + Dropzone.prototype.createThumbnailFromUrl = function(file, imageUrl, callback, crossOrigin) { + var img; + img = document.createElement("img"); + if (crossOrigin) { + img.crossOrigin = crossOrigin; + } + img.onload = (function(_this) { + return function() { + var canvas, ctx, resizeInfo, thumbnail, _ref, _ref1, _ref2, _ref3; + file.width = img.width; + file.height = img.height; + resizeInfo = _this.options.resize.call(_this, file); + if (resizeInfo.trgWidth == null) { + resizeInfo.trgWidth = resizeInfo.optWidth; + } + if (resizeInfo.trgHeight == null) { + resizeInfo.trgHeight = resizeInfo.optHeight; + } + canvas = document.createElement("canvas"); + ctx = canvas.getContext("2d"); + canvas.width = resizeInfo.trgWidth; + canvas.height = resizeInfo.trgHeight; + drawImageIOSFix(ctx, img, (_ref = resizeInfo.srcX) != null ? _ref : 0, (_ref1 = resizeInfo.srcY) != null ? _ref1 : 0, resizeInfo.srcWidth, resizeInfo.srcHeight, (_ref2 = resizeInfo.trgX) != null ? _ref2 : 0, (_ref3 = resizeInfo.trgY) != null ? _ref3 : 0, resizeInfo.trgWidth, resizeInfo.trgHeight); + thumbnail = canvas.toDataURL("image/png"); + _this.emit("thumbnail", file, thumbnail); + if (callback != null) { + return callback(); + } + }; + })(this); + if (callback != null) { + img.onerror = callback; + } + return img.src = imageUrl; + }; + + Dropzone.prototype.processQueue = function() { + var i, parallelUploads, processingLength, queuedFiles; + parallelUploads = this.options.parallelUploads; + processingLength = this.getUploadingFiles().length; + i = processingLength; + if (processingLength >= parallelUploads) { + return; + } + queuedFiles = this.getQueuedFiles(); + if (!(queuedFiles.length > 0)) { + return; + } + if (this.options.uploadMultiple) { + return this.processFiles(queuedFiles.slice(0, parallelUploads - processingLength)); + } else { + while (i < parallelUploads) { + if (!queuedFiles.length) { + return; + } + this.processFile(queuedFiles.shift()); + i++; + } + } + }; + + Dropzone.prototype.processFile = function(file) { + return this.processFiles([file]); + }; + + Dropzone.prototype.processFiles = function(files) { + var file, _i, _len; + for (_i = 0, _len = files.length; _i < _len; _i++) { + file = files[_i]; + file.processing = true; + file.status = Dropzone.UPLOADING; + this.emit("processing", file); + } + if (this.options.uploadMultiple) { + this.emit("processingmultiple", files); + } + return this.uploadFiles(files); + }; + + Dropzone.prototype._getFilesWithXhr = function(xhr) { + var file, files; + return files = (function() { + var _i, _len, _ref, _results; + _ref = this.files; + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + file = _ref[_i]; + if (file.xhr === xhr) { + _results.push(file); + } + } + return _results; + }).call(this); + }; + + Dropzone.prototype.cancelUpload = function(file) { + var groupedFile, groupedFiles, _i, _j, _len, _len1, _ref; + if (file.status === Dropzone.UPLOADING) { + groupedFiles = this._getFilesWithXhr(file.xhr); + for (_i = 0, _len = groupedFiles.length; _i < _len; _i++) { + groupedFile = groupedFiles[_i]; + groupedFile.status = Dropzone.CANCELED; + } + file.xhr.abort(); + for (_j = 0, _len1 = groupedFiles.length; _j < _len1; _j++) { + groupedFile = groupedFiles[_j]; + this.emit("canceled", groupedFile); + } + if (this.options.uploadMultiple) { + this.emit("canceledmultiple", groupedFiles); + } + } else if ((_ref = file.status) === Dropzone.ADDED || _ref === Dropzone.QUEUED) { + file.status = Dropzone.CANCELED; + this.emit("canceled", file); + if (this.options.uploadMultiple) { + this.emit("canceledmultiple", [file]); + } + } + if (this.options.autoProcessQueue) { + return this.processQueue(); + } + }; + + resolveOption = function() { + var args, option; + option = arguments[0], args = 2 <= arguments.length ? __slice.call(arguments, 1) : []; + if (typeof option === 'function') { + return option.apply(this, args); + } + return option; + }; + + Dropzone.prototype.uploadFile = function(file) { + return this.uploadFiles([file]); + }; + + Dropzone.prototype.uploadFiles = function(files) { + var file, formData, handleError, headerName, headerValue, headers, i, input, inputName, inputType, key, method, option, progressObj, response, updateProgress, url, value, xhr, _i, _j, _k, _l, _len, _len1, _len2, _len3, _m, _ref, _ref1, _ref2, _ref3, _ref4, _ref5; + xhr = new XMLHttpRequest(); + for (_i = 0, _len = files.length; _i < _len; _i++) { + file = files[_i]; + file.xhr = xhr; + } + method = resolveOption(this.options.method, files); + url = resolveOption(this.options.url, files); + xhr.open(method, url, true); + xhr.withCredentials = !!this.options.withCredentials; + response = null; + handleError = (function(_this) { + return function() { + var _j, _len1, _results; + _results = []; + for (_j = 0, _len1 = files.length; _j < _len1; _j++) { + file = files[_j]; + _results.push(_this._errorProcessing(files, response || _this.options.dictResponseError.replace("{{statusCode}}", xhr.status), xhr)); + } + return _results; + }; + })(this); + updateProgress = (function(_this) { + return function(e) { + var allFilesFinished, progress, _j, _k, _l, _len1, _len2, _len3, _results; + if (e != null) { + progress = 100 * e.loaded / e.total; + for (_j = 0, _len1 = files.length; _j < _len1; _j++) { + file = files[_j]; + file.upload = { + progress: progress, + total: e.total, + bytesSent: e.loaded + }; + } + } else { + allFilesFinished = true; + progress = 100; + for (_k = 0, _len2 = files.length; _k < _len2; _k++) { + file = files[_k]; + if (!(file.upload.progress === 100 && file.upload.bytesSent === file.upload.total)) { + allFilesFinished = false; + } + file.upload.progress = progress; + file.upload.bytesSent = file.upload.total; + } + if (allFilesFinished) { + return; + } + } + _results = []; + for (_l = 0, _len3 = files.length; _l < _len3; _l++) { + file = files[_l]; + _results.push(_this.emit("uploadprogress", file, progress, file.upload.bytesSent)); + } + return _results; + }; + })(this); + xhr.onload = (function(_this) { + return function(e) { + var _ref; + if (files[0].status === Dropzone.CANCELED) { + return; + } + if (xhr.readyState !== 4) { + return; + } + response = xhr.responseText; + if (xhr.getResponseHeader("content-type") && ~xhr.getResponseHeader("content-type").indexOf("application/json")) { + try { + response = JSON.parse(response); + } catch (_error) { + e = _error; + response = "Invalid JSON response from server."; + } + } + updateProgress(); + if (!((200 <= (_ref = xhr.status) && _ref < 300))) { + return handleError(); + } else { + return _this._finished(files, response, e); + } + }; + })(this); + xhr.onerror = (function(_this) { + return function() { + if (files[0].status === Dropzone.CANCELED) { + return; + } + return handleError(); + }; + })(this); + progressObj = (_ref = xhr.upload) != null ? _ref : xhr; + progressObj.onprogress = updateProgress; + headers = { + "Accept": "application/json", + "Cache-Control": "no-cache", + "X-Requested-With": "XMLHttpRequest" + }; + if (this.options.headers) { + extend(headers, this.options.headers); + } + for (headerName in headers) { + headerValue = headers[headerName]; + if (headerValue) { + xhr.setRequestHeader(headerName, headerValue); + } + } + formData = new FormData(); + if (this.options.params) { + _ref1 = this.options.params; + for (key in _ref1) { + value = _ref1[key]; + formData.append(key, value); + } + } + for (_j = 0, _len1 = files.length; _j < _len1; _j++) { + file = files[_j]; + this.emit("sending", file, xhr, formData); + } + if (this.options.uploadMultiple) { + this.emit("sendingmultiple", files, xhr, formData); + } + if (this.element.tagName === "FORM") { + _ref2 = this.element.querySelectorAll("input, textarea, select, button"); + for (_k = 0, _len2 = _ref2.length; _k < _len2; _k++) { + input = _ref2[_k]; + inputName = input.getAttribute("name"); + inputType = input.getAttribute("type"); + if (input.tagName === "SELECT" && input.hasAttribute("multiple")) { + _ref3 = input.options; + for (_l = 0, _len3 = _ref3.length; _l < _len3; _l++) { + option = _ref3[_l]; + if (option.selected) { + formData.append(inputName, option.value); + } + } + } else if (!inputType || ((_ref4 = inputType.toLowerCase()) !== "checkbox" && _ref4 !== "radio") || input.checked) { + formData.append(inputName, input.value); + } + } + } + for (i = _m = 0, _ref5 = files.length - 1; 0 <= _ref5 ? _m <= _ref5 : _m >= _ref5; i = 0 <= _ref5 ? ++_m : --_m) { + formData.append(this._getParamName(i), files[i], this._renameFilename(files[i].name)); + } + return this.submitRequest(xhr, formData, files); + }; + + Dropzone.prototype.submitRequest = function(xhr, formData, files) { + return xhr.send(formData); + }; + + Dropzone.prototype._finished = function(files, responseText, e) { + var file, _i, _len; + for (_i = 0, _len = files.length; _i < _len; _i++) { + file = files[_i]; + file.status = Dropzone.SUCCESS; + this.emit("success", file, responseText, e); + this.emit("complete", file); + } + if (this.options.uploadMultiple) { + this.emit("successmultiple", files, responseText, e); + this.emit("completemultiple", files); + } + if (this.options.autoProcessQueue) { + return this.processQueue(); + } + }; + + Dropzone.prototype._errorProcessing = function(files, message, xhr) { + var file, _i, _len; + for (_i = 0, _len = files.length; _i < _len; _i++) { + file = files[_i]; + file.status = Dropzone.ERROR; + this.emit("error", file, message, xhr); + this.emit("complete", file); + } + if (this.options.uploadMultiple) { + this.emit("errormultiple", files, message, xhr); + this.emit("completemultiple", files); + } + if (this.options.autoProcessQueue) { + return this.processQueue(); + } + }; + + return Dropzone; + + })(Emitter); + + Dropzone.version = "4.3.0"; + + Dropzone.options = {}; + + Dropzone.optionsForElement = function(element) { + if (element.getAttribute("id")) { + return Dropzone.options[camelize(element.getAttribute("id"))]; + } else { + return void 0; + } + }; + + Dropzone.instances = []; + + Dropzone.forElement = function(element) { + if (typeof element === "string") { + element = document.querySelector(element); + } + if ((element != null ? element.dropzone : void 0) == null) { + throw new Error("No Dropzone found for given element. This is probably because you're trying to access it before Dropzone had the time to initialize. Use the `init` option to setup any additional observers on your Dropzone."); + } + return element.dropzone; + }; + + Dropzone.autoDiscover = true; + + Dropzone.discover = function() { + var checkElements, dropzone, dropzones, _i, _len, _results; + if (document.querySelectorAll) { + dropzones = document.querySelectorAll(".dropzone"); + } else { + dropzones = []; + checkElements = function(elements) { + var el, _i, _len, _results; + _results = []; + for (_i = 0, _len = elements.length; _i < _len; _i++) { + el = elements[_i]; + if (/(^| )dropzone($| )/.test(el.className)) { + _results.push(dropzones.push(el)); + } else { + _results.push(void 0); + } + } + return _results; + }; + checkElements(document.getElementsByTagName("div")); + checkElements(document.getElementsByTagName("form")); + } + _results = []; + for (_i = 0, _len = dropzones.length; _i < _len; _i++) { + dropzone = dropzones[_i]; + if (Dropzone.optionsForElement(dropzone) !== false) { + _results.push(new Dropzone(dropzone)); + } else { + _results.push(void 0); + } + } + return _results; + }; + + Dropzone.blacklistedBrowsers = [/opera.*Macintosh.*version\/12/i]; + + Dropzone.isBrowserSupported = function() { + var capableBrowser, regex, _i, _len, _ref; + capableBrowser = true; + if (window.File && window.FileReader && window.FileList && window.Blob && window.FormData && document.querySelector) { + if (!("classList" in document.createElement("a"))) { + capableBrowser = false; + } else { + _ref = Dropzone.blacklistedBrowsers; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + regex = _ref[_i]; + if (regex.test(navigator.userAgent)) { + capableBrowser = false; + continue; + } + } + } + } else { + capableBrowser = false; + } + return capableBrowser; + }; + + without = function(list, rejectedItem) { + var item, _i, _len, _results; + _results = []; + for (_i = 0, _len = list.length; _i < _len; _i++) { + item = list[_i]; + if (item !== rejectedItem) { + _results.push(item); + } + } + return _results; + }; + + camelize = function(str) { + return str.replace(/[\-_](\w)/g, function(match) { + return match.charAt(1).toUpperCase(); + }); + }; + + Dropzone.createElement = function(string) { + var div; + div = document.createElement("div"); + div.innerHTML = string; + return div.childNodes[0]; + }; + + Dropzone.elementInside = function(element, container) { + if (element === container) { + return true; + } + while (element = element.parentNode) { + if (element === container) { + return true; + } + } + return false; + }; + + Dropzone.getElement = function(el, name) { + var element; + if (typeof el === "string") { + element = document.querySelector(el); + } else if (el.nodeType != null) { + element = el; + } + if (element == null) { + throw new Error("Invalid `" + name + "` option provided. Please provide a CSS selector or a plain HTML element."); + } + return element; + }; + + Dropzone.getElements = function(els, name) { + var e, el, elements, _i, _j, _len, _len1, _ref; + if (els instanceof Array) { + elements = []; + try { + for (_i = 0, _len = els.length; _i < _len; _i++) { + el = els[_i]; + elements.push(this.getElement(el, name)); + } + } catch (_error) { + e = _error; + elements = null; + } + } else if (typeof els === "string") { + elements = []; + _ref = document.querySelectorAll(els); + for (_j = 0, _len1 = _ref.length; _j < _len1; _j++) { + el = _ref[_j]; + elements.push(el); + } + } else if (els.nodeType != null) { + elements = [els]; + } + if (!((elements != null) && elements.length)) { + throw new Error("Invalid `" + name + "` option provided. Please provide a CSS selector, a plain HTML element or a list of those."); + } + return elements; + }; + + Dropzone.confirm = function(question, accepted, rejected) { + if (window.confirm(question)) { + return accepted(); + } else if (rejected != null) { + return rejected(); + } + }; + + Dropzone.isValidFile = function(file, acceptedFiles) { + var baseMimeType, mimeType, validType, _i, _len; + if (!acceptedFiles) { + return true; + } + acceptedFiles = acceptedFiles.split(","); + mimeType = file.type; + baseMimeType = mimeType.replace(/\/.*$/, ""); + for (_i = 0, _len = acceptedFiles.length; _i < _len; _i++) { + validType = acceptedFiles[_i]; + validType = validType.trim(); + if (validType.charAt(0) === ".") { + if (file.name.toLowerCase().indexOf(validType.toLowerCase(), file.name.length - validType.length) !== -1) { + return true; + } + } else if (/\/\*$/.test(validType)) { + if (baseMimeType === validType.replace(/\/.*$/, "")) { + return true; + } + } else { + if (mimeType === validType) { + return true; + } + } + } + return false; + }; + + if (typeof jQuery !== "undefined" && jQuery !== null) { + jQuery.fn.dropzone = function(options) { + return this.each(function() { + return new Dropzone(this, options); + }); + }; + } + + if (typeof module !== "undefined" && module !== null) { + module.exports = Dropzone; + } else { + window.Dropzone = Dropzone; + } + + Dropzone.ADDED = "added"; + + Dropzone.QUEUED = "queued"; + + Dropzone.ACCEPTED = Dropzone.QUEUED; + + Dropzone.UPLOADING = "uploading"; + + Dropzone.PROCESSING = Dropzone.UPLOADING; + + Dropzone.CANCELED = "canceled"; + + Dropzone.ERROR = "error"; + + Dropzone.SUCCESS = "success"; + + + /* + + Bugfix for iOS 6 and 7 + Source: http://stackoverflow.com/questions/11929099/html5-canvas-drawimage-ratio-bug-ios + based on the work of https://github.com/stomita/ios-imagefile-megapixel + */ + + detectVerticalSquash = function(img) { + var alpha, canvas, ctx, data, ey, ih, iw, py, ratio, sy; + iw = img.naturalWidth; + ih = img.naturalHeight; + canvas = document.createElement("canvas"); + canvas.width = 1; + canvas.height = ih; + ctx = canvas.getContext("2d"); + ctx.drawImage(img, 0, 0); + data = ctx.getImageData(0, 0, 1, ih).data; + sy = 0; + ey = ih; + py = ih; + while (py > sy) { + alpha = data[(py - 1) * 4 + 3]; + if (alpha === 0) { + ey = py; + } else { + sy = py; + } + py = (ey + sy) >> 1; + } + ratio = py / ih; + if (ratio === 0) { + return 1; + } else { + return ratio; + } + }; + + drawImageIOSFix = function(ctx, img, sx, sy, sw, sh, dx, dy, dw, dh) { + var vertSquashRatio; + vertSquashRatio = detectVerticalSquash(img); + return ctx.drawImage(img, sx, sy, sw, sh, dx, dy, dw, dh / vertSquashRatio); + }; + + + /* + * contentloaded.js + * + * Author: Diego Perini (diego.perini at gmail.com) + * Summary: cross-browser wrapper for DOMContentLoaded + * Updated: 20101020 + * License: MIT + * Version: 1.2 + * + * URL: + * http://javascript.nwbox.com/ContentLoaded/ + * http://javascript.nwbox.com/ContentLoaded/MIT-LICENSE + */ + + contentLoaded = function(win, fn) { + var add, doc, done, init, poll, pre, rem, root, top; + done = false; + top = true; + doc = win.document; + root = doc.documentElement; + add = (doc.addEventListener ? "addEventListener" : "attachEvent"); + rem = (doc.addEventListener ? "removeEventListener" : "detachEvent"); + pre = (doc.addEventListener ? "" : "on"); + init = function(e) { + if (e.type === "readystatechange" && doc.readyState !== "complete") { + return; + } + (e.type === "load" ? win : doc)[rem](pre + e.type, init, false); + if (!done && (done = true)) { + return fn.call(win, e.type || e); + } + }; + poll = function() { + var e; + try { + root.doScroll("left"); + } catch (_error) { + e = _error; + setTimeout(poll, 50); + return; + } + return init("poll"); + }; + if (doc.readyState !== "complete") { + if (doc.createEventObject && root.doScroll) { + try { + top = !win.frameElement; + } catch (_error) {} + if (top) { + poll(); + } + } + doc[add](pre + "DOMContentLoaded", init, false); + doc[add](pre + "readystatechange", init, false); + return win[add](pre + "load", init, false); + } + }; + + Dropzone._autoDiscoverFunction = function() { + if (Dropzone.autoDiscover) { + return Dropzone.discover(); + } + }; + + contentLoaded(window, Dropzone._autoDiscoverFunction); + +}).call(this); diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index 04c2e88165..a3b1a57eaa 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -7,6 +7,7 @@ from django.core.urlresolvers import reverse, reverse_lazy from django.http import HttpResponseRedirect from django.shortcuts import render_to_response, get_object_or_404 from django.template import RequestContext +from django.utils.http import urlencode from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList @@ -168,6 +169,10 @@ class UploadBaseView(MultiFormView): subtemplates_list.append({ 'name': 'appearance/generic_multiform_subtemplate.html', 'context': { + 'form_action': self.request.get_full_path(), + 'form_class': 'dropzone', + 'form_disable_submit': True, + 'form_id': 'html5upload', 'forms': context['forms'], 'is_multipart': True, 'title': _('Document properties'), From 642c46ec6fc32948d5baf9c17c7950230b89b007 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 12 Mar 2016 00:49:18 -0400 Subject: [PATCH 053/205] Move dropzone code and style loading to the sources app. Improve dropzone widget appearance. Add Javascript translation catalog support. --- .../appearance/static/appearance/js/base.js | 9 ------ .../appearance/templates/appearance/base.html | 2 -- mayan/apps/common/urls.py | 16 ++++++---- .../static/sources/packages/dropzone.css | 10 +++--- .../sources/upload_multiform_subtemplate.html | 32 +++++++++++++++++++ mayan/apps/sources/views.py | 2 +- 6 files changed, 49 insertions(+), 22 deletions(-) create mode 100644 mayan/apps/sources/templates/sources/upload_multiform_subtemplate.html diff --git a/mayan/apps/appearance/static/appearance/js/base.js b/mayan/apps/appearance/static/appearance/js/base.js index a926fa6b6e..c049f84e2d 100644 --- a/mayan/apps/appearance/static/appearance/js/base.js +++ b/mayan/apps/appearance/static/appearance/js/base.js @@ -114,13 +114,4 @@ jQuery(document).ready(function() { }); }, 3000); - - Dropzone.options.html5upload = { - paramName: 'source-file', - addRemoveLinks: true, - createImageThumbnails: false, - dictDefaultMessage: 'Drop files or click here to upload files', - dictCancelUpload: 'Cancel upload', - dictRemoveFile: 'Clear' - }; }); diff --git a/mayan/apps/appearance/templates/appearance/base.html b/mayan/apps/appearance/templates/appearance/base.html index 2b8e581d63..6f09a6b7da 100644 --- a/mayan/apps/appearance/templates/appearance/base.html +++ b/mayan/apps/appearance/templates/appearance/base.html @@ -27,7 +27,6 @@ - {% block stylesheets %}{% endblock %} @@ -168,7 +167,6 @@ - {% block javascript %}{% endblock %} {% endcompress %} diff --git a/mayan/apps/common/urls.py b/mayan/apps/common/urls.py index ae32b7d82f..11b6e1acf8 100644 --- a/mayan/apps/common/urls.py +++ b/mayan/apps/common/urls.py @@ -3,6 +3,7 @@ from __future__ import unicode_literals from django.conf.urls import patterns, url from django.contrib.staticfiles.templatetags.staticfiles import static from django.views.generic import RedirectView +from django.views.i18n import javascript_catalog from .views import ( AboutView, CurrentUserDetailsView, CurrentUserEditView, @@ -52,13 +53,16 @@ urlpatterns = patterns( urlpatterns += patterns( '', url( - r'^set_language/$', 'django.views.i18n.set_language', - name='set_language' - ), - ( - r'^favicon\.ico$', - RedirectView.as_view( + r'^favicon\.ico$', RedirectView.as_view( permanent=True, url=static('appearance/images/favicon.ico') ) ), + url( + r'^jsi18n/(?P\S+?)/$', javascript_catalog, + name='javascript_catalog' + ), + url( + r'^set_language/$', 'django.views.i18n.set_language', + name='set_language' + ), ) diff --git a/mayan/apps/sources/static/sources/packages/dropzone.css b/mayan/apps/sources/static/sources/packages/dropzone.css index 0494d1ccf4..28234de545 100644 --- a/mayan/apps/sources/static/sources/packages/dropzone.css +++ b/mayan/apps/sources/static/sources/packages/dropzone.css @@ -173,11 +173,13 @@ .dropzone, .dropzone * { box-sizing: border-box; } +.dz-default { + border-style: dashed; +} + .dropzone { min-height: 150px; - border: 2px solid rgba(0, 0, 0, 0.3); - background: white; - padding: 20px 20px; } +} .dropzone.dz-clickable { cursor: pointer; } .dropzone.dz-clickable * { @@ -192,7 +194,7 @@ opacity: 0.5; } .dropzone .dz-message { text-align: center; - margin: 2em 0; } + padding: 2em 0; } .dropzone .dz-preview { position: relative; display: inline-block; diff --git a/mayan/apps/sources/templates/sources/upload_multiform_subtemplate.html b/mayan/apps/sources/templates/sources/upload_multiform_subtemplate.html new file mode 100644 index 0000000000..e76386b28d --- /dev/null +++ b/mayan/apps/sources/templates/sources/upload_multiform_subtemplate.html @@ -0,0 +1,32 @@ +{% load static %} + +{% include 'appearance/generic_multiform_subtemplate.html' %} + +{% block stylesheets %} + +{% endblock %} + +{% block javascript %} + + + +{% endblock %} diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index a3b1a57eaa..1077a39d00 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -167,7 +167,7 @@ class UploadBaseView(MultiFormView): ] else: subtemplates_list.append({ - 'name': 'appearance/generic_multiform_subtemplate.html', + 'name': 'sources/upload_multiform_subtemplate.html', 'context': { 'form_action': self.request.get_full_path(), 'form_class': 'dropzone', From 6b79824daf687a9f78f9b4289237caff85e9468f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 12 Mar 2016 04:25:42 -0400 Subject: [PATCH 054/205] Update uploader style to better match theme and template used. Use the new uploader for new documents only not for document versions. --- mayan/apps/sources/forms.py | 5 +- .../static/sources/packages/dropzone.css | 74 +++++++------------ .../sources/upload_multiform_subtemplate.html | 51 ++++++++++--- mayan/apps/sources/views.py | 25 +++++-- 4 files changed, 88 insertions(+), 67 deletions(-) diff --git a/mayan/apps/sources/forms.py b/mayan/apps/sources/forms.py index 85eb997e6f..389da8bbf2 100644 --- a/mayan/apps/sources/forms.py +++ b/mayan/apps/sources/forms.py @@ -68,13 +68,16 @@ class StagingUploadForm(UploadBaseForm): class WebFormUploadForm(UploadBaseForm): + file = forms.FileField(label=_('File')) + + +class WebFormUploadFormHTML5(WebFormUploadForm): file = forms.FileField( label=_('File'), widget=forms.widgets.FileInput( attrs={'class': 'hidden', 'hidden': True} ) ) - class WebFormSetupForm(forms.ModelForm): class Meta: fields = ('label', 'enabled', 'uncompress') diff --git a/mayan/apps/sources/static/sources/packages/dropzone.css b/mayan/apps/sources/static/sources/packages/dropzone.css index 28234de545..a40f87f98d 100644 --- a/mayan/apps/sources/static/sources/packages/dropzone.css +++ b/mayan/apps/sources/static/sources/packages/dropzone.css @@ -174,7 +174,7 @@ box-sizing: border-box; } .dz-default { - border-style: dashed; + border-style: dotted; } .dropzone { @@ -187,7 +187,7 @@ .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * { cursor: pointer; } .dropzone.dz-started .dz-message { - display: none; } + display: none; } .dropzone.dz-drag-hover { border-style: solid; } .dropzone.dz-drag-hover .dz-message { @@ -199,36 +199,27 @@ position: relative; display: inline-block; vertical-align: top; - margin: 16px; - min-height: 100px; } + margin: 5px; +} .dropzone .dz-preview:hover { z-index: 1000; } .dropzone .dz-preview:hover .dz-details { opacity: 1; } .dropzone .dz-preview.dz-file-preview .dz-image { - border-radius: 20px; - background: #999; - background: linear-gradient(to bottom, #eee, #ddd); } + } .dropzone .dz-preview.dz-file-preview .dz-details { - opacity: 1; } + opacity: 1; + margin-top: 30px; + } .dropzone .dz-preview.dz-image-preview { background: white; } .dropzone .dz-preview.dz-image-preview .dz-details { - -webkit-transition: opacity 0.2s linear; - -moz-transition: opacity 0.2s linear; - -ms-transition: opacity 0.2s linear; - -o-transition: opacity 0.2s linear; - transition: opacity 0.2s linear; } - .dropzone .dz-preview .dz-remove { - font-size: 14px; - text-align: center; - display: block; - cursor: pointer; - border: none; } - .dropzone .dz-preview .dz-remove:hover { - text-decoration: underline; } + } + .dropzone .dz-preview:hover .dz-details { - opacity: 1; } + opacity: 1; + + } .dropzone .dz-preview .dz-details { z-index: 20; position: absolute; @@ -240,7 +231,6 @@ max-width: 100%; padding: 2em 1em; text-align: center; - color: rgba(0, 0, 0, 0.9); line-height: 150%; } .dropzone .dz-preview .dz-details .dz-size { margin-bottom: 1em; @@ -258,20 +248,12 @@ .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span { background-color: rgba(255, 255, 255, 0.4); padding: 0 0.4em; - border-radius: 3px; } + } .dropzone .dz-preview:hover .dz-image img { - -webkit-transform: scale(1.05, 1.05); - -moz-transform: scale(1.05, 1.05); - -ms-transform: scale(1.05, 1.05); - -o-transform: scale(1.05, 1.05); - transform: scale(1.05, 1.05); - -webkit-filter: blur(8px); - filter: blur(8px); } + } .dropzone .dz-preview .dz-image { - border-radius: 20px; overflow: hidden; width: 120px; - height: 120px; position: relative; display: block; z-index: 10; } @@ -331,7 +313,7 @@ position: absolute; height: 16px; left: 50%; - top: 50%; + top: 70%; margin-top: -8px; width: 80px; margin-left: -40px; @@ -371,20 +353,16 @@ transition: opacity 0.3s ease; border-radius: 8px; font-size: 13px; - top: 130px; + top: 10px; left: -10px; width: 140px; - background: #be2626; - background: linear-gradient(to bottom, #be2626, #a92222); padding: 0.5em 1.2em; - color: white; } - .dropzone .dz-preview .dz-error-message:after { - content: ''; - position: absolute; - top: -6px; - left: 64px; - width: 0; - height: 0; - border-left: 6px solid transparent; - border-right: 6px solid transparent; - border-bottom: 6px solid #be2626; } + } + + .btn-dz-remove { + margin-top: 5px; + } + + .dz-message { + background: white; + } diff --git a/mayan/apps/sources/templates/sources/upload_multiform_subtemplate.html b/mayan/apps/sources/templates/sources/upload_multiform_subtemplate.html index e76386b28d..90b5d23a62 100644 --- a/mayan/apps/sources/templates/sources/upload_multiform_subtemplate.html +++ b/mayan/apps/sources/templates/sources/upload_multiform_subtemplate.html @@ -1,22 +1,50 @@ +{% load i18n %} {% load static %} + + {% include 'appearance/generic_multiform_subtemplate.html' %} -{% block stylesheets %} - -{% endblock %} + + -{% block javascript %} - + + -{% endblock %} + {% endverbatim %} + diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index 1077a39d00..47dbea93c6 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -29,7 +29,8 @@ from navigation import Link from permissions import Permission from .forms import ( - NewDocumentForm, NewVersionForm + NewDocumentForm, NewVersionForm, WebFormUploadForm, + WebFormUploadFormHTML5 ) from .literals import ( SOURCE_CHOICE_STAGING, SOURCE_CHOICE_WEB_FORM, @@ -169,10 +170,6 @@ class UploadBaseView(MultiFormView): subtemplates_list.append({ 'name': 'sources/upload_multiform_subtemplate.html', 'context': { - 'form_action': self.request.get_full_path(), - 'form_class': 'dropzone', - 'form_disable_submit': True, - 'form_id': 'html5upload', 'forms': context['forms'], 'is_multipart': True, 'title': _('Document properties'), @@ -190,7 +187,6 @@ class UploadBaseView(MultiFormView): class UploadInteractiveView(UploadBaseView): - def dispatch(self, request, *args, **kwargs): self.subtemplates_list = [] @@ -291,9 +287,15 @@ class UploadInteractiveView(UploadBaseView): ) def get_form_classes(self): + source_form_class = get_upload_form_class(self.source.source_type) + + # Override source form class to enable the HTML5 file uploader + if source_form_class == WebFormUploadForm: + source_form_class = WebFormUploadFormHTML5 + return { 'document_form': NewDocumentForm, - 'source_form': get_upload_form_class(self.source.source_type) + 'source_form': source_form_class } def get_context_data(self, **kwargs): @@ -301,6 +303,15 @@ class UploadInteractiveView(UploadBaseView): context['title'] = _( 'Upload a local document from source: %s' ) % self.source.label + if not isinstance(self.source, StagingFolderSource): + context['subtemplates_list'][0]['context'].update( + { + 'form_action': self.request.get_full_path(), + 'form_class': 'dropzone', + 'form_disable_submit': True, + 'form_id': 'html5upload', + } + ) return context From d444835f99a43735c5752b204b33d27e21f749fc Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 12 Mar 2016 04:27:49 -0400 Subject: [PATCH 055/205] Update changelog. --- HISTORY.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/HISTORY.rst b/HISTORY.rst index c6227d6ac3..839e73b7ea 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -17,6 +17,7 @@ - Make document type delete time period optional. - Fixed date locale handling in document properties, checkout and user detail views. - Add new permission: checkout details view. +- Add HTML5 upload widget. Issue #162. 2.0.2 (2016-02-09) ================== From 6eb868bdfb28f11ff00febc2e3ce842a0f593272 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 12 Mar 2016 23:16:18 -0400 Subject: [PATCH 056/205] Add missing migration. --- .../migrations/0006_auto_20160313_0313.py | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 mayan/apps/common/migrations/0006_auto_20160313_0313.py diff --git a/mayan/apps/common/migrations/0006_auto_20160313_0313.py b/mayan/apps/common/migrations/0006_auto_20160313_0313.py new file mode 100644 index 0000000000..67c7af3a2f --- /dev/null +++ b/mayan/apps/common/migrations/0006_auto_20160313_0313.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('common', '0005_auto_20150706_1832'), + ] + + operations = [ + migrations.AlterField( + model_name='userlocaleprofile', + name='language', + field=models.CharField( + max_length=8, verbose_name='Language', choices=[ + ('ar', 'Arabic'), ('bg', 'Bulgarian'), + ('bs', 'Bosnian (Bosnia and Herzegovina)'), + ('da', 'Danish'), ('de', 'German (Germany)'), + ('en', 'English'), ('es', 'Spanish'), ('fa', 'Persian'), + ('fr', 'French'), ('hu', 'Hungarian'), ('hr', 'Croatian'), + ('id', 'Indonesian'), ('it', 'Italian'), + ('nl', 'Dutch (Netherlands)'), ('pl', 'Polish'), + ('pt', 'Portuguese'), ('pt-br', 'Portuguese (Brazil)'), + ('ro', 'Romanian (Romania)'), ('ru', 'Russian'), + ('sl', 'Slovenian'), ('tr', 'Turkish'), + ('vi', 'Vietnamese (Viet Nam)'), + ('zh-cn', 'Chinese (China)') + ] + ), + ), + ] From daa3ca24303632e99c5d7317b7f724a42e556a55 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 13 Mar 2016 00:56:31 -0400 Subject: [PATCH 057/205] Initial commit to support messages of the day. GitLab issue #222. --- .../templates/appearance/login.html | 40 +++++++++------- mayan/apps/motd/__init__.py | 3 ++ mayan/apps/motd/admin.py | 10 ++++ mayan/apps/motd/apps.py | 30 ++++++++++++ mayan/apps/motd/managers.py | 11 +++++ mayan/apps/motd/migrations/0001_initial.py | 28 +++++++++++ .../migrations/0002_auto_20160313_0340.py | 24 ++++++++++ .../migrations/0003_auto_20160313_0349.py | 19 ++++++++ mayan/apps/motd/migrations/__init__.py | 0 mayan/apps/motd/models.py | 30 ++++++++++++ mayan/apps/motd/templates/motd/messages.html | 23 +++++++++ mayan/apps/motd/templatetags/__init__.py | 0 mayan/apps/motd/templatetags/motd_tags.py | 12 +++++ mayan/apps/motd/tests/__init__.py | 0 mayan/apps/motd/tests/test_models.py | 48 +++++++++++++++++++ mayan/settings/base.py | 1 + 16 files changed, 261 insertions(+), 18 deletions(-) create mode 100644 mayan/apps/motd/__init__.py create mode 100644 mayan/apps/motd/admin.py create mode 100644 mayan/apps/motd/apps.py create mode 100644 mayan/apps/motd/managers.py create mode 100644 mayan/apps/motd/migrations/0001_initial.py create mode 100644 mayan/apps/motd/migrations/0002_auto_20160313_0340.py create mode 100644 mayan/apps/motd/migrations/0003_auto_20160313_0349.py create mode 100644 mayan/apps/motd/migrations/__init__.py create mode 100644 mayan/apps/motd/models.py create mode 100644 mayan/apps/motd/templates/motd/messages.html create mode 100644 mayan/apps/motd/templatetags/__init__.py create mode 100644 mayan/apps/motd/templatetags/motd_tags.py create mode 100644 mayan/apps/motd/tests/__init__.py create mode 100644 mayan/apps/motd/tests/test_models.py diff --git a/mayan/apps/appearance/templates/appearance/login.html b/mayan/apps/appearance/templates/appearance/login.html index 92b327432d..787a4a538c 100644 --- a/mayan/apps/appearance/templates/appearance/login.html +++ b/mayan/apps/appearance/templates/appearance/login.html @@ -3,34 +3,38 @@ {% load i18n %} {% load static %} -{% load common_tags %} {% load autoadmin_tags %} +{% load common_tags %} +{% load motd_tags %} {% block base_title %}{% trans 'Login' %}{% endblock %} {% block project_name %}{% endblock %} {% block content_plain %} -
-
- {% autoadmin_properties %} - {% if autoadmin_properties.account %} -
-
-

{% trans "First time login" %}

-
-
-

{% trans 'You have just finished installing Mayan EDMS, congratulations!' %}

-

{% trans 'Login using the following credentials:' %}

-

{% blocktrans with autoadmin_properties.account as account %}Username: {{ account }}{% endblocktrans %}

-

{% blocktrans with autoadmin_properties.account.email as email %}Email: {{ email }}{% endblocktrans %}

-

{% blocktrans with autoadmin_properties.password as password %}Password: {{ password }}{% endblocktrans %}

-

{% trans 'Be sure to change the password to increase security and to disable this message.' %}

+ {% autoadmin_properties %} + {% if autoadmin_properties.account %} +
+
+
+
+

{% trans "First time login" %}

+
+
+

{% trans 'You have just finished installing Mayan EDMS, congratulations!' %}

+

{% trans 'Login using the following credentials:' %}

+

{% blocktrans with autoadmin_properties.account as account %}Username: {{ account }}{% endblocktrans %}

+

{% blocktrans with autoadmin_properties.account.email as email %}Email: {{ email }}{% endblocktrans %}

+

{% blocktrans with autoadmin_properties.password as password %}Password: {{ password }}{% endblocktrans %}

+

{% trans 'Be sure to change the password to increase security and to disable this message.' %}

+
- {% endif %}
-
+ {% endif %} + + {% motd %} +
diff --git a/mayan/apps/motd/__init__.py b/mayan/apps/motd/__init__.py new file mode 100644 index 0000000000..71e348ee1d --- /dev/null +++ b/mayan/apps/motd/__init__.py @@ -0,0 +1,3 @@ +from __future__ import unicode_literals + +default_app_config = 'motd.apps.MOTDApp' diff --git a/mayan/apps/motd/admin.py b/mayan/apps/motd/admin.py new file mode 100644 index 0000000000..f77cff8606 --- /dev/null +++ b/mayan/apps/motd/admin.py @@ -0,0 +1,10 @@ +from __future__ import unicode_literals + +from django.contrib import admin + +from .models import MessageOfTheDay + + +@admin.register(MessageOfTheDay) +class MessageOfTheDayAdmin(admin.ModelAdmin): + list_display = ('label', 'enabled', 'start_datetime', 'end_datetime') diff --git a/mayan/apps/motd/apps.py b/mayan/apps/motd/apps.py new file mode 100644 index 0000000000..09a8336a50 --- /dev/null +++ b/mayan/apps/motd/apps.py @@ -0,0 +1,30 @@ +from __future__ import unicode_literals + +import logging + +from django import apps +from django.conf import settings +from django.conf.urls import include, url +from django.contrib.auth.signals import user_logged_in +from django.db.models.signals import post_save +from django.utils.translation import ugettext_lazy as _ + +from common import MayanAppConfig + +#from .links import ( +# link_about, link_current_user_details, link_current_user_edit, +# link_current_user_locale_profile_details, +# link_current_user_locale_profile_edit, link_filters, link_license, +# link_packages_licenses, link_setup, link_tools +#) + +logger = logging.getLogger(__name__) + + +class MOTDApp(MayanAppConfig): + name = 'motd' + test = True + verbose_name = _('Message of the day') + + def ready(self): + super(MOTDApp, self).ready() diff --git a/mayan/apps/motd/managers.py b/mayan/apps/motd/managers.py new file mode 100644 index 0000000000..c47516c7e9 --- /dev/null +++ b/mayan/apps/motd/managers.py @@ -0,0 +1,11 @@ +from django.db import models +from django.db.models import Q +from django.utils import timezone + + +class MessageOfTheDayManager(models.Manager): + def get_for_now(self): + now = timezone.now() + return self.filter(enabled=True).filter( + Q(start_datetime__isnull=True) | Q(start_datetime__lte=now) + ).filter(Q(end_datetime__isnull=True) | Q(end_datetime__gte=now)) diff --git a/mayan/apps/motd/migrations/0001_initial.py b/mayan/apps/motd/migrations/0001_initial.py new file mode 100644 index 0000000000..545f550f5d --- /dev/null +++ b/mayan/apps/motd/migrations/0001_initial.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='MessageOfTheDay', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('label', models.CharField(max_length=32, verbose_name='Label')), + ('message', models.TextField(verbose_name='Message', blank=True)), + ('enabled', models.BooleanField(default=True, verbose_name='Enabled')), + ('start_datetime', models.DateTimeField(verbose_name='Start date time', blank=True)), + ('end_datetime', models.DateTimeField(verbose_name='End date time', blank=True)), + ], + options={ + 'verbose_name': 'Message of the day', + 'verbose_name_plural': 'Messages of the day', + }, + ), + ] diff --git a/mayan/apps/motd/migrations/0002_auto_20160313_0340.py b/mayan/apps/motd/migrations/0002_auto_20160313_0340.py new file mode 100644 index 0000000000..e1d52bc36e --- /dev/null +++ b/mayan/apps/motd/migrations/0002_auto_20160313_0340.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('motd', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='messageoftheday', + name='end_datetime', + field=models.DateTimeField(null=True, verbose_name='End date time', blank=True), + ), + migrations.AlterField( + model_name='messageoftheday', + name='start_datetime', + field=models.DateTimeField(null=True, verbose_name='Start date time', blank=True), + ), + ] diff --git a/mayan/apps/motd/migrations/0003_auto_20160313_0349.py b/mayan/apps/motd/migrations/0003_auto_20160313_0349.py new file mode 100644 index 0000000000..24e610c760 --- /dev/null +++ b/mayan/apps/motd/migrations/0003_auto_20160313_0349.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('motd', '0002_auto_20160313_0340'), + ] + + operations = [ + migrations.AlterField( + model_name='messageoftheday', + name='message', + field=models.TextField(verbose_name='Message'), + ), + ] diff --git a/mayan/apps/motd/migrations/__init__.py b/mayan/apps/motd/migrations/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/mayan/apps/motd/models.py b/mayan/apps/motd/models.py new file mode 100644 index 0000000000..6c8dfd7885 --- /dev/null +++ b/mayan/apps/motd/models.py @@ -0,0 +1,30 @@ +from __future__ import unicode_literals + +from django.conf import settings +from django.db import models +from django.utils.encoding import python_2_unicode_compatible +from django.utils.translation import ugettext_lazy as _ + +from .managers import MessageOfTheDayManager + + +@python_2_unicode_compatible +class MessageOfTheDay(models.Model): + label = models.CharField(max_length=32, verbose_name=_('Label')) + message = models.TextField(verbose_name=_('Message')) + enabled = models.BooleanField(default=True, verbose_name=_('Enabled')) + start_datetime = models.DateTimeField( + blank=True, null=True, verbose_name=_('Start date time') + ) + end_datetime = models.DateTimeField( + blank=True, null=True, verbose_name=_('End date time') + ) + + objects = MessageOfTheDayManager() + + class Meta: + verbose_name = _('Message of the day') + verbose_name_plural = _('Messages of the day') + + def __str__(self): + return self.label diff --git a/mayan/apps/motd/templates/motd/messages.html b/mayan/apps/motd/templates/motd/messages.html new file mode 100644 index 0000000000..ff54741974 --- /dev/null +++ b/mayan/apps/motd/templates/motd/messages.html @@ -0,0 +1,23 @@ +{% load i18n %} + +{% if messages %} +
+
+
+
+

{% trans 'Messages of the day' %}

+
+
+ {% for message in messages %} +
    +
  • +

    {{ message.label }}

    +

    {{ message.message | linebreaks }}

    +
  • +
+ {% endfor %} +
+
+
+
+{% endif %} diff --git a/mayan/apps/motd/templatetags/__init__.py b/mayan/apps/motd/templatetags/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/mayan/apps/motd/templatetags/motd_tags.py b/mayan/apps/motd/templatetags/motd_tags.py new file mode 100644 index 0000000000..e490386f85 --- /dev/null +++ b/mayan/apps/motd/templatetags/motd_tags.py @@ -0,0 +1,12 @@ +from __future__ import unicode_literals + +from django.template import Library + +from ..models import MessageOfTheDay + +register = Library() + + +@register.inclusion_tag('motd/messages.html') +def motd(): + return {'messages': MessageOfTheDay.objects.get_for_now()} diff --git a/mayan/apps/motd/tests/__init__.py b/mayan/apps/motd/tests/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/mayan/apps/motd/tests/test_models.py b/mayan/apps/motd/tests/test_models.py new file mode 100644 index 0000000000..858bbf1b55 --- /dev/null +++ b/mayan/apps/motd/tests/test_models.py @@ -0,0 +1,48 @@ +from __future__ import unicode_literals + +from datetime import timedelta + +from django.test import TestCase +from django.utils import timezone + +from ..models import MessageOfTheDay + +TEST_LABEL = 'test label' +TEST_MESSAGE = 'test message' + + +class MOTDTestCase(TestCase): + def setUp(self): + self.motd = MessageOfTheDay.objects.create( + label=TEST_LABEL, message=TEST_MESSAGE + ) + + def test_basic(self): + queryset = MessageOfTheDay.objects.get_for_now() + + self.assertEqual(queryset.exists(), True) + + def test_start_datetime(self): + self.motd.start_datetime = timezone.now() - timedelta(days=1) + self.motd.save() + + queryset = MessageOfTheDay.objects.get_for_now() + + self.assertEqual(queryset.first(), self.motd) + + def test_end_datetime(self): + self.motd.start_datetime = timezone.now() - timedelta(days=2) + self.motd.end_datetime = timezone.now() - timedelta(days=1) + self.motd.save() + + queryset = MessageOfTheDay.objects.get_for_now() + + self.assertEqual(queryset.exists(), False) + + def test_enable(self): + self.motd.enabled=False + self.motd.save() + + queryset = MessageOfTheDay.objects.get_for_now() + + self.assertEqual(queryset.exists(), False) diff --git a/mayan/settings/base.py b/mayan/settings/base.py index aef56a55c2..84ee1d6115 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -91,6 +91,7 @@ INSTALLED_APPS = ( 'mailer', 'metadata', 'mirroring', + 'motd', 'ocr', 'rest_api', 'sources', From 083d6e6fc59197aa6f33efb69ecbdbf01452b102 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 13 Mar 2016 21:05:49 -0400 Subject: [PATCH 058/205] Add links, views and urls. Rename main model to just 'Message'. --- mayan/apps/motd/admin.py | 6 +- mayan/apps/motd/apps.py | 27 +++++-- mayan/apps/motd/links.py | 27 +++++++ mayan/apps/motd/managers.py | 2 +- .../migrations/0004_auto_20160314_0040.py | 22 ++++++ mayan/apps/motd/models.py | 10 +-- mayan/apps/motd/permissions.py | 20 +++++ mayan/apps/motd/urls.py | 18 +++++ mayan/apps/motd/views.py | 74 +++++++++++++++++++ 9 files changed, 190 insertions(+), 16 deletions(-) create mode 100644 mayan/apps/motd/links.py create mode 100644 mayan/apps/motd/migrations/0004_auto_20160314_0040.py create mode 100644 mayan/apps/motd/permissions.py create mode 100644 mayan/apps/motd/urls.py create mode 100644 mayan/apps/motd/views.py diff --git a/mayan/apps/motd/admin.py b/mayan/apps/motd/admin.py index f77cff8606..c4d3e6b7a1 100644 --- a/mayan/apps/motd/admin.py +++ b/mayan/apps/motd/admin.py @@ -2,9 +2,9 @@ from __future__ import unicode_literals from django.contrib import admin -from .models import MessageOfTheDay +from .models import Message -@admin.register(MessageOfTheDay) -class MessageOfTheDayAdmin(admin.ModelAdmin): +@admin.register(Message) +class MessageAdmin(admin.ModelAdmin): list_display = ('label', 'enabled', 'start_datetime', 'end_datetime') diff --git a/mayan/apps/motd/apps.py b/mayan/apps/motd/apps.py index 09a8336a50..6a81910ea9 100644 --- a/mayan/apps/motd/apps.py +++ b/mayan/apps/motd/apps.py @@ -9,14 +9,12 @@ from django.contrib.auth.signals import user_logged_in from django.db.models.signals import post_save from django.utils.translation import ugettext_lazy as _ -from common import MayanAppConfig +from common import MayanAppConfig, menu_object, menu_secondary, menu_tools -#from .links import ( -# link_about, link_current_user_details, link_current_user_edit, -# link_current_user_locale_profile_details, -# link_current_user_locale_profile_edit, link_filters, link_license, -# link_packages_licenses, link_setup, link_tools -#) +from .links import ( + link_message_create, link_message_delete, link_message_edit, + link_message_list +) logger = logging.getLogger(__name__) @@ -28,3 +26,18 @@ class MOTDApp(MayanAppConfig): def ready(self): super(MOTDApp, self).ready() + + Message = self.get_model('Message') + + menu_object.bind_links( + links=( + link_message_edit, link_message_delete + ), sources=(Message,) + ) + menu_secondary.bind_links( + links=(link_message_create,), + sources=(Message, 'motd:message_list', 'motd:message_create') + ) + menu_tools.bind_links( + links=(link_message_list,) + ) diff --git a/mayan/apps/motd/links.py b/mayan/apps/motd/links.py new file mode 100644 index 0000000000..01e627316e --- /dev/null +++ b/mayan/apps/motd/links.py @@ -0,0 +1,27 @@ +from __future__ import absolute_import, unicode_literals + +from django.utils.translation import ugettext_lazy as _ + +from navigation import Link + +from .permissions import ( + permission_message_create, permission_message_delete, permission_message_edit, + permission_message_view +) + +link_message_create = Link( + permissions=(permission_message_create,), text=_('Create message'), + view='motd:message_create' +) +link_message_delete = Link( + permissions=(permission_message_delete,), tags='dangerous', + text=_('Delete'), view='motd:message_delete', args='object.pk' +) +link_message_edit = Link( + permissions=(permission_message_edit,), text=_('Edit'), + view='motd:message_edit', args='object.pk' +) +link_message_list = Link( + icon='fa fa-bullhorn', text=_('Message of the day'), + view='motd:message_list' +) diff --git a/mayan/apps/motd/managers.py b/mayan/apps/motd/managers.py index c47516c7e9..29bfbf2e16 100644 --- a/mayan/apps/motd/managers.py +++ b/mayan/apps/motd/managers.py @@ -3,7 +3,7 @@ from django.db.models import Q from django.utils import timezone -class MessageOfTheDayManager(models.Manager): +class MessageManager(models.Manager): def get_for_now(self): now = timezone.now() return self.filter(enabled=True).filter( diff --git a/mayan/apps/motd/migrations/0004_auto_20160314_0040.py b/mayan/apps/motd/migrations/0004_auto_20160314_0040.py new file mode 100644 index 0000000000..c108711878 --- /dev/null +++ b/mayan/apps/motd/migrations/0004_auto_20160314_0040.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('motd', '0003_auto_20160313_0349'), + ] + + operations = [ + migrations.RenameModel( + old_name='MessageOfTheDay', + new_name='Message', + ), + migrations.AlterModelOptions( + name='message', + options={'verbose_name': 'Message', 'verbose_name_plural': 'Messages'}, + ), + ] diff --git a/mayan/apps/motd/models.py b/mayan/apps/motd/models.py index 6c8dfd7885..02a8d97943 100644 --- a/mayan/apps/motd/models.py +++ b/mayan/apps/motd/models.py @@ -5,11 +5,11 @@ from django.db import models from django.utils.encoding import python_2_unicode_compatible from django.utils.translation import ugettext_lazy as _ -from .managers import MessageOfTheDayManager +from .managers import MessageManager @python_2_unicode_compatible -class MessageOfTheDay(models.Model): +class Message(models.Model): label = models.CharField(max_length=32, verbose_name=_('Label')) message = models.TextField(verbose_name=_('Message')) enabled = models.BooleanField(default=True, verbose_name=_('Enabled')) @@ -20,11 +20,11 @@ class MessageOfTheDay(models.Model): blank=True, null=True, verbose_name=_('End date time') ) - objects = MessageOfTheDayManager() + objects = MessageManager() class Meta: - verbose_name = _('Message of the day') - verbose_name_plural = _('Messages of the day') + verbose_name = _('Message') + verbose_name_plural = _('Messages') def __str__(self): return self.label diff --git a/mayan/apps/motd/permissions.py b/mayan/apps/motd/permissions.py new file mode 100644 index 0000000000..61cc7e37c3 --- /dev/null +++ b/mayan/apps/motd/permissions.py @@ -0,0 +1,20 @@ +from __future__ import absolute_import, unicode_literals + +from django.utils.translation import ugettext_lazy as _ + +from permissions import PermissionNamespace + +namespace = PermissionNamespace('motd', _('Message of the day')) + +permission_message_create = namespace.add_permission( + name='message_create', label=_('Create messages') +) +permission_message_delete = namespace.add_permission( + name='message_delete', label=_('Delete messages') +) +permission_message_edit = namespace.add_permission( + name='message_edit', label=_('Edit messages') +) +permission_message_view = namespace.add_permission( + name='message_view', label=_('View messages') +) diff --git a/mayan/apps/motd/urls.py b/mayan/apps/motd/urls.py new file mode 100644 index 0000000000..9ff081b7e4 --- /dev/null +++ b/mayan/apps/motd/urls.py @@ -0,0 +1,18 @@ +from __future__ import unicode_literals + +from django.conf.urls import patterns, url + +from .views import ( + MessageCreateView, MessageDeleteView, MessageEditView, MessageListView +) + +urlpatterns = patterns( + 'motd.views', + url(r'^list/$', MessageListView.as_view(), name='message_list'), + url(r'^create/$', MessageCreateView.as_view(), name='message_create'), + url(r'^(?P\d+)/edit/$', MessageEditView.as_view(), name='message_edit'), + url( + r'^(?P\d+)/delete/$', MessageDeleteView.as_view(), + name='message_delete' + ), +) diff --git a/mayan/apps/motd/views.py b/mayan/apps/motd/views.py new file mode 100644 index 0000000000..54a748d121 --- /dev/null +++ b/mayan/apps/motd/views.py @@ -0,0 +1,74 @@ +from __future__ import absolute_import, unicode_literals + +import logging + +from django.conf import settings +from django.contrib import messages +from django.core.exceptions import PermissionDenied +from django.core.urlresolvers import reverse, reverse_lazy +from django.http import HttpResponseRedirect +from django.shortcuts import get_object_or_404, render_to_response +from django.template import RequestContext +from django.utils.translation import ugettext_lazy as _, ungettext + +from common.views import ( + SingleObjectCreateView, SingleObjectDeleteView, SingleObjectEditView, + SingleObjectListView +) + +from .models import MessageOfTheDay +from .permissions import ( + permission_message_create, permission_message_delete, permission_message_edit, + permission_message_view, +) + +logger = logging.getLogger(__name__) + + +class MessageCreateView(SingleObjectCreateView): + fields = ('label',) + model = Message + view_permission = permission_message_create + + def get_extra_context(self): + return { + 'object_name': _('Message'), + 'title': _('Create message'), + } + + +class MessageDeleteView(SingleObjectDeleteView): + model = Message + object_permission = permission_message_delete + post_action_redirect = reverse_lazy('messages:message_list') + + def get_extra_context(self): + return { + 'object_name': _('Message'), + 'object': self.get_object(), + 'title': _('Delete the message: %s?') % self.get_object(), + } + + +class MessageEditView(SingleObjectEditView): + fields = ('label',) + model = Message + object_permission = permission_message_edit + post_action_redirect = reverse_lazy('messages:message_list') + + def get_extra_context(self): + return { + 'object': self.get_object(), + 'object_name': _('Message'), + 'title': _('Edit message: %s') % self.get_object(), + } + + +class MessageListView(SingleObjectListView): + model = Message + object_permission = permission_message_view + + def get_extra_context(self): + return { + 'hide_link': True, + 'title': _('Messages'), From fba236b0fcc3c910f468ab32551b33da927cf7e8 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 01:51:22 -0400 Subject: [PATCH 059/205] Remove Patreon donation link. --- README.rst | 6 +----- docs/_templates/donate.html | 3 --- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/README.rst b/README.rst index 6959a6ac2d..7e5266c94b 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -|Build Status| |Coverage badge| |PyPI badge| |Installs badge| |License badge| +|PyPI badge| |Build Status| |Coverage badge| |Installs badge| |License badge| |Logo| @@ -19,10 +19,6 @@ Free Open Source Electronic Document Management System. |Animation| -Support -------- -Help support further improvements and development by donating at: https://www.patreon.com/siloraptor - License ------- diff --git a/docs/_templates/donate.html b/docs/_templates/donate.html index a2b3baa11d..9cf176a602 100644 --- a/docs/_templates/donate.html +++ b/docs/_templates/donate.html @@ -4,9 +4,6 @@
  • - PayPal.Me
  • -
  • - - Patreon -
  • - or Gumroad: Buy Mayan EDMS From ba2be644f6be29aa28168ba7eeab8bd375f5482d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 01:51:39 -0400 Subject: [PATCH 060/205] Add note about accessing runserver from other machines. --- docs/topics/installation.rst | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/topics/installation.rst b/docs/topics/installation.rst index 94a6a86869..a7b365fe91 100644 --- a/docs/topics/installation.rst +++ b/docs/topics/installation.rst @@ -112,13 +112,21 @@ Point your browser to http://127.0.0.1:8000. If everything was installed correctly you should see the login screen and panel showing a randomly generated admin password. -Note: Background tasks and scheduled tasks will not run when using the test server. +Background tasks and scheduled tasks will not run when using the test server. +The ``runserver`` command is only meant for testing, do not use in a production +server. + +Note that the default IP address, 127.0.0.1, is not accessible from other +machines on your network. To make your test server viewable to other +machines on the network, use its own IP address (e.g. 192.168.2.1) or 0.0.0.0 or :: (with IPv6 enabled). + +You can provide an IPv6 address surrounded by brackets (e.g. [200a::1]:8000). This will automatically enable IPv6 support. Production use ============== -After making sure everything is running correctly, stop the `runserver` command. +After making sure everything is running correctly, stop the ``runserver`` command. Deploy **Mayan EDMS** using the webserver of your preference. For more information on deployment instructions and examples, checkout Django's official documentation on the topic https://docs.djangoproject.com/en/1.7/howto/deployment/ From 9ba03ff0cb21b8bf38c31ddcb198315b210771b0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 01:52:16 -0400 Subject: [PATCH 061/205] Fix datetime widget rendering. --- .../templates/appearance/generic_form_instance.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mayan/apps/appearance/templates/appearance/generic_form_instance.html b/mayan/apps/appearance/templates/appearance/generic_form_instance.html index abb976f164..08a7e68fb1 100644 --- a/mayan/apps/appearance/templates/appearance/generic_form_instance.html +++ b/mayan/apps/appearance/templates/appearance/generic_form_instance.html @@ -70,7 +70,11 @@
  • {% endfor %} {% elif field|widget_type == 'datetimeinput' %} - {{ field.value }} + {% if read_only %} + {{ field.value }} + {% else %} + {% render_field field class+="form-control" %} + {% endif %} {% else %} {% render_field field class+="form-control" %} {% endif %} From 71946491b386251be3eec3cd2be15d835d88a3f7 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 01:52:40 -0400 Subject: [PATCH 062/205] Show exception message when an app's URL can't be loaded. --- mayan/apps/common/apps.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mayan/apps/common/apps.py b/mayan/apps/common/apps.py index 5c0c51515d..a514036aff 100644 --- a/mayan/apps/common/apps.py +++ b/mayan/apps/common/apps.py @@ -56,8 +56,11 @@ class MayanAppConfig(apps.AppConfig): namespace=self.app_namespace or self.name ) ), - except ImportError: - logger.debug('App %s doesn\'t have URLs defined.', self.name) + except ImportError as exception: + logger.debug( + 'App %s doesn\'t have URLs defined. Exception: %s', self.name, + exception + ) class CommonApp(MayanAppConfig): From 3fa9092d57470ba51cab0c6ca262b3db7a2f8177 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 01:53:15 -0400 Subject: [PATCH 063/205] Complete changes needed to add the Message of the Day app. Closes GitLab issue #222. --- HISTORY.rst | 1 + mayan/apps/motd/apps.py | 17 +++++++++++++++-- mayan/apps/motd/models.py | 18 ++++++++++++++---- mayan/apps/motd/templatetags/motd_tags.py | 4 ++-- mayan/apps/motd/tests/test_models.py | 12 ++++++------ mayan/apps/motd/urls.py | 2 +- mayan/apps/motd/views.py | 18 ++++++++++-------- 7 files changed, 49 insertions(+), 23 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 839e73b7ea..0f4c02e4ac 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -18,6 +18,7 @@ - Fixed date locale handling in document properties, checkout and user detail views. - Add new permission: checkout details view. - Add HTML5 upload widget. Issue #162. +- Add Message of the Day app. Issue #222 2.0.2 (2016-02-09) ================== diff --git a/mayan/apps/motd/apps.py b/mayan/apps/motd/apps.py index 6a81910ea9..42eacb3556 100644 --- a/mayan/apps/motd/apps.py +++ b/mayan/apps/motd/apps.py @@ -9,7 +9,8 @@ from django.contrib.auth.signals import user_logged_in from django.db.models.signals import post_save from django.utils.translation import ugettext_lazy as _ -from common import MayanAppConfig, menu_object, menu_secondary, menu_tools +from common import MayanAppConfig, menu_object, menu_secondary, menu_setup +from navigation import SourceColumn from .links import ( link_message_create, link_message_delete, link_message_edit, @@ -29,6 +30,18 @@ class MOTDApp(MayanAppConfig): Message = self.get_model('Message') + SourceColumn( + source=Message, label=_('Enabled'), attribute='enabled' + ) + SourceColumn( + source=Message, label=_('Start date time'), + func=lambda context: context['object'].start_datetime or _('None') + ) + SourceColumn( + source=Message, label=_('End date time'), + func=lambda context: context['object'].end_datetime or _('None') + ) + menu_object.bind_links( links=( link_message_edit, link_message_delete @@ -38,6 +51,6 @@ class MOTDApp(MayanAppConfig): links=(link_message_create,), sources=(Message, 'motd:message_list', 'motd:message_create') ) - menu_tools.bind_links( + menu_setup.bind_links( links=(link_message_list,) ) diff --git a/mayan/apps/motd/models.py b/mayan/apps/motd/models.py index 02a8d97943..e240da0b64 100644 --- a/mayan/apps/motd/models.py +++ b/mayan/apps/motd/models.py @@ -10,14 +10,24 @@ from .managers import MessageManager @python_2_unicode_compatible class Message(models.Model): - label = models.CharField(max_length=32, verbose_name=_('Label')) - message = models.TextField(verbose_name=_('Message')) + label = models.CharField( + max_length=32, help_text=_('Short description of this message.'), + verbose_name=_('Label') + ) + message = models.TextField( + help_text=_('The actual message to be displayed.'), + verbose_name=_('Message') + ) enabled = models.BooleanField(default=True, verbose_name=_('Enabled')) start_datetime = models.DateTimeField( - blank=True, null=True, verbose_name=_('Start date time') + blank=True, help_text=_( + 'Date and time after which this message will be displayed.' + ), null=True, verbose_name=_('Start date time') ) end_datetime = models.DateTimeField( - blank=True, null=True, verbose_name=_('End date time') + blank=True, help_text=_( + 'Date and time until when this message is to be displayed.' + ), null=True, verbose_name=_('End date time') ) objects = MessageManager() diff --git a/mayan/apps/motd/templatetags/motd_tags.py b/mayan/apps/motd/templatetags/motd_tags.py index e490386f85..734e2184f5 100644 --- a/mayan/apps/motd/templatetags/motd_tags.py +++ b/mayan/apps/motd/templatetags/motd_tags.py @@ -2,11 +2,11 @@ from __future__ import unicode_literals from django.template import Library -from ..models import MessageOfTheDay +from ..models import Message register = Library() @register.inclusion_tag('motd/messages.html') def motd(): - return {'messages': MessageOfTheDay.objects.get_for_now()} + return {'messages': Message.objects.get_for_now()} diff --git a/mayan/apps/motd/tests/test_models.py b/mayan/apps/motd/tests/test_models.py index 858bbf1b55..7a1df0acb8 100644 --- a/mayan/apps/motd/tests/test_models.py +++ b/mayan/apps/motd/tests/test_models.py @@ -5,7 +5,7 @@ from datetime import timedelta from django.test import TestCase from django.utils import timezone -from ..models import MessageOfTheDay +from ..models import Message TEST_LABEL = 'test label' TEST_MESSAGE = 'test message' @@ -13,12 +13,12 @@ TEST_MESSAGE = 'test message' class MOTDTestCase(TestCase): def setUp(self): - self.motd = MessageOfTheDay.objects.create( + self.motd = Message.objects.create( label=TEST_LABEL, message=TEST_MESSAGE ) def test_basic(self): - queryset = MessageOfTheDay.objects.get_for_now() + queryset = Message.objects.get_for_now() self.assertEqual(queryset.exists(), True) @@ -26,7 +26,7 @@ class MOTDTestCase(TestCase): self.motd.start_datetime = timezone.now() - timedelta(days=1) self.motd.save() - queryset = MessageOfTheDay.objects.get_for_now() + queryset = Message.objects.get_for_now() self.assertEqual(queryset.first(), self.motd) @@ -35,7 +35,7 @@ class MOTDTestCase(TestCase): self.motd.end_datetime = timezone.now() - timedelta(days=1) self.motd.save() - queryset = MessageOfTheDay.objects.get_for_now() + queryset = Message.objects.get_for_now() self.assertEqual(queryset.exists(), False) @@ -43,6 +43,6 @@ class MOTDTestCase(TestCase): self.motd.enabled=False self.motd.save() - queryset = MessageOfTheDay.objects.get_for_now() + queryset = Message.objects.get_for_now() self.assertEqual(queryset.exists(), False) diff --git a/mayan/apps/motd/urls.py b/mayan/apps/motd/urls.py index 9ff081b7e4..709e8d7488 100644 --- a/mayan/apps/motd/urls.py +++ b/mayan/apps/motd/urls.py @@ -7,7 +7,7 @@ from .views import ( ) urlpatterns = patterns( - 'motd.views', + '', url(r'^list/$', MessageListView.as_view(), name='message_list'), url(r'^create/$', MessageCreateView.as_view(), name='message_create'), url(r'^(?P\d+)/edit/$', MessageEditView.as_view(), name='message_edit'), diff --git a/mayan/apps/motd/views.py b/mayan/apps/motd/views.py index 54a748d121..f8a883874d 100644 --- a/mayan/apps/motd/views.py +++ b/mayan/apps/motd/views.py @@ -16,17 +16,17 @@ from common.views import ( SingleObjectListView ) -from .models import MessageOfTheDay +from .models import Message from .permissions import ( - permission_message_create, permission_message_delete, permission_message_edit, - permission_message_view, + permission_message_create, permission_message_delete, + permission_message_edit, permission_message_view, ) logger = logging.getLogger(__name__) class MessageCreateView(SingleObjectCreateView): - fields = ('label',) + fields = ('label', 'message', 'enabled', 'start_datetime', 'end_datetime') model = Message view_permission = permission_message_create @@ -40,21 +40,22 @@ class MessageCreateView(SingleObjectCreateView): class MessageDeleteView(SingleObjectDeleteView): model = Message object_permission = permission_message_delete - post_action_redirect = reverse_lazy('messages:message_list') + post_action_redirect = reverse_lazy('motd:message_list') def get_extra_context(self): return { - 'object_name': _('Message'), + 'message': None, 'object': self.get_object(), + 'object_name': _('Message'), 'title': _('Delete the message: %s?') % self.get_object(), } class MessageEditView(SingleObjectEditView): - fields = ('label',) + fields = ('label', 'message', 'enabled', 'start_datetime', 'end_datetime') model = Message object_permission = permission_message_edit - post_action_redirect = reverse_lazy('messages:message_list') + post_action_redirect = reverse_lazy('motd:message_list') def get_extra_context(self): return { @@ -72,3 +73,4 @@ class MessageListView(SingleObjectListView): return { 'hide_link': True, 'title': _('Messages'), + } From 35cc0ea1d6945f38e7fa175a7860976eb38f7622 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 04:15:13 -0400 Subject: [PATCH 064/205] Exclude root API and API doc URLs. --- mayan/apps/rest_api/apps.py | 3 +++ mayan/settings/base.py | 2 ++ 2 files changed, 5 insertions(+) diff --git a/mayan/apps/rest_api/apps.py b/mayan/apps/rest_api/apps.py index 392537674a..883198886c 100644 --- a/mayan/apps/rest_api/apps.py +++ b/mayan/apps/rest_api/apps.py @@ -1,5 +1,6 @@ from __future__ import unicode_literals +from django.conf import settings from django.utils.translation import ugettext_lazy as _ from common import MayanAppConfig, menu_tools @@ -17,6 +18,8 @@ class RESTAPIApp(MayanAppConfig): def ready(self): super(RESTAPIApp, self).ready() + settings.STRONGHOLD_PUBLIC_URLS += (r'^/%s/.+$' % self.app_url,) + APIEndPoint(app=self, name='rest', version_string='1') Package(label='Django REST framework', license_text=''' diff --git a/mayan/settings/base.py b/mayan/settings/base.py index 84ee1d6115..7845298000 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -261,3 +261,5 @@ SWAGGER_SETTINGS = { # ------ Timezone -------- TIMEZONE_COOKIE_NAME = 'django_timezone' TIMEZONE_SESSION_KEY = 'django_timezone' +# ----- Stronghold ------- +STRONGHOLD_PUBLIC_URLS = (r'^/docs/.+$',) From 858648782bf671d6d8f2061af9108480717a9f4e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 04:48:22 -0400 Subject: [PATCH 065/205] Update Folder creation and Tag creation API calls to return the id of the created instances. --- mayan/apps/folders/serializers.py | 13 ++++--------- mayan/apps/folders/tests/test_api.py | 5 ++++- mayan/apps/tags/api_views.py | 10 ++++++++-- mayan/apps/tags/serializers.py | 9 +++++++++ mayan/apps/tags/tests/test_api.py | 6 +++++- 5 files changed, 30 insertions(+), 13 deletions(-) diff --git a/mayan/apps/folders/serializers.py b/mayan/apps/folders/serializers.py index 554cc10c09..c1ca9876ff 100644 --- a/mayan/apps/folders/serializers.py +++ b/mayan/apps/folders/serializers.py @@ -32,15 +32,10 @@ class FolderSerializer(serializers.HyperlinkedModelSerializer): return obj.documents.count() -class NewFolderSerializer(serializers.Serializer): - label = serializers.CharField() - - def create(self, validated_data): - try: - data = validated_data.copy() - return Folder.objects.create(**data) - except Exception as exception: - raise ValidationError(exception) +class NewFolderSerializer(serializers.ModelSerializer): + class Meta: + fields = ('label', 'id') + model = Folder class FolderDocumentSerializer(DocumentSerializer): diff --git a/mayan/apps/folders/tests/test_api.py b/mayan/apps/folders/tests/test_api.py index 9f1cf2389c..039e41e619 100644 --- a/mayan/apps/folders/tests/test_api.py +++ b/mayan/apps/folders/tests/test_api.py @@ -34,10 +34,13 @@ class FolderAPITestCase(APITestCase): ) def test_folder_create(self): - self.client.post( + response = self.client.post( reverse('rest_api:folder-list'), {'label': TEST_FOLDER_LABEL} ) + self.assertEqual(response.data['id'], 1) + self.assertEqual(response.data['label'], TEST_FOLDER_LABEL) + folder = Folder.objects.first() self.assertEqual(Folder.objects.count(), 1) diff --git a/mayan/apps/tags/api_views.py b/mayan/apps/tags/api_views.py index a4d2de5cb1..f24e267ef3 100644 --- a/mayan/apps/tags/api_views.py +++ b/mayan/apps/tags/api_views.py @@ -21,7 +21,8 @@ from .permissions import ( permission_tag_remove, permission_tag_view ) from .serializers import ( - DocumentTagSerializer, NewDocumentTagSerializer, TagSerializer + DocumentTagSerializer, NewDocumentTagSerializer, NewTagSerializer, + TagSerializer ) @@ -71,7 +72,12 @@ class APITagListView(generics.ListCreateAPIView): mayan_view_permissions = {'POST': (permission_tag_create,)} permission_classes = (MayanPermission,) queryset = Tag.objects.all() - serializer_class = TagSerializer + + def get_serializer_class(self): + if self.request.method == 'GET': + return TagSerializer + elif self.request.method == 'POST': + return NewTagSerializer def get(self, *args, **kwargs): """ diff --git a/mayan/apps/tags/serializers.py b/mayan/apps/tags/serializers.py index 674c97a383..633169c685 100644 --- a/mayan/apps/tags/serializers.py +++ b/mayan/apps/tags/serializers.py @@ -33,6 +33,15 @@ class TagSerializer(serializers.HyperlinkedModelSerializer): return instance.documents.count() + +class NewTagSerializer(serializers.ModelSerializer): + class Meta: + fields = ( + 'color', 'label', 'id' + ) + model = Tag + + class NewDocumentTagSerializer(serializers.Serializer): tag = serializers.IntegerField( help_text=_('Primary key of the tag to be added.') diff --git a/mayan/apps/tags/tests/test_api.py b/mayan/apps/tags/tests/test_api.py index 679d5560cb..aafa4e65f4 100644 --- a/mayan/apps/tags/tests/test_api.py +++ b/mayan/apps/tags/tests/test_api.py @@ -40,12 +40,16 @@ class TagAPITestCase(APITestCase): self.admin_user.delete() def test_tag_create(self): - self.client.post( + response = self.client.post( reverse('rest_api:tag-list'), { 'label': TEST_TAG_LABEL, 'color': TEST_TAG_COLOR } ) + self.assertEqual(response.data['id'], 1) + self.assertEqual(response.data['label'], TEST_TAG_LABEL) + self.assertEqual(response.data['color'], TEST_TAG_COLOR) + tag = Tag.objects.first() self.assertEqual(Tag.objects.count(), 1) From f5d2ea7d9e91ea6fc37418735f1eaf2f238156cc Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 20:08:51 -0400 Subject: [PATCH 066/205] Update Django version to 1.8.11. --- requirements/common.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/common.txt b/requirements/common.txt index 2805c81ed5..40e59101da 100644 --- a/requirements/common.txt +++ b/requirements/common.txt @@ -1,2 +1,2 @@ -r base.txt -Django==1.8.8 +Django==1.8.11 From 9823202405336f0adbdfc0727c37a47a2a2b3fdb Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 20:20:54 -0400 Subject: [PATCH 067/205] Remove typecasting of file objects into Django's File class, not needed in Django >1.8.x. --- mayan/apps/acls/tests/test_models.py | 7 +++---- mayan/apps/checkouts/tests/test_models.py | 5 ++--- .../apps/document_states/tests/test_views.py | 3 +-- mayan/apps/documents/tests/test_api.py | 17 +++++++-------- mayan/apps/documents/tests/test_links.py | 5 ++--- mayan/apps/documents/tests/test_models.py | 21 +++++++++---------- mayan/apps/documents/tests/test_views.py | 3 +-- mayan/apps/dynamic_search/tests/test_api.py | 3 +-- .../apps/dynamic_search/tests/test_models.py | 3 +-- mayan/apps/dynamic_search/tests/test_views.py | 3 +-- mayan/apps/folders/tests/test_api.py | 5 ++--- mayan/apps/folders/tests/test_models.py | 3 +-- mayan/apps/ocr/tests/test_api.py | 3 +-- mayan/apps/tags/tests/test_api.py | 5 ++--- 14 files changed, 36 insertions(+), 50 deletions(-) diff --git a/mayan/apps/acls/tests/test_models.py b/mayan/apps/acls/tests/test_models.py index 0a9e399ec1..571350452c 100644 --- a/mayan/apps/acls/tests/test_models.py +++ b/mayan/apps/acls/tests/test_models.py @@ -3,7 +3,6 @@ from __future__ import absolute_import, unicode_literals from django.contrib.auth import get_user_model from django.contrib.auth.models import Group from django.core.exceptions import PermissionDenied -from django.core.files import File from django.test import TestCase, override_settings from documents.models import Document, DocumentType @@ -32,17 +31,17 @@ class PermissionTestCase(TestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document_1 = self.document_type_1.new_document( - file_object=File(file_object) + file_object=file_object ) with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document_2 = self.document_type_1.new_document( - file_object=File(file_object) + file_object=file_object ) with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document_3 = self.document_type_2.new_document( - file_object=File(file_object) + file_object=file_object ) self.user = get_user_model().objects.create( diff --git a/mayan/apps/checkouts/tests/test_models.py b/mayan/apps/checkouts/tests/test_models.py index 757e492135..74a5b256a3 100644 --- a/mayan/apps/checkouts/tests/test_models.py +++ b/mayan/apps/checkouts/tests/test_models.py @@ -4,7 +4,6 @@ import datetime import time from django.contrib.auth import get_user_model -from django.core.files import File from django.test import TestCase, override_settings from django.utils.timezone import now @@ -35,7 +34,7 @@ class DocumentCheckoutTestCase(TestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=File(file_object) + file_object=file_object ) def tearDown(self): @@ -66,7 +65,7 @@ class DocumentCheckoutTestCase(TestCase): with self.assertRaises(NewDocumentVersionNotAllowed): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: - self.document.new_version(file_object=File(file_object)) + self.document.new_version(file_object=file_object) def test_checkin_in(self): expiration_datetime = now() + datetime.timedelta(days=1) diff --git a/mayan/apps/document_states/tests/test_views.py b/mayan/apps/document_states/tests/test_views.py index 283ba7833d..028818247d 100644 --- a/mayan/apps/document_states/tests/test_views.py +++ b/mayan/apps/document_states/tests/test_views.py @@ -1,7 +1,6 @@ from __future__ import unicode_literals from django.contrib.auth import get_user_model -from django.core.files import File from django.core.urlresolvers import reverse from django.test.client import Client from django.test import TestCase @@ -43,7 +42,7 @@ class DocumentStateViewTestCase(TestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=File(file_object) + file_object=file_object ) def tearDown(self): diff --git a/mayan/apps/documents/tests/test_api.py b/mayan/apps/documents/tests/test_api.py index 6763518c05..c258b04b37 100644 --- a/mayan/apps/documents/tests/test_api.py +++ b/mayan/apps/documents/tests/test_api.py @@ -8,7 +8,6 @@ from json import loads from django.contrib.auth import get_user_model -from django.core.files import File from django.core.urlresolvers import reverse from django.test import override_settings from django.utils.six import BytesIO @@ -152,7 +151,7 @@ class DocumentAPITestCase(APITestCase): def test_document_move_to_trash(self): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = self.document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) self.client.delete( @@ -165,7 +164,7 @@ class DocumentAPITestCase(APITestCase): def test_deleted_document_delete_from_trash(self): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = self.document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) document.delete() @@ -182,7 +181,7 @@ class DocumentAPITestCase(APITestCase): def test_deleted_document_restore(self): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = self.document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) document.delete() @@ -197,7 +196,7 @@ class DocumentAPITestCase(APITestCase): def test_document_new_version_upload(self): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = self.document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) # Artifical delay since MySQL doesn't store microsecond data in @@ -230,14 +229,14 @@ class DocumentAPITestCase(APITestCase): def test_document_version_revert(self): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = self.document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) # Needed by MySQL as milliseconds value is not store in timestamp field time.sleep(1) with open(TEST_DOCUMENT_PATH) as file_object: - document.new_version(file_object=File(file_object)) + document.new_version(file_object=file_object) self.assertEqual(document.versions.count(), 2) @@ -256,7 +255,7 @@ class DocumentAPITestCase(APITestCase): def test_document_download(self): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = self.document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) response = self.client.get( @@ -276,7 +275,7 @@ class DocumentAPITestCase(APITestCase): def test_document_version_download(self): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = self.document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) response = self.client.get( diff --git a/mayan/apps/documents/tests/test_links.py b/mayan/apps/documents/tests/test_links.py index 44e168ee90..3cf8e04445 100644 --- a/mayan/apps/documents/tests/test_links.py +++ b/mayan/apps/documents/tests/test_links.py @@ -4,7 +4,6 @@ from __future__ import unicode_literals import time -from django.core.files import File from django.core.urlresolvers import reverse from acls.models import AccessControlList @@ -26,7 +25,7 @@ from .test_views import GenericDocumentViewTestCase class DocumentsLinksTestCase(GenericDocumentViewTestCase): def test_document_version_revert_link_no_permission(self): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: - self.document.new_version(file_object=File(file_object)) + self.document.new_version(file_object=file_object) self.assertTrue(self.document.versions.count(), 2) @@ -44,7 +43,7 @@ class DocumentsLinksTestCase(GenericDocumentViewTestCase): time.sleep(2) with open(TEST_SMALL_DOCUMENT_PATH) as file_object: - self.document.new_version(file_object=File(file_object)) + self.document.new_version(file_object=file_object) self.assertTrue(self.document.versions.count(), 2) diff --git a/mayan/apps/documents/tests/test_models.py b/mayan/apps/documents/tests/test_models.py index 52945f03f1..c8ec1d737e 100644 --- a/mayan/apps/documents/tests/test_models.py +++ b/mayan/apps/documents/tests/test_models.py @@ -3,7 +3,6 @@ from __future__ import unicode_literals from datetime import timedelta import time -from django.core.files import File from django.test import TestCase, override_settings from ..exceptions import NewDocumentVersionNotAllowed @@ -25,7 +24,7 @@ class DocumentTestCase(TestCase): with open(TEST_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=File(file_object), label='mayan_11_1.pdf' + file_object=file_object, label='mayan_11_1.pdf' ) def tearDown(self): @@ -48,11 +47,11 @@ class DocumentTestCase(TestCase): def test_version_creation(self): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: - self.document.new_version(file_object=File(file_object)) + self.document.new_version(file_object=file_object) with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document.new_version( - file_object=File(file_object), comment='test comment 1' + file_object=file_object, comment='test comment 1' ) self.assertEqual(self.document.versions.count(), 3) @@ -144,7 +143,7 @@ class OfficeDocumentTestCase(TestCase): with open(TEST_OFFICE_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=File(file_object) + file_object=file_object ) def tearDown(self): @@ -171,7 +170,7 @@ class MultiPageTiffTestCase(TestCase): with open(TEST_MULTI_PAGE_TIFF_PATH) as file_object: self.document = self.document_type.new_document( - file_object=File(file_object) + file_object=file_object ) def tearDown(self): @@ -196,7 +195,7 @@ class DocumentVersionTestCase(TestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=File(file_object) + file_object=file_object ) def tearDown(self): @@ -207,7 +206,7 @@ class DocumentVersionTestCase(TestCase): with open(TEST_DOCUMENT_PATH) as file_object: self.document.new_version( - file_object=File(file_object) + file_object=file_object ) self.assertEqual(self.document.versions.count(), 2) @@ -226,7 +225,7 @@ class DocumentVersionTestCase(TestCase): with open(TEST_DOCUMENT_PATH) as file_object: self.document.new_version( - file_object=File(file_object) + file_object=file_object ) self.assertEqual(self.document.versions.count(), 2) @@ -274,7 +273,7 @@ class NewVersionBlockTestCase(TestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=File(file_object) + file_object=file_object ) def tearDown(self): @@ -314,4 +313,4 @@ class NewVersionBlockTestCase(TestCase): with self.assertRaises(NewDocumentVersionNotAllowed): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: - self.document.new_version(file_object=File(file_object)) + self.document.new_version(file_object=file_object) diff --git a/mayan/apps/documents/tests/test_views.py b/mayan/apps/documents/tests/test_views.py index 3b5c0e2aa3..0b8e10c166 100644 --- a/mayan/apps/documents/tests/test_views.py +++ b/mayan/apps/documents/tests/test_views.py @@ -3,7 +3,6 @@ from __future__ import unicode_literals from django.contrib.contenttypes.models import ContentType -from django.core.files import File from django.test import override_settings from django.utils.six import BytesIO @@ -49,7 +48,7 @@ class GenericDocumentViewTestCase(GenericViewTestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=File(file_object), label='mayan_11_1.pdf' + file_object=file_object, label='mayan_11_1.pdf' ) def tearDown(self): diff --git a/mayan/apps/dynamic_search/tests/test_api.py b/mayan/apps/dynamic_search/tests/test_api.py index df087c2178..d218757736 100644 --- a/mayan/apps/dynamic_search/tests/test_api.py +++ b/mayan/apps/dynamic_search/tests/test_api.py @@ -3,7 +3,6 @@ from __future__ import unicode_literals from json import loads from django.contrib.auth import get_user_model -from django.core.files import File from django.core.urlresolvers import reverse from django.test import override_settings @@ -39,7 +38,7 @@ class SearchAPITestCase(APITestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) response = self.client.get( diff --git a/mayan/apps/dynamic_search/tests/test_models.py b/mayan/apps/dynamic_search/tests/test_models.py index 559f9ae697..5c9d1bb0f0 100644 --- a/mayan/apps/dynamic_search/tests/test_models.py +++ b/mayan/apps/dynamic_search/tests/test_models.py @@ -1,7 +1,6 @@ from __future__ import unicode_literals from django.contrib.auth import get_user_model -from django.core.files.base import File from django.test import TestCase from documents.models import DocumentType @@ -24,7 +23,7 @@ class DocumentSearchTestCase(TestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=File(file_object), label='mayan_11_1.pdf' + file_object=file_object, label='mayan_11_1.pdf' ) def tearDown(self): diff --git a/mayan/apps/dynamic_search/tests/test_views.py b/mayan/apps/dynamic_search/tests/test_views.py index b6640e170b..38f756027d 100644 --- a/mayan/apps/dynamic_search/tests/test_views.py +++ b/mayan/apps/dynamic_search/tests/test_views.py @@ -1,7 +1,6 @@ from __future__ import unicode_literals from django.contrib.auth import get_user_model -from django.core.files.base import File from django.core.urlresolvers import reverse from django.test import TestCase from django.test.client import Client @@ -42,7 +41,7 @@ class Issue46TestCase(TestCase): for i in range(self.document_count): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document_type.new_document( - file_object=File(file_object), + file_object=file_object, label='test document', ) diff --git a/mayan/apps/folders/tests/test_api.py b/mayan/apps/folders/tests/test_api.py index 039e41e619..1e7180b1fb 100644 --- a/mayan/apps/folders/tests/test_api.py +++ b/mayan/apps/folders/tests/test_api.py @@ -1,7 +1,6 @@ from __future__ import unicode_literals from django.contrib.auth import get_user_model -from django.core.files import File from django.core.urlresolvers import reverse from django.test import override_settings @@ -77,7 +76,7 @@ class FolderAPITestCase(APITestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) self.client.post( @@ -97,7 +96,7 @@ class FolderAPITestCase(APITestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) folder.documents.add(document) diff --git a/mayan/apps/folders/tests/test_models.py b/mayan/apps/folders/tests/test_models.py index 6889fe6154..ca4682f94d 100644 --- a/mayan/apps/folders/tests/test_models.py +++ b/mayan/apps/folders/tests/test_models.py @@ -1,7 +1,6 @@ from __future__ import unicode_literals from django.contrib.auth import get_user_model -from django.core.files.base import File from django.test import TestCase from documents.models import DocumentType @@ -23,7 +22,7 @@ class FolderTestCase(TestCase): with open(TEST_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=File(file_object) + file_object=file_object ) self.user = get_user_model().objects.create_superuser( diff --git a/mayan/apps/ocr/tests/test_api.py b/mayan/apps/ocr/tests/test_api.py index 76044ce15f..1194a76748 100644 --- a/mayan/apps/ocr/tests/test_api.py +++ b/mayan/apps/ocr/tests/test_api.py @@ -3,7 +3,6 @@ from __future__ import unicode_literals import json from django.contrib.auth import get_user_model -from django.core.files import File from django.core.urlresolvers import reverse from rest_framework import status @@ -37,7 +36,7 @@ class OCRAPITestCase(APITestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) def tearDown(self): diff --git a/mayan/apps/tags/tests/test_api.py b/mayan/apps/tags/tests/test_api.py index aafa4e65f4..ca0950918c 100644 --- a/mayan/apps/tags/tests/test_api.py +++ b/mayan/apps/tags/tests/test_api.py @@ -1,7 +1,6 @@ from __future__ import unicode_literals from django.contrib.auth import get_user_model -from django.core.files import File from django.core.urlresolvers import reverse from django.test import override_settings @@ -89,7 +88,7 @@ class TagAPITestCase(APITestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) self.client.post( @@ -109,7 +108,7 @@ class TagAPITestCase(APITestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: document = document_type.new_document( - file_object=File(file_object), + file_object=file_object, ) tag.documents.add(document) From c2c95787cbfbff390db710dc9a42f2f5ea5dbf78 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 20:38:00 -0400 Subject: [PATCH 068/205] Improve folder and tag creation api test. --- mayan/apps/folders/tests/test_api.py | 6 +++--- mayan/apps/tags/tests/test_api.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mayan/apps/folders/tests/test_api.py b/mayan/apps/folders/tests/test_api.py index 1e7180b1fb..333198a4d5 100644 --- a/mayan/apps/folders/tests/test_api.py +++ b/mayan/apps/folders/tests/test_api.py @@ -37,11 +37,11 @@ class FolderAPITestCase(APITestCase): reverse('rest_api:folder-list'), {'label': TEST_FOLDER_LABEL} ) - self.assertEqual(response.data['id'], 1) - self.assertEqual(response.data['label'], TEST_FOLDER_LABEL) - folder = Folder.objects.first() + self.assertEqual(response.data['id'], folder.pk) + self.assertEqual(response.data['label'], TEST_FOLDER_LABEL) + self.assertEqual(Folder.objects.count(), 1) self.assertEqual(folder.label, TEST_FOLDER_LABEL) diff --git a/mayan/apps/tags/tests/test_api.py b/mayan/apps/tags/tests/test_api.py index ca0950918c..d714a5a14f 100644 --- a/mayan/apps/tags/tests/test_api.py +++ b/mayan/apps/tags/tests/test_api.py @@ -45,12 +45,12 @@ class TagAPITestCase(APITestCase): } ) - self.assertEqual(response.data['id'], 1) + tag = Tag.objects.first() + + self.assertEqual(response.data['id'], tag.pk) self.assertEqual(response.data['label'], TEST_TAG_LABEL) self.assertEqual(response.data['color'], TEST_TAG_COLOR) - tag = Tag.objects.first() - self.assertEqual(Tag.objects.count(), 1) self.assertEqual(tag.label, TEST_TAG_LABEL) self.assertEqual(tag.color, TEST_TAG_COLOR) From adcc37d8a4163f485090930a449390b1e4d8dda6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 22:35:27 -0400 Subject: [PATCH 069/205] Remove ununsed metadata function. --- mayan/apps/metadata/api.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/mayan/apps/metadata/api.py b/mayan/apps/metadata/api.py index a61e599d34..397ac35db9 100644 --- a/mayan/apps/metadata/api.py +++ b/mayan/apps/metadata/api.py @@ -100,18 +100,6 @@ def metadata_repr_as_list(metadata_list): return output -def convert_dict_to_dict_list(dictionary): - result = [] - for key, value in dictionary.items(): - try: - metadata_type = MetadataType.objects.get(name=key) - except MetadataType.DoesNotExist: - raise ValueError('Unknown metadata type name') - result.append({'id': metadata_type.pk, 'value': value}) - - return result - - def set_bulk_metadata(document, metadata_dictionary): document_type = document.document_type document_type_metadata_types = [ From 928d86088af5b9a99121d6fc361b8c1655bcb3dc Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 14 Mar 2016 22:35:54 -0400 Subject: [PATCH 070/205] Update release notes for 2.1 --- HISTORY.rst | 1 - docs/releases/2.1.rst | 31 ++++++++++++++++++++++++++++++- 2 files changed, 30 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 0f4c02e4ac..3258059bf9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -12,7 +12,6 @@ - Silence all Django 1.8 model import warnings. - Implement per document type document creation permission. Closes GitLab issue #232. - Add icons to the document face menu links. -- Increase icon size by 10%. - Increase icon to text spacing to 3px. - Make document type delete time period optional. - Fixed date locale handling in document properties, checkout and user detail views. diff --git a/docs/releases/2.1.rst b/docs/releases/2.1.rst index fd49997944..4e64f09a8e 100644 --- a/docs/releases/2.1.rst +++ b/docs/releases/2.1.rst @@ -7,7 +7,30 @@ Released: April, 2016 What's new ========== +- Upgrade to use Django 1.8.8. +- Remove remaining references to Django's User model. +- Remove included login required middleware using django-stronghold instead (http://mikegrouchy.com/django-stronghold/). +- Improve generation of success and error messages for class based views. +- Remove ownership concept from folders. +- Replace strip_spaces middleware with the spaceless template tag. +- Deselect the update checkbox for optional metadata by default. +- Implement per document type document creation permission. +- Make document type delete time period optional. +- Fixed date locale handling in document properties, checkout and user detail views. +- Add HTML5 upload widget. Issue #162. +- Add Message of the Day app. Issue #222 + +Other changes +============= +- Upgrade requirements. +- Rename 'Content' search box to 'OCR'. +- Silence all Django 1.8 model import warnings. +- Add icons to the document face menu links. +- Increase icon to text spacing to 3px. +- Add new permission: checkout details view. - Add HTML tags stripping to the browser title generation template. +- Folder and Tag creation API calls now return the id of the created instances. + Removals -------- @@ -62,6 +85,12 @@ Backward incompatible changes Bugs fixed or issues closed =========================== -* `GitLab issue #250 `_ Empty optional lookup metadata trigger validation error. +* `GitLab issue #162 `_ Add HTML5 file uploader. +* `GitLab issue #222 `_ Add notice board or Message of the Day. +* `GitLab issue #225 `_ Remove hard coded User model. +* `GitLab issue #232 `_ "Create documents" is a blanket permission for a user to create a document of any document type. +* `GitLab issue #246 `_ Upgrade to Django version 1.8 as Django 1.7 is end-of-life. +* `GitLab issue #255 `_ UnicodeDecodeError in apps/common/middleware/strip_spaces_widdleware.py. + .. _PyPI: https://pypi.python.org/pypi/mayan-edms/ From 3d36f1b8289307cd4500b022fdda43cd41845e23 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 15 Mar 2016 01:44:34 -0400 Subject: [PATCH 071/205] Update Document model's uuid field to use Django's native UUIDField class. --- HISTORY.rst | 1 + docs/releases/2.1.rst | 8 +++--- .../migrations/0028_newversionblock.py | 13 ++++++++-- .../migrations/0030_auto_20160309_1837.py | 14 +++++++++-- .../documents/migrations/0031_convert_uuid.py | 25 +++++++++++++++++++ .../migrations/0032_auto_20160315_0537.py | 20 +++++++++++++++ mayan/apps/documents/models.py | 4 +-- 7 files changed, 74 insertions(+), 11 deletions(-) create mode 100644 mayan/apps/documents/migrations/0031_convert_uuid.py create mode 100644 mayan/apps/documents/migrations/0032_auto_20160315_0537.py diff --git a/HISTORY.rst b/HISTORY.rst index 3258059bf9..731cf761f7 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -18,6 +18,7 @@ - Add new permission: checkout details view. - Add HTML5 upload widget. Issue #162. - Add Message of the Day app. Issue #222 +- Update Document model's uuid field to use Django's native UUIDField class. 2.0.2 (2016-02-09) ================== diff --git a/docs/releases/2.1.rst b/docs/releases/2.1.rst index 4e64f09a8e..f04f053a49 100644 --- a/docs/releases/2.1.rst +++ b/docs/releases/2.1.rst @@ -7,7 +7,7 @@ Released: April, 2016 What's new ========== -- Upgrade to use Django 1.8.8. +- Upgrade to use Django 1.8.11. - Remove remaining references to Django's User model. - Remove included login required middleware using django-stronghold instead (http://mikegrouchy.com/django-stronghold/). - Improve generation of success and error messages for class based views. @@ -17,8 +17,8 @@ What's new - Implement per document type document creation permission. - Make document type delete time period optional. - Fixed date locale handling in document properties, checkout and user detail views. -- Add HTML5 upload widget. Issue #162. -- Add Message of the Day app. Issue #222 +- Add HTML5 upload widget. +- Add Message of the Day app. Other changes ============= @@ -30,7 +30,7 @@ Other changes - Add new permission: checkout details view. - Add HTML tags stripping to the browser title generation template. - Folder and Tag creation API calls now return the id of the created instances. - +- Update Document model's uuid field to use Django's native UUIDField class. Removals -------- diff --git a/mayan/apps/documents/migrations/0028_newversionblock.py b/mayan/apps/documents/migrations/0028_newversionblock.py index 8fbc1e35a3..98e809aaa3 100644 --- a/mayan/apps/documents/migrations/0028_newversionblock.py +++ b/mayan/apps/documents/migrations/0028_newversionblock.py @@ -14,8 +14,17 @@ class Migration(migrations.Migration): migrations.CreateModel( name='NewVersionBlock', fields=[ - ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), - ('document', models.ForeignKey(verbose_name='Document', to='documents.Document')), + ( + 'id', models.AutoField( + verbose_name='ID', serialize=False, auto_created=True, + primary_key=True + ) + ), + ( + 'document', models.ForeignKey( + verbose_name='Document', to='documents.Document' + ) + ), ], options={ 'verbose_name': 'New version block', diff --git a/mayan/apps/documents/migrations/0030_auto_20160309_1837.py b/mayan/apps/documents/migrations/0030_auto_20160309_1837.py index 9712f700ed..7083daa277 100644 --- a/mayan/apps/documents/migrations/0030_auto_20160309_1837.py +++ b/mayan/apps/documents/migrations/0030_auto_20160309_1837.py @@ -14,11 +14,21 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='documenttype', name='delete_time_period', - field=models.PositiveIntegerField(default=30, help_text='Amount of time after which documents of this type in the trash will be deleted.', null=True, verbose_name='Delete time period', blank=True), + field=models.PositiveIntegerField( + default=30, help_text='Amount of time after which documents ' + 'of this type in the trash will be deleted.', null=True, + verbose_name='Delete time period', blank=True + ), ), migrations.AlterField( model_name='documenttype', name='delete_time_unit', - field=models.CharField(default='days', choices=[('days', 'Days'), ('hours', 'Hours'), ('minutes', 'Minutes')], max_length=8, blank=True, null=True, verbose_name='Delete time unit'), + field=models.CharField( + default='days', choices=[ + ('days', 'Days'), ('hours', 'Hours'), + ('minutes', 'Minutes') + ], max_length=8, blank=True, null=True, + verbose_name='Delete time unit' + ), ), ] diff --git a/mayan/apps/documents/migrations/0031_convert_uuid.py b/mayan/apps/documents/migrations/0031_convert_uuid.py new file mode 100644 index 0000000000..28edb9d746 --- /dev/null +++ b/mayan/apps/documents/migrations/0031_convert_uuid.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +import uuid + +from django.db import migrations, models + + +def convert_uuid_to_hex(apps, schema_editor): + Document = apps.get_model('documents', 'Document') + + for document in Document.objects.all(): + document.uuid = uuid.UUID(document.uuid).hex + document.save() + + +class Migration(migrations.Migration): + + dependencies = [ + ('documents', '0030_auto_20160309_1837'), + ] + + operations = [ + migrations.RunPython(convert_uuid_to_hex), + ] diff --git a/mayan/apps/documents/migrations/0032_auto_20160315_0537.py b/mayan/apps/documents/migrations/0032_auto_20160315_0537.py new file mode 100644 index 0000000000..0e413efaca --- /dev/null +++ b/mayan/apps/documents/migrations/0032_auto_20160315_0537.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models +import uuid + + +class Migration(migrations.Migration): + + dependencies = [ + ('documents', '0031_convert_uuid'), + ] + + operations = [ + migrations.AlterField( + model_name='document', + name='uuid', + field=models.UUIDField(default=uuid.uuid4, editable=False), + ), + ] diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index ab8b417b17..d3cb6a8cd5 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -149,9 +149,7 @@ class Document(models.Model): Defines a single document with it's fields and properties """ - uuid = models.CharField( - default=UUID_FUNCTION, editable=False, max_length=48 - ) + uuid = models.UUIDField(default=uuid.uuid4, editable=False) document_type = models.ForeignKey( DocumentType, related_name='documents', verbose_name=_('Document type') From 1a20d93e4c185d2ab443f9d23e5a87896eff52f2 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 15 Mar 2016 04:11:19 -0400 Subject: [PATCH 072/205] Add new split move index navigation. --- .../appearance/calculate_form_title.html | 2 +- mayan/apps/document_indexing/apps.py | 8 +- mayan/apps/document_indexing/managers.py | 5 + mayan/apps/document_indexing/models.py | 23 +++-- mayan/apps/document_indexing/tasks.py | 2 +- .../document_indexing/node_details.html | 25 +++++ mayan/apps/document_indexing/views.py | 19 ++-- mayan/apps/document_indexing/widgets.py | 93 +++++++++---------- 8 files changed, 105 insertions(+), 72 deletions(-) create mode 100644 mayan/apps/document_indexing/templates/document_indexing/node_details.html diff --git a/mayan/apps/appearance/templates/appearance/calculate_form_title.html b/mayan/apps/appearance/templates/appearance/calculate_form_title.html index e27204e32c..da6f1c075a 100644 --- a/mayan/apps/appearance/templates/appearance/calculate_form_title.html +++ b/mayan/apps/appearance/templates/appearance/calculate_form_title.html @@ -1,7 +1,7 @@ {% load i18n %} {% if title %} - {{ title|striptags }} + {{ title }} {% else %} {% if read_only %} {% blocktrans %}Details for: {{ object }}{% endblocktrans %} diff --git a/mayan/apps/document_indexing/apps.py b/mayan/apps/document_indexing/apps.py index aef05f315d..fed0dadcaa 100644 --- a/mayan/apps/document_indexing/apps.py +++ b/mayan/apps/document_indexing/apps.py @@ -29,7 +29,7 @@ from .links import ( link_template_node_create, link_template_node_delete, link_template_node_edit ) -from .widgets import get_breadcrumbs, index_instance_item_link, node_level +from .widgets import get_instance_link, index_instance_item_link, node_level class DocumentIndexingApp(MayanAppConfig): @@ -107,7 +107,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. SourceColumn( source=IndexInstance, label=_('Items'), - func=lambda context: context['object'].get_items_count( + func=lambda context: context['object'].get_item_count( user=context['request'].user ) ) @@ -144,8 +144,8 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. SourceColumn( source=DocumentIndexInstanceNode, label=_('Node'), - func=lambda context: get_breadcrumbs( - index_instance_node=context['object'], single_link=True, + func=lambda context: get_instance_link( + index_instance_node=context['object'], ) ) SourceColumn( diff --git a/mayan/apps/document_indexing/managers.py b/mayan/apps/document_indexing/managers.py index c389a108c3..4eea5fd87b 100644 --- a/mayan/apps/document_indexing/managers.py +++ b/mayan/apps/document_indexing/managers.py @@ -11,6 +11,11 @@ from documents.models import Document logger = logging.getLogger(__name__) +class DocumentIndexInstanceNodeManager(models.Manager): + def get_for(self, document): + return self.filter(documents=document) + + class IndexManager(models.Manager): def get_by_natural_key(self, name): return self.get(name=name) diff --git a/mayan/apps/document_indexing/models.py b/mayan/apps/document_indexing/models.py index d57100daed..744d94767e 100644 --- a/mayan/apps/document_indexing/models.py +++ b/mayan/apps/document_indexing/models.py @@ -14,7 +14,9 @@ from documents.models import Document, DocumentType from documents.permissions import permission_document_view from permissions import Permission -from .managers import IndexManager, IndexInstanceNodeManager +from .managers import ( + DocumentIndexInstanceNodeManager, IndexManager, IndexInstanceNodeManager +) @python_2_unicode_compatible @@ -88,7 +90,7 @@ class IndexInstance(Index): except IndexInstanceNode.DoesNotExist: return 0 - def get_items_count(self, user): + def get_item_count(self, user): try: return self.instance_root.get_item_count(user=user) except IndexInstanceNode.DoesNotExist: @@ -171,7 +173,7 @@ class IndexInstanceNode(MPTTModel): return self.get_children() def index(self): - return self.index_template_node.index + return IndexInstance.objects.get(pk=self.index_template_node.index.pk) def get_item_count(self, user): if self.index_template_node.link_documents: @@ -188,16 +190,21 @@ class IndexInstanceNode(MPTTModel): else: return self.get_children().count() + def get_full_path(self): + result = [] + for node in self.get_ancestors(include_self=True): + if node.is_root_node(): + result.append(unicode(self.index())) + else: + result.append(unicode(node)) + + return ' / '.join(result) + class Meta: verbose_name = _('Index node instance') verbose_name_plural = _('Indexes node instances') -class DocumentIndexInstanceNodeManager(models.Manager): - def get_for(self, document): - return self.filter(documents=document) - - class DocumentIndexInstanceNode(IndexInstanceNode): objects = DocumentIndexInstanceNodeManager() diff --git a/mayan/apps/document_indexing/tasks.py b/mayan/apps/document_indexing/tasks.py index 5b115d9d35..e6cfe43bc3 100644 --- a/mayan/apps/document_indexing/tasks.py +++ b/mayan/apps/document_indexing/tasks.py @@ -100,7 +100,7 @@ def task_do_rebuild_all_indexes(self): app_label='lock_manager', model_name='Lock' ) - if Lock.check_existing(name__startswith='document_indexing_task_update_index_document'): + if Lock.objects.check_existing(name__startswith='document_indexing_task_update_index_document'): # A document index update is happening, wait raise self.retry() diff --git a/mayan/apps/document_indexing/templates/document_indexing/node_details.html b/mayan/apps/document_indexing/templates/document_indexing/node_details.html new file mode 100644 index 0000000000..9fa2ffee6c --- /dev/null +++ b/mayan/apps/document_indexing/templates/document_indexing/node_details.html @@ -0,0 +1,25 @@ +{% extends 'appearance/base.html' %} + +{% load i18n %} + +{% load navigation_tags %} + +{% block title %}{% include 'appearance/calculate_form_title.html' %}{% endblock %} + +{% block content %} + {% if title %} +

    {{ title }}

    +
    + {% endif %} + +
    +
    + {{ navigation }} +
    + +
    + {% include 'appearance/generic_list_subtemplate.html' %} +
    +
    + +{% endblock %} diff --git a/mayan/apps/document_indexing/views.py b/mayan/apps/document_indexing/views.py index c21fe2741c..fb0da0beb7 100644 --- a/mayan/apps/document_indexing/views.py +++ b/mayan/apps/document_indexing/views.py @@ -31,7 +31,7 @@ from .permissions import ( permission_document_indexing_setup, permission_document_indexing_view ) from .tasks import task_do_rebuild_all_indexes -from .widgets import get_breadcrumbs +from .widgets import node_tree # Setup views @@ -236,7 +236,9 @@ class IndexListView(SingleObjectListView): } -class IndexInstanceNodeView(DocumentListView, SingleObjectListView): +class IndexInstanceNodeView(DocumentListView): + template_name = 'document_indexing/node_details.html' + def dispatch(self, request, *args, **kwargs): self.index_instance = get_object_or_404( IndexInstanceNode, pk=self.kwargs['pk'] @@ -280,11 +282,14 @@ class IndexInstanceNodeView(DocumentListView, SingleObjectListView): context = { 'hide_links': True, 'object': self.index_instance, - 'title': mark_safe( - _( - 'Contents for index: %s' - ) % get_breadcrumbs(self.index_instance) - ) + 'navigation': mark_safe( + _('Navigation: %s') % node_tree( + node=self.index_instance, user=self.request.user + ) + ), + 'title': _( + 'Contents for index: %s' + ) % self.index_instance.get_full_path(), } if self.index_instance and not self.index_instance.index_template_node.link_documents: diff --git a/mayan/apps/document_indexing/widgets.py b/mayan/apps/document_indexing/widgets.py index f7371e92c0..880c57777e 100644 --- a/mayan/apps/document_indexing/widgets.py +++ b/mayan/apps/document_indexing/widgets.py @@ -2,64 +2,21 @@ from __future__ import unicode_literals from django.apps import apps -from django.utils.html import mark_safe +from django.utils.html import mark_safe, escape from django.utils.translation import ugettext -def get_instance_link(index_instance_node, text=None, simple=False): +def get_instance_link(index_instance_node): """ - Return an HTML anchor to an index instance + Return an HTML anchor to an index node instance """ - if simple: - # Just display the instance's value or overrided text, no - # HTML anchor - template = '%(value)s' - else: - template = '%(value)s' - - return template % { - 'url': index_instance_node.get_absolute_url(), - 'value': text if text else ( - index_instance_node if index_instance_node.parent else index_instance_node.index_template_node.index + return mark_safe( + '{text}'.format( + url=index_instance_node.get_absolute_url(), + text=escape(index_instance_node.get_full_path()) ) - } - - -def get_breadcrumbs(index_instance_node, simple=False, single_link=False, include_count=False): - """ - Return a joined string of HTML anchors to every index instance's - parent from the root of the tree to the index instance - """ - - result = [] - if single_link: - # Return the entire breadcrumb path as a single HTML anchor - simple = True - - for instance in index_instance_node.get_ancestors(): - result.append(get_instance_link(instance, simple=simple)) - - result.append(get_instance_link(index_instance_node, simple=simple)) - - output = [] - - if include_count: - output.append('(%d)' % index_instance_node.documents.count()) - - if single_link: - # Return the entire breadcrumb path as a single HTML anchor - output.insert( - 0, get_instance_link( - index_instance_node=index_instance_node, text=( - ' / '.join(result) - ) - ) - ) - return mark_safe(' '.join(output)) - else: - output.insert(0, ' / '.join(result)) - return mark_safe(' '.join(output)) + ) def index_instance_item_link(index_instance_item): @@ -99,3 +56,37 @@ def node_level(node): ] ) ) + + +def node_tree(node, user): + result = [] + + result.append('
    ') + + for ancestor in node.get_ancestors(include_self=True): + if ancestor.is_root_node(): + element = node.index() + level = 0 + icon = 'fa fa-list-ul' + else: + element = ancestor + level = getattr(element, element._mptt_meta.level_attr) + if element.index_template_node.link_documents: + icon = 'fa fa-folder' + else: + icon = 'fa fa-level-up fa-rotate-90' + + result.append( + '{count}{space} {text}'.format( + url=element.get_absolute_url(), + active='active' if element == node or node.get_ancestors(include_self=True).count() == 1 else '', + count=element.get_item_count(user=user), + icon=icon, + space='     ' * level, + text=escape(element) + ) + ) + + result.append('
    ') + + return mark_safe(''.join(result)) From 86af663e91cb2655eea6d41e6f486752723c1b3b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 15 Mar 2016 04:14:34 -0400 Subject: [PATCH 073/205] Use MPTT's native get_level method. --- mayan/apps/document_indexing/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/document_indexing/widgets.py b/mayan/apps/document_indexing/widgets.py index 880c57777e..7c684dfc29 100644 --- a/mayan/apps/document_indexing/widgets.py +++ b/mayan/apps/document_indexing/widgets.py @@ -70,7 +70,7 @@ def node_tree(node, user): icon = 'fa fa-list-ul' else: element = ancestor - level = getattr(element, element._mptt_meta.level_attr) + level = element.get_level() if element.index_template_node.link_documents: icon = 'fa fa-folder' else: From aeff40331d6ec665a2383240f2e3b63c84bf4f63 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 15 Mar 2016 04:14:51 -0400 Subject: [PATCH 074/205] Update changelog and release notes. --- HISTORY.rst | 1 + docs/releases/2.1.rst | 1 + 2 files changed, 2 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 731cf761f7..18c9734551 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -19,6 +19,7 @@ - Add HTML5 upload widget. Issue #162. - Add Message of the Day app. Issue #222 - Update Document model's uuid field to use Django's native UUIDField class. +- Add new split view index navigation 2.0.2 (2016-02-09) ================== diff --git a/docs/releases/2.1.rst b/docs/releases/2.1.rst index f04f053a49..4e6bd33993 100644 --- a/docs/releases/2.1.rst +++ b/docs/releases/2.1.rst @@ -31,6 +31,7 @@ Other changes - Add HTML tags stripping to the browser title generation template. - Folder and Tag creation API calls now return the id of the created instances. - Update Document model's uuid field to use Django's native UUIDField class. +- Add new split view index navigation Removals -------- From 8ae61b87b5ac25514451d1f12fb33df416e6d7ff Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 15 Mar 2016 04:22:04 -0400 Subject: [PATCH 075/205] Update requirements in setup.py. --- setup.py | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/setup.py b/setup.py index 44f74d5690..93ba134cef 100644 --- a/setup.py +++ b/setup.py @@ -56,34 +56,36 @@ def find_packages(directory): return packages install_requires = """ -Django==1.7.10 -Pillow==2.9.0 +Django==1.8.11 +Pillow==3.1.0 PyYAML==3.11 -celery==3.1.18 +celery==3.1.19 cssmin==0.2.0 django-activity-stream==0.6.0 django-autoadmin==1.1.0 -django-celery==3.1.16 +django-celery==3.1.17 django-colorful==1.1.0 -django-compressor==1.5 +django-compressor==2.0 django-cors-headers==1.1.0 django-filetransfers==0.1.0 -django-pure-pagination==0.2.1 -django-model-utils==2.2 -django-mptt==0.7.4 +django-formtools==1.0 +django-pure-pagination==0.3.0 +django-model-utils==2.4 +django-mptt==0.8.0 django-qsstats-magic==0.7.2 django-rest-swagger==0.3.4 -django-suit==0.2.13 -django-widget-tweaks==1.3 -djangorestframework==3.1.3 +django-stronghold==0.2.7 +django-suit==0.2.16 +django-widget-tweaks==1.4.1 +djangorestframework==3.3.2 djangorestframework-recursive==0.1.1 fusepy==2.0.2 pdfminer==20140328 -pycountry==1.10 +pycountry==1.19 pytesseract==0.1.6 python-dateutil==2.4.2 -python-gnupg==0.3.7 -python-magic==0.4.6 +python-gnupg==0.3.8 +python-magic==0.4.10 pytz==2015.4 sh==1.11 """.split() From 6bf352ecbb8ae8b073dfc775d3211b5cacd29bf8 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 15 Mar 2016 18:39:48 -0400 Subject: [PATCH 076/205] Fix queryset assigment, should always be of MetadataType not DocumentTypeMetadataType, errors out on Postgres. --- mayan/apps/metadata/forms.py | 6 +++++- mayan/apps/metadata/views.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/mayan/apps/metadata/forms.py b/mayan/apps/metadata/forms.py index 3d5365b3ea..d6a5a93cd6 100644 --- a/mayan/apps/metadata/forms.py +++ b/mayan/apps/metadata/forms.py @@ -101,7 +101,11 @@ class AddMetadataForm(forms.Form): def __init__(self, *args, **kwargs): document_type = kwargs.pop('document_type') super(AddMetadataForm, self).__init__(*args, **kwargs) - self.fields['metadata_type'].queryset = document_type.metadata.all() + self.fields['metadata_type'].queryset = MetadataType.objects.filter( + pk__in=document_type.metadata.values_list( + 'metadata_type', flat=True + ) + ) class MetadataTypeForm(forms.ModelForm): diff --git a/mayan/apps/metadata/views.py b/mayan/apps/metadata/views.py index cd0ee7dd44..62631129b0 100644 --- a/mayan/apps/metadata/views.py +++ b/mayan/apps/metadata/views.py @@ -243,7 +243,7 @@ def metadata_add(request, document_id=None, document_id_list=None): try: document_metadata, created = DocumentMetadata.objects.get_or_create( document=document, - metadata_type=metadata_type.metadata_type, + metadata_type=metadata_type, defaults={'value': ''} ) except Exception as exception: From 0ecfb83d14056948b2f1bfbf6be0f738a737e6d1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 15 Mar 2016 19:03:42 -0400 Subject: [PATCH 077/205] Fix metadata edit view test. --- mayan/apps/metadata/tests/test_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/metadata/tests/test_views.py b/mayan/apps/metadata/tests/test_views.py index 9e0c71d7eb..47caf82b3e 100644 --- a/mayan/apps/metadata/tests/test_views.py +++ b/mayan/apps/metadata/tests/test_views.py @@ -116,7 +116,7 @@ class DocumentMetadataTestCase(GenericDocumentViewTestCase): response = self.post( 'metadata:metadata_edit', args=(self.document.pk,), data={ - 'form-0-id': document_metadata_2.pk, + 'form-0-id': document_metadata_2.metadata_type.pk, 'form-0-update': True, 'form-0-value': TEST_DOCUMENT_METADATA_VALUE_2, 'form-TOTAL_FORMS': '1', From e2bfece9ff27cd8d36763a49df1d38205fce9c1c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 16 Mar 2016 16:40:17 -0400 Subject: [PATCH 078/205] Update document OCR content view to a CBV. --- mayan/apps/ocr/forms.py | 2 +- mayan/apps/ocr/urls.py | 9 +++++---- mayan/apps/ocr/views.py | 40 ++++++++++++++++++---------------------- 3 files changed, 24 insertions(+), 27 deletions(-) diff --git a/mayan/apps/ocr/forms.py b/mayan/apps/ocr/forms.py index d57df232a3..939e19a741 100644 --- a/mayan/apps/ocr/forms.py +++ b/mayan/apps/ocr/forms.py @@ -18,7 +18,7 @@ class DocumentContentForm(forms.Form): single textarea widget """ def __init__(self, *args, **kwargs): - self.document = kwargs.pop('document', None) + self.document = kwargs.pop('instance', None) super(DocumentContentForm, self).__init__(*args, **kwargs) content = [] self.fields['contents'].initial = '' diff --git a/mayan/apps/ocr/urls.py b/mayan/apps/ocr/urls.py index 1e3b433875..3a878df21f 100644 --- a/mayan/apps/ocr/urls.py +++ b/mayan/apps/ocr/urls.py @@ -6,14 +6,15 @@ from .api_views import ( APIDocumentOCRView, APIDocumentPageContentView, APIDocumentVersionOCRView ) from .views import ( - DocumentAllSubmitView, DocumentSubmitView, DocumentSubmitManyView, - DocumentTypeSettingsEditView, DocumentTypeSubmitView, EntryListView + DocumentAllSubmitView, DocumentOCRContent, DocumentSubmitView, + DocumentSubmitManyView, DocumentTypeSettingsEditView, + DocumentTypeSubmitView, EntryListView ) urlpatterns = patterns( - 'ocr.views', + '', url( - r'^(?P\d+)/content/$', 'document_content', + r'^(?P\d+)/content/$', DocumentOCRContent.as_view(), name='document_content' ), url( diff --git a/mayan/apps/ocr/views.py b/mayan/apps/ocr/views.py index 465b32524a..f163f71d15 100644 --- a/mayan/apps/ocr/views.py +++ b/mayan/apps/ocr/views.py @@ -10,7 +10,8 @@ from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList from common.generics import ( - ConfirmView, FormView, SingleObjectEditView, SingleObjectListView + ConfirmView, FormView, SingleObjectDetailView, SingleObjectEditView, + SingleObjectListView ) from common.mixins import MultipleInstanceActionMixin from documents.models import Document, DocumentType @@ -134,30 +135,25 @@ class DocumentTypeSettingsEditView(SingleObjectEditView): } -def document_content(request, document_id): - document = get_object_or_404(Document, pk=document_id) +class DocumentOCRContent(SingleObjectDetailView): + model = Document + form_class = DocumentContentForm + object_permission = permission_ocr_content_view - try: - Permission.check_permissions( - request.user, (permission_ocr_content_view,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - permission_ocr_content_view, request.user, document + def dispatch(self, request, *args, **kwargs): + result = super(DocumentOCRContent, self).dispatch( + request, *args, **kwargs ) + self.get_object().add_as_recent_document_for_user(request.user) + return result - document.add_as_recent_document_for_user(request.user) - - content_form = DocumentContentForm(document=document) - - return render_to_response('appearance/generic_form.html', { - 'document': document, - 'form': content_form, - 'hide_labels': True, - 'object': document, - 'read_only': True, - 'title': _('OCR result for document: %s') % document, - }, context_instance=RequestContext(request)) + def get_extra_context(self): + return { + 'document': self.get_object(), + 'hide_labels': True, + 'object': self.get_object(), + 'title': _('OCR result for document: %s') % self.get_object(), + } class EntryListView(SingleObjectListView): From a6c9393aa090b7aaa849832282d372af4d6dd884 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 16 Mar 2016 16:40:39 -0400 Subject: [PATCH 079/205] Permission app's views are all CBV, don't specify view module to preload. --- mayan/apps/permissions/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/permissions/urls.py b/mayan/apps/permissions/urls.py index 2f8be876d8..bb18ef10a3 100644 --- a/mayan/apps/permissions/urls.py +++ b/mayan/apps/permissions/urls.py @@ -9,7 +9,7 @@ from .views import ( ) urlpatterns = patterns( - 'permissions.views', + '', url(r'^role/list/$', RoleListView.as_view(), name='role_list'), url(r'^role/create/$', RoleCreateView.as_view(), name='role_create'), url( From 5bb04cc8f463665a13e1f77939e21cd9572036f1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 16 Mar 2016 16:42:01 -0400 Subject: [PATCH 080/205] Add newly uploaded document to the recent document list of the user. --- HISTORY.rst | 1 + docs/releases/2.1.rst | 1 + mayan/apps/sources/models.py | 3 +++ 3 files changed, 5 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 18c9734551..215f80c800 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -20,6 +20,7 @@ - Add Message of the Day app. Issue #222 - Update Document model's uuid field to use Django's native UUIDField class. - Add new split view index navigation +- Newly uploaded documents appear in the Recent document list of the user. 2.0.2 (2016-02-09) ================== diff --git a/docs/releases/2.1.rst b/docs/releases/2.1.rst index 4e6bd33993..a0f7d1bf12 100644 --- a/docs/releases/2.1.rst +++ b/docs/releases/2.1.rst @@ -32,6 +32,7 @@ Other changes - Folder and Tag creation API calls now return the id of the created instances. - Update Document model's uuid field to use Django's native UUIDField class. - Add new split view index navigation +- Newly uploaded documents appear in the Recent document list of the user. Removals -------- diff --git a/mayan/apps/sources/models.py b/mayan/apps/sources/models.py index 22ad807261..1e4baf9ebd 100644 --- a/mayan/apps/sources/models.py +++ b/mayan/apps/sources/models.py @@ -74,6 +74,9 @@ class Source(models.Model): file_object=file_object, _user=user ) + if user: + document.add_as_recent_document_for_user(user) + Transformation.objects.copy( source=self, targets=document_version.pages.all() ) From c3149a58d6106a1948dffc711c3d5cf9c34804ed Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 16 Mar 2016 18:26:12 -0400 Subject: [PATCH 081/205] Sort variables. --- mayan/apps/ocr/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/ocr/views.py b/mayan/apps/ocr/views.py index f163f71d15..a11ee69ad4 100644 --- a/mayan/apps/ocr/views.py +++ b/mayan/apps/ocr/views.py @@ -136,8 +136,8 @@ class DocumentTypeSettingsEditView(SingleObjectEditView): class DocumentOCRContent(SingleObjectDetailView): - model = Document form_class = DocumentContentForm + model = Document object_permission = permission_ocr_content_view def dispatch(self, request, *args, **kwargs): From 67bb84c778b8eca6fb2797a253ff3e05a5b208b1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 16 Mar 2016 18:26:40 -0400 Subject: [PATCH 082/205] Convert smart link condition create, edit and delete views to CBV. --- mayan/apps/linking/urls.py | 19 +-- mayan/apps/linking/views.py | 232 +++++++++++++++++------------------- 2 files changed, 119 insertions(+), 132 deletions(-) diff --git a/mayan/apps/linking/urls.py b/mayan/apps/linking/urls.py index 9143d1dad1..71d593aca4 100644 --- a/mayan/apps/linking/urls.py +++ b/mayan/apps/linking/urls.py @@ -5,8 +5,9 @@ from django.conf.urls import patterns, url from .views import ( DocumentSmartLinkListView, ResolvedSmartLinkView, SetupSmartLinkDocumentTypesView, SmartLinkConditionListView, - SmartLinkCreateView, SmartLinkDeleteView, SmartLinkEditView, - SmartLinkListView + SmartLinkConditionCreateView, SmartLinkConditionEditView, + SmartLinkConditionDeleteView, SmartLinkCreateView, SmartLinkDeleteView, + SmartLinkEditView, SmartLinkListView ) urlpatterns = patterns( @@ -46,15 +47,17 @@ urlpatterns = patterns( SmartLinkConditionListView.as_view(), name='smart_link_condition_list' ), url( - r'^setup/(?P\d+)/condition/create/$', - 'smart_link_condition_create', name='smart_link_condition_create' + r'^setup/(?P\d+)/condition/create/$', + SmartLinkConditionCreateView.as_view(), + name='smart_link_condition_create' ), url( - r'^setup/smart_link/condition/(?P\d+)/edit/$', - 'smart_link_condition_edit', name='smart_link_condition_edit' + r'^setup/smart_link/condition/(?P\d+)/edit/$', + SmartLinkConditionEditView.as_view(), name='smart_link_condition_edit' ), url( - r'^setup/smart_link/condition/(?P\d+)/delete/$', - 'smart_link_condition_delete', name='smart_link_condition_delete' + r'^setup/smart_link/condition/(?P\d+)/delete/$', + SmartLinkConditionDeleteView.as_view(), + name='smart_link_condition_delete' ), ) diff --git a/mayan/apps/linking/views.py b/mayan/apps/linking/views.py index 0b4d7d4814..89d38c4340 100644 --- a/mayan/apps/linking/views.py +++ b/mayan/apps/linking/views.py @@ -231,132 +231,116 @@ class SmartLinkConditionListView(SingleObjectListView): return self.get_smart_link().conditions.all() -def smart_link_condition_create(request, smart_link_pk): - smart_link = get_object_or_404(SmartLink, pk=smart_link_pk) +class SmartLinkConditionCreateView(SingleObjectCreateView): + form_class = SmartLinkConditionForm + object_name = _('SmartLink condition') - try: - Permission.check_permissions( - request.user, (permission_smart_link_edit,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - (permission_smart_link_edit,), request.user, smart_link - ) - - if request.method == 'POST': - form = SmartLinkConditionForm(data=request.POST) - if form.is_valid(): - new_smart_link_condition = form.save(commit=False) - new_smart_link_condition.smart_link = smart_link - new_smart_link_condition.save() - messages.success( - request, _( - 'Smart link condition: "%s" created successfully.' - ) % new_smart_link_condition - ) - return HttpResponseRedirect( - reverse( - 'linking:smart_link_condition_list', args=(smart_link.pk,) - ) - ) - else: - form = SmartLinkConditionForm() - - return render_to_response('appearance/generic_form.html', { - 'form': form, - 'title': _('Add new conditions to smart link: "%s"') % smart_link, - 'object': smart_link, - }, context_instance=RequestContext(request)) - - -def smart_link_condition_edit(request, smart_link_condition_pk): - smart_link_condition = get_object_or_404( - SmartLinkCondition, pk=smart_link_condition_pk - ) - - try: - Permission.check_permissions( - request.user, (permission_smart_link_edit,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - (permission_smart_link_edit,), request.user, - smart_link_condition.smart_link - ) - - next = request.POST.get('next', request.GET.get('next', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - - if request.method == 'POST': - form = SmartLinkConditionForm( - request.POST, instance=smart_link_condition - ) - if form.is_valid(): - smart_link_condition = form.save() - messages.success( - request, _( - 'Smart link condition: "%s" edited successfully.' - ) % smart_link_condition - ) - return HttpResponseRedirect(next) - else: - form = SmartLinkConditionForm(instance=smart_link_condition) - - return render_to_response('appearance/generic_form.html', { - 'condition': smart_link_condition, - 'form': form, - 'navigation_object_list': ('object', 'condition'), - 'next': next, - 'object': smart_link_condition.smart_link, - 'previous': previous, - 'title': _('Edit smart link condition'), - }, context_instance=RequestContext(request)) - - -def smart_link_condition_delete(request, smart_link_condition_pk): - smart_link_condition = get_object_or_404( - SmartLinkCondition, pk=smart_link_condition_pk - ) - - try: - Permission.check_permissions( - request.user, (permission_smart_link_edit,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - (permission_smart_link_edit,), request.user, - smart_link_condition.smart_link - ) - - next = request.POST.get('next', request.GET.get('next', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - - if request.method == 'POST': + def dispatch(self, request, *args, **kwargs): try: - smart_link_condition.delete() - messages.success( - request, _( - 'Smart link condition: "%s" deleted successfully.' - ) % smart_link_condition + Permission.check_permissions( + request.user, (permission_smart_link_edit,) ) - except Exception as exception: - messages.error( - request, _( - 'Error deleting smart link condition: ' - '%(smart_link_condition)s; %(exception)s.' - ) % { - 'smart_link_condition': smart_link_condition, - 'exception': exception - } + except PermissionDenied: + AccessControlList.objects.check_access( + (permission_smart_link_edit,), request.user, + self.get_smart_link() ) - return HttpResponseRedirect(next) + return super( + SmartLinkConditionCreateView, self + ).dispatch(request, *args, **kwargs) - return render_to_response('appearance/generic_confirm.html', { - 'condition': smart_link_condition, - 'delete_view': True, - 'navigation_object_list': ('object', 'condition'), - 'next': next, - 'object': smart_link_condition.smart_link, - 'previous': previous, - 'title': _('Delete smart link condition: "%s"?') % smart_link_condition, - }, context_instance=RequestContext(request)) + def get_extra_context(self): + return { + 'title': _( + 'Add new conditions to smart link: "%s"' + ) % self.get_smart_link(), + 'object': self.get_smart_link(), + 'object_name': _('Smart link condition'), + } + + def get_instance_extra_data(self): + return {'smart_link': self.get_smart_link()} + + def get_post_action_redirect(self): + return reverse( + 'linking:smart_link_condition_list', args=(self.get_smart_link().pk,) + ) + + def get_smart_link(self): + return get_object_or_404(SmartLink, pk=self.kwargs['pk']) + + def get_queryset(self): + return self.get_smart_link().conditions.all() + + +class SmartLinkConditionEditView(SingleObjectEditView): + form_class = SmartLinkConditionForm + model = SmartLinkCondition + + def dispatch(self, request, *args, **kwargs): + try: + Permission.check_permissions( + request.user, (permission_smart_link_edit,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + (permission_smart_link_edit,), request.user, + self.get_object().smart_link + ) + + return super( + SmartLinkConditionEditView, self + ).dispatch(request, *args, **kwargs) + + def get_extra_context(self): + return { + 'condition': self.get_object(), + 'navigation_object_list': ('object', 'condition'), + 'object': self.get_object().smart_link, + 'object_name': _('Smart link condition'), + 'title': _('Edit smart link condition'), + } + + def get_post_action_redirect(self): + return reverse( + 'linking:smart_link_condition_list', args=( + self.get_object().smart_link.pk, + ) + ) + + +class SmartLinkConditionDeleteView(SingleObjectDeleteView): + model = SmartLinkCondition + + def dispatch(self, request, *args, **kwargs): + try: + Permission.check_permissions( + request.user, (permission_smart_link_edit,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + (permission_smart_link_edit,), request.user, + self.get_object().smart_link + ) + + return super( + SmartLinkConditionDeleteView, self + ).dispatch(request, *args, **kwargs) + + def get_extra_context(self): + return { + 'condition': self.get_object(), + 'navigation_object_list': ('object', 'condition'), + 'object': self.get_object().smart_link, + 'object_name': _('Smart link condition'), + 'title': _( + 'Delete smart link condition: "%s"?' + ) % self.get_object(), + } + + def get_post_action_redirect(self): + return reverse( + 'linking:smart_link_condition_list', args=( + self.get_object().smart_link.pk, + ) + ) From 5079b2790e909df3d88cf90bcf2d9b20e185ae6b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 17 Mar 2016 00:39:04 -0400 Subject: [PATCH 083/205] Add Smart link view tests. --- mayan/apps/linking/apps.py | 4 +- mayan/apps/linking/tests/__init__.py | 0 mayan/apps/linking/tests/test_views.py | 108 +++++++++++++++++++++++++ 3 files changed, 111 insertions(+), 1 deletion(-) create mode 100644 mayan/apps/linking/tests/__init__.py create mode 100644 mayan/apps/linking/tests/test_views.py diff --git a/mayan/apps/linking/apps.py b/mayan/apps/linking/apps.py index 9931161a9e..e8d99160fc 100644 --- a/mayan/apps/linking/apps.py +++ b/mayan/apps/linking/apps.py @@ -29,6 +29,7 @@ from .permissions import ( class LinkingApp(MayanAppConfig): name = 'linking' + test = True verbose_name = _('Linking') def ready(self): @@ -58,7 +59,8 @@ class LinkingApp(MayanAppConfig): ) SourceColumn( - source=SmartLink, label=_('Dynamic label'), attribute='dynamic_label' + source=SmartLink, label=_('Dynamic label'), + attribute='dynamic_label' ) SourceColumn( source=SmartLink, label=_('Enabled'), diff --git a/mayan/apps/linking/tests/__init__.py b/mayan/apps/linking/tests/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/mayan/apps/linking/tests/test_views.py b/mayan/apps/linking/tests/test_views.py new file mode 100644 index 0000000000..f3f6f2121a --- /dev/null +++ b/mayan/apps/linking/tests/test_views.py @@ -0,0 +1,108 @@ +from __future__ import absolute_import, unicode_literals + +from documents.permissions import permission_document_view +from documents.tests.test_views import GenericDocumentViewTestCase +from user_management.tests import ( + TEST_USER_USERNAME, TEST_USER_PASSWORD +) + +from ..models import SmartLink +from ..permissions import ( + permission_smart_link_create, permission_smart_link_delete, + permission_smart_link_edit, permission_smart_link_view +) + +TEST_SMART_LINK_LABEL = 'test label' +TEST_SMART_LINK_EDITED_LABEL = 'test edited label' + + +class SmartLinkViewTestCase(GenericDocumentViewTestCase): + def test_smart_link_create_view_no_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.post( + 'linking:smart_link_create', data={ + 'label': TEST_SMART_LINK_LABEL + } + ) + + self.assertEquals(response.status_code, 403) + self.assertEqual(SmartLink.objects.count(), 0) + + def test_smart_link_create_view_with_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_smart_link_create.stored_permission + ) + + response = self.post( + 'linking:smart_link_create', data={ + 'label': TEST_SMART_LINK_LABEL + }, follow=True + ) + self.assertContains(response, text='created', status_code=200) + self.assertEqual(SmartLink.objects.count(), 1) + self.assertEqual( + SmartLink.objects.first().label, TEST_SMART_LINK_LABEL + ) + + def test_smart_link_delete_view_no_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + smart_link = SmartLink.objects.create(label=TEST_SMART_LINK_LABEL) + + response = self.post( + 'linking:smart_link_delete', args=(smart_link.pk,) + ) + self.assertEqual(response.status_code, 403) + self.assertEqual(SmartLink.objects.count(), 1) + + def test_smart_link_delete_view_with_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_smart_link_delete.stored_permission + ) + + smart_link = SmartLink.objects.create(label=TEST_SMART_LINK_LABEL) + + response = self.post( + 'linking:smart_link_delete', args=(smart_link.pk,), follow=True + ) + + self.assertContains(response, text='deleted', status_code=200) + self.assertEqual(SmartLink.objects.count(), 0) + + def test_smart_link_edit_view_no_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + smart_link = SmartLink.objects.create(label=TEST_SMART_LINK_LABEL) + + response = self.post( + 'linking:smart_link_edit', args=(smart_link.pk,), data={ + 'label': TEST_SMART_LINK_EDITED_LABEL + } + ) + self.assertEqual(response.status_code, 403) + smart_link = SmartLink.objects.get(pk=smart_link.pk) + self.assertEqual(smart_link.label, TEST_SMART_LINK_LABEL) + + def test_smart_link_edit_view_with_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_smart_link_edit.stored_permission + ) + + smart_link = SmartLink.objects.create(label=TEST_SMART_LINK_LABEL) + + response = self.post( + 'linking:smart_link_edit', args=(smart_link.pk,), data={ + 'label': TEST_SMART_LINK_EDITED_LABEL + }, follow=True + ) + + smart_link = SmartLink.objects.get(pk=smart_link.pk) + self.assertContains(response, text='update', status_code=200) + self.assertEqual(smart_link.label, TEST_SMART_LINK_EDITED_LABEL) From 4c4409aa1e6457e4a35fd3b02a45e3d10b928469 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 17 Mar 2016 00:39:22 -0400 Subject: [PATCH 084/205] PEP8 cleanups. --- .../documents/migrations/0031_convert_uuid.py | 2 +- mayan/apps/linking/urls.py | 2 +- mayan/apps/linking/views.py | 123 +++++++++--------- mayan/apps/motd/apps.py | 5 - mayan/apps/motd/links.py | 4 +- .../migrations/0004_auto_20160314_0040.py | 7 +- mayan/apps/motd/models.py | 1 - mayan/apps/motd/tests/test_models.py | 2 +- mayan/apps/motd/views.py | 12 +- mayan/apps/ocr/views.py | 3 +- mayan/apps/sources/forms.py | 1 + mayan/apps/sources/views.py | 1 - mayan/apps/tags/serializers.py | 1 - 13 files changed, 76 insertions(+), 88 deletions(-) diff --git a/mayan/apps/documents/migrations/0031_convert_uuid.py b/mayan/apps/documents/migrations/0031_convert_uuid.py index 28edb9d746..cbbf04ed1f 100644 --- a/mayan/apps/documents/migrations/0031_convert_uuid.py +++ b/mayan/apps/documents/migrations/0031_convert_uuid.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals import uuid -from django.db import migrations, models +from django.db import migrations def convert_uuid_to_hex(apps, schema_editor): diff --git a/mayan/apps/linking/urls.py b/mayan/apps/linking/urls.py index 71d593aca4..c9a1c01a1a 100644 --- a/mayan/apps/linking/urls.py +++ b/mayan/apps/linking/urls.py @@ -11,7 +11,7 @@ from .views import ( ) urlpatterns = patterns( - 'linking.views', + '', url( r'^document/(?P\d+)/list/$', DocumentSmartLinkListView.as_view(), name='smart_link_instances_for_document' diff --git a/mayan/apps/linking/views.py b/mayan/apps/linking/views.py index 89d38c4340..f67a71d0b1 100644 --- a/mayan/apps/linking/views.py +++ b/mayan/apps/linking/views.py @@ -2,13 +2,10 @@ from __future__ import absolute_import, unicode_literals import logging -from django.conf import settings from django.contrib import messages from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse, reverse_lazy -from django.http import HttpResponseRedirect -from django.shortcuts import get_object_or_404, render_to_response -from django.template import RequestContext +from django.shortcuts import get_object_or_404 from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList @@ -31,42 +28,6 @@ from .permissions import ( logger = logging.getLogger(__name__) -class SetupSmartLinkDocumentTypesView(AssignRemoveView): - decode_content_type = True - left_list_title = _('Available document types') - right_list_title = _('Document types enabled') - object_permission = permission_smart_link_edit - - def add(self, item): - self.get_object().document_types.add(item) - - def get_object(self): - return get_object_or_404(SmartLink, pk=self.kwargs['pk']) - - def left_list(self): - return AssignRemoveView.generate_choices( - DocumentType.objects.exclude( - pk__in=self.get_object().document_types.all() - ) - ) - - def right_list(self): - return AssignRemoveView.generate_choices( - self.get_object().document_types.all() - ) - - def remove(self, item): - self.get_object().document_types.remove(item) - - def get_extra_context(self): - return { - 'object': self.get_object(), - 'title': _( - 'Document type for which to enable smart link: %s' - ) % self.get_object() - } - - class ResolvedSmartLinkView(DocumentListView): def dispatch(self, request, *args, **kwargs): self.document = get_object_or_404( @@ -131,9 +92,51 @@ class ResolvedSmartLinkView(DocumentListView): } +class SetupSmartLinkDocumentTypesView(AssignRemoveView): + decode_content_type = True + left_list_title = _('Available document types') + object_permission = permission_smart_link_edit + right_list_title = _('Document types enabled') + + def add(self, item): + self.get_object().document_types.add(item) + + def get_extra_context(self): + return { + 'object': self.get_object(), + 'title': _( + 'Document type for which to enable smart link: %s' + ) % self.get_object() + } + + def get_object(self): + return get_object_or_404(SmartLink, pk=self.kwargs['pk']) + + def left_list(self): + return AssignRemoveView.generate_choices( + DocumentType.objects.exclude( + pk__in=self.get_object().document_types.all() + ) + ) + + def remove(self, item): + self.get_object().document_types.remove(item) + + def right_list(self): + return AssignRemoveView.generate_choices( + self.get_object().document_types.all() + ) + + class SmartLinkListView(SingleObjectListView): object_permission = permission_smart_link_view + def get_extra_context(self): + return { + 'hide_link': True, + 'title': _('Smart links'), + } + def get_queryset(self): self.queryset = self.get_smart_link_queryset() return super(SmartLinkListView, self).get_queryset() @@ -141,12 +144,6 @@ class SmartLinkListView(SingleObjectListView): def get_smart_link_queryset(self): return SmartLink.objects.all() - def get_extra_context(self): - return { - 'hide_link': True, - 'title': _('Smart links'), - } - class DocumentSmartLinkListView(SmartLinkListView): def dispatch(self, request, *args, **kwargs): @@ -165,20 +162,20 @@ class DocumentSmartLinkListView(SmartLinkListView): DocumentSmartLinkListView, self ).dispatch(request, *args, **kwargs) + def get_extra_context(self): + return { + 'document': self.document, + 'hide_link': True, + 'hide_object': True, + 'object': self.document, + 'title': _('Smart links for document: %s') % self.document, + } + def get_smart_link_queryset(self): return ResolvedSmartLink.objects.filter( document_types=self.document.document_type, enabled=True ) - def get_extra_context(self): - return { - 'document': self.document, - 'hide_object': True, - 'hide_link': True, - 'object': self.document, - 'title': _('Smart links for document: %s') % self.document, - } - class SmartLinkCreateView(SingleObjectCreateView): extra_context = {'title': _('Create new smart link')} @@ -224,12 +221,12 @@ class SmartLinkConditionListView(SingleObjectListView): ) % self.get_smart_link(), } - def get_smart_link(self): - return get_object_or_404(SmartLink, pk=self.kwargs['pk']) - def get_queryset(self): return self.get_smart_link().conditions.all() + def get_smart_link(self): + return get_object_or_404(SmartLink, pk=self.kwargs['pk']) + class SmartLinkConditionCreateView(SingleObjectCreateView): form_class = SmartLinkConditionForm @@ -263,15 +260,17 @@ class SmartLinkConditionCreateView(SingleObjectCreateView): def get_post_action_redirect(self): return reverse( - 'linking:smart_link_condition_list', args=(self.get_smart_link().pk,) + 'linking:smart_link_condition_list', args=( + self.get_smart_link().pk, + ) ) - def get_smart_link(self): - return get_object_or_404(SmartLink, pk=self.kwargs['pk']) - def get_queryset(self): return self.get_smart_link().conditions.all() + def get_smart_link(self): + return get_object_or_404(SmartLink, pk=self.kwargs['pk']) + class SmartLinkConditionEditView(SingleObjectEditView): form_class = SmartLinkConditionForm diff --git a/mayan/apps/motd/apps.py b/mayan/apps/motd/apps.py index 42eacb3556..0258d066da 100644 --- a/mayan/apps/motd/apps.py +++ b/mayan/apps/motd/apps.py @@ -2,11 +2,6 @@ from __future__ import unicode_literals import logging -from django import apps -from django.conf import settings -from django.conf.urls import include, url -from django.contrib.auth.signals import user_logged_in -from django.db.models.signals import post_save from django.utils.translation import ugettext_lazy as _ from common import MayanAppConfig, menu_object, menu_secondary, menu_setup diff --git a/mayan/apps/motd/links.py b/mayan/apps/motd/links.py index 01e627316e..8b454857af 100644 --- a/mayan/apps/motd/links.py +++ b/mayan/apps/motd/links.py @@ -5,8 +5,8 @@ from django.utils.translation import ugettext_lazy as _ from navigation import Link from .permissions import ( - permission_message_create, permission_message_delete, permission_message_edit, - permission_message_view + permission_message_create, permission_message_delete, + permission_message_edit, ) link_message_create = Link( diff --git a/mayan/apps/motd/migrations/0004_auto_20160314_0040.py b/mayan/apps/motd/migrations/0004_auto_20160314_0040.py index c108711878..ac9158c471 100644 --- a/mayan/apps/motd/migrations/0004_auto_20160314_0040.py +++ b/mayan/apps/motd/migrations/0004_auto_20160314_0040.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -from django.db import migrations, models +from django.db import migrations class Migration(migrations.Migration): @@ -17,6 +17,9 @@ class Migration(migrations.Migration): ), migrations.AlterModelOptions( name='message', - options={'verbose_name': 'Message', 'verbose_name_plural': 'Messages'}, + options={ + 'verbose_name': 'Message', + 'verbose_name_plural': 'Messages' + }, ), ] diff --git a/mayan/apps/motd/models.py b/mayan/apps/motd/models.py index e240da0b64..a907e1af6d 100644 --- a/mayan/apps/motd/models.py +++ b/mayan/apps/motd/models.py @@ -1,6 +1,5 @@ from __future__ import unicode_literals -from django.conf import settings from django.db import models from django.utils.encoding import python_2_unicode_compatible from django.utils.translation import ugettext_lazy as _ diff --git a/mayan/apps/motd/tests/test_models.py b/mayan/apps/motd/tests/test_models.py index 7a1df0acb8..bb250982fa 100644 --- a/mayan/apps/motd/tests/test_models.py +++ b/mayan/apps/motd/tests/test_models.py @@ -40,7 +40,7 @@ class MOTDTestCase(TestCase): self.assertEqual(queryset.exists(), False) def test_enable(self): - self.motd.enabled=False + self.motd.enabled = False self.motd.save() queryset = Message.objects.get_for_now() diff --git a/mayan/apps/motd/views.py b/mayan/apps/motd/views.py index f8a883874d..c7af38a035 100644 --- a/mayan/apps/motd/views.py +++ b/mayan/apps/motd/views.py @@ -2,14 +2,8 @@ from __future__ import absolute_import, unicode_literals import logging -from django.conf import settings -from django.contrib import messages -from django.core.exceptions import PermissionDenied -from django.core.urlresolvers import reverse, reverse_lazy -from django.http import HttpResponseRedirect -from django.shortcuts import get_object_or_404, render_to_response -from django.template import RequestContext -from django.utils.translation import ugettext_lazy as _, ungettext +from django.core.urlresolvers import reverse_lazy +from django.utils.translation import ugettext_lazy as _ from common.views import ( SingleObjectCreateView, SingleObjectDeleteView, SingleObjectEditView, @@ -19,7 +13,7 @@ from common.views import ( from .models import Message from .permissions import ( permission_message_create, permission_message_delete, - permission_message_edit, permission_message_view, + permission_message_edit, permission_message_view ) logger = logging.getLogger(__name__) diff --git a/mayan/apps/ocr/views.py b/mayan/apps/ocr/views.py index a11ee69ad4..0fd2709fbb 100644 --- a/mayan/apps/ocr/views.py +++ b/mayan/apps/ocr/views.py @@ -4,8 +4,7 @@ from django.contrib import messages from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse from django.http import HttpResponseRedirect -from django.shortcuts import get_object_or_404, render_to_response -from django.template import RequestContext +from django.shortcuts import get_object_or_404 from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList diff --git a/mayan/apps/sources/forms.py b/mayan/apps/sources/forms.py index 389da8bbf2..5a6848511c 100644 --- a/mayan/apps/sources/forms.py +++ b/mayan/apps/sources/forms.py @@ -78,6 +78,7 @@ class WebFormUploadFormHTML5(WebFormUploadForm): ) ) + class WebFormSetupForm(forms.ModelForm): class Meta: fields = ('label', 'enabled', 'uncompress') diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index 47dbea93c6..a0d02acefa 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -7,7 +7,6 @@ from django.core.urlresolvers import reverse, reverse_lazy from django.http import HttpResponseRedirect from django.shortcuts import render_to_response, get_object_or_404 from django.template import RequestContext -from django.utils.http import urlencode from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList diff --git a/mayan/apps/tags/serializers.py b/mayan/apps/tags/serializers.py index 633169c685..3f49cf2e42 100644 --- a/mayan/apps/tags/serializers.py +++ b/mayan/apps/tags/serializers.py @@ -33,7 +33,6 @@ class TagSerializer(serializers.HyperlinkedModelSerializer): return instance.documents.count() - class NewTagSerializer(serializers.ModelSerializer): class Meta: fields = ( From 30738a922c59b8017eeebc7efc2a2d17e1442f7a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 18 Mar 2016 18:46:26 -0400 Subject: [PATCH 085/205] Properly filter deleted document queryset. --- mayan/apps/documents/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index f72dc3f28f..34af9b26c8 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -93,7 +93,7 @@ class DeletedDocumentListView(DocumentListView): self.request.user, (permission_document_view,) ) except PermissionDenied: - AccessControlList.objects.filter_by_access( + queryset = AccessControlList.objects.filter_by_access( permission_document_view, self.request.user, queryset ) From 8302e13d8046b72a71bf49e2d79071c53f6e4e81 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 18 Mar 2016 18:47:32 -0400 Subject: [PATCH 086/205] Add deleted document list filtering tests. --- mayan/apps/documents/tests/test_views.py | 227 +++++++++++++---------- 1 file changed, 127 insertions(+), 100 deletions(-) diff --git a/mayan/apps/documents/tests/test_views.py b/mayan/apps/documents/tests/test_views.py index 0b8e10c166..1fbb17a9be 100644 --- a/mayan/apps/documents/tests/test_views.py +++ b/mayan/apps/documents/tests/test_views.py @@ -58,106 +58,6 @@ class GenericDocumentViewTestCase(GenericViewTestCase): class DocumentsViewsTestCase(GenericDocumentViewTestCase): - def test_document_restore_view_no_permission(self): - self.login( - username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD - ) - self.document.delete() - self.assertEqual(Document.objects.count(), 0) - - response = self.post( - 'documents:document_restore', args=(self.document.pk,) - ) - self.assertEqual(response.status_code, 403) - self.assertEqual(DeletedDocument.objects.count(), 1) - self.assertEqual(Document.objects.count(), 0) - - def test_document_restore_view_with_permission(self): - self.login( - username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD - ) - self.document.delete() - self.assertEqual(Document.objects.count(), 0) - self.role.permissions.add( - permission_document_restore.stored_permission - ) - response = self.post( - 'documents:document_restore', args=(self.document.pk,), - follow=True - ) - self.assertContains(response, text='restored', status_code=200) - self.assertEqual(DeletedDocument.objects.count(), 0) - self.assertEqual(Document.objects.count(), 1) - - def test_document_trash_no_permissions(self): - self.login( - username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD - ) - - response = self.post( - 'documents:document_trash', args=(self.document.pk,) - ) - - self.assertEqual(response.status_code, 403) - self.assertEqual(DeletedDocument.objects.count(), 0) - self.assertEqual(Document.objects.count(), 1) - - def test_document_trash_with_permissions(self): - self.login( - username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD - ) - - self.role.permissions.add( - permission_document_trash.stored_permission - ) - - response = self.post( - 'documents:document_trash', args=(self.document.pk,), - follow=True - ) - - self.assertContains(response, text='success', status_code=200) - self.assertEqual(DeletedDocument.objects.count(), 1) - self.assertEqual(Document.objects.count(), 0) - - def test_document_delete_no_permissions(self): - self.login( - username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD - ) - - self.document.delete() - self.assertEqual(Document.objects.count(), 0) - self.assertEqual(DeletedDocument.objects.count(), 1) - - response = self.post( - 'documents:document_delete', args=(self.document.pk,), - ) - self.assertEqual(response.status_code, 403) - self.assertEqual(Document.objects.count(), 0) - self.assertEqual(DeletedDocument.objects.count(), 1) - - def test_document_delete_with_permissions(self): - self.login( - username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD - ) - - self.document.delete() - self.assertEqual(Document.objects.count(), 0) - self.assertEqual(DeletedDocument.objects.count(), 1) - - self.role.permissions.add( - permission_document_delete.stored_permission - ) - - response = self.post( - 'documents:document_delete', args=(self.document.pk,), - follow=True - ) - - self.assertContains(response, text='success', status_code=200) - self.assertEqual(DeletedDocument.objects.count(), 0) - self.assertEqual(Document.objects.count(), 0) - def test_document_view_no_permissions(self): self.login( username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD @@ -748,3 +648,130 @@ class DocumentTypeViewsTestCase(GenericDocumentViewTestCase): DocumentType.objects.get(pk=self.document_type.pk).label, TEST_DOCUMENT_TYPE_EDITED_LABEL ) + + +class DeletedDocumentTestCase(GenericDocumentViewTestCase): + def test_document_restore_view_no_permission(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + self.document.delete() + self.assertEqual(Document.objects.count(), 0) + + response = self.post( + 'documents:document_restore', args=(self.document.pk,) + ) + self.assertEqual(response.status_code, 403) + self.assertEqual(DeletedDocument.objects.count(), 1) + self.assertEqual(Document.objects.count(), 0) + + def test_document_restore_view_with_permission(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + self.document.delete() + self.assertEqual(Document.objects.count(), 0) + self.role.permissions.add( + permission_document_restore.stored_permission + ) + response = self.post( + 'documents:document_restore', args=(self.document.pk,), + follow=True + ) + self.assertContains(response, text='restored', status_code=200) + self.assertEqual(DeletedDocument.objects.count(), 0) + self.assertEqual(Document.objects.count(), 1) + + def test_document_trash_no_permissions(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + response = self.post( + 'documents:document_trash', args=(self.document.pk,) + ) + + self.assertEqual(response.status_code, 403) + self.assertEqual(DeletedDocument.objects.count(), 0) + self.assertEqual(Document.objects.count(), 1) + + def test_document_trash_with_permissions(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + self.role.permissions.add( + permission_document_trash.stored_permission + ) + + response = self.post( + 'documents:document_trash', args=(self.document.pk,), + follow=True + ) + + self.assertContains(response, text='success', status_code=200) + self.assertEqual(DeletedDocument.objects.count(), 1) + self.assertEqual(Document.objects.count(), 0) + + def test_document_delete_no_permissions(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + self.document.delete() + self.assertEqual(Document.objects.count(), 0) + self.assertEqual(DeletedDocument.objects.count(), 1) + + response = self.post( + 'documents:document_delete', args=(self.document.pk,), + ) + self.assertEqual(response.status_code, 403) + self.assertEqual(Document.objects.count(), 0) + self.assertEqual(DeletedDocument.objects.count(), 1) + + def test_document_delete_with_permissions(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + self.document.delete() + self.assertEqual(Document.objects.count(), 0) + self.assertEqual(DeletedDocument.objects.count(), 1) + + self.role.permissions.add( + permission_document_delete.stored_permission + ) + + response = self.post( + 'documents:document_delete', args=(self.document.pk,), + follow=True + ) + + self.assertContains(response, text='success', status_code=200) + self.assertEqual(DeletedDocument.objects.count(), 0) + self.assertEqual(Document.objects.count(), 0) + + def test_deleted_document_list_view_no_permissions(self): + self.document.delete() + + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + response = self.get('documents:document_list_deleted') + + self.assertNotContains(response, self.document.label, status_code=200) + + def test_deleted_document_list_view_with_permissions(self): + self.document.delete() + + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + self.role.permissions.add( + permission_document_view.stored_permission + ) + response = self.get('documents:document_list_deleted') + + self.assertContains(response, self.document.label, status_code=200) From de4948b84f470bb53dda74ca600be3fd0353c0c8 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 18 Mar 2016 19:44:25 -0400 Subject: [PATCH 087/205] Rename acl creation view from acl_new to acl_create for uniformity. --- mayan/apps/acls/apps.py | 4 ++-- mayan/apps/acls/links.py | 4 ++-- mayan/apps/acls/urls.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mayan/apps/acls/apps.py b/mayan/apps/acls/apps.py index f46839f3cc..ebce7ca4ce 100644 --- a/mayan/apps/acls/apps.py +++ b/mayan/apps/acls/apps.py @@ -5,7 +5,7 @@ from django.utils.translation import ugettext_lazy as _ from common import MayanAppConfig, menu_object, menu_sidebar from navigation import SourceColumn -from .links import link_acl_new, link_acl_delete, link_acl_permissions +from .links import link_acl_create, link_acl_delete, link_acl_permissions class ACLsApp(MayanAppConfig): @@ -31,5 +31,5 @@ class ACLsApp(MayanAppConfig): sources=(AccessControlList,) ) menu_sidebar.bind_links( - links=(link_acl_new,), sources=('acls:acl_list',) + links=(link_acl_create,), sources=('acls:acl_list',) ) diff --git a/mayan/apps/acls/links.py b/mayan/apps/acls/links.py index 76c22cbf83..45037f2019 100644 --- a/mayan/apps/acls/links.py +++ b/mayan/apps/acls/links.py @@ -30,9 +30,9 @@ link_acl_list = Link( permissions=(permission_acl_view,), text=_('ACLs'), view='acls:acl_list', kwargs=get_kwargs_factory('resolved_object') ) -link_acl_new = Link( +link_acl_create = Link( permissions=(permission_acl_edit,), text=_('New ACL'), - view='acls:acl_new', kwargs=get_kwargs_factory('resolved_object') + view='acls:acl_create', kwargs=get_kwargs_factory('resolved_object') ) link_acl_permissions = Link( permissions=(permission_acl_edit,), text=_('Permissions'), diff --git a/mayan/apps/acls/urls.py b/mayan/apps/acls/urls.py index 3f587169ac..f68cc5e0b8 100644 --- a/mayan/apps/acls/urls.py +++ b/mayan/apps/acls/urls.py @@ -9,8 +9,8 @@ from .views import ( urlpatterns = patterns( 'acls.views', url( - r'^(?P[-\w]+)/(?P[-\w]+)/(?P\d+)/new/$', - ACLCreateView.as_view(), name='acl_new' + r'^(?P[-\w]+)/(?P[-\w]+)/(?P\d+)/create/$', + ACLCreateView.as_view(), name='acl_create' ), url( r'^(?P[-\w]+)/(?P[-\w]+)/(?P\d+)/list/$', From 5ac21faced615b15b3357a0dedc1095e8d8fbb86 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 18 Mar 2016 19:51:29 -0400 Subject: [PATCH 088/205] Sort folder app views. --- mayan/apps/folders/views.py | 134 ++++++++++++++++++------------------ 1 file changed, 67 insertions(+), 67 deletions(-) diff --git a/mayan/apps/folders/views.py b/mayan/apps/folders/views.py index b903aa850d..5cf5c97330 100644 --- a/mayan/apps/folders/views.py +++ b/mayan/apps/folders/views.py @@ -32,6 +32,57 @@ from .permissions import ( logger = logging.getLogger(__name__) +class FolderCreateView(SingleObjectCreateView): + fields = ('label',) + model = Folder + view_permission = permission_folder_create + + def get_extra_context(self): + return { + 'object_name': _('Folder'), + 'title': _('Create folder'), + } + + +class FolderDeleteView(SingleObjectDeleteView): + model = Folder + object_permission = permission_folder_delete + post_action_redirect = reverse_lazy('folders:folder_list') + + def get_extra_context(self): + return { + 'object': self.get_object(), + 'object_name': _('Folder'), + 'title': _('Delete the folder: %s?') % self.get_object(), + } + + +class FolderDetailView(DocumentListView): + def get_document_queryset(self): + return self.get_folder().documents.all() + + def get_extra_context(self): + return { + 'hide_links': True, + 'object': self.get_folder(), + 'title': _('Documents in folder: %s') % self.get_folder(), + } + + def get_folder(self): + folder = get_object_or_404(Folder, pk=self.kwargs['pk']) + + try: + Permission.check_permissions( + self.request.user, (permission_folder_view,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_folder_view, self.request.user, folder + ) + + return folder + + class FolderEditView(SingleObjectEditView): fields = ('label',) model = Folder @@ -57,55 +108,30 @@ class FolderListView(SingleObjectListView): } -class FolderCreateView(SingleObjectCreateView): - fields = ('label',) - model = Folder - view_permission = permission_folder_create - - def get_extra_context(self): - return { - 'object_name': _('Folder'), - 'title': _('Create folder'), - } - - -class FolderDeleteView(SingleObjectDeleteView): - model = Folder - object_permission = permission_folder_delete - post_action_redirect = reverse_lazy('folders:folder_list') - - def get_extra_context(self): - return { - 'object_name': _('Folder'), - 'object': self.get_object(), - 'title': _('Delete the folder: %s?') % self.get_object(), - } - - -class FolderDetailView(DocumentListView): - def get_document_queryset(self): - return self.get_folder().documents.all() - - def get_extra_context(self): - return { - 'title': _('Documents in folder: %s') % self.get_folder(), - 'hide_links': True, - 'object': self.get_folder(), - } - - def get_folder(self): - folder = get_object_or_404(Folder, pk=self.kwargs['pk']) +class DocumentFolderListView(FolderListView): + def dispatch(self, request, *args, **kwargs): + self.document = get_object_or_404(Document, pk=self.kwargs['pk']) try: Permission.check_permissions( - self.request.user, (permission_folder_view,) + request.user, (permission_document_view,) ) except PermissionDenied: AccessControlList.objects.check_access( - permission_folder_view, self.request.user, folder + permission_document_view, request.user, self.document ) - return folder + return super(DocumentFolderListView, self).dispatch(request, *args, **kwargs) + + def get_extra_context(self): + return { + 'hide_link': True, + 'object': self.document, + 'title': _('Folders containing document: %s') % self.document, + } + + def get_queryset(self): + return self.document.document_folders().all() def folder_add_document(request, document_id=None, document_id_list=None): @@ -190,32 +216,6 @@ def folder_add_document(request, document_id=None, document_id_list=None): ) -class DocumentFolderListView(FolderListView): - def dispatch(self, request, *args, **kwargs): - self.document = get_object_or_404(Document, pk=self.kwargs['pk']) - - try: - Permission.check_permissions( - request.user, (permission_document_view,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - permission_document_view, request.user, self.document - ) - - return super(DocumentFolderListView, self).dispatch(request, *args, **kwargs) - - def get_extra_context(self): - return { - 'hide_link': True, - 'object': self.document, - 'title': _('Folders containing document: %s') % self.document, - } - - def get_queryset(self): - return self.document.document_folders().all() - - def folder_document_remove(request, folder_id, document_id=None, document_id_list=None): post_action_redirect = None From adcf946fbbc05a6d666ad9907adf702cc8c31e7d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 18 Mar 2016 20:56:41 -0400 Subject: [PATCH 089/205] Sort ACL app views. Don't error out on duplicate ACL entry creation (same document + role), but instead redirect to existing ACL entry. --- mayan/apps/acls/views.py | 146 ++++++++++++++++++++++----------------- 1 file changed, 81 insertions(+), 65 deletions(-) diff --git a/mayan/apps/acls/views.py b/mayan/apps/acls/views.py index ec9953f0e9..edec9aa0e2 100644 --- a/mayan/apps/acls/views.py +++ b/mayan/apps/acls/views.py @@ -3,10 +3,11 @@ from __future__ import absolute_import, unicode_literals import itertools import logging +from django.contrib import messages from django.contrib.contenttypes.models import ContentType from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse -from django.http import Http404 +from django.http import Http404, HttpResponseRedirect from django.shortcuts import get_object_or_404 from django.utils.translation import ugettext_lazy as _ @@ -24,7 +25,10 @@ from .permissions import permission_acl_edit, permission_acl_view logger = logging.getLogger(__name__) -class ACLListView(SingleObjectListView): +class ACLCreateView(SingleObjectCreateView): + fields = ('role',) + model = AccessControlList + def dispatch(self, request, *args, **kwargs): self.content_type = get_object_or_404( ContentType, app_label=self.kwargs['app_label'], @@ -38,47 +42,6 @@ class ACLListView(SingleObjectListView): except self.content_type.model_class().DoesNotExist: raise Http404 - try: - Permission.check_permissions( - request.user, permissions=(permission_acl_view,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - permission_acl_view, request.user, self.content_object - ) - - return super(ACLListView, self).dispatch(request, *args, **kwargs) - - def get_queryset(self): - return AccessControlList.objects.filter( - content_type=self.content_type, object_id=self.content_object.pk - ) - - def get_extra_context(self): - return { - 'hide_object': True, - 'object': self.content_object, - 'title': _('Access control lists for: %s' % self.content_object), - } - - -class ACLCreateView(SingleObjectCreateView): - fields = ('role',) - model = AccessControlList - - def dispatch(self, request, *args, **kwargs): - content_type = get_object_or_404( - ContentType, app_label=self.kwargs['app_label'], - model=self.kwargs['model'] - ) - - try: - self.content_object = content_type.get_object_for_this_type( - pk=self.kwargs['object_id'] - ) - except content_type.model_class().DoesNotExist: - raise Http404 - try: Permission.check_permissions( request.user, permissions=(permission_acl_edit,) @@ -90,15 +53,24 @@ class ACLCreateView(SingleObjectCreateView): return super(ACLCreateView, self).dispatch(request, *args, **kwargs) + def get_instance_extra_data(self): + return { + 'content_object': self.content_object + } + def form_valid(self, form): - self.instance = form.save(commit=False) - self.instance.content_object = self.content_object - self.instance.save() - - return super(ACLCreateView, self).form_valid(form) - - def get_success_url(self): - return reverse('acls:acl_permissions', args=(self.instance.pk,)) + try: + acl = AccessControlList.objects.get( + content_type=self.content_type, + object_id=self.content_object.pk, + role=form.cleaned_data['role'] + ) + except AccessControlList.DoesNotExist: + return super(ACLCreateView, self).form_valid(form) + else: + return HttpResponseRedirect( + reverse('acls:acl_permissions', args=(acl.pk,)) + ) def get_extra_context(self): return { @@ -108,6 +80,12 @@ class ACLCreateView(SingleObjectCreateView): ) % self.content_object } + def get_success_url(self): + if self.object.pk: + return reverse('acls:acl_permissions', args=(self.object.pk,)) + else: + return super(ACLCreateView, self).get_success_url() + class ACLDeleteView(SingleObjectDeleteView): model = AccessControlList @@ -142,6 +120,44 @@ class ACLDeleteView(SingleObjectDeleteView): ) +class ACLListView(SingleObjectListView): + def dispatch(self, request, *args, **kwargs): + self.content_type = get_object_or_404( + ContentType, app_label=self.kwargs['app_label'], + model=self.kwargs['model'] + ) + + try: + self.content_object = self.content_type.get_object_for_this_type( + pk=self.kwargs['object_id'] + ) + except self.content_type.model_class().DoesNotExist: + raise Http404 + + try: + Permission.check_permissions( + request.user, permissions=(permission_acl_view,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_acl_view, request.user, self.content_object + ) + + return super(ACLListView, self).dispatch(request, *args, **kwargs) + + def get_extra_context(self): + return { + 'hide_object': True, + 'object': self.content_object, + 'title': _('Access control lists for: %s' % self.content_object), + } + + def get_queryset(self): + return AccessControlList.objects.filter( + content_type=self.content_type, object_id=self.content_object.pk + ) + + class ACLPermissionsView(AssignRemoveView): grouped = True left_list_title = _('Available permissions') @@ -181,17 +197,6 @@ class ACLPermissionsView(AssignRemoveView): ACLPermissionsView, self ).dispatch(request, *args, **kwargs) - def get_right_list_help_text(self): - if self.get_object().get_inherited_permissions(): - return _( - 'Disabled permissions are inherited from a parent object.' - ) - - return None - - def get_object(self): - return get_object_or_404(AccessControlList, pk=self.kwargs['pk']) - def get_available_list(self): return ModelPermission.get_for_instance( instance=self.get_object().content_object @@ -229,12 +234,23 @@ class ACLPermissionsView(AssignRemoveView): merged_pks = self.get_object().permissions.values_list('pk', flat=True) | self.get_object().get_inherited_permissions().values_list('pk', flat=True) return StoredPermission.objects.filter(pk__in=merged_pks) + def get_object(self): + return get_object_or_404(AccessControlList, pk=self.kwargs['pk']) + + def get_right_list_help_text(self): + if self.get_object().get_inherited_permissions(): + return _( + 'Disabled permissions are inherited from a parent object.' + ) + + return None + def left_list(self): return ACLPermissionsView.generate_choices(self.get_available_list()) - def right_list(self): - return ACLPermissionsView.generate_choices(self.get_granted_list()) - def remove(self, item): permission = get_object_or_404(StoredPermission, pk=item) self.get_object().permissions.remove(permission) + + def right_list(self): + return ACLPermissionsView.generate_choices(self.get_granted_list()) From 042cef3d0e1d6c14267d7d2da5e96af728ca68a3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 18 Mar 2016 20:57:22 -0400 Subject: [PATCH 090/205] Add ACL view tests. --- mayan/apps/acls/tests/test_views.py | 83 +++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 mayan/apps/acls/tests/test_views.py diff --git a/mayan/apps/acls/tests/test_views.py b/mayan/apps/acls/tests/test_views.py new file mode 100644 index 0000000000..7affe9ac7e --- /dev/null +++ b/mayan/apps/acls/tests/test_views.py @@ -0,0 +1,83 @@ +from __future__ import absolute_import, unicode_literals + +from django.contrib.contenttypes.models import ContentType + +from documents.permissions import permission_document_view +from documents.tests.test_views import GenericDocumentViewTestCase +from user_management.tests import ( + TEST_USER_USERNAME, TEST_USER_PASSWORD +) + +from ..models import AccessControlList +from ..permissions import permission_acl_edit, permission_acl_view + + +class AccessControlListViewTestCase(GenericDocumentViewTestCase): + def setUp(self): + super(AccessControlListViewTestCase, self).setUp() + + content_type = ContentType.objects.get_for_model( + self.document + ) + + self.view_arguments = { + 'app_label': content_type.app_label, + 'model': content_type.model, + 'object_id': self.document.pk + } + + def test_acl_create_view_no_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.post( + viewname='acls:acl_create', kwargs=self.view_arguments, data={ + 'role': self.role.pk + } + ) + + self.assertEquals(response.status_code, 403) + self.assertEqual(AccessControlList.objects.count(), 0) + + def test_acl_create_view_with_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_acl_edit.stored_permission + ) + + response = self.post( + viewname='acls:acl_create', kwargs=self.view_arguments, data={ + 'role': self.role.pk + }, follow=True + ) + + self.assertContains(response, text='created', status_code=200) + self.assertEqual(AccessControlList.objects.count(), 1) + + def test_acl_create_duplicate_view_with_permission(self): + """ + Test creating a duplicate ACL entry: same object & role + Result: Should redirect to existing ACL for object + role combination + """ + + acl = AccessControlList.objects.create( + content_object=self.document, role=self.role + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_acl_edit.stored_permission + ) + + response = self.post( + viewname='acls:acl_create', kwargs=self.view_arguments, data={ + 'role': self.role.pk + }, follow=True + ) + + self.assertContains( + response, text='vailable permissions', status_code=200 + ) + self.assertEqual(AccessControlList.objects.count(), 1) + self.assertEqual(AccessControlList.objects.first().pk, acl.pk) From 66a49c833575306a62706691cae96f37f1659402 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 18 Mar 2016 20:57:39 -0400 Subject: [PATCH 091/205] Don't assume all object have a proxy access accessor. --- mayan/apps/acls/classes.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mayan/apps/acls/classes.py b/mayan/apps/acls/classes.py index 08f9b520e2..54d8eb9753 100644 --- a/mayan/apps/acls/classes.py +++ b/mayan/apps/acls/classes.py @@ -26,7 +26,11 @@ class ModelPermission(object): permissions = [] permissions.extend(cls._registry.get(type(instance))) - permissions.extend(cls._registry.get(cls._proxies.get(type(instance)))) + + proxy = cls._proxies.get(type(instance)) + + if proxy: + permissions.extend(cls._registry.get(proxy)) pks = [permission.stored_permission.pk for permission in set(permissions)] return StoredPermission.objects.filter(pk__in=pks) From 34184e072653c7dfc7c67909b9554cb0a361ac08 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 18 Mar 2016 20:58:06 -0400 Subject: [PATCH 092/205] Fix typo in management command name. --- mayan/apps/permissions/classes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/permissions/classes.py b/mayan/apps/permissions/classes.py index 290f9f9a3b..a5b6dcb093 100644 --- a/mayan/apps/permissions/classes.py +++ b/mayan/apps/permissions/classes.py @@ -26,7 +26,7 @@ class PermissionNamespace(object): raise InvalidNamespace( 'Invalid namespace name. This is probably an obsolete ' 'permission namespace, execute the management command ' - '"purge_permissions" and try again.' + '"purgepermissions" and try again.' ) def __init__(self, name, label): From ed8ac4724015eb071bd4944c6b5bfc883ae04739 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 19 Mar 2016 01:57:30 -0400 Subject: [PATCH 093/205] Extract context object name from the models meta options. --- mayan/apps/common/generics.py | 20 +++++++++++--------- mayan/apps/common/mixins.py | 23 ++++++++++++++++++++--- mayan/apps/folders/views.py | 3 --- mayan/apps/linking/views.py | 6 ++---- mayan/apps/motd/views.py | 3 --- 5 files changed, 33 insertions(+), 22 deletions(-) diff --git a/mayan/apps/common/generics.py b/mayan/apps/common/generics.py index d46dc87fc2..47f0c63ea2 100644 --- a/mayan/apps/common/generics.py +++ b/mayan/apps/common/generics.py @@ -257,7 +257,7 @@ class SimpleView(ViewPermissionCheckMixin, ExtraContextMixin, TemplateView): pass -class SingleObjectCreateView(ViewPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, CreateView): +class SingleObjectCreateView(ObjectNameMixin, ViewPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, CreateView): template_name = 'appearance/generic_form.html' def form_valid(self, form): @@ -282,7 +282,7 @@ class SingleObjectCreateView(ViewPermissionCheckMixin, ExtraContextMixin, Redire messages.error( self.request, _('%(object)s not created, error: %(error)s') % { - 'object': context.get('object_name', _('Object')), + 'object': self.get_object_name(), 'error': exception } ) @@ -293,13 +293,13 @@ class SingleObjectCreateView(ViewPermissionCheckMixin, ExtraContextMixin, Redire self.request, _( '%s created successfully.' - ) % context.get('object_name', _('Object')) + ) % self.get_object_name() ) return HttpResponseRedirect(self.get_success_url()) -class SingleObjectDeleteView(DeleteExtraDataMixin, ViewPermissionCheckMixin, ObjectPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, DeleteView): +class SingleObjectDeleteView(ObjectNameMixin, DeleteExtraDataMixin, ViewPermissionCheckMixin, ObjectPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, DeleteView): template_name = 'appearance/generic_confirm.html' def get_context_data(self, **kwargs): @@ -310,6 +310,7 @@ class SingleObjectDeleteView(DeleteExtraDataMixin, ViewPermissionCheckMixin, Obj def delete(self, request, *args, **kwargs): self.object = self.get_object() context = self.get_context_data() + object_name = self.get_object_name(context=context) try: result = super(SingleObjectDeleteView, self).delete(request, *args, **kwargs) @@ -317,7 +318,7 @@ class SingleObjectDeleteView(DeleteExtraDataMixin, ViewPermissionCheckMixin, Obj messages.error( self.request, _('%(object)s not deleted, error: %(error)s.') % { - 'object': context.get('object_name', _('Object')), + 'object': object_name, 'error': exception } ) @@ -328,7 +329,7 @@ class SingleObjectDeleteView(DeleteExtraDataMixin, ViewPermissionCheckMixin, Obj self.request, _( '%s deleted successfully.' - ) % context.get('object_name', _('Object')) + ) % object_name ) return result @@ -343,7 +344,7 @@ class SingleObjectDetailView(ViewPermissionCheckMixin, ObjectPermissionCheckMixi return context -class SingleObjectEditView(ViewPermissionCheckMixin, ObjectPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, UpdateView): +class SingleObjectEditView(ObjectNameMixin, ViewPermissionCheckMixin, ObjectPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, UpdateView): template_name = 'appearance/generic_form.html' def form_valid(self, form): @@ -361,6 +362,7 @@ class SingleObjectEditView(ViewPermissionCheckMixin, ObjectPermissionCheckMixin, save_extra_data = {} context = self.get_context_data() + object_name = self.get_object_name(context=context) try: self.object.save(**save_extra_data) @@ -368,7 +370,7 @@ class SingleObjectEditView(ViewPermissionCheckMixin, ObjectPermissionCheckMixin, messages.error( self.request, _('%(object)s not updated, error: %(error)s.') % { - 'object': context.get('object_name', _('Object')), + 'object': object_name, 'error': exception } ) @@ -379,7 +381,7 @@ class SingleObjectEditView(ViewPermissionCheckMixin, ObjectPermissionCheckMixin, self.request, _( '%s updated successfully.' - ) % context.get('object_name', _('Object')) + ) % object_name ) return HttpResponseRedirect(self.get_success_url()) diff --git a/mayan/apps/common/mixins.py b/mayan/apps/common/mixins.py index 535a81c660..3d628078b6 100644 --- a/mayan/apps/common/mixins.py +++ b/mayan/apps/common/mixins.py @@ -6,14 +6,15 @@ from django.contrib import messages from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse from django.http import HttpResponseRedirect -from django.utils.translation import ungettext +from django.utils.translation import ungettext, ugettext_lazy as _ from permissions import Permission __all__ = ( 'DeleteExtraDataMixin', 'ExtraContextMixin', - 'ObjectListPermissionFilterMixin', 'ObjectPermissionCheckMixin', - 'RedirectionMixin', 'ViewPermissionCheckMixin' + 'ObjectListPermissionFilterMixin', 'ObjectNameMixin', + 'ObjectPermissionCheckMixin', 'RedirectionMixin', + 'ViewPermissionCheckMixin' ) @@ -110,6 +111,22 @@ class ObjectListPermissionFilterMixin(object): return queryset +class ObjectNameMixin(object): + def get_object_name(self, context=None): + if not context: + context = self.get_context_data() + + object_name = context.get('object_name') + + if not object_name: + try: + object_name = self.object._meta.verbose_name + except AttributeError: + object_name = _('Object') + + return object_name + + class ObjectPermissionCheckMixin(object): object_permission = None diff --git a/mayan/apps/folders/views.py b/mayan/apps/folders/views.py index 5cf5c97330..ffde47a614 100644 --- a/mayan/apps/folders/views.py +++ b/mayan/apps/folders/views.py @@ -39,7 +39,6 @@ class FolderCreateView(SingleObjectCreateView): def get_extra_context(self): return { - 'object_name': _('Folder'), 'title': _('Create folder'), } @@ -52,7 +51,6 @@ class FolderDeleteView(SingleObjectDeleteView): def get_extra_context(self): return { 'object': self.get_object(), - 'object_name': _('Folder'), 'title': _('Delete the folder: %s?') % self.get_object(), } @@ -92,7 +90,6 @@ class FolderEditView(SingleObjectEditView): def get_extra_context(self): return { 'object': self.get_object(), - 'object_name': _('Folder'), 'title': _('Edit folder: %s') % self.get_object(), } diff --git a/mayan/apps/linking/views.py b/mayan/apps/linking/views.py index f67a71d0b1..c7e03b0482 100644 --- a/mayan/apps/linking/views.py +++ b/mayan/apps/linking/views.py @@ -113,6 +113,7 @@ class SetupSmartLinkDocumentTypesView(AssignRemoveView): return get_object_or_404(SmartLink, pk=self.kwargs['pk']) def left_list(self): + # TODO: filter document type list by user ACL return AssignRemoveView.generate_choices( DocumentType.objects.exclude( pk__in=self.get_object().document_types.all() @@ -123,6 +124,7 @@ class SetupSmartLinkDocumentTypesView(AssignRemoveView): self.get_object().document_types.remove(item) def right_list(self): + # TODO: filter document type list by user ACL return AssignRemoveView.generate_choices( self.get_object().document_types.all() ) @@ -230,7 +232,6 @@ class SmartLinkConditionListView(SingleObjectListView): class SmartLinkConditionCreateView(SingleObjectCreateView): form_class = SmartLinkConditionForm - object_name = _('SmartLink condition') def dispatch(self, request, *args, **kwargs): try: @@ -252,7 +253,6 @@ class SmartLinkConditionCreateView(SingleObjectCreateView): 'Add new conditions to smart link: "%s"' ) % self.get_smart_link(), 'object': self.get_smart_link(), - 'object_name': _('Smart link condition'), } def get_instance_extra_data(self): @@ -296,7 +296,6 @@ class SmartLinkConditionEditView(SingleObjectEditView): 'condition': self.get_object(), 'navigation_object_list': ('object', 'condition'), 'object': self.get_object().smart_link, - 'object_name': _('Smart link condition'), 'title': _('Edit smart link condition'), } @@ -331,7 +330,6 @@ class SmartLinkConditionDeleteView(SingleObjectDeleteView): 'condition': self.get_object(), 'navigation_object_list': ('object', 'condition'), 'object': self.get_object().smart_link, - 'object_name': _('Smart link condition'), 'title': _( 'Delete smart link condition: "%s"?' ) % self.get_object(), diff --git a/mayan/apps/motd/views.py b/mayan/apps/motd/views.py index c7af38a035..8d1c391e7d 100644 --- a/mayan/apps/motd/views.py +++ b/mayan/apps/motd/views.py @@ -26,7 +26,6 @@ class MessageCreateView(SingleObjectCreateView): def get_extra_context(self): return { - 'object_name': _('Message'), 'title': _('Create message'), } @@ -40,7 +39,6 @@ class MessageDeleteView(SingleObjectDeleteView): return { 'message': None, 'object': self.get_object(), - 'object_name': _('Message'), 'title': _('Delete the message: %s?') % self.get_object(), } @@ -54,7 +52,6 @@ class MessageEditView(SingleObjectEditView): def get_extra_context(self): return { 'object': self.get_object(), - 'object_name': _('Message'), 'title': _('Edit message: %s') % self.get_object(), } From 50f473b698cb1b122a9f8627212ec7c3c94203c7 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 19 Mar 2016 02:00:30 -0400 Subject: [PATCH 094/205] Improve translation template. --- mayan/apps/common/generics.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mayan/apps/common/generics.py b/mayan/apps/common/generics.py index 47f0c63ea2..a79aea823c 100644 --- a/mayan/apps/common/generics.py +++ b/mayan/apps/common/generics.py @@ -292,8 +292,8 @@ class SingleObjectCreateView(ObjectNameMixin, ViewPermissionCheckMixin, ExtraCon messages.success( self.request, _( - '%s created successfully.' - ) % self.get_object_name() + '%(object)s created successfully.' + ) % {'object': self.get_object_name()} ) return HttpResponseRedirect(self.get_success_url()) @@ -328,8 +328,8 @@ class SingleObjectDeleteView(ObjectNameMixin, DeleteExtraDataMixin, ViewPermissi messages.success( self.request, _( - '%s deleted successfully.' - ) % object_name + '%(object)s deleted successfully.' + ) % {'object': object_name} ) return result @@ -380,8 +380,8 @@ class SingleObjectEditView(ObjectNameMixin, ViewPermissionCheckMixin, ObjectPerm messages.success( self.request, _( - '%s updated successfully.' - ) % object_name + '%(object)s updated successfully.' + ) % {'object': object_name} ) return HttpResponseRedirect(self.get_success_url()) From 45f90cce50f8eb3f9c90b9ce8ec325136de69da5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 19 Mar 2016 02:20:01 -0400 Subject: [PATCH 095/205] Return the instance when a document is added as recent for an user. --- mayan/apps/documents/managers.py | 1 + mayan/apps/documents/models.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mayan/apps/documents/managers.py b/mayan/apps/documents/managers.py index 6dba4b61d1..2f1ec97197 100644 --- a/mayan/apps/documents/managers.py +++ b/mayan/apps/documents/managers.py @@ -126,6 +126,7 @@ class RecentDocumentManager(models.Manager): recent_to_delete = self.filter(user=user).values_list('pk', flat=True)[setting_recent_count.value:] self.filter(pk__in=list(recent_to_delete)).delete() + return new_recent def get_for_user(self, user): document_model = apps.get_model('documents', 'document') diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index d3cb6a8cd5..24ea112b21 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -231,7 +231,7 @@ class Document(models.Model): ordering = ('-date_added',) def add_as_recent_document_for_user(self, user): - RecentDocument.objects.add_document_for_user(user, self) + return RecentDocument.objects.add_document_for_user(user, self) def exists(self): """ From 23283557544d5f1246ce3fc4840613876d365fbf Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 19 Mar 2016 02:20:36 -0400 Subject: [PATCH 096/205] Don't error out when inspecting ACL permissions for an object with no registered permissions. --- mayan/apps/acls/classes.py | 6 ++++- mayan/apps/acls/tests/test_views.py | 35 ++++++++++++++++++++++++++--- 2 files changed, 37 insertions(+), 4 deletions(-) diff --git a/mayan/apps/acls/classes.py b/mayan/apps/acls/classes.py index 54d8eb9753..9ddaa03428 100644 --- a/mayan/apps/acls/classes.py +++ b/mayan/apps/acls/classes.py @@ -25,7 +25,11 @@ class ModelPermission(object): ) permissions = [] - permissions.extend(cls._registry.get(type(instance))) + + class_permissions = cls._registry.get(type(instance)) + + if class_permissions: + permissions.extend(class_permissions) proxy = cls._proxies.get(type(instance)) diff --git a/mayan/apps/acls/tests/test_views.py b/mayan/apps/acls/tests/test_views.py index 7affe9ac7e..8fe4ab97ce 100644 --- a/mayan/apps/acls/tests/test_views.py +++ b/mayan/apps/acls/tests/test_views.py @@ -16,9 +16,7 @@ class AccessControlListViewTestCase(GenericDocumentViewTestCase): def setUp(self): super(AccessControlListViewTestCase, self).setUp() - content_type = ContentType.objects.get_for_model( - self.document - ) + content_type = ContentType.objects.get_for_model(self.document) self.view_arguments = { 'app_label': content_type.app_label, @@ -81,3 +79,34 @@ class AccessControlListViewTestCase(GenericDocumentViewTestCase): ) self.assertEqual(AccessControlList.objects.count(), 1) self.assertEqual(AccessControlList.objects.first().pk, acl.pk) + + def test_orphan_acl_create_view_with_permission(self): + """ + Test creating an ACL entry for an object with no model permissions. + Result: Should display a blank permissions list (not optgroup) + """ + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_acl_edit.stored_permission + ) + + recent_entry = self.document.add_as_recent_document_for_user(self.user) + + content_type = ContentType.objects.get_for_model(recent_entry) + + view_arguments = { + 'app_label': content_type.app_label, + 'model': content_type.model, + 'object_id': recent_entry.pk + } + + response = self.post( + viewname='acls:acl_create', kwargs=view_arguments, data={ + 'role': self.role.pk + }, follow=True + ) + + self.assertNotContains(response, text='optgroup', status_code=200) + self.assertEqual(AccessControlList.objects.count(), 1) From 286a6ba9b8e2e89bee6408c5bc4091756c1948df Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 19 Mar 2016 02:51:03 -0400 Subject: [PATCH 097/205] Enable object access check via related attribute in generic CBV. --- mayan/apps/common/mixins.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mayan/apps/common/mixins.py b/mayan/apps/common/mixins.py index 3d628078b6..34b89ff736 100644 --- a/mayan/apps/common/mixins.py +++ b/mayan/apps/common/mixins.py @@ -146,7 +146,8 @@ class ObjectPermissionCheckMixin(object): except PermissionDenied: AccessControlList.objects.check_access( self.object_permission, request.user, - self.get_permission_object() + self.get_permission_object(), + related=getattr(self, 'object_permission_related', None) ) return super( From 7cde1fe78fa542de458ba04afc9d6fbaabd55d9b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 19 Mar 2016 02:51:45 -0400 Subject: [PATCH 098/205] Add ACLs to document indexes. Convert all document indexing views to CBV. Remove the document index setup permission. Add view tests to the document indexing app. Use MPTT methods and stop relying on undocumented API. --- mayan/apps/document_indexing/apps.py | 23 +- mayan/apps/document_indexing/links.py | 34 +-- mayan/apps/document_indexing/models.py | 2 +- mayan/apps/document_indexing/permissions.py | 5 +- .../document_indexing/tests/test_views.py | 114 ++++++++ mayan/apps/document_indexing/urls.py | 13 +- mayan/apps/document_indexing/views.py | 255 +++++++++--------- mayan/apps/document_indexing/widgets.py | 7 +- 8 files changed, 287 insertions(+), 166 deletions(-) create mode 100644 mayan/apps/document_indexing/tests/test_views.py diff --git a/mayan/apps/document_indexing/apps.py b/mayan/apps/document_indexing/apps.py index fed0dadcaa..97b176a16b 100644 --- a/mayan/apps/document_indexing/apps.py +++ b/mayan/apps/document_indexing/apps.py @@ -6,6 +6,10 @@ from django.apps import apps from django.db.models.signals import post_save, post_delete from django.utils.translation import ugettext_lazy as _ +from acls import ModelPermission +from acls.links import link_acl_list +from acls.permissions import permission_acl_edit, permission_acl_view + from common import ( MayanAppConfig, menu_facet, menu_main, menu_object, menu_secondary, menu_setup, menu_tools @@ -29,6 +33,11 @@ from .links import ( link_template_node_create, link_template_node_delete, link_template_node_edit ) +from .permissions import ( + permission_document_indexing_create, permission_document_indexing_delete, + permission_document_indexing_edit, permission_document_indexing_view, + permission_document_indexing_rebuild +) from .widgets import get_instance_link, index_instance_item_link, node_level @@ -51,6 +60,7 @@ class DocumentIndexingApp(MayanAppConfig): ) DocumentIndexInstanceNode = self.get_model('DocumentIndexInstanceNode') + Index = self.get_model('Index') IndexInstance = self.get_model('IndexInstance') IndexInstanceNode = self.get_model('IndexInstanceNode') @@ -58,6 +68,16 @@ class DocumentIndexingApp(MayanAppConfig): APIEndPoint(app=self, version_string='1') + ModelPermission.register( + model=Index, permissions=( + permission_acl_edit, permission_acl_view, + permission_document_indexing_create, + permission_document_indexing_delete, + permission_document_indexing_edit, + permission_document_indexing_view, + ) + ) + Package(label='Django MPTT', license_text=''' Django MPTT ----------- @@ -179,7 +199,8 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. menu_object.bind_links( links=( link_index_setup_edit, link_index_setup_view, - link_index_setup_document_types, link_index_setup_delete + link_index_setup_document_types, link_acl_list, + link_index_setup_delete ), sources=(Index,) ) menu_object.bind_links( diff --git a/mayan/apps/document_indexing/links.py b/mayan/apps/document_indexing/links.py index d5b622393f..2fc8b50622 100644 --- a/mayan/apps/document_indexing/links.py +++ b/mayan/apps/document_indexing/links.py @@ -7,9 +7,8 @@ from navigation import Link from .permissions import ( permission_document_indexing_create, permission_document_indexing_edit, - permission_document_indexing_delete, - permission_document_indexing_rebuild_indexes, - permission_document_indexing_setup, permission_document_indexing_view + permission_document_indexing_delete, permission_document_indexing_rebuild, + permission_document_indexing_view ) @@ -18,23 +17,17 @@ def is_not_root_node(context): link_document_index_list = Link( - icon='fa fa-list-ul', permissions=(permission_document_view,), - text=_('Indexes'), view='indexing:document_index_list', args='object.pk' -) -link_index_list = Link( - permissions=(permission_document_indexing_view,), text=_('Index list'), - view='indexing:index_list' + icon='fa fa-list-ul', text=_('Indexes'), + view='indexing:document_index_list', args='object.pk' ) link_index_main_menu = Link( icon='fa fa-list-ul', text=_('Indexes'), view='indexing:index_list' ) link_index_setup = Link( - icon='fa fa-list-ul', permissions=(permission_document_indexing_setup,), - text=_('Indexes'), view='indexing:index_setup_list' + icon='fa fa-list-ul', text=_('Indexes'), view='indexing:index_setup_list' ) link_index_setup_list = Link( - permissions=(permission_document_indexing_setup,), text=_('Indexes'), - view='indexing:index_setup_list' + text=_('Indexes'), view='indexing:index_setup_list' ) link_index_setup_create = Link( permissions=(permission_document_indexing_create,), text=_('Create index'), @@ -50,7 +43,7 @@ link_index_setup_delete = Link( args='resolved_object.pk' ) link_index_setup_view = Link( - permissions=(permission_document_indexing_setup,), text=_('Tree template'), + permissions=(permission_document_indexing_edit,), text=_('Tree template'), view='indexing:index_setup_view', args='resolved_object.pk' ) link_index_setup_document_types = Link( @@ -62,23 +55,18 @@ link_rebuild_index_instances = Link( description=_( 'Deletes and creates from scratch all the document indexes.' ), - permissions=(permission_document_indexing_rebuild_indexes,), + permissions=(permission_document_indexing_rebuild,), text=_('Rebuild indexes'), view='indexing:rebuild_index_instances' ) link_template_node_create = Link( - permissions=(permission_document_indexing_setup,), text=_('New child node'), view='indexing:template_node_create', args='resolved_object.pk' ) link_template_node_edit = Link( - condition=is_not_root_node, - permissions=(permission_document_indexing_setup,), text=_('Edit'), + condition=is_not_root_node, text=_('Edit'), view='indexing:template_node_edit', args='resolved_object.pk' ) link_template_node_delete = Link( - condition=is_not_root_node, permissions=( - permission_document_indexing_setup, - ), - tags='dangerous', text=_('Delete'), view='indexing:template_node_delete', - args='resolved_object.pk' + condition=is_not_root_node, tags='dangerous', text=_('Delete'), + view='indexing:template_node_delete', args='resolved_object.pk' ) diff --git a/mayan/apps/document_indexing/models.py b/mayan/apps/document_indexing/models.py index 744d94767e..e6c983813c 100644 --- a/mayan/apps/document_indexing/models.py +++ b/mayan/apps/document_indexing/models.py @@ -136,7 +136,7 @@ class IndexTemplateNode(MPTTModel): def __str__(self): if self.is_root_node(): - return ugettext('<%s Root>') % self.index + return ugettext('Root') else: return self.expression diff --git a/mayan/apps/document_indexing/permissions.py b/mayan/apps/document_indexing/permissions.py index ab735647a8..4fa5ad4253 100644 --- a/mayan/apps/document_indexing/permissions.py +++ b/mayan/apps/document_indexing/permissions.py @@ -6,9 +6,6 @@ from permissions import PermissionNamespace namespace = PermissionNamespace('document_indexing', _('Indexing')) -permission_document_indexing_setup = namespace.add_permission( - name='document_index_setup', label=_('Configure document indexes') -) permission_document_indexing_create = namespace.add_permission( name='document_index_create', label=_('Create new document indexes') ) @@ -21,6 +18,6 @@ permission_document_indexing_delete = namespace.add_permission( permission_document_indexing_view = namespace.add_permission( name='document_index_view', label=_('View document indexes') ) -permission_document_indexing_rebuild_indexes = namespace.add_permission( +permission_document_indexing_rebuild = namespace.add_permission( name='document_rebuild_indexes', label=_('Rebuild document indexes') ) diff --git a/mayan/apps/document_indexing/tests/test_views.py b/mayan/apps/document_indexing/tests/test_views.py new file mode 100644 index 0000000000..576f2f73db --- /dev/null +++ b/mayan/apps/document_indexing/tests/test_views.py @@ -0,0 +1,114 @@ +from __future__ import absolute_import, unicode_literals + +from documents.permissions import permission_document_view +from documents.tests.test_views import GenericDocumentViewTestCase +from user_management.tests import ( + TEST_USER_USERNAME, TEST_USER_PASSWORD +) + +from ..models import Index +from ..permissions import ( + permission_document_indexing_create, permission_document_indexing_delete, + permission_document_indexing_edit, permission_document_indexing_view +) + +TEST_INDEX_LABEL = 'test label' +TEST_INDEX_EDITED_LABEL = 'test edited label' +TEST_INDEX_SLUG = 'test_slug' + + +class IndexViewTestCase(GenericDocumentViewTestCase): + def test_index_create_view_no_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.post( + 'indexing:index_setup_create', data={ + 'label': TEST_INDEX_LABEL, 'slug': TEST_INDEX_SLUG + } + ) + + self.assertEquals(response.status_code, 403) + self.assertEqual(Index.objects.count(), 0) + + def test_index_create_view_with_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_indexing_create.stored_permission + ) + + response = self.post( + 'indexing:index_setup_create', data={ + 'label': TEST_INDEX_LABEL, 'slug': TEST_INDEX_SLUG + }, follow=True + ) + + self.assertContains(response, text='created', status_code=200) + self.assertEqual(Index.objects.count(), 1) + self.assertEqual(Index.objects.first().label, TEST_INDEX_LABEL) + + def test_index_delete_view_no_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + index = Index.objects.create( + label=TEST_INDEX_LABEL, slug=TEST_INDEX_SLUG + ) + + response = self.post('indexing:index_setup_delete', args=(index.pk,)) + self.assertEqual(response.status_code, 403) + self.assertEqual(Index.objects.count(), 1) + + def test_index_delete_view_with_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_indexing_delete.stored_permission + ) + + index = Index.objects.create( + label=TEST_INDEX_LABEL, slug=TEST_INDEX_SLUG + ) + + response = self.post( + 'indexing:index_setup_delete', args=(index.pk,), follow=True + ) + + self.assertContains(response, text='deleted', status_code=200) + self.assertEqual(Index.objects.count(), 0) + + def test_index_edit_view_no_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + index = Index.objects.create( + label=TEST_INDEX_LABEL, slug=TEST_INDEX_SLUG + ) + + response = self.post( + 'indexing:index_setup_edit', args=(index.pk,), data={ + 'label': TEST_INDEX_EDITED_LABEL, 'slug': TEST_INDEX_SLUG + } + ) + self.assertEqual(response.status_code, 403) + index = Index.objects.get(pk=index.pk) + self.assertEqual(index.label, TEST_INDEX_LABEL) + + def test_index_edit_view_with_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_indexing_edit.stored_permission + ) + + index = Index.objects.create( + label=TEST_INDEX_LABEL, slug=TEST_INDEX_SLUG + ) + + response = self.post( + 'indexing:index_setup_edit', args=(index.pk,), data={ + 'label': TEST_INDEX_EDITED_LABEL, 'slug': TEST_INDEX_SLUG + }, follow=True + ) + + index = Index.objects.get(pk=index.pk) + self.assertContains(response, text='update', status_code=200) + self.assertEqual(index.label, TEST_INDEX_EDITED_LABEL) diff --git a/mayan/apps/document_indexing/urls.py b/mayan/apps/document_indexing/urls.py index d7af8cd1d0..1aa8306b90 100644 --- a/mayan/apps/document_indexing/urls.py +++ b/mayan/apps/document_indexing/urls.py @@ -11,11 +11,12 @@ from .views import ( DocumentIndexNodeListView, IndexInstanceNodeView, IndexListView, RebuildIndexesConfirmView, SetupIndexDocumentTypesView, SetupIndexCreateView, SetupIndexDeleteView, SetupIndexEditView, - SetupIndexListView, SetupIndexTreeTemplateListView, TemplateNodeDeleteView + SetupIndexListView, SetupIndexTreeTemplateListView, TemplateNodeCreateView, + TemplateNodeDeleteView, TemplateNodeEditView ) urlpatterns = patterns( - 'document_indexing.views', + '', url( r'^setup/index/list/$', SetupIndexListView.as_view(), name='index_setup_list' @@ -42,12 +43,12 @@ urlpatterns = patterns( name='index_setup_document_types' ), url( - r'^setup/template/node/(?P\d+)/create/child/$', - 'template_node_create', name='template_node_create' + r'^setup/template/node/(?P\d+)/create/child/$', + TemplateNodeCreateView.as_view(), name='template_node_create' ), url( - r'^setup/template/node/(?P\d+)/edit/$', 'template_node_edit', - name='template_node_edit' + r'^setup/template/node/(?P\d+)/edit/$', + TemplateNodeEditView.as_view(), name='template_node_edit' ), url( r'^setup/template/node/(?P\d+)/delete/$', diff --git a/mayan/apps/document_indexing/views.py b/mayan/apps/document_indexing/views.py index fb0da0beb7..b510a81fa8 100644 --- a/mayan/apps/document_indexing/views.py +++ b/mayan/apps/document_indexing/views.py @@ -26,9 +26,8 @@ from .models import ( ) from .permissions import ( permission_document_indexing_create, permission_document_indexing_delete, - permission_document_indexing_edit, - permission_document_indexing_rebuild_indexes, - permission_document_indexing_setup, permission_document_indexing_view + permission_document_indexing_edit, permission_document_indexing_rebuild, + permission_document_indexing_view ) from .tasks import task_do_rebuild_all_indexes from .widgets import node_tree @@ -43,34 +42,10 @@ class SetupIndexCreateView(SingleObjectCreateView): view_permission = permission_document_indexing_create -class SetupIndexListView(SingleObjectListView): - model = Index - view_permission = permission_document_indexing_setup - - def get_extra_context(self): - return { - 'hide_object': True, - 'title': _('Indexes'), - } - - -class SetupIndexEditView(SingleObjectEditView): - fields = ('label', 'slug', 'enabled') - model = Index - post_action_redirect = reverse_lazy('indexing:index_setup_list') - view_permission = permission_document_indexing_edit - - def get_extra_context(self): - return { - 'object': self.get_object(), - 'title': _('Edit index: %s') % self.get_object(), - } - - class SetupIndexDeleteView(SingleObjectDeleteView): model = Index post_action_redirect = reverse_lazy('indexing:index_setup_list') - view_permission = permission_document_indexing_delete + object_permission = permission_document_indexing_delete def get_extra_context(self): return { @@ -79,8 +54,82 @@ class SetupIndexDeleteView(SingleObjectDeleteView): } +class SetupIndexEditView(SingleObjectEditView): + fields = ('label', 'slug', 'enabled') + model = Index + post_action_redirect = reverse_lazy('indexing:index_setup_list') + object_permission = permission_document_indexing_edit + + def get_extra_context(self): + return { + 'object': self.get_object(), + 'title': _('Edit index: %s') % self.get_object(), + } + + +class SetupIndexListView(SingleObjectListView): + model = Index + object_permission = permission_document_indexing_view + + def get_extra_context(self): + return { + 'hide_object': True, + 'title': _('Indexes'), + } + + +class SetupIndexDocumentTypesView(AssignRemoveView): + decode_content_type = True + left_list_title = _('Available document types') + object_permission = permission_document_indexing_edit + right_list_title = _('Document types linked') + + def add(self, item): + self.get_object().document_types.add(item) + + def get_document_queryset(self): + queryset = DocumentType.objects.all() + + try: + Permission.check_permissions( + self.request.user, (permission_document_view,) + ) + except PermissionDenied: + queryset = AccessControlList.objects.filter_by_access( + permission_document_view, self.request.user, queryset + ) + + return queryset + + def get_extra_context(self): + return { + 'object': self.get_object(), + 'title': _( + 'Document types linked to index: %s' + ) % self.get_object() + } + + def get_object(self): + return get_object_or_404(Index, pk=self.kwargs['pk']) + + def left_list(self): + return AssignRemoveView.generate_choices( + self.get_document_queryset().exclude( + id__in=self.get_object().document_types.all() + ) + ) + + def remove(self, item): + self.get_object().document_types.remove(item) + + def right_list(self): + return AssignRemoveView.generate_choices( + self.get_document_queryset() & self.get_object().document_types.all() + ) + + class SetupIndexTreeTemplateListView(SingleObjectListView): - view_permission = permission_document_indexing_setup + object_permission = permission_document_indexing_edit def get_index(self): return get_object_or_404(Index, pk=self.kwargs['pk']) @@ -98,116 +147,46 @@ class SetupIndexTreeTemplateListView(SingleObjectListView): 'title': _('Tree template nodes for index: %s') % self.get_index(), } +class TemplateNodeCreateView(SingleObjectCreateView): + form_class = IndexTemplateNodeForm + model = IndexTemplateNode -class SetupIndexDocumentTypesView(AssignRemoveView): - decode_content_type = True - object_permission = permission_document_indexing_edit - left_list_title = _('Available document types') - right_list_title = _('Document types linked') - - def add(self, item): - self.get_object().document_types.add(item) - - def get_object(self): - return get_object_or_404(Index, pk=self.kwargs['pk']) - - def left_list(self): - return AssignRemoveView.generate_choices( - DocumentType.objects.exclude( - pk__in=self.get_object().document_types.all() + def dispatch(self, request, *args, **kwargs): + try: + Permission.check_permissions( + request.user, (permission_document_indexing_edit,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_document_indexing_edit, request.user, + self.get_parent_node().index ) - ) - def right_list(self): - return AssignRemoveView.generate_choices( - self.get_object().document_types.all() - ) - - def remove(self, item): - self.get_object().document_types.remove(item) + return super( + TemplateNodeCreateView, self + ).dispatch(request, *args, **kwargs) def get_extra_context(self): return { - 'object': self.get_object(), - 'title': _( - 'Document types linked to index: %s' - ) % self.get_object() + 'index': self.get_parent_node().index, + 'navigation_object_list': ('index',), + 'title': _('Create child node of: %s') % self.get_parent_node(), } + def get_initial(self): + parent_node = self.get_parent_node() + return { + 'index': parent_node.index, 'parent': parent_node + } -# Node views -def template_node_create(request, parent_pk): - parent_node = get_object_or_404(IndexTemplateNode, pk=parent_pk) - - try: - Permission.check_permissions( - request.user, (permission_document_indexing_edit,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - permission_document_indexing_edit, request.user, parent_node.index - ) - - if request.method == 'POST': - form = IndexTemplateNodeForm(request.POST) - if form.is_valid(): - node = form.save() - messages.success( - request, _('Index template node created successfully.') - ) - return HttpResponseRedirect( - reverse('indexing:index_setup_view', args=(node.index.pk,)) - ) - else: - form = IndexTemplateNodeForm( - initial={'index': parent_node.index, 'parent': parent_node} - ) - - return render_to_response('appearance/generic_form.html', { - 'form': form, - 'index': parent_node.index, - 'navigation_object_list': ('index',), - 'title': _('Create child node'), - }, context_instance=RequestContext(request)) - - -def template_node_edit(request, node_pk): - node = get_object_or_404(IndexTemplateNode, pk=node_pk) - - try: - Permission.check_permissions( - request.user, (permission_document_indexing_edit,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - permission_document_indexing_edit, request.user, node.index - ) - - if request.method == 'POST': - form = IndexTemplateNodeForm(request.POST, instance=node) - if form.is_valid(): - form.save() - messages.success( - request, _('Index template node edited successfully') - ) - return HttpResponseRedirect( - reverse('indexing:index_setup_view', args=(node.index.pk,)) - ) - else: - form = IndexTemplateNodeForm(instance=node) - - return render_to_response('appearance/generic_form.html', { - 'form': form, - 'index': node.index, - 'navigation_object_list': ('index', 'node'), - 'node': node, - 'title': _('Edit index template node: %s') % node, - }, context_instance=RequestContext(request)) + def get_parent_node(self): + return get_object_or_404(IndexTemplateNode, pk=self.kwargs['pk']) class TemplateNodeDeleteView(SingleObjectDeleteView): model = IndexTemplateNode - view_permission = permission_document_indexing_edit + object_permission = permission_document_indexing_edit + object_permission_related = 'index' def get_extra_context(self): return { @@ -225,6 +204,28 @@ class TemplateNodeDeleteView(SingleObjectDeleteView): ) +class TemplateNodeEditView(SingleObjectEditView): + form_class = IndexTemplateNodeForm + model = IndexTemplateNode + object_permission = permission_document_indexing_edit + object_permission_related = 'index' + + def get_extra_context(self): + return { + 'index': self.get_object().index, + 'navigation_object_list': ('index', 'node'), + 'node': self.get_object(), + 'title': _( + 'Edit the index template node: %s?' + ) % self.get_object(), + } + + def get_post_action_redirect(self): + return reverse( + 'indexing:index_setup_view', args=(self.get_object().index.pk,) + ) + + class IndexListView(SingleObjectListView): object_permission = permission_document_indexing_view queryset = IndexInstance.objects.filter(enabled=True) @@ -341,7 +342,7 @@ class RebuildIndexesConfirmView(ConfirmView): 'message': _('On large databases this operation may take some time to execute.'), 'title': _('Rebuild all indexes?'), } - view_permission = permission_document_indexing_rebuild_indexes + view_permission = permission_document_indexing_rebuild def get_post_action_redirect(self): return reverse('common:tools_list') diff --git a/mayan/apps/document_indexing/widgets.py b/mayan/apps/document_indexing/widgets.py index 7c684dfc29..70d9fdd16a 100644 --- a/mayan/apps/document_indexing/widgets.py +++ b/mayan/apps/document_indexing/widgets.py @@ -49,10 +49,9 @@ def node_level(node): return mark_safe( ''.join( [ - '     ' * ( - getattr(node, node._mptt_meta.level_attr) - 1 - ), '' if node.is_root_node() else ' ', - ugettext('Root') if node.is_root_node() else unicode(node) + '     ' * node.get_level(), + '' if node.is_root_node() else ' ', + unicode(node) ] ) ) From 145161cef492d8450b85a3afea7607e948a5e1a2 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 19 Mar 2016 03:00:03 -0400 Subject: [PATCH 099/205] PEP8 cleanups. --- mayan/apps/acls/tests/test_views.py | 1 - mayan/apps/acls/views.py | 1 - mayan/apps/common/generics.py | 4 ++-- mayan/apps/document_indexing/apps.py | 3 +-- mayan/apps/document_indexing/links.py | 2 -- mayan/apps/document_indexing/tests/test_views.py | 3 +-- mayan/apps/document_indexing/views.py | 5 ++--- mayan/apps/document_indexing/widgets.py | 1 - 8 files changed, 6 insertions(+), 14 deletions(-) diff --git a/mayan/apps/acls/tests/test_views.py b/mayan/apps/acls/tests/test_views.py index 8fe4ab97ce..ddc450f5df 100644 --- a/mayan/apps/acls/tests/test_views.py +++ b/mayan/apps/acls/tests/test_views.py @@ -2,7 +2,6 @@ from __future__ import absolute_import, unicode_literals from django.contrib.contenttypes.models import ContentType -from documents.permissions import permission_document_view from documents.tests.test_views import GenericDocumentViewTestCase from user_management.tests import ( TEST_USER_USERNAME, TEST_USER_PASSWORD diff --git a/mayan/apps/acls/views.py b/mayan/apps/acls/views.py index edec9aa0e2..1d827fbd81 100644 --- a/mayan/apps/acls/views.py +++ b/mayan/apps/acls/views.py @@ -3,7 +3,6 @@ from __future__ import absolute_import, unicode_literals import itertools import logging -from django.contrib import messages from django.contrib.contenttypes.models import ContentType from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse diff --git a/mayan/apps/common/generics.py b/mayan/apps/common/generics.py index a79aea823c..fadef63bf1 100644 --- a/mayan/apps/common/generics.py +++ b/mayan/apps/common/generics.py @@ -282,7 +282,7 @@ class SingleObjectCreateView(ObjectNameMixin, ViewPermissionCheckMixin, ExtraCon messages.error( self.request, _('%(object)s not created, error: %(error)s') % { - 'object': self.get_object_name(), + 'object': self.get_object_name(context=context), 'error': exception } ) @@ -293,7 +293,7 @@ class SingleObjectCreateView(ObjectNameMixin, ViewPermissionCheckMixin, ExtraCon self.request, _( '%(object)s created successfully.' - ) % {'object': self.get_object_name()} + ) % {'object': self.get_object_name(context=context)} ) return HttpResponseRedirect(self.get_success_url()) diff --git a/mayan/apps/document_indexing/apps.py b/mayan/apps/document_indexing/apps.py index 97b176a16b..3e0bf296ea 100644 --- a/mayan/apps/document_indexing/apps.py +++ b/mayan/apps/document_indexing/apps.py @@ -35,8 +35,7 @@ from .links import ( ) from .permissions import ( permission_document_indexing_create, permission_document_indexing_delete, - permission_document_indexing_edit, permission_document_indexing_view, - permission_document_indexing_rebuild + permission_document_indexing_edit, permission_document_indexing_view ) from .widgets import get_instance_link, index_instance_item_link, node_level diff --git a/mayan/apps/document_indexing/links.py b/mayan/apps/document_indexing/links.py index 2fc8b50622..2bf89f7dbc 100644 --- a/mayan/apps/document_indexing/links.py +++ b/mayan/apps/document_indexing/links.py @@ -2,13 +2,11 @@ from __future__ import unicode_literals from django.utils.translation import ugettext_lazy as _ -from documents.permissions import permission_document_view from navigation import Link from .permissions import ( permission_document_indexing_create, permission_document_indexing_edit, permission_document_indexing_delete, permission_document_indexing_rebuild, - permission_document_indexing_view ) diff --git a/mayan/apps/document_indexing/tests/test_views.py b/mayan/apps/document_indexing/tests/test_views.py index 576f2f73db..3f3d98689a 100644 --- a/mayan/apps/document_indexing/tests/test_views.py +++ b/mayan/apps/document_indexing/tests/test_views.py @@ -1,6 +1,5 @@ from __future__ import absolute_import, unicode_literals -from documents.permissions import permission_document_view from documents.tests.test_views import GenericDocumentViewTestCase from user_management.tests import ( TEST_USER_USERNAME, TEST_USER_PASSWORD @@ -9,7 +8,7 @@ from user_management.tests import ( from ..models import Index from ..permissions import ( permission_document_indexing_create, permission_document_indexing_delete, - permission_document_indexing_edit, permission_document_indexing_view + permission_document_indexing_edit ) TEST_INDEX_LABEL = 'test label' diff --git a/mayan/apps/document_indexing/views.py b/mayan/apps/document_indexing/views.py index b510a81fa8..97c3d0a76f 100644 --- a/mayan/apps/document_indexing/views.py +++ b/mayan/apps/document_indexing/views.py @@ -3,9 +3,7 @@ from __future__ import absolute_import, unicode_literals from django.contrib import messages from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse, reverse_lazy -from django.http import HttpResponseRedirect -from django.shortcuts import get_object_or_404, render_to_response -from django.template import RequestContext +from django.shortcuts import get_object_or_404 from django.utils.html import mark_safe from django.utils.translation import ugettext_lazy as _ @@ -147,6 +145,7 @@ class SetupIndexTreeTemplateListView(SingleObjectListView): 'title': _('Tree template nodes for index: %s') % self.get_index(), } + class TemplateNodeCreateView(SingleObjectCreateView): form_class = IndexTemplateNodeForm model = IndexTemplateNode diff --git a/mayan/apps/document_indexing/widgets.py b/mayan/apps/document_indexing/widgets.py index 70d9fdd16a..24a44680ee 100644 --- a/mayan/apps/document_indexing/widgets.py +++ b/mayan/apps/document_indexing/widgets.py @@ -3,7 +3,6 @@ from __future__ import unicode_literals from django.apps import apps from django.utils.html import mark_safe, escape -from django.utils.translation import ugettext def get_instance_link(index_instance_node): From 9191c04eb9856320df933973862b736fd9f4c4ae Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 19 Mar 2016 03:00:18 -0400 Subject: [PATCH 100/205] Update changelog. --- HISTORY.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 215f80c800..c1dc0a5188 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -21,6 +21,10 @@ - Update Document model's uuid field to use Django's native UUIDField class. - Add new split view index navigation - Newly uploaded documents appear in the Recent document list of the user. +- Document indexes now have ACL support. +- Remove the document index setup permission. +- Status messages now display the object class on which they operate not just the word "Object". +- More tests added. 2.0.2 (2016-02-09) ================== From b32563ac8ea7fc1207ee54fe2be95350c584b511 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 20 Mar 2016 01:21:48 -0400 Subject: [PATCH 101/205] Add python 3.5 and remove python 3.2 from tox.ini. --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 1aead0307c..79581d3850 100644 --- a/tox.ini +++ b/tox.ini @@ -1,15 +1,15 @@ [tox] envlist = coverage-clean - py{27,32,33,34}-django{1.7,1.8} + py{27,33,34,35}-django{1.7,1.8} coverage-report [testenv] basepython = py27: python2.7 - py32: python3.2 py33: python3.3 py34: python3.4 + py35: python3.5 commands= coverage run {envdir}/bin/django-admin.py runtests --settings=mayan.settings.testing --nomigrations From 6ec7a2ca4d9198fd6b45033fae58739c6ca0a64b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 20 Mar 2016 15:40:42 -0400 Subject: [PATCH 102/205] Support unicode filenames in staging folders. --- HISTORY.rst | 1 + mayan/apps/sources/classes.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index c1dc0a5188..61bfa3745c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -25,6 +25,7 @@ - Remove the document index setup permission. - Status messages now display the object class on which they operate not just the word "Object". - More tests added. +- Handle unicode filenames in staging folders. 2.0.2 (2016-02-09) ================== diff --git a/mayan/apps/sources/classes.py b/mayan/apps/sources/classes.py index 847f573614..3ff49704af 100644 --- a/mayan/apps/sources/classes.py +++ b/mayan/apps/sources/classes.py @@ -50,10 +50,10 @@ class StagingFile(object): self.encoded_filename = str(encoded_filename) self.filename = base64.urlsafe_b64decode( urllib.unquote_plus(self.encoded_filename) - ) + ).decode('utf8') else: self.filename = filename - self.encoded_filename = base64.urlsafe_b64encode(filename) + self.encoded_filename = base64.urlsafe_b64encode(filename.encode('utf8')) def __unicode__(self): return unicode(self.filename) From 7be6e8c6eda0e429f3d3a762230a771df300b5fd Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 20 Mar 2016 15:59:49 -0400 Subject: [PATCH 103/205] Add unicode filename test for the StagingFile class. --- mayan/apps/sources/classes.py | 4 ++- mayan/apps/sources/tests/test_classes.py | 34 ++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 mayan/apps/sources/tests/test_classes.py diff --git a/mayan/apps/sources/classes.py b/mayan/apps/sources/classes.py index 3ff49704af..9b8aa3b0c5 100644 --- a/mayan/apps/sources/classes.py +++ b/mayan/apps/sources/classes.py @@ -53,7 +53,9 @@ class StagingFile(object): ).decode('utf8') else: self.filename = filename - self.encoded_filename = base64.urlsafe_b64encode(filename.encode('utf8')) + self.encoded_filename = base64.urlsafe_b64encode( + filename.encode('utf8') + ) def __unicode__(self): return unicode(self.filename) diff --git a/mayan/apps/sources/tests/test_classes.py b/mayan/apps/sources/tests/test_classes.py new file mode 100644 index 0000000000..7c0bfc43fe --- /dev/null +++ b/mayan/apps/sources/tests/test_classes.py @@ -0,0 +1,34 @@ +from __future__ import unicode_literals + +import os +import shutil +import tempfile + +from django.test import TestCase + +from documents.tests import TEST_NON_ASCII_DOCUMENT_PATH + +from ..classes import StagingFile + + +class StagingFileTestCase(TestCase): + def test_unicode_staging_file(self): + temporary_directory = tempfile.mkdtemp() + shutil.copy(TEST_NON_ASCII_DOCUMENT_PATH, temporary_directory) + + filename = os.path.basename(TEST_NON_ASCII_DOCUMENT_PATH) + + class MockStagingFolder(object): + self.folder_path = temporary_directory + + staging_file_1 = StagingFile( + staging_folder=MockStagingFolder(), + filename=filename + ) + + staging_file_2 = StagingFile( + staging_folder=MockStagingFolder(), + encoded_filename=staging_file_1.encoded_filename + ) + + self.assertEqual(filename, staging_file_2.filename) From a0b31d4bfeab7216f86ed4e14a375a45fd8e0e09 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 20 Mar 2016 16:34:39 -0400 Subject: [PATCH 104/205] Convert the staging file deletion view to CBV. Add staging file deletion permission. --- mayan/apps/sources/permissions.py | 3 + mayan/apps/sources/tests/test_views.py | 81 +++++++++++++++++++++++++- mayan/apps/sources/urls.py | 10 ++-- mayan/apps/sources/views.py | 66 +++++++-------------- 4 files changed, 108 insertions(+), 52 deletions(-) diff --git a/mayan/apps/sources/permissions.py b/mayan/apps/sources/permissions.py index 9ca6d8dc79..0575b8561f 100644 --- a/mayan/apps/sources/permissions.py +++ b/mayan/apps/sources/permissions.py @@ -17,3 +17,6 @@ permission_sources_setup_edit = namespace.add_permission( permission_sources_setup_view = namespace.add_permission( name='sources_setup_view', label=_('View existing document sources') ) +permission_staging_file_delete = namespace.add_permission( + name='sources_staging_file_delete', label=_('Delete staging files') +) diff --git a/mayan/apps/sources/tests/test_views.py b/mayan/apps/sources/tests/test_views.py index be0d2fed47..038ccd0882 100644 --- a/mayan/apps/sources/tests/test_views.py +++ b/mayan/apps/sources/tests/test_views.py @@ -1,11 +1,16 @@ from __future__ import unicode_literals +import os +import shutil +import tempfile + from django.contrib.auth import get_user_model from django.core.urlresolvers import reverse from django.test.client import Client from django.test import TestCase, override_settings from acls.models import AccessControlList +from common.tests.test_views import GenericViewTestCase from documents.models import Document, DocumentType, NewVersionBlock from documents.permissions import permission_document_create from documents.tests import ( @@ -19,10 +24,12 @@ from user_management.tests import ( ) from ..links import link_upload_version from ..literals import SOURCE_CHOICE_WEB_FORM -from ..models import WebFormSource +from ..models import StagingFolderSource, WebFormSource +from ..permissions import permission_staging_file_delete TEST_SOURCE_LABEL = 'test' -TEST_SOURCE_UNCOMPRESS = 'n' +TEST_SOURCE_UNCOMPRESS_N = 'n' +TEST_STAGING_PREVIEW_WIDTH = 640 class DocumentUploadTestCase(GenericDocumentViewTestCase): @@ -30,7 +37,7 @@ class DocumentUploadTestCase(GenericDocumentViewTestCase): super(DocumentUploadTestCase, self).setUp() self.source = WebFormSource.objects.create( enabled=True, label=TEST_SOURCE_LABEL, - uncompress=TEST_SOURCE_UNCOMPRESS + uncompress=TEST_SOURCE_UNCOMPRESS_N ) self.document.delete() @@ -210,3 +217,71 @@ class NewDocumentVersionViewTestCase(GenericDocumentViewTestCase): resolved_link = link_upload_version.resolve(context=response.context) self.assertEqual(resolved_link, None) + + +class StagingFolderTestCase(GenericViewTestCase): + def setUp(self): + super(StagingFolderTestCase, self).setUp() + self.temporary_directory = tempfile.mkdtemp() + # TODO: remove temp directory after test + shutil.copy(TEST_SMALL_DOCUMENT_PATH, self.temporary_directory) + + self.filename = os.path.basename(TEST_SMALL_DOCUMENT_PATH) + + def tearDown(self): + super(StagingFolderTestCase, self).tearDown() + shutil.rmtree(self.temporary_directory) + + def test_staging_folder_delete_no_permission(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + staging_folder = StagingFolderSource.objects.create( + label=TEST_SOURCE_LABEL, + folder_path=self.temporary_directory, + preview_width=TEST_STAGING_PREVIEW_WIDTH, + uncompress=TEST_SOURCE_UNCOMPRESS_N, + ) + + self.assertEqual(len(list(staging_folder.get_files())), 1) + + staging_file = list(staging_folder.get_files())[0] + + response = self.post( + 'sources:staging_file_delete', args=( + staging_folder.pk, staging_file.encoded_filename + ), follow=True + ) + + self.assertEqual(response.status_code, 403) + self.assertEqual(len(list(staging_folder.get_files())), 1) + + def test_staging_folder_delete_with_permission(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + self.role.permissions.add( + permission_staging_file_delete.stored_permission + ) + + staging_folder = StagingFolderSource.objects.create( + label=TEST_SOURCE_LABEL, + folder_path=self.temporary_directory, + preview_width=TEST_STAGING_PREVIEW_WIDTH, + uncompress=TEST_SOURCE_UNCOMPRESS_N, + ) + + self.assertEqual(len(list(staging_folder.get_files())), 1) + + staging_file = list(staging_folder.get_files())[0] + + response = self.post( + 'sources:staging_file_delete', args=( + staging_folder.pk, staging_file.encoded_filename + ), follow=True + ) + + self.assertContains(response, 'deleted', status_code=200) + self.assertEqual(len(list(staging_folder.get_files())), 0) diff --git a/mayan/apps/sources/urls.py b/mayan/apps/sources/urls.py index b52e01f902..15eb41df1b 100644 --- a/mayan/apps/sources/urls.py +++ b/mayan/apps/sources/urls.py @@ -8,16 +8,16 @@ from .api_views import ( ) from .views import ( SetupSourceCreateView, SetupSourceDeleteView, SetupSourceEditView, - SetupSourceListView, SourceLogListView, UploadInteractiveVersionView, - UploadInteractiveView + SetupSourceListView, SourceLogListView, StagingFileDeleteView, + UploadInteractiveVersionView, UploadInteractiveView ) from .wizards import DocumentCreateWizard urlpatterns = patterns( - 'sources.views', + '', url( - r'^staging_file/(?P\d+)/(?P.+)/delete/$', - 'staging_file_delete', name='staging_file_delete' + r'^staging_file/(?P\d+)/(?P.+)/delete/$', + StagingFileDeleteView.as_view(), name='staging_file_delete' ), url( diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index a0d02acefa..288cfcd40d 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -1,12 +1,10 @@ from __future__ import absolute_import, unicode_literals -from django.conf import settings from django.contrib import messages from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse, reverse_lazy from django.http import HttpResponseRedirect -from django.shortcuts import render_to_response, get_object_or_404 -from django.template import RequestContext +from django.shortcuts import get_object_or_404 from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList @@ -41,7 +39,8 @@ from .models import ( ) from .permissions import ( permission_sources_setup_create, permission_sources_setup_delete, - permission_sources_setup_edit, permission_sources_setup_view + permission_sources_setup_edit, permission_sources_setup_view, + permission_staging_file_delete ) from .tasks import task_source_handle_upload from .utils import get_class, get_form_class, get_upload_form_class @@ -423,48 +422,27 @@ class UploadInteractiveVersionView(UploadBaseView): return context -def staging_file_delete(request, staging_folder_pk, encoded_filename): - Permission.check_permissions( - request.user, ( - permission_document_create, permission_document_new_version +class StagingFileDeleteView(SingleObjectDeleteView): + object_permission = permission_staging_file_delete + object_permission_related = 'staging_folder' + + def get_extra_context(self): + return { + 'object': self.get_object(), + 'object_name': _('Staging file'), + 'source': self.get_source(), + } + + def get_object(self): + source = self.get_source() + return source.get_file( + encoded_filename=self.kwargs['encoded_filename'] ) - ) - staging_folder = get_object_or_404( - StagingFolderSource, pk=staging_folder_pk - ) - staging_file = staging_folder.get_file(encoded_filename=encoded_filename) - next = request.POST.get( - 'next', request.GET.get('next', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL))) - ) - previous = request.POST.get( - 'previous', request.GET.get('previous', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL))) - ) - - if request.method == 'POST': - try: - staging_file.delete() - messages.success(request, _('Staging file delete successfully.')) - except Exception as exception: - messages.error( - request, _('Staging file delete error; %s.') % exception - ) - return HttpResponseRedirect(next) - - results = UploadBaseView.get_active_tab_links() - - return render_to_response('appearance/generic_confirm.html', { - 'source': staging_folder, - 'delete_view': True, - 'object': staging_file, - 'next': next, - 'previous': previous, - 'extra_navigation_links': { - 'form_header': { - 'staging_file_delete': {'links': results['tab_links']} - } - }, - }, context_instance=RequestContext(request)) + def get_source(self): + return get_object_or_404( + StagingFolderSource, pk=self.kwargs['pk'] + ) # Setup views From 308472b92bccf26bbb8f39eb08c72eddd69ae150 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 20 Mar 2016 16:35:08 -0400 Subject: [PATCH 105/205] Delete temporary directory after testing. --- mayan/apps/sources/tests/test_classes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mayan/apps/sources/tests/test_classes.py b/mayan/apps/sources/tests/test_classes.py index 7c0bfc43fe..e3ae3395a2 100644 --- a/mayan/apps/sources/tests/test_classes.py +++ b/mayan/apps/sources/tests/test_classes.py @@ -32,3 +32,5 @@ class StagingFileTestCase(TestCase): ) self.assertEqual(filename, staging_file_2.filename) + + shutil.rmtree(temporary_directory) From bd3e31efa40cea258457cd276f4f501e51f6cbed Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 02:05:05 -0400 Subject: [PATCH 106/205] Update document_reset_view to CBV. --- mayan/apps/documents/urls.py | 19 ++++++++++--------- mayan/apps/documents/views.py | 9 +++++---- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/mayan/apps/documents/urls.py b/mayan/apps/documents/urls.py index dc24101422..9882003f5c 100644 --- a/mayan/apps/documents/urls.py +++ b/mayan/apps/documents/urls.py @@ -16,13 +16,14 @@ from .settings import setting_print_size, setting_display_size from .views import ( DeletedDocumentDeleteView, DeletedDocumentDeleteManyView, DeletedDocumentListView, DocumentEditView, DocumentListView, - DocumentPageView, DocumentPageListView, DocumentPreviewView, - DocumentRestoreView, DocumentRestoreManyView, DocumentTrashView, - DocumentTrashManyView, DocumentTypeCreateView, DocumentTypeDeleteView, - DocumentTypeDocumentListView, DocumentTypeFilenameDeleteView, - DocumentTypeFilenameEditView, DocumentTypeFilenameListView, - DocumentTypeListView, DocumentTypeEditView, DocumentVersionListView, - DocumentView, EmptyTrashCanView, RecentDocumentListView + DocumentPageView, DocumentPageListView, DocumentPageViewResetView, + DocumentPreviewView, DocumentRestoreView, DocumentRestoreManyView, + DocumentTrashView, DocumentTrashManyView, DocumentTypeCreateView, + DocumentTypeDeleteView, DocumentTypeDocumentListView, + DocumentTypeFilenameDeleteView, DocumentTypeFilenameEditView, + DocumentTypeFilenameListView, DocumentTypeListView, DocumentTypeEditView, + DocumentVersionListView, DocumentView, EmptyTrashCanView, + RecentDocumentListView ) urlpatterns = patterns( @@ -190,8 +191,8 @@ urlpatterns = patterns( 'document_page_rotate_left', name='document_page_rotate_left' ), url( - r'^page/(?P\d+)/reset/$', - 'document_page_view_reset', name='document_page_view_reset' + r'^page/(?P\d+)/reset/$', DocumentPageViewResetView.as_view(), + name='document_page_view_reset' ), # Admin views diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index 34af9b26c8..38cd3ff1e2 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -13,6 +13,7 @@ from django.shortcuts import render_to_response, get_object_or_404 from django.template import RequestContext from django.utils.http import urlencode from django.utils.translation import ugettext_lazy as _, ungettext +from django.views.generic import RedirectView from acls.models import AccessControlList from common.compressed_files import CompressedFile @@ -288,6 +289,10 @@ class DocumentPageView(SimpleView): return get_object_or_404(DocumentPage, pk=self.kwargs['pk']) +class DocumentPageViewResetView(RedirectView): + pattern_name = 'documents:document_page_view' + + class DocumentPreviewView(SingleObjectDetailView): form_class = DocumentPreviewForm model = Document @@ -971,10 +976,6 @@ def document_multiple_clear_transformations(request): ) -def document_page_view_reset(request, document_page_id): - return HttpResponseRedirect(reverse('documents:document_page_view', args=(document_page_id,))) - - def document_page_navigation_next(request, document_page_id): document_page = get_object_or_404(DocumentPage, pk=document_page_id) From ad0643b62afca96579745a5515a6f702ffc727c5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 02:11:56 -0400 Subject: [PATCH 107/205] Convert document cache clear view to CBV. Update message and link label to include the word 'image'. --- mayan/apps/documents/links.py | 4 ++-- mayan/apps/documents/urls.py | 22 +++++++++++----------- mayan/apps/documents/views.py | 30 +++++++++++++----------------- 3 files changed, 26 insertions(+), 30 deletions(-) diff --git a/mayan/apps/documents/links.py b/mayan/apps/documents/links.py index a46aa8caf7..e48512402b 100644 --- a/mayan/apps/documents/links.py +++ b/mayan/apps/documents/links.py @@ -147,8 +147,8 @@ link_clear_image_cache = Link( description=_( 'Clear the graphics representations used to speed up the documents\' ' 'display and interactive transformations results.' - ), - permissions=(permission_document_tools,), text=_('Clear document cache'), + ), permissions=(permission_document_tools,), + text=_('Clear document image cache'), view='documents:document_clear_image_cache' ) link_trash_can_empty = Link( diff --git a/mayan/apps/documents/urls.py b/mayan/apps/documents/urls.py index 9882003f5c..fdadf42de1 100644 --- a/mayan/apps/documents/urls.py +++ b/mayan/apps/documents/urls.py @@ -14,16 +14,16 @@ from .api_views import ( ) from .settings import setting_print_size, setting_display_size from .views import ( - DeletedDocumentDeleteView, DeletedDocumentDeleteManyView, - DeletedDocumentListView, DocumentEditView, DocumentListView, - DocumentPageView, DocumentPageListView, DocumentPageViewResetView, - DocumentPreviewView, DocumentRestoreView, DocumentRestoreManyView, - DocumentTrashView, DocumentTrashManyView, DocumentTypeCreateView, - DocumentTypeDeleteView, DocumentTypeDocumentListView, - DocumentTypeFilenameDeleteView, DocumentTypeFilenameEditView, - DocumentTypeFilenameListView, DocumentTypeListView, DocumentTypeEditView, - DocumentVersionListView, DocumentView, EmptyTrashCanView, - RecentDocumentListView + ClearImageCacheView, DeletedDocumentDeleteView, + DeletedDocumentDeleteManyView, DeletedDocumentListView, DocumentEditView, + DocumentListView, DocumentPageView, DocumentPageListView, + DocumentPageViewResetView, DocumentPreviewView, DocumentRestoreView, + DocumentRestoreManyView, DocumentTrashView, DocumentTrashManyView, + DocumentTypeCreateView, DocumentTypeDeleteView, + DocumentTypeDocumentListView, DocumentTypeFilenameDeleteView, + DocumentTypeFilenameEditView, DocumentTypeFilenameListView, + DocumentTypeListView, DocumentTypeEditView, DocumentVersionListView, + DocumentView, EmptyTrashCanView, RecentDocumentListView ) urlpatterns = patterns( @@ -145,7 +145,7 @@ urlpatterns = patterns( name='document_multiple_clear_transformations' ), url( - r'^cache/clear/$', 'document_clear_image_cache', + r'^cache/clear/$', ClearImageCacheView.as_view(), name='document_clear_image_cache' ), url( diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index 38cd3ff1e2..d415b78fe9 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -62,6 +62,19 @@ from .utils import parse_range logger = logging.getLogger(__name__) +class ClearImageCacheView(ConfirmView): + extra_context = { + 'title': _('Clear the document image cache?') + } + view_permission = permission_document_tools + + def view_action(self): + task_clear_image_cache.apply_async() + messages.success( + self.request, _('Document cache clearing queued successfully.') + ) + + class DocumentListView(SingleObjectListView): extra_context = { 'hide_links': True, @@ -1179,23 +1192,6 @@ def document_type_filename_create(request, document_type_id): }, context_instance=RequestContext(request)) -def document_clear_image_cache(request): - Permission.check_permissions(request.user, (permission_document_tools,)) - - previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - - if request.method == 'POST': - task_clear_image_cache.apply_async() - messages.success(request, _('Document cache clearing queued successfully.')) - - return HttpResponseRedirect(previous) - - return render_to_response('appearance/generic_confirm.html', { - 'previous': previous, - 'title': _('Clear the document cache?'), - }, context_instance=RequestContext(request)) - - def document_version_revert(request, document_version_pk): document_version = get_object_or_404(DocumentVersion, pk=document_version_pk) From c07f5a7820a7f966c3eadf045250e125523f7f35 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 02:37:14 -0400 Subject: [PATCH 108/205] Add object permission checking to the generic ConfirmView. --- mayan/apps/common/generics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/common/generics.py b/mayan/apps/common/generics.py index fadef63bf1..6fd6e03bf4 100644 --- a/mayan/apps/common/generics.py +++ b/mayan/apps/common/generics.py @@ -166,7 +166,7 @@ class AssignRemoveView(ExtraContextMixin, ViewPermissionCheckMixin, ObjectPermis return data -class ConfirmView(ObjectListPermissionFilterMixin, ViewPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, TemplateView): +class ConfirmView(ObjectListPermissionFilterMixin, ObjectPermissionCheckMixin, ViewPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, TemplateView): template_name = 'appearance/generic_confirm.html' def post(self, request, *args, **kwargs): From 37d6070cabc80d271ebfb9eb9b40555109d6050e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 02:37:39 -0400 Subject: [PATCH 109/205] Convert the document version revert view to CBV. Add document version revert view tests. --- mayan/apps/documents/tests/test_views.py | 47 ++++++++++++++++++-- mayan/apps/documents/urls.py | 7 +-- mayan/apps/documents/views.py | 56 ++++++++++++------------ 3 files changed, 77 insertions(+), 33 deletions(-) diff --git a/mayan/apps/documents/tests/test_views.py b/mayan/apps/documents/tests/test_views.py index 1fbb17a9be..f12a2066e8 100644 --- a/mayan/apps/documents/tests/test_views.py +++ b/mayan/apps/documents/tests/test_views.py @@ -23,8 +23,8 @@ from ..permissions import ( permission_document_restore, permission_document_tools, permission_document_trash, permission_document_type_create, permission_document_type_delete, permission_document_type_edit, - permission_document_type_view, permission_document_view, - permission_empty_trash + permission_document_type_view, permission_document_version_revert, + permission_document_view, permission_empty_trash ) from .literals import ( @@ -505,10 +505,51 @@ class DocumentsViewsTestCase(GenericDocumentViewTestCase): ) response = self.post('documents:trash_can_empty', follow=True) - self.assertContains(response, text='emptied successfully', status_code=200) + self.assertContains( + response, text='emptied successfully', status_code=200 + ) self.assertEqual(DeletedDocument.objects.count(), 0) self.assertEqual(Document.objects.count(), 0) + def test_document_version_revert_no_permission(self): + first_version = self.document.latest_version + + with open(TEST_SMALL_DOCUMENT_PATH) as file_object: + self.document.new_version( + file_object=file_object + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.post( + 'documents:document_version_revert', args=(first_version.pk,) + ) + + self.assertEqual(response.status_code, 403) + self.assertEqual(self.document.versions.count(), 2) + + def test_document_version_revert_with_permission(self): + first_version = self.document.latest_version + + with open(TEST_SMALL_DOCUMENT_PATH) as file_object: + self.document.new_version( + file_object=file_object + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_version_revert.stored_permission + ) + + response = self.post( + 'documents:document_version_revert', args=(first_version.pk,), + follow=True + ) + + self.assertContains(response, 'reverted', status_code=200) + self.assertEqual(self.document.versions.count(), 1) + class DocumentTypeViewsTestCase(GenericDocumentViewTestCase): def test_document_type_create_view_no_permission(self): diff --git a/mayan/apps/documents/urls.py b/mayan/apps/documents/urls.py index fdadf42de1..4b31d90c71 100644 --- a/mayan/apps/documents/urls.py +++ b/mayan/apps/documents/urls.py @@ -23,7 +23,8 @@ from .views import ( DocumentTypeDocumentListView, DocumentTypeFilenameDeleteView, DocumentTypeFilenameEditView, DocumentTypeFilenameListView, DocumentTypeListView, DocumentTypeEditView, DocumentVersionListView, - DocumentView, EmptyTrashCanView, RecentDocumentListView + DocumentVersionRevertView, DocumentView, EmptyTrashCanView, + RecentDocumentListView ) urlpatterns = patterns( @@ -130,8 +131,8 @@ urlpatterns = patterns( 'document_download', name='document_version_download' ), url( - r'^document/version/(?P\d+)/revert/$', - 'document_version_revert', name='document_version_revert' + r'^document/version/(?P\d+)/revert/$', + DocumentVersionRevertView.as_view(), name='document_version_revert' ), url( diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index d415b78fe9..74f3858bf9 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -548,6 +548,35 @@ class DocumentVersionListView(SingleObjectListView): return self.get_document().versions.order_by('-timestamp') +class DocumentVersionRevertView(ConfirmView): + object_permission = permission_document_version_revert + object_permission_related = 'document' + + def get_extra_context(self): + return { + 'message': _( + 'All later version after this one will be deleted too.' + ), + 'object': self.get_object().document, + 'title': _('Revert to this version?'), + } + + def get_object(self): + return get_object_or_404(DocumentVersion, pk=self.kwargs['pk']) + + def view_action(self): + try: + self.get_object().revert(_user=self.request.user) + messages.success( + self.request, _('Document version reverted successfully') + ) + except Exception as exception: + messages.error( + self.request, + _('Error reverting document version; %s') % exception + ) + + class DocumentView(SingleObjectDetailView): form_class = DocumentPropertiesForm model = Document @@ -1190,30 +1219,3 @@ def document_type_filename_create(request, document_type_id): 'navigation_object_list': ('document_type',), 'title': _('Create quick label for document type: %s') % document_type, }, context_instance=RequestContext(request)) - - -def document_version_revert(request, document_version_pk): - document_version = get_object_or_404(DocumentVersion, pk=document_version_pk) - - try: - Permission.check_permissions(request.user, (permission_document_version_revert,)) - except PermissionDenied: - AccessControlList.objects.check_access(permission_document_version_revert, request.user, document_version.document) - - previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - - if request.method == 'POST': - try: - document_version.revert(_user=request.user) - messages.success(request, _('Document version reverted successfully')) - except Exception as exception: - messages.error(request, _('Error reverting document version; %s') % exception) - - return HttpResponseRedirect(previous) - - return render_to_response('appearance/generic_confirm.html', { - 'previous': previous, - 'object': document_version.document, - 'title': _('Revert to this version?'), - 'message': _('All later version after this one will be deleted too.'), - }, context_instance=RequestContext(request)) From 28f3b7551d88d4ac02d7a8f37e0f0fc9691e6196 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 03:44:45 -0400 Subject: [PATCH 110/205] Consolidate document page image generation as binary or base64 to a single place at the converter class level. --- mayan/apps/converter/classes.py | 11 ++++++++--- mayan/apps/converter/literals.py | 3 +-- mayan/apps/documents/models.py | 10 +--------- mayan/apps/documents/serializers.py | 2 -- mayan/apps/documents/views.py | 2 +- mayan/apps/sources/classes.py | 8 +------- 6 files changed, 12 insertions(+), 24 deletions(-) diff --git a/mayan/apps/converter/classes.py b/mayan/apps/converter/classes.py index 1c25b36241..a7024ebdc3 100644 --- a/mayan/apps/converter/classes.py +++ b/mayan/apps/converter/classes.py @@ -1,5 +1,6 @@ from __future__ import unicode_literals +import base64 import logging import os import tempfile @@ -168,7 +169,7 @@ class ConverterBase(object): fs_cleanup(input_filepath) - def get_page(self, output_format=DEFAULT_FILE_FORMAT): + def get_page(self, output_format=DEFAULT_FILE_FORMAT, as_base64=False): if not self.image: self.seek(0) @@ -183,9 +184,13 @@ class ConverterBase(object): new_mode = 'RGBA' self.image.convert(new_mode).save(image_buffer, format=output_format) - image_buffer.seek(0) - return image_buffer + if as_base64: + return 'data:{};base64,{}'.format(Image.MIME[output_format], base64.b64encode(image_buffer.getvalue())) + else: + image_buffer.seek(0) + + return image_buffer def convert(self, page_number=DEFAULT_PAGE_NUMBER): self.page_number = page_number diff --git a/mayan/apps/converter/literals.py b/mayan/apps/converter/literals.py index 2377661029..e058f313bc 100644 --- a/mayan/apps/converter/literals.py +++ b/mayan/apps/converter/literals.py @@ -3,7 +3,6 @@ from __future__ import unicode_literals DEFAULT_ZOOM_LEVEL = 100 DEFAULT_ROTATION = 0 DEFAULT_PAGE_NUMBER = 1 -DEFAULT_FILE_FORMAT = 'jpeg' -DEFAULT_FILE_FORMAT_MIMETYPE = 'image/jpeg' +DEFAULT_FILE_FORMAT = 'JPEG' DIMENSION_SEPARATOR = 'x' diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index 24ea112b21..74e1a7b76a 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -753,15 +753,7 @@ class DocumentPage(models.Model): transformation=TransformationZoom(percent=zoom_level) ) - page_image = converter.get_page() - - if as_base64: - # TODO: don't prepend 'data:%s;base64,%s' part - return 'data:%s;base64,%s' % ( - 'image/png', base64.b64encode(page_image.getvalue()) - ) - else: - return page_image + return converter.get_page(as_base64=as_base64) def invalidate_cache(self): cache_storage_backend.delete(self.cache_filename) diff --git a/mayan/apps/documents/serializers.py b/mayan/apps/documents/serializers.py index 911d878a5e..8a07cb12d4 100644 --- a/mayan/apps/documents/serializers.py +++ b/mayan/apps/documents/serializers.py @@ -27,8 +27,6 @@ class DocumentPageImageSerializer(serializers.Serializer): rotation=rotation, as_base64=True ) ) - # TODO: prepend 'data:%s;base64,%s' based on format specified in - # async call return task.get(timeout=DOCUMENT_IMAGE_TASK_TIMEOUT) diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index 74f3858bf9..ccdb4bf997 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -729,7 +729,7 @@ def get_document_image(request, document_id, size=setting_preview_size.value): task = task_get_document_page_image.apply_async(kwargs=dict(document_page_id=document_page.pk, size=size, zoom=zoom, rotation=rotation, as_base64=True, version=version)) data = task.get(timeout=DOCUMENT_IMAGE_TASK_TIMEOUT) - return HttpResponse(base64.b64decode(data[21:]), content_type='image') + return HttpResponse(base64.b64decode(data[data.find('base64,') + 6:]), content_type='image') def document_download(request, document_id=None, document_id_list=None, document_version_pk=None): diff --git a/mayan/apps/sources/classes.py b/mayan/apps/sources/classes.py index 9b8aa3b0c5..e53fdb6399 100644 --- a/mayan/apps/sources/classes.py +++ b/mayan/apps/sources/classes.py @@ -85,13 +85,7 @@ class StagingFile(object): for transformation in transformations: converter.transform(transformation=transformation) - image_data = converter.get_page() - - if as_base64: - base64_data = base64.b64encode(image_data.read()) - return 'data:%s;base64,%s' % ('image/png', base64_data) - else: - return image_data + return converter.get_page(as_base64=as_base64) def delete(self): os.unlink(self.get_full_path()) From 26fce66451bc897268c6dffcd9097241510332b0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 03:49:11 -0400 Subject: [PATCH 111/205] Change pngtoppm to convert PDFs to JPEG instead of PNGs. --- mayan/apps/converter/backends/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/converter/backends/python.py b/mayan/apps/converter/backends/python.py index 5b9cb1d8cf..8d37a4265a 100644 --- a/mayan/apps/converter/backends/python.py +++ b/mayan/apps/converter/backends/python.py @@ -27,7 +27,7 @@ try: except sh.CommandNotFound: pdftoppm = None else: - pdftoppm = pdftoppm.bake('-png') + pdftoppm = pdftoppm.bake('-jpeg') Image.init() logger = logging.getLogger(__name__) From c43fe38ac98080c4c2c4628089ecd77510fc8677 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 04:11:50 -0400 Subject: [PATCH 112/205] Use Python's string.partition instead of find. --- mayan/apps/documents/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index ccdb4bf997..1758528fab 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -729,7 +729,7 @@ def get_document_image(request, document_id, size=setting_preview_size.value): task = task_get_document_page_image.apply_async(kwargs=dict(document_page_id=document_page.pk, size=size, zoom=zoom, rotation=rotation, as_base64=True, version=version)) data = task.get(timeout=DOCUMENT_IMAGE_TASK_TIMEOUT) - return HttpResponse(base64.b64decode(data[data.find('base64,') + 6:]), content_type='image') + return HttpResponse(base64.b64decode(data.partition('base64,')[2]), content_type='image') def document_download(request, document_id=None, document_id_list=None, document_version_pk=None): From 18a3773b65c0e88e713126ade1394df1f732f782 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 15:53:27 -0400 Subject: [PATCH 113/205] Update changelog --- HISTORY.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/HISTORY.rst b/HISTORY.rst index 61bfa3745c..afd4fca80e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -26,6 +26,7 @@ - Status messages now display the object class on which they operate not just the word "Object". - More tests added. - Handle unicode filenames in staging folders. +- Add staging file deletion permission. 2.0.2 (2016-02-09) ================== From 66d2baafb868ead0b478fd55a612e77baf7366b6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 16:24:23 -0400 Subject: [PATCH 114/205] Convert document type quick label creation view to CBV. --- mayan/apps/documents/urls.py | 15 +++---- mayan/apps/documents/views.py | 79 ++++++++++++++++++----------------- 2 files changed, 49 insertions(+), 45 deletions(-) diff --git a/mayan/apps/documents/urls.py b/mayan/apps/documents/urls.py index 4b31d90c71..53e10a759f 100644 --- a/mayan/apps/documents/urls.py +++ b/mayan/apps/documents/urls.py @@ -20,11 +20,11 @@ from .views import ( DocumentPageViewResetView, DocumentPreviewView, DocumentRestoreView, DocumentRestoreManyView, DocumentTrashView, DocumentTrashManyView, DocumentTypeCreateView, DocumentTypeDeleteView, - DocumentTypeDocumentListView, DocumentTypeFilenameDeleteView, - DocumentTypeFilenameEditView, DocumentTypeFilenameListView, - DocumentTypeListView, DocumentTypeEditView, DocumentVersionListView, - DocumentVersionRevertView, DocumentView, EmptyTrashCanView, - RecentDocumentListView + DocumentTypeDocumentListView, DocumentTypeFilenameCreateView, + DocumentTypeFilenameDeleteView, DocumentTypeFilenameEditView, + DocumentTypeFilenameListView, DocumentTypeListView, DocumentTypeEditView, + DocumentVersionListView, DocumentVersionRevertView, DocumentView, + EmptyTrashCanView, RecentDocumentListView ) urlpatterns = patterns( @@ -234,8 +234,9 @@ urlpatterns = patterns( name='document_type_filename_delete' ), url( - r'^type/(?P\d+)/filename/create/$', - 'document_type_filename_create', name='document_type_filename_create' + r'^type/(?P\d+)/filename/create/$', + DocumentTypeFilenameCreateView.as_view(), + name='document_type_filename_create' ), ) diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index 1758528fab..b657c164ad 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -444,9 +444,23 @@ class DocumentTypeEditView(SingleObjectEditView): } -class DocumentTypeFilenameListView(SingleObjectListView): - model = DocumentType - view_permission = permission_document_type_view +class DocumentTypeFilenameCreateView(SingleObjectCreateView): + form_class = DocumentTypeFilenameForm_create + + def dispatch(self, request, *args, **kwargs): + try: + Permission.check_permissions( + request.user, (permission_document_type_edit,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_document_type_edit, request.user, + self.get_document_type() + ) + + return super(DocumentTypeFilenameCreateView, self).dispatch( + request, *args, **kwargs + ) def get_document_type(self): return get_object_or_404(DocumentType, pk=self.kwargs['pk']) @@ -454,15 +468,14 @@ class DocumentTypeFilenameListView(SingleObjectListView): def get_extra_context(self): return { 'document_type': self.get_document_type(), - 'hide_link': True, 'navigation_object_list': ('document_type',), 'title': _( - 'Quick labels for document type: %s' + 'Create quick label for document type: %s' ) % self.get_document_type(), } - def get_queryset(self): - return self.get_document_type().filenames.all() + def get_instance_extra_data(self): + return {'document_type': self.get_document_type()} class DocumentTypeFilenameEditView(SingleObjectEditView): @@ -518,6 +531,27 @@ class DocumentTypeFilenameDeleteView(SingleObjectDeleteView): ) +class DocumentTypeFilenameListView(SingleObjectListView): + model = DocumentType + view_permission = permission_document_type_view + + def get_document_type(self): + return get_object_or_404(DocumentType, pk=self.kwargs['pk']) + + def get_extra_context(self): + return { + 'document_type': self.get_document_type(), + 'hide_link': True, + 'navigation_object_list': ('document_type',), + 'title': _( + 'Quick labels for document type: %s' + ) % self.get_document_type(), + } + + def get_queryset(self): + return self.get_document_type().filenames.all() + + class DocumentVersionListView(SingleObjectListView): def dispatch(self, request, *args, **kwargs): try: @@ -1188,34 +1222,3 @@ def document_print(request, document_id): 'title': _('Print: %s') % document, 'submit_label': _('Submit'), }, context_instance=RequestContext(request)) - - -def document_type_filename_create(request, document_type_id): - Permission.check_permissions(request.user, (permission_document_type_edit,)) - - document_type = get_object_or_404(DocumentType, pk=document_type_id) - - if request.method == 'POST': - form = DocumentTypeFilenameForm_create(request.POST) - if form.is_valid(): - try: - document_type_filename = DocumentTypeFilename( - document_type=document_type, - filename=form.cleaned_data['filename'], - enabled=True - ) - document_type_filename.save() - messages.success(request, _('Document type quick label created successfully')) - return HttpResponseRedirect(reverse('documents:document_type_filename_list', args=(document_type_id,))) - except Exception as exception: - messages.error(request, _('Error creating document type quick label; %(error)s') % { - 'error': exception}) - else: - form = DocumentTypeFilenameForm_create() - - return render_to_response('appearance/generic_form.html', { - 'document_type': document_type, - 'form': form, - 'navigation_object_list': ('document_type',), - 'title': _('Create quick label for document type: %s') % document_type, - }, context_instance=RequestContext(request)) From dda0bbdba98a1d7bc96455898a61c79c78cf8b91 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 16:24:41 -0400 Subject: [PATCH 115/205] Add test for the document type quick label creation view. --- mayan/apps/documents/tests/literals.py | 1 + mayan/apps/documents/tests/test_views.py | 39 +++++++++++++++++++++++- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/mayan/apps/documents/tests/literals.py b/mayan/apps/documents/tests/literals.py index 7c7c14c2f8..4956dbbee1 100644 --- a/mayan/apps/documents/tests/literals.py +++ b/mayan/apps/documents/tests/literals.py @@ -46,6 +46,7 @@ TEST_DEU_DOCUMENT_PATH = os.path.join( TEST_DOCUMENT_PATH = os.path.join( settings.BASE_DIR, 'contrib', 'sample_documents', TEST_DOCUMENT_FILENAME ) +TEST_DOCUMENT_TYPE_QUICK_LABEL = 'test quick label' TEST_HYBRID_DOCUMENT_PATH = os.path.join( 'contrib', 'sample_documents', TEST_HYBRID_DOCUMENT ) diff --git a/mayan/apps/documents/tests/test_views.py b/mayan/apps/documents/tests/test_views.py index f12a2066e8..7eaeec594f 100644 --- a/mayan/apps/documents/tests/test_views.py +++ b/mayan/apps/documents/tests/test_views.py @@ -28,7 +28,8 @@ from ..permissions import ( ) from .literals import ( - TEST_DOCUMENT_TYPE, TEST_SMALL_DOCUMENT_CHECKSUM, TEST_SMALL_DOCUMENT_PATH + TEST_DOCUMENT_TYPE, TEST_DOCUMENT_TYPE_QUICK_LABEL, + TEST_SMALL_DOCUMENT_CHECKSUM, TEST_SMALL_DOCUMENT_PATH ) @@ -690,6 +691,42 @@ class DocumentTypeViewsTestCase(GenericDocumentViewTestCase): TEST_DOCUMENT_TYPE_EDITED_LABEL ) + def test_document_type_quick_label_create_no_permission(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + response = self.post( + 'documents:document_type_filename_create', + args=(self.document_type.pk,), + data={ + 'filename': TEST_DOCUMENT_TYPE_QUICK_LABEL, + }, follow=True + ) + + self.assertEqual(response.status_code, 403) + self.assertEqual(self.document_type.filenames.count(), 0) + + def test_document_type_quick_label_create_with_permission(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + self.role.permissions.add( + permission_document_type_edit.stored_permission + ) + + response = self.post( + 'documents:document_type_filename_create', + args=(self.document_type.pk,), + data={ + 'filename': TEST_DOCUMENT_TYPE_QUICK_LABEL, + }, follow=True + ) + + self.assertContains(response, 'reated', status_code=200) + self.assertEqual(self.document_type.filenames.count(), 1) + class DeletedDocumentTestCase(GenericDocumentViewTestCase): def test_document_restore_view_no_permission(self): From 7dc260046b79e03063c5dc6d2366aa80fd91c351 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 16:25:16 -0400 Subject: [PATCH 116/205] Update the document type quick label model verbose name from 'Quick rename template' to 'Quick label'. --- mayan/apps/documents/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index 74e1a7b76a..7f32be5832 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -629,8 +629,8 @@ class DocumentTypeFilename(models.Model): class Meta: ordering = ('filename',) unique_together = ('document_type', 'filename') - verbose_name = _('Quick rename template') - verbose_name_plural = _('Quick rename templates') + verbose_name = _('Quick label') + verbose_name_plural = _('Quick labels') def __str__(self): return self.filename From 6fe778051e3b4d20e75db274a42f57439c85df57 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 16:53:09 -0400 Subject: [PATCH 117/205] Update translation source files for all apps. Add Message of the Day source message file. --- .tx/config | 12 +- contrib/scripts/process_messages.py | 8 +- .../apps/acls/locale/ar/LC_MESSAGES/django.po | 55 +- .../apps/acls/locale/bg/LC_MESSAGES/django.po | 52 +- .../acls/locale/bs_BA/LC_MESSAGES/django.po | 55 +- .../apps/acls/locale/da/LC_MESSAGES/django.po | 52 +- .../acls/locale/de_DE/LC_MESSAGES/django.po | 53 +- .../apps/acls/locale/en/LC_MESSAGES/django.po | 36 +- .../apps/acls/locale/es/LC_MESSAGES/django.po | 52 +- .../apps/acls/locale/fa/LC_MESSAGES/django.po | 52 +- .../apps/acls/locale/fr/LC_MESSAGES/django.po | 52 +- .../apps/acls/locale/hu/LC_MESSAGES/django.po | 52 +- .../apps/acls/locale/id/LC_MESSAGES/django.po | 52 +- .../apps/acls/locale/it/LC_MESSAGES/django.po | 52 +- .../acls/locale/nl_NL/LC_MESSAGES/django.po | 52 +- .../apps/acls/locale/pl/LC_MESSAGES/django.po | 55 +- .../apps/acls/locale/pt/LC_MESSAGES/django.po | 52 +- .../acls/locale/pt_BR/LC_MESSAGES/django.po | 52 +- .../acls/locale/ro_RO/LC_MESSAGES/django.po | 55 +- .../apps/acls/locale/ru/LC_MESSAGES/django.po | 56 +- .../acls/locale/sl_SI/LC_MESSAGES/django.po | 55 +- .../acls/locale/vi_VN/LC_MESSAGES/django.po | 52 +- .../acls/locale/zh_CN/LC_MESSAGES/django.po | 52 +- .../locale/ar/LC_MESSAGES/django.po | 75 +- .../locale/bg/LC_MESSAGES/django.po | 72 +- .../locale/bs_BA/LC_MESSAGES/django.po | 75 +- .../locale/da/LC_MESSAGES/django.po | 72 +- .../locale/de_DE/LC_MESSAGES/django.po | 86 +- .../locale/en/LC_MESSAGES/django.po | 61 +- .../locale/es/LC_MESSAGES/django.po | 77 +- .../locale/fa/LC_MESSAGES/django.po | 72 +- .../locale/fr/LC_MESSAGES/django.po | 72 +- .../locale/hu/LC_MESSAGES/django.po | 72 +- .../locale/id/LC_MESSAGES/django.po | 72 +- .../locale/it/LC_MESSAGES/django.po | 72 +- .../locale/nl_NL/LC_MESSAGES/django.po | 72 +- .../locale/pl/LC_MESSAGES/django.po | 75 +- .../locale/pt/LC_MESSAGES/django.po | 72 +- .../locale/pt_BR/LC_MESSAGES/django.po | 72 +- .../locale/ro_RO/LC_MESSAGES/django.po | 75 +- .../locale/ru/LC_MESSAGES/django.po | 76 +- .../locale/sl_SI/LC_MESSAGES/django.po | 75 +- .../locale/vi_VN/LC_MESSAGES/django.po | 72 +- .../locale/zh_CN/LC_MESSAGES/django.po | 72 +- .../locale/ar/LC_MESSAGES/django.po | 18 +- .../locale/bg/LC_MESSAGES/django.po | 15 +- .../locale/bs_BA/LC_MESSAGES/django.po | 18 +- .../locale/da/LC_MESSAGES/django.po | 15 +- .../locale/de_DE/LC_MESSAGES/django.po | 23 +- .../locale/en/LC_MESSAGES/django.po | 8 +- .../locale/es/LC_MESSAGES/django.po | 23 +- .../locale/fa/LC_MESSAGES/django.po | 15 +- .../locale/fr/LC_MESSAGES/django.po | 15 +- .../locale/hu/LC_MESSAGES/django.po | 15 +- .../locale/id/LC_MESSAGES/django.po | 15 +- .../locale/it/LC_MESSAGES/django.po | 15 +- .../locale/nl_NL/LC_MESSAGES/django.po | 15 +- .../locale/pl/LC_MESSAGES/django.po | 18 +- .../locale/pt/LC_MESSAGES/django.po | 15 +- .../locale/pt_BR/LC_MESSAGES/django.po | 15 +- .../locale/ro_RO/LC_MESSAGES/django.po | 18 +- .../locale/ru/LC_MESSAGES/django.po | 19 +- .../locale/sl_SI/LC_MESSAGES/django.po | 18 +- .../locale/vi_VN/LC_MESSAGES/django.po | 15 +- .../locale/zh_CN/LC_MESSAGES/django.po | 15 +- .../checkouts/locale/ar/LC_MESSAGES/django.po | 154 ++-- .../checkouts/locale/bg/LC_MESSAGES/django.po | 151 ++-- .../locale/bs_BA/LC_MESSAGES/django.po | 154 ++-- .../checkouts/locale/da/LC_MESSAGES/django.po | 151 ++-- .../locale/de_DE/LC_MESSAGES/django.po | 160 ++-- .../checkouts/locale/en/LC_MESSAGES/django.po | 135 ++-- .../checkouts/locale/es/LC_MESSAGES/django.po | 160 ++-- .../checkouts/locale/fa/LC_MESSAGES/django.po | 151 ++-- .../checkouts/locale/fr/LC_MESSAGES/django.po | 151 ++-- .../checkouts/locale/hu/LC_MESSAGES/django.po | 151 ++-- .../checkouts/locale/id/LC_MESSAGES/django.po | 151 ++-- .../checkouts/locale/it/LC_MESSAGES/django.po | 151 ++-- .../locale/nl_NL/LC_MESSAGES/django.po | 151 ++-- .../checkouts/locale/pl/LC_MESSAGES/django.po | 154 ++-- .../checkouts/locale/pt/LC_MESSAGES/django.po | 151 ++-- .../locale/pt_BR/LC_MESSAGES/django.po | 151 ++-- .../locale/ro_RO/LC_MESSAGES/django.po | 154 ++-- .../checkouts/locale/ru/LC_MESSAGES/django.po | 155 ++-- .../locale/sl_SI/LC_MESSAGES/django.po | 154 ++-- .../locale/vi_VN/LC_MESSAGES/django.po | 151 ++-- .../locale/zh_CN/LC_MESSAGES/django.po | 151 ++-- .../common/locale/ar/LC_MESSAGES/django.po | 110 +-- .../common/locale/bg/LC_MESSAGES/django.po | 107 +-- .../common/locale/bs_BA/LC_MESSAGES/django.po | 110 +-- .../common/locale/da/LC_MESSAGES/django.po | 107 +-- .../common/locale/de_DE/LC_MESSAGES/django.po | 166 ++-- .../common/locale/en/LC_MESSAGES/django.po | 72 +- .../common/locale/es/LC_MESSAGES/django.po | 158 ++-- .../common/locale/fa/LC_MESSAGES/django.po | 154 ++-- .../common/locale/fr/LC_MESSAGES/django.po | 158 ++-- .../common/locale/hu/LC_MESSAGES/django.po | 107 +-- .../common/locale/id/LC_MESSAGES/django.po | 107 +-- .../common/locale/it/LC_MESSAGES/django.po | 158 ++-- .../common/locale/nl_NL/LC_MESSAGES/django.po | 154 ++-- .../common/locale/pl/LC_MESSAGES/django.po | 161 ++-- .../common/locale/pt/LC_MESSAGES/django.po | 107 +-- .../common/locale/pt_BR/LC_MESSAGES/django.po | 158 ++-- .../common/locale/ro_RO/LC_MESSAGES/django.po | 110 +-- .../common/locale/ru/LC_MESSAGES/django.po | 111 ++- .../common/locale/sl_SI/LC_MESSAGES/django.po | 110 +-- .../common/locale/vi_VN/LC_MESSAGES/django.po | 107 +-- .../common/locale/zh_CN/LC_MESSAGES/django.po | 154 ++-- .../converter/locale/ar/LC_MESSAGES/django.po | 76 +- .../converter/locale/bg/LC_MESSAGES/django.po | 73 +- .../locale/bs_BA/LC_MESSAGES/django.po | 76 +- .../converter/locale/da/LC_MESSAGES/django.po | 73 +- .../locale/de_DE/LC_MESSAGES/django.po | 88 ++- .../converter/locale/en/LC_MESSAGES/django.po | 44 +- .../converter/locale/es/LC_MESSAGES/django.po | 73 +- .../converter/locale/fa/LC_MESSAGES/django.po | 73 +- .../converter/locale/fr/LC_MESSAGES/django.po | 73 +- .../converter/locale/hu/LC_MESSAGES/django.po | 73 +- .../converter/locale/id/LC_MESSAGES/django.po | 73 +- .../converter/locale/it/LC_MESSAGES/django.po | 73 +- .../locale/nl_NL/LC_MESSAGES/django.po | 73 +- .../converter/locale/pl/LC_MESSAGES/django.po | 76 +- .../converter/locale/pt/LC_MESSAGES/django.po | 73 +- .../locale/pt_BR/LC_MESSAGES/django.po | 73 +- .../locale/ro_RO/LC_MESSAGES/django.po | 76 +- .../converter/locale/ru/LC_MESSAGES/django.po | 77 +- .../locale/sl_SI/LC_MESSAGES/django.po | 76 +- .../locale/vi_VN/LC_MESSAGES/django.po | 73 +- .../locale/zh_CN/LC_MESSAGES/django.po | 73 +- .../locale/ar/LC_MESSAGES/django.po | 37 +- .../locale/bg/LC_MESSAGES/django.po | 34 +- .../locale/bs_BA/LC_MESSAGES/django.po | 41 +- .../locale/da/LC_MESSAGES/django.po | 34 +- .../locale/de_DE/LC_MESSAGES/django.po | 47 +- .../locale/en/LC_MESSAGES/django.po | 20 +- .../locale/es/LC_MESSAGES/django.po | 50 +- .../locale/fa/LC_MESSAGES/django.po | 34 +- .../locale/fr/LC_MESSAGES/django.po | 42 +- .../locale/hu/LC_MESSAGES/django.po | 34 +- .../locale/id/LC_MESSAGES/django.po | 34 +- .../locale/it/LC_MESSAGES/django.po | 42 +- .../locale/nl_NL/LC_MESSAGES/django.po | 34 +- .../locale/pl/LC_MESSAGES/django.po | 44 +- .../locale/pt/LC_MESSAGES/django.po | 38 +- .../locale/pt_BR/LC_MESSAGES/django.po | 34 +- .../locale/ro_RO/LC_MESSAGES/django.po | 48 +- .../locale/ru/LC_MESSAGES/django.po | 42 +- .../locale/sl_SI/LC_MESSAGES/django.po | 37 +- .../locale/vi_VN/LC_MESSAGES/django.po | 34 +- .../locale/zh_CN/LC_MESSAGES/django.po | 34 +- .../locale/ar/LC_MESSAGES/django.po | 26 +- .../locale/bg/LC_MESSAGES/django.po | 23 +- .../locale/bs_BA/LC_MESSAGES/django.po | 26 +- .../locale/da/LC_MESSAGES/django.po | 23 +- .../locale/de_DE/LC_MESSAGES/django.po | 23 +- .../locale/en/LC_MESSAGES/django.po | 12 +- .../locale/es/LC_MESSAGES/django.po | 23 +- .../locale/fa/LC_MESSAGES/django.po | 23 +- .../locale/fr/LC_MESSAGES/django.po | 23 +- .../locale/hu/LC_MESSAGES/django.po | 23 +- .../locale/id/LC_MESSAGES/django.po | 23 +- .../locale/it/LC_MESSAGES/django.po | 23 +- .../locale/nl_NL/LC_MESSAGES/django.po | 23 +- .../locale/pl/LC_MESSAGES/django.po | 26 +- .../locale/pt/LC_MESSAGES/django.po | 23 +- .../locale/pt_BR/LC_MESSAGES/django.po | 23 +- .../locale/ro_RO/LC_MESSAGES/django.po | 26 +- .../locale/ru/LC_MESSAGES/django.po | 27 +- .../locale/sl_SI/LC_MESSAGES/django.po | 26 +- .../locale/vi_VN/LC_MESSAGES/django.po | 23 +- .../locale/zh_CN/LC_MESSAGES/django.po | 23 +- .../locale/ar/LC_MESSAGES/django.po | 217 +++--- .../locale/bg/LC_MESSAGES/django.po | 206 +++-- .../locale/bs_BA/LC_MESSAGES/django.po | 224 +++--- .../locale/da/LC_MESSAGES/django.po | 202 +++-- .../locale/de_DE/LC_MESSAGES/django.po | 240 +++--- .../locale/en/LC_MESSAGES/django.po | 176 ++--- .../locale/es/LC_MESSAGES/django.po | 235 +++--- .../locale/fa/LC_MESSAGES/django.po | 226 +++--- .../locale/fr/LC_MESSAGES/django.po | 238 +++--- .../locale/hu/LC_MESSAGES/django.po | 202 +++-- .../locale/id/LC_MESSAGES/django.po | 202 +++-- .../locale/it/LC_MESSAGES/django.po | 232 +++--- .../locale/nl_NL/LC_MESSAGES/django.po | 218 +++--- .../locale/pl/LC_MESSAGES/django.po | 221 +++--- .../locale/pt/LC_MESSAGES/django.po | 221 +++--- .../locale/pt_BR/LC_MESSAGES/django.po | 231 +++--- .../locale/ro_RO/LC_MESSAGES/django.po | 227 +++--- .../locale/ru/LC_MESSAGES/django.po | 226 +++--- .../locale/sl_SI/LC_MESSAGES/django.po | 205 +++-- .../locale/vi_VN/LC_MESSAGES/django.po | 202 +++-- .../locale/zh_CN/LC_MESSAGES/django.po | 209 +++-- .../locale/ar/LC_MESSAGES/django.po | 22 +- .../locale/bg/LC_MESSAGES/django.po | 19 +- .../locale/bs_BA/LC_MESSAGES/django.po | 22 +- .../locale/da/LC_MESSAGES/django.po | 19 +- .../locale/de_DE/LC_MESSAGES/django.po | 19 +- .../locale/en/LC_MESSAGES/django.po | 12 +- .../locale/es/LC_MESSAGES/django.po | 19 +- .../locale/fa/LC_MESSAGES/django.po | 19 +- .../locale/fr/LC_MESSAGES/django.po | 19 +- .../locale/hu/LC_MESSAGES/django.po | 19 +- .../locale/id/LC_MESSAGES/django.po | 19 +- .../locale/it/LC_MESSAGES/django.po | 19 +- .../locale/nl_NL/LC_MESSAGES/django.po | 19 +- .../locale/pl/LC_MESSAGES/django.po | 22 +- .../locale/pt/LC_MESSAGES/django.po | 19 +- .../locale/pt_BR/LC_MESSAGES/django.po | 19 +- .../locale/ro_RO/LC_MESSAGES/django.po | 22 +- .../locale/ru/LC_MESSAGES/django.po | 23 +- .../locale/sl_SI/LC_MESSAGES/django.po | 22 +- .../locale/vi_VN/LC_MESSAGES/django.po | 19 +- .../locale/zh_CN/LC_MESSAGES/django.po | 19 +- .../locale/ar/LC_MESSAGES/django.po | 58 +- .../locale/bg/LC_MESSAGES/django.po | 55 +- .../locale/bs_BA/LC_MESSAGES/django.po | 58 +- .../locale/da/LC_MESSAGES/django.po | 55 +- .../locale/de_DE/LC_MESSAGES/django.po | 63 +- .../locale/en/LC_MESSAGES/django.po | 48 +- .../locale/es/LC_MESSAGES/django.po | 59 +- .../locale/fa/LC_MESSAGES/django.po | 59 +- .../locale/fr/LC_MESSAGES/django.po | 59 +- .../locale/hu/LC_MESSAGES/django.po | 55 +- .../locale/id/LC_MESSAGES/django.po | 55 +- .../locale/it/LC_MESSAGES/django.po | 55 +- .../locale/nl_NL/LC_MESSAGES/django.po | 55 +- .../locale/pl/LC_MESSAGES/django.po | 58 +- .../locale/pt/LC_MESSAGES/django.po | 55 +- .../locale/pt_BR/LC_MESSAGES/django.po | 59 +- .../locale/ro_RO/LC_MESSAGES/django.po | 58 +- .../locale/ru/LC_MESSAGES/django.po | 59 +- .../locale/sl_SI/LC_MESSAGES/django.po | 58 +- .../locale/vi_VN/LC_MESSAGES/django.po | 55 +- .../locale/zh_CN/LC_MESSAGES/django.po | 55 +- .../documents/locale/ar/LC_MESSAGES/django.po | 610 +++++++-------- .../documents/locale/bg/LC_MESSAGES/django.po | 607 +++++++-------- .../locale/bs_BA/LC_MESSAGES/django.po | 610 +++++++-------- .../documents/locale/da/LC_MESSAGES/django.po | 607 +++++++-------- .../locale/de_DE/LC_MESSAGES/django.po | 735 +++++++++--------- .../documents/locale/en/LC_MESSAGES/django.po | 505 ++++++------ .../documents/locale/es/LC_MESSAGES/django.po | 626 +++++++-------- .../documents/locale/fa/LC_MESSAGES/django.po | 607 +++++++-------- .../documents/locale/fr/LC_MESSAGES/django.po | 607 +++++++-------- .../documents/locale/hu/LC_MESSAGES/django.po | 607 +++++++-------- .../documents/locale/id/LC_MESSAGES/django.po | 607 +++++++-------- .../documents/locale/it/LC_MESSAGES/django.po | 607 +++++++-------- .../locale/nl_NL/LC_MESSAGES/django.po | 607 +++++++-------- .../documents/locale/pl/LC_MESSAGES/django.po | 610 +++++++-------- .../documents/locale/pt/LC_MESSAGES/django.po | 607 +++++++-------- .../locale/pt_BR/LC_MESSAGES/django.po | 607 +++++++-------- .../locale/ro_RO/LC_MESSAGES/django.po | 610 +++++++-------- .../documents/locale/ru/LC_MESSAGES/django.po | 611 +++++++-------- .../locale/sl_SI/LC_MESSAGES/django.po | 610 +++++++-------- .../locale/vi_VN/LC_MESSAGES/django.po | 607 +++++++-------- .../locale/zh_CN/LC_MESSAGES/django.po | 607 +++++++-------- .../locale/ar/LC_MESSAGES/django.po | 35 +- .../locale/bg/LC_MESSAGES/django.po | 32 +- .../locale/bs_BA/LC_MESSAGES/django.po | 35 +- .../locale/da/LC_MESSAGES/django.po | 32 +- .../locale/de_DE/LC_MESSAGES/django.po | 35 +- .../locale/en/LC_MESSAGES/django.po | 22 +- .../locale/es/LC_MESSAGES/django.po | 32 +- .../locale/fa/LC_MESSAGES/django.po | 32 +- .../locale/fr/LC_MESSAGES/django.po | 32 +- .../locale/hu/LC_MESSAGES/django.po | 32 +- .../locale/id/LC_MESSAGES/django.po | 32 +- .../locale/it/LC_MESSAGES/django.po | 32 +- .../locale/nl_NL/LC_MESSAGES/django.po | 32 +- .../locale/pl/LC_MESSAGES/django.po | 35 +- .../locale/pt/LC_MESSAGES/django.po | 32 +- .../locale/pt_BR/LC_MESSAGES/django.po | 32 +- .../locale/ro_RO/LC_MESSAGES/django.po | 35 +- .../locale/ru/LC_MESSAGES/django.po | 40 +- .../locale/sl_SI/LC_MESSAGES/django.po | 35 +- .../locale/vi_VN/LC_MESSAGES/django.po | 32 +- .../locale/zh_CN/LC_MESSAGES/django.po | 32 +- .../events/locale/ar/LC_MESSAGES/django.po | 14 +- .../events/locale/bg/LC_MESSAGES/django.po | 11 +- .../events/locale/bs_BA/LC_MESSAGES/django.po | 14 +- .../events/locale/da/LC_MESSAGES/django.po | 11 +- .../events/locale/de_DE/LC_MESSAGES/django.po | 11 +- .../events/locale/en/LC_MESSAGES/django.po | 4 +- .../events/locale/es/LC_MESSAGES/django.po | 11 +- .../events/locale/fa/LC_MESSAGES/django.po | 11 +- .../events/locale/fr/LC_MESSAGES/django.po | 11 +- .../events/locale/hu/LC_MESSAGES/django.po | 11 +- .../events/locale/id/LC_MESSAGES/django.po | 11 +- .../events/locale/it/LC_MESSAGES/django.po | 11 +- .../events/locale/nl_NL/LC_MESSAGES/django.po | 11 +- .../events/locale/pl/LC_MESSAGES/django.po | 14 +- .../events/locale/pt/LC_MESSAGES/django.po | 11 +- .../events/locale/pt_BR/LC_MESSAGES/django.po | 11 +- .../events/locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../events/locale/ru/LC_MESSAGES/django.po | 15 +- .../events/locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../events/locale/vi_VN/LC_MESSAGES/django.po | 11 +- .../events/locale/zh_CN/LC_MESSAGES/django.po | 11 +- .../folders/locale/ar/LC_MESSAGES/django.po | 127 ++- .../folders/locale/bg/LC_MESSAGES/django.po | 124 ++- .../locale/bs_BA/LC_MESSAGES/django.po | 127 ++- .../folders/locale/da/LC_MESSAGES/django.po | 124 ++- .../locale/de_DE/LC_MESSAGES/django.po | 127 ++- .../folders/locale/en/LC_MESSAGES/django.po | 90 +-- .../folders/locale/es/LC_MESSAGES/django.po | 127 ++- .../folders/locale/fa/LC_MESSAGES/django.po | 145 ++-- .../folders/locale/fr/LC_MESSAGES/django.po | 130 ++-- .../folders/locale/hu/LC_MESSAGES/django.po | 124 ++- .../folders/locale/id/LC_MESSAGES/django.po | 131 ++-- .../folders/locale/it/LC_MESSAGES/django.po | 127 ++- .../locale/nl_NL/LC_MESSAGES/django.po | 115 ++- .../folders/locale/pl/LC_MESSAGES/django.po | 130 ++-- .../folders/locale/pt/LC_MESSAGES/django.po | 124 ++- .../locale/pt_BR/LC_MESSAGES/django.po | 127 ++- .../locale/ro_RO/LC_MESSAGES/django.po | 130 ++-- .../folders/locale/ru/LC_MESSAGES/django.po | 128 ++- .../locale/sl_SI/LC_MESSAGES/django.po | 118 ++- .../locale/vi_VN/LC_MESSAGES/django.po | 142 ++-- .../locale/zh_CN/LC_MESSAGES/django.po | 142 ++-- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../linking/locale/ar/LC_MESSAGES/django.po | 130 ++-- .../linking/locale/bg/LC_MESSAGES/django.po | 118 ++- .../locale/bs_BA/LC_MESSAGES/django.po | 130 ++-- .../linking/locale/da/LC_MESSAGES/django.po | 118 ++- .../locale/de_DE/LC_MESSAGES/django.po | 141 ++-- .../linking/locale/en/LC_MESSAGES/django.po | 98 ++- .../linking/locale/es/LC_MESSAGES/django.po | 138 ++-- .../linking/locale/fa/LC_MESSAGES/django.po | 133 ++-- .../linking/locale/fr/LC_MESSAGES/django.po | 137 ++-- .../linking/locale/hu/LC_MESSAGES/django.po | 118 ++- .../linking/locale/id/LC_MESSAGES/django.po | 118 ++- .../linking/locale/it/LC_MESSAGES/django.po | 129 ++- .../locale/nl_NL/LC_MESSAGES/django.po | 127 ++- .../linking/locale/pl/LC_MESSAGES/django.po | 121 ++- .../linking/locale/pt/LC_MESSAGES/django.po | 127 ++- .../locale/pt_BR/LC_MESSAGES/django.po | 124 ++- .../locale/ro_RO/LC_MESSAGES/django.po | 130 ++-- .../linking/locale/ru/LC_MESSAGES/django.po | 131 ++-- .../locale/sl_SI/LC_MESSAGES/django.po | 121 ++- .../locale/vi_VN/LC_MESSAGES/django.po | 121 ++- .../locale/zh_CN/LC_MESSAGES/django.po | 132 ++-- .../locale/ar/LC_MESSAGES/django.po | 14 +- .../locale/bg/LC_MESSAGES/django.po | 11 +- .../locale/bs_BA/LC_MESSAGES/django.po | 14 +- .../locale/da/LC_MESSAGES/django.po | 11 +- .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../locale/en/LC_MESSAGES/django.po | 4 +- .../locale/es/LC_MESSAGES/django.po | 11 +- .../locale/fa/LC_MESSAGES/django.po | 11 +- .../locale/fr/LC_MESSAGES/django.po | 11 +- .../locale/hu/LC_MESSAGES/django.po | 11 +- .../locale/id/LC_MESSAGES/django.po | 11 +- .../locale/it/LC_MESSAGES/django.po | 11 +- .../locale/nl_NL/LC_MESSAGES/django.po | 11 +- .../locale/pl/LC_MESSAGES/django.po | 14 +- .../locale/pt/LC_MESSAGES/django.po | 11 +- .../locale/pt_BR/LC_MESSAGES/django.po | 11 +- .../locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../locale/ru/LC_MESSAGES/django.po | 15 +- .../locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../locale/vi_VN/LC_MESSAGES/django.po | 11 +- .../locale/zh_CN/LC_MESSAGES/django.po | 11 +- .../mailer/locale/ar/LC_MESSAGES/django.po | 42 +- .../mailer/locale/bg/LC_MESSAGES/django.po | 39 +- .../mailer/locale/bs_BA/LC_MESSAGES/django.po | 42 +- .../mailer/locale/da/LC_MESSAGES/django.po | 39 +- .../mailer/locale/de_DE/LC_MESSAGES/django.po | 65 +- .../mailer/locale/en/LC_MESSAGES/django.po | 32 +- .../mailer/locale/es/LC_MESSAGES/django.po | 59 +- .../mailer/locale/fa/LC_MESSAGES/django.po | 39 +- .../mailer/locale/fr/LC_MESSAGES/django.po | 39 +- .../mailer/locale/hu/LC_MESSAGES/django.po | 39 +- .../mailer/locale/id/LC_MESSAGES/django.po | 39 +- .../mailer/locale/it/LC_MESSAGES/django.po | 39 +- .../mailer/locale/nl_NL/LC_MESSAGES/django.po | 39 +- .../mailer/locale/pl/LC_MESSAGES/django.po | 42 +- .../mailer/locale/pt/LC_MESSAGES/django.po | 39 +- .../mailer/locale/pt_BR/LC_MESSAGES/django.po | 42 +- .../mailer/locale/ro_RO/LC_MESSAGES/django.po | 42 +- .../mailer/locale/ru/LC_MESSAGES/django.po | 43 +- .../mailer/locale/sl_SI/LC_MESSAGES/django.po | 42 +- .../mailer/locale/vi_VN/LC_MESSAGES/django.po | 39 +- .../mailer/locale/zh_CN/LC_MESSAGES/django.po | 39 +- .../metadata/locale/ar/LC_MESSAGES/django.po | 238 +++--- .../metadata/locale/bg/LC_MESSAGES/django.po | 235 +++--- .../locale/bs_BA/LC_MESSAGES/django.po | 238 +++--- .../metadata/locale/da/LC_MESSAGES/django.po | 235 +++--- .../locale/de_DE/LC_MESSAGES/django.po | 284 +++---- .../metadata/locale/en/LC_MESSAGES/django.po | 158 ++-- .../metadata/locale/es/LC_MESSAGES/django.po | 257 +++--- .../metadata/locale/fa/LC_MESSAGES/django.po | 247 +++--- .../metadata/locale/fr/LC_MESSAGES/django.po | 257 +++--- .../metadata/locale/hu/LC_MESSAGES/django.po | 235 +++--- .../metadata/locale/id/LC_MESSAGES/django.po | 235 +++--- .../metadata/locale/it/LC_MESSAGES/django.po | 235 +++--- .../locale/nl_NL/LC_MESSAGES/django.po | 235 +++--- .../metadata/locale/pl/LC_MESSAGES/django.po | 238 +++--- .../metadata/locale/pt/LC_MESSAGES/django.po | 235 +++--- .../locale/pt_BR/LC_MESSAGES/django.po | 256 +++--- .../locale/ro_RO/LC_MESSAGES/django.po | 238 +++--- .../metadata/locale/ru/LC_MESSAGES/django.po | 239 +++--- .../locale/sl_SI/LC_MESSAGES/django.po | 238 +++--- .../locale/vi_VN/LC_MESSAGES/django.po | 235 +++--- .../locale/zh_CN/LC_MESSAGES/django.po | 235 +++--- .../mirroring/locale/ar/LC_MESSAGES/django.po | 12 +- .../mirroring/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../mirroring/locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 17 +- .../mirroring/locale/en/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/es/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/fa/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/fr/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/hu/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/id/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/pl/LC_MESSAGES/django.po | 12 +- .../mirroring/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../mirroring/locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/ar/LC_MESSAGES/django.po | 110 +++ .../apps/motd/locale/bg/LC_MESSAGES/django.po | 109 +++ .../motd/locale/bs_BA/LC_MESSAGES/django.po | 108 +++ .../apps/motd/locale/da/LC_MESSAGES/django.po | 109 +++ .../motd/locale/de_DE/LC_MESSAGES/django.po | 108 +++ .../apps/motd/locale/en/LC_MESSAGES/django.po | 108 +++ .../apps/motd/locale/es/LC_MESSAGES/django.po | 109 +++ .../apps/motd/locale/fa/LC_MESSAGES/django.po | 109 +++ .../apps/motd/locale/fr/LC_MESSAGES/django.po | 109 +++ .../apps/motd/locale/hu/LC_MESSAGES/django.po | 109 +++ .../apps/motd/locale/id/LC_MESSAGES/django.po | 109 +++ .../apps/motd/locale/it/LC_MESSAGES/django.po | 109 +++ .../motd/locale/nl_NL/LC_MESSAGES/django.po | 108 +++ .../apps/motd/locale/pl/LC_MESSAGES/django.po | 110 +++ .../apps/motd/locale/pt/LC_MESSAGES/django.po | 109 +++ .../motd/locale/pt_BR/LC_MESSAGES/django.po | 109 +++ .../motd/locale/ro_RO/LC_MESSAGES/django.po | 108 +++ .../apps/motd/locale/ru/LC_MESSAGES/django.po | 110 +++ .../motd/locale/sl_SI/LC_MESSAGES/django.po | 108 +++ .../motd/locale/vi_VN/LC_MESSAGES/django.po | 108 +++ .../motd/locale/zh_CN/LC_MESSAGES/django.po | 109 +++ .../locale/ar/LC_MESSAGES/django.po | 14 +- .../locale/bg/LC_MESSAGES/django.po | 11 +- .../locale/bs_BA/LC_MESSAGES/django.po | 14 +- .../locale/da/LC_MESSAGES/django.po | 11 +- .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../locale/en/LC_MESSAGES/django.po | 4 +- .../locale/es/LC_MESSAGES/django.po | 11 +- .../locale/fa/LC_MESSAGES/django.po | 11 +- .../locale/fr/LC_MESSAGES/django.po | 11 +- .../locale/hu/LC_MESSAGES/django.po | 11 +- .../locale/id/LC_MESSAGES/django.po | 11 +- .../locale/it/LC_MESSAGES/django.po | 11 +- .../locale/nl_NL/LC_MESSAGES/django.po | 11 +- .../locale/pl/LC_MESSAGES/django.po | 14 +- .../locale/pt/LC_MESSAGES/django.po | 11 +- .../locale/pt_BR/LC_MESSAGES/django.po | 11 +- .../locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../locale/ru/LC_MESSAGES/django.po | 15 +- .../locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../locale/vi_VN/LC_MESSAGES/django.po | 11 +- .../locale/zh_CN/LC_MESSAGES/django.po | 11 +- .../apps/ocr/locale/ar/LC_MESSAGES/django.po | 166 ++-- .../apps/ocr/locale/bg/LC_MESSAGES/django.po | 152 ++-- .../ocr/locale/bs_BA/LC_MESSAGES/django.po | 160 ++-- .../apps/ocr/locale/da/LC_MESSAGES/django.po | 156 ++-- .../ocr/locale/de_DE/LC_MESSAGES/django.po | 187 ++--- .../apps/ocr/locale/en/LC_MESSAGES/django.po | 152 ++-- .../apps/ocr/locale/es/LC_MESSAGES/django.po | 169 ++-- .../apps/ocr/locale/fa/LC_MESSAGES/django.po | 158 ++-- .../apps/ocr/locale/fr/LC_MESSAGES/django.po | 164 ++-- .../apps/ocr/locale/hu/LC_MESSAGES/django.po | 154 ++-- .../apps/ocr/locale/id/LC_MESSAGES/django.po | 152 ++-- .../apps/ocr/locale/it/LC_MESSAGES/django.po | 152 ++-- .../ocr/locale/nl_NL/LC_MESSAGES/django.po | 154 ++-- .../apps/ocr/locale/pl/LC_MESSAGES/django.po | 165 ++-- .../apps/ocr/locale/pt/LC_MESSAGES/django.po | 156 ++-- .../ocr/locale/pt_BR/LC_MESSAGES/django.po | 159 ++-- .../ocr/locale/ro_RO/LC_MESSAGES/django.po | 161 ++-- .../apps/ocr/locale/ru/LC_MESSAGES/django.po | 164 ++-- .../ocr/locale/sl_SI/LC_MESSAGES/django.po | 161 ++-- .../ocr/locale/vi_VN/LC_MESSAGES/django.po | 152 ++-- .../ocr/locale/zh_CN/LC_MESSAGES/django.po | 150 ++-- .../locale/ar/LC_MESSAGES/django.po | 43 +- .../locale/bg/LC_MESSAGES/django.po | 40 +- .../locale/bs_BA/LC_MESSAGES/django.po | 43 +- .../locale/da/LC_MESSAGES/django.po | 40 +- .../locale/de_DE/LC_MESSAGES/django.po | 40 +- .../locale/en/LC_MESSAGES/django.po | 14 +- .../locale/es/LC_MESSAGES/django.po | 40 +- .../locale/fa/LC_MESSAGES/django.po | 40 +- .../locale/fr/LC_MESSAGES/django.po | 40 +- .../locale/hu/LC_MESSAGES/django.po | 40 +- .../locale/id/LC_MESSAGES/django.po | 40 +- .../locale/it/LC_MESSAGES/django.po | 40 +- .../locale/nl_NL/LC_MESSAGES/django.po | 40 +- .../locale/pl/LC_MESSAGES/django.po | 43 +- .../locale/pt/LC_MESSAGES/django.po | 40 +- .../locale/pt_BR/LC_MESSAGES/django.po | 40 +- .../locale/ro_RO/LC_MESSAGES/django.po | 43 +- .../locale/ru/LC_MESSAGES/django.po | 44 +- .../locale/sl_SI/LC_MESSAGES/django.po | 43 +- .../locale/vi_VN/LC_MESSAGES/django.po | 40 +- .../locale/zh_CN/LC_MESSAGES/django.po | 40 +- .../rest_api/locale/ar/LC_MESSAGES/django.po | 14 +- .../rest_api/locale/bg/LC_MESSAGES/django.po | 11 +- .../locale/bs_BA/LC_MESSAGES/django.po | 14 +- .../rest_api/locale/da/LC_MESSAGES/django.po | 11 +- .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../rest_api/locale/en/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/es/LC_MESSAGES/django.po | 11 +- .../rest_api/locale/fa/LC_MESSAGES/django.po | 11 +- .../rest_api/locale/fr/LC_MESSAGES/django.po | 11 +- .../rest_api/locale/hu/LC_MESSAGES/django.po | 11 +- .../rest_api/locale/id/LC_MESSAGES/django.po | 11 +- .../rest_api/locale/it/LC_MESSAGES/django.po | 11 +- .../locale/nl_NL/LC_MESSAGES/django.po | 11 +- .../rest_api/locale/pl/LC_MESSAGES/django.po | 14 +- .../rest_api/locale/pt/LC_MESSAGES/django.po | 11 +- .../locale/pt_BR/LC_MESSAGES/django.po | 11 +- .../locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../rest_api/locale/ru/LC_MESSAGES/django.po | 15 +- .../locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../locale/vi_VN/LC_MESSAGES/django.po | 11 +- .../locale/zh_CN/LC_MESSAGES/django.po | 11 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../sources/locale/ar/LC_MESSAGES/django.po | 305 +++++--- .../sources/locale/bg/LC_MESSAGES/django.po | 299 ++++--- .../locale/bs_BA/LC_MESSAGES/django.po | 305 +++++--- .../sources/locale/da/LC_MESSAGES/django.po | 302 ++++--- .../locale/de_DE/LC_MESSAGES/django.po | 342 ++++---- .../sources/locale/en/LC_MESSAGES/django.po | 277 ++++--- .../sources/locale/es/LC_MESSAGES/django.po | 343 ++++---- .../sources/locale/fa/LC_MESSAGES/django.po | 333 ++++---- .../sources/locale/fr/LC_MESSAGES/django.po | 347 +++++---- .../sources/locale/hu/LC_MESSAGES/django.po | 296 ++++--- .../sources/locale/id/LC_MESSAGES/django.po | 303 ++++---- .../sources/locale/it/LC_MESSAGES/django.po | 308 +++++--- .../locale/nl_NL/LC_MESSAGES/django.po | 309 +++++--- .../sources/locale/pl/LC_MESSAGES/django.po | 302 +++---- .../sources/locale/pt/LC_MESSAGES/django.po | 306 +++++--- .../locale/pt_BR/LC_MESSAGES/django.po | 337 ++++---- .../locale/ro_RO/LC_MESSAGES/django.po | 309 +++++--- .../sources/locale/ru/LC_MESSAGES/django.po | 306 +++++--- .../locale/sl_SI/LC_MESSAGES/django.po | 302 +++---- .../locale/vi_VN/LC_MESSAGES/django.po | 299 ++++--- .../locale/zh_CN/LC_MESSAGES/django.po | 302 ++++--- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../storage/locale/ar/LC_MESSAGES/django.po | 12 +- .../storage/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../storage/locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../storage/locale/en/LC_MESSAGES/django.po | 2 +- .../storage/locale/es/LC_MESSAGES/django.po | 9 +- .../storage/locale/fa/LC_MESSAGES/django.po | 9 +- .../storage/locale/fr/LC_MESSAGES/django.po | 9 +- .../storage/locale/hu/LC_MESSAGES/django.po | 9 +- .../storage/locale/id/LC_MESSAGES/django.po | 9 +- .../storage/locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../storage/locale/pl/LC_MESSAGES/django.po | 12 +- .../storage/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../storage/locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../apps/tags/locale/ar/LC_MESSAGES/django.po | 84 +- .../apps/tags/locale/bg/LC_MESSAGES/django.po | 84 +- .../tags/locale/bs_BA/LC_MESSAGES/django.po | 81 +- .../apps/tags/locale/da/LC_MESSAGES/django.po | 78 +- .../tags/locale/de_DE/LC_MESSAGES/django.po | 79 +- .../apps/tags/locale/en/LC_MESSAGES/django.po | 61 +- .../apps/tags/locale/es/LC_MESSAGES/django.po | 79 +- .../apps/tags/locale/fa/LC_MESSAGES/django.po | 76 +- .../apps/tags/locale/fr/LC_MESSAGES/django.po | 84 +- .../apps/tags/locale/hu/LC_MESSAGES/django.po | 84 +- .../apps/tags/locale/id/LC_MESSAGES/django.po | 84 +- .../apps/tags/locale/it/LC_MESSAGES/django.po | 84 +- .../tags/locale/nl_NL/LC_MESSAGES/django.po | 81 +- .../apps/tags/locale/pl/LC_MESSAGES/django.po | 79 +- .../apps/tags/locale/pt/LC_MESSAGES/django.po | 84 +- .../tags/locale/pt_BR/LC_MESSAGES/django.po | 81 +- .../tags/locale/ro_RO/LC_MESSAGES/django.po | 88 ++- .../apps/tags/locale/ru/LC_MESSAGES/django.po | 82 +- .../tags/locale/sl_SI/LC_MESSAGES/django.po | 87 +-- .../tags/locale/vi_VN/LC_MESSAGES/django.po | 78 +- .../tags/locale/zh_CN/LC_MESSAGES/django.po | 78 +- .../locale/ar/LC_MESSAGES/django.po | 95 +-- .../locale/bg/LC_MESSAGES/django.po | 92 ++- .../locale/bs_BA/LC_MESSAGES/django.po | 95 +-- .../locale/da/LC_MESSAGES/django.po | 92 ++- .../locale/de_DE/LC_MESSAGES/django.po | 98 +-- .../locale/en/LC_MESSAGES/django.po | 74 +- .../locale/es/LC_MESSAGES/django.po | 97 +-- .../locale/fa/LC_MESSAGES/django.po | 84 +- .../locale/fr/LC_MESSAGES/django.po | 96 +-- .../locale/hu/LC_MESSAGES/django.po | 84 +- .../locale/id/LC_MESSAGES/django.po | 84 +- .../locale/it/LC_MESSAGES/django.po | 96 +-- .../locale/nl_NL/LC_MESSAGES/django.po | 84 +- .../locale/pl/LC_MESSAGES/django.po | 95 +-- .../locale/pt/LC_MESSAGES/django.po | 92 ++- .../locale/pt_BR/LC_MESSAGES/django.po | 92 ++- .../locale/ro_RO/LC_MESSAGES/django.po | 95 +-- .../locale/ru/LC_MESSAGES/django.po | 96 +-- .../locale/sl_SI/LC_MESSAGES/django.po | 87 ++- .../locale/vi_VN/LC_MESSAGES/django.po | 92 ++- .../locale/zh_CN/LC_MESSAGES/django.po | 84 +- 674 files changed, 31667 insertions(+), 29456 deletions(-) create mode 100644 mayan/apps/motd/locale/ar/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/bg/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/da/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/en/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/es/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/fa/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/fr/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/hu/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/id/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/it/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/pl/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/pt/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/ru/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po create mode 100644 mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po diff --git a/.tx/config b/.tx/config index 68db5b450d..0f019a35cc 100644 --- a/.tx/config +++ b/.tx/config @@ -127,10 +127,16 @@ source_lang = en source_file = mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po type = PO -[mayan-edms.navigation-2-0] -file_filter = mayan/apps/navigation/locale//LC_MESSAGES/django.po +[mayan-edms.mirroring-2-0] +file_filter = mayan/apps/mirroring/locale//LC_MESSAGES/django.po source_lang = en -source_file = mayan/apps/navigation/locale/en/LC_MESSAGES/django.po +source_file = mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po +type = PO + +[mayan-edms.motd-2-0] +file_filter = mayan/apps/motd/locale//LC_MESSAGES/django.po +source_lang = en +source_file = mayan/apps/motd/locale/en/LC_MESSAGES/django.po type = PO [mayan-edms.ocr-2-0] diff --git a/contrib/scripts/process_messages.py b/contrib/scripts/process_messages.py index b0069300ee..09dd8d56fd 100755 --- a/contrib/scripts/process_messages.py +++ b/contrib/scripts/process_messages.py @@ -9,19 +9,17 @@ APP_LIST = ( 'converter', 'django_gpg', 'document_comments', 'document_indexing', 'document_signatures', 'document_states', 'documents', 'dynamic_search', 'events', 'folders', 'installation', 'linking', 'lock_manager', 'mailer', - 'metadata', 'mirroring', 'navigation', 'ocr', 'permissions', 'rest_api', - 'smart_settings', 'sources', 'statistics', 'storage', 'tags', + 'metadata', 'mirroring', 'motd', 'navigation', 'ocr', 'permissions', + 'rest_api', 'smart_settings', 'sources', 'statistics', 'storage', 'tags', 'user_management' ) + LANGUAGE_LIST = ( 'ar', 'bg', 'bs_BA', 'da', 'de_DE', 'en', 'es', 'fa', 'fr', 'hu', 'id', 'it', 'nl_NL', 'pl', 'pt', 'pt_BR', 'ro_RO', 'ru', 'sl_SI', 'vi_VN', 'zh_CN', ) -# Inactive translations -# 'de_CH', 'hr_HR', 'lv', 'nb', 'sq', 'tr_TR', 'zh_TW' - makemessages = sh.Command('django-admin.py') makemessages = makemessages.bake('makemessages') diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po index dfa19b88ea..86ebce2b91 100644 --- a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po @@ -1,33 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +37,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +68,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +194,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po index 16ea9f058a..c13f1e1f89 100644 --- a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 9acd289255..7aea936815 100644 --- a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po @@ -1,33 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +37,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +68,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +194,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/da/LC_MESSAGES/django.po b/mayan/apps/acls/locale/da/LC_MESSAGES/django.po index f9917a6839..0139604887 100644 --- a/mayan/apps/acls/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/da/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 97730fedf3..fa92a0288c 100644 --- a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -9,26 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-09-24 17:20+0000\n" "Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "Zugriffsberechtigungen" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "Berechtigungen" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "Rolle" @@ -37,11 +37,10 @@ msgid "Delete" msgstr "Löschen" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "Neue Berechtigung" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "Fehlende Berechtigung" @@ -69,39 +68,39 @@ msgstr "Zugriffsberechtigungen bearbeiten" msgid "View ACLs" msgstr "Zugriffsberechtigungen anzeigen" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "Zugriffsberechtigungen für %s" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "Neue Zugriffsberechtigung für %s" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "ACL \"%s\" löschen" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "Zugriffsberechtigungen für %s" + +#: views.py:162 msgid "Available permissions" msgstr "Verfügbare Berechtigungen" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "Erteilte Berechtigungen" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "Deaktivierte Berechtigungen sind von einem übergeordneten Objekt vererbt." - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "Berechtigungen von Rolle \"%(role)s\" für \"%(object)s\"" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" +"Deaktivierte Berechtigungen sind von einem übergeordneten Objekt vererbt." + #~ msgid "New holder" #~ msgstr "New holder" @@ -196,8 +195,10 @@ msgstr "Berechtigungen von Rolle \"%(role)s\" für \"%(object)s\"" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po index 92eb6b9f24..9e7c4295a0 100644 --- a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2012-02-02 18:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -22,12 +22,12 @@ msgstr "" msgid "ACLs" msgstr "ACLs" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 #, fuzzy msgid "Permissions" msgstr "permissions" -#: apps.py:24 models.py:38 +#: apps.py:26 models.py:38 #, fuzzy #| msgid "Roles" msgid "Role" @@ -43,7 +43,7 @@ msgstr "" msgid "New ACL" msgstr "View ACLs" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "Insufficient access." @@ -73,41 +73,41 @@ msgstr "Edit ACLs" msgid "View ACLs" msgstr "View ACLs" -#: views.py:61 -#, fuzzy, python-format -msgid "Access control lists for: %s" -msgstr "access control lists for: %s" - -#: views.py:107 +#: views.py:78 #, fuzzy, python-format msgid "New access control lists for: %s" msgstr "access control lists for: %s" -#: views.py:132 +#: views.py:109 #, fuzzy, python-format #| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Default ACLs" -#: views.py:147 +#: views.py:151 +#, fuzzy, python-format +msgid "Access control lists for: %s" +msgstr "access control lists for: %s" + +#: views.py:162 #, fuzzy msgid "Available permissions" msgstr "has permission" -#: views.py:148 +#: views.py:163 #, fuzzy msgid "Granted permissions" msgstr "has permission" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" diff --git a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po index 1ca862fd55..848f3e3254 100644 --- a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2015 @@ -11,26 +11,26 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "LCAs" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "Permisos" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "Rol" @@ -39,11 +39,10 @@ msgid "Delete" msgstr "Borrar" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "Nueva LCA" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "Acceso insuficiente." @@ -71,39 +70,38 @@ msgstr "Editar LCAs" msgid "View ACLs" msgstr "Ver LCAs" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "Listas de control de acceso para: %s" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "Nueva lista de control de acceso para: %s" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "Listas de control de acceso para: %s" + +#: views.py:162 msgid "Available permissions" msgstr "Permisos disponibles" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "Permisos otorgados" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "Los permisos inactivos se heredan de un objeto precedente." - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "Permisos del rol \"%(role)s\" para \"%(object)s\"" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "Los permisos inactivos se heredan de un objeto precedente." + #~ msgid "New holder" #~ msgstr "New holder" @@ -198,8 +196,10 @@ msgstr "Permisos del rol \"%(role)s\" para \"%(object)s\"" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po index 88055fa603..d47a33c7af 100644 --- a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po index b7a37ff96d..b0ca6ab756 100644 --- a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po index 5968acc26c..9eb6f7cb16 100644 --- a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po index f47f3e3017..39ebf2b133 100644 --- a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po index d4b95dc20d..9c3522ec1a 100644 --- a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 3179dc48c5..aae48ed506 100644 --- a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po index 23edef1b2b..001c5af918 100644 --- a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po @@ -1,33 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +37,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +68,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +194,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po index 0e2398601b..9b0a20d238 100644 --- a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 07061edc4d..6b41eefc1a 100644 --- a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 6e05646c63..1d4d915f21 100644 --- a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po @@ -1,33 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +37,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +68,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +194,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po index 498e842a37..5dd5a16ba9 100644 --- a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po @@ -1,33 +1,35 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +38,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +69,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +195,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 ac28e37ded..3210ef081b 100644 --- a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po @@ -1,33 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +37,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +68,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +194,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 9b9e8e78d8..558860da7c 100644 --- a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-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/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po index 665c62fcac..19861c4fe6 100644 --- a/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 links.py:30 msgid "ACLs" msgstr "" -#: apps.py:20 links.py:38 models.py:36 +#: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" -#: apps.py:24 models.py:38 -#| msgid "Roles" +#: apps.py:26 models.py:38 msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:72 +#: managers.py:84 msgid "Insufficient access." msgstr "" @@ -68,39 +67,38 @@ msgstr "" msgid "View ACLs" msgstr "" -#: views.py:61 -#, python-format -msgid "Access control lists for: %s" -msgstr "" - -#: views.py:107 +#: views.py:78 #, python-format msgid "New access control lists for: %s" msgstr "" -#: views.py:132 +#: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" -#: views.py:147 +#: views.py:151 +#, python-format +msgid "Access control lists for: %s" +msgstr "" + +#: views.py:162 msgid "Available permissions" msgstr "" -#: views.py:148 +#: views.py:163 msgid "Granted permissions" msgstr "" -#: views.py:187 -msgid "Disabled permissions are inherited from a parent object." -msgstr "" - -#: views.py:218 +#: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" msgstr "" +#: views.py:242 +msgid "Disabled permissions are inherited from a parent object." +msgstr "" + #~ msgid "New holder" #~ msgstr "New holder" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po index 665ac37151..bc1133a5f9 100644 --- a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +45,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +76,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +156,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +193,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +217,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po index 670acef608..8f47883c05 100644 --- a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po index 1f08d38ac9..df96b01c52 100644 --- a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +45,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +76,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +156,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +193,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +217,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po index 16d8bf3917..c0711c6869 100644 --- a/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po index 8b740debfa..aab8bad518 100644 --- a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-09-08 23:04+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "Erscheinungsbild" @@ -44,15 +45,19 @@ msgstr "Serverfehler" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren " +"gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "Wenn Sie Hilfe brauchen, können Sie den Fehler über folgende Kennung referenzieren: " +msgstr "" +"Wenn Sie Hilfe brauchen, können Sie den Fehler über folgende Kennung " +"referenzieren: " #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" @@ -75,39 +80,39 @@ msgstr "Veröffentlicht unter der Apache 2.0 Lizenz" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "Copyright © 2011-2015 Roberto Rosario." -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "Navigation ein-/ausschalten" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "Anonymer Benutzer" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "Benutzerdetails" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "Erfolg" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "Information" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "Warnung" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "Fehler" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "Aktionen" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "Ausklappmenü ein-/ausschalten" @@ -155,27 +160,34 @@ msgid "required" msgstr "erforderlich" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "Speichern" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "Absenden" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "Abbrechen" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "Kein Ergebnis" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von %(total_pages)s)" +msgstr "" +"Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von " +"%(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -187,10 +199,6 @@ msgstr "Gesamt: %(total)s" msgid "Identifier" msgstr "Bezeichner" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "Kein Ergebnis" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "Start" @@ -215,46 +223,50 @@ msgstr "Suche" msgid "Advanced" msgstr "Erweitert" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "Login" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "Erstanmeldung" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "Herzlichen Glückwunsch! Sie haben die Installation von Mayan EDMS erfolgreich abgeschlossen. " +msgstr "" +"Herzlichen Glückwunsch! Sie haben die Installation von Mayan EDMS erfolgreich abgeschlossen. " -#: templates/appearance/login.html:24 +#: templates/appearance/login.html:25 msgid "Login using the following credentials:" msgstr "Einloggen mit folgenden Zugangsdaten:" -#: templates/appearance/login.html:25 +#: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Benutzername: %(account)s" -#: templates/appearance/login.html:26 +#: templates/appearance/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "E-Mail: %(email)s" -#: templates/appearance/login.html:27 +#: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Passwort: %(password)s" -#: templates/appearance/login.html:28 +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Bitte ändern Sie das Passwort, um die Sicherheit zu erhöhen und diese Nachricht zu deaktivieren." +msgstr "" +"Bitte ändern Sie das Passwort, um die Sicherheit zu erhöhen und diese " +"Nachricht zu deaktivieren." -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "Anmelden" diff --git a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po index 16238203a6..793aa4cf68 100644 --- a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -74,39 +74,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +154,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +191,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +215,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po index bbed44297e..ceb91347f1 100644 --- a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "Apariencia" @@ -44,8 +45,8 @@ msgstr "Error de servidor" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -75,39 +76,39 @@ msgstr "Liberado bajo la licencia Apache 2.0 License" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "Todos los derechos reservados © 2011-2015 Roberto Rosario." -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "Activar/Desactivar navegación" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "Anónimo" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "Detalles del usuario" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "Exitoso" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "Información" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "Advertencia" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "Error" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "Acciones" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -155,27 +156,34 @@ msgid "required" msgstr "requerido" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "Guardar" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "Enviar" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "Cancelar" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "Ningún resultado" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de %(total_pages)s)" +msgstr "" +"Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de " +"%(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -187,10 +195,6 @@ msgstr "Total: %(total)s" msgid "Identifier" msgstr "Identificador" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "Ningún resultado" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "inicio" @@ -215,46 +219,49 @@ msgstr "Búsqueda" msgid "Advanced" msgstr "Avanzada" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "Iniciar sesión" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "Primer inicio de sesión" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "!Felicitaciones! Acaba de terminar de instalar Mayan EDMS" +msgstr "" +"!Felicitaciones! Acaba de terminar de instalar Mayan EDMS" -#: templates/appearance/login.html:24 +#: templates/appearance/login.html:25 msgid "Login using the following credentials:" msgstr "Inicie sesión con las siguientes credenciales:" -#: templates/appearance/login.html:25 +#: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" msgstr "Usuario: %(account)s" -#: templates/appearance/login.html:26 +#: templates/appearance/login.html:27 #, python-format msgid "Email: %(email)s" msgstr "Correo electrónico: %(email)s" -#: templates/appearance/login.html:27 +#: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" msgstr "Contraseña: %(password)s" -#: templates/appearance/login.html:28 +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Asegúrese de cambiar su contraseña para aumentar la seguridad y para desactivar este mensaje" +msgstr "" +"Asegúrese de cambiar su contraseña para aumentar la seguridad y para " +"desactivar este mensaje" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "Entrar" diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po index e5b69fc301..b5a5bb8406 100644 --- a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po index 4e8a114965..b6a1ac4af2 100644 --- a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po index e2f24b89f8..86a9c8e6cd 100644 --- a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po index 3db862a527..cecc39ce12 100644 --- a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po index e5f8e8f89b..05448bd8ea 100644 --- a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" 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 6ae74203b5..6c9b566269 100644 --- a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po index 2d9334739f..593c8654c6 100644 --- a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +45,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +76,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +156,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +193,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +217,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po index c9c815e335..73629a65dc 100644 --- a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po index adbe4a0cff..1259a30002 100644 --- a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" 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 72572f1754..366b8371f2 100644 --- a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +45,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +76,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +156,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +193,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +217,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po index fa39d3ff39..7086eca1b7 100644 --- a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po @@ -1,23 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +46,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +77,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +157,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +194,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +218,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po index f026c3e090..d61ab6732d 100644 --- a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +45,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +76,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +156,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +193,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +217,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po index 4a06bef3cd..042b003a40 100644 --- a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po index 4f0633e247..d415a63178 100644 --- a/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:12 +#: apps.py:11 msgid "Appearance" msgstr "" @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -74,39 +75,39 @@ msgstr "" msgid "Copyright © 2011-2015 Roberto Rosario." msgstr "" -#: templates/appearance/base.html:42 +#: templates/appearance/base.html:43 msgid "Toggle navigation" msgstr "" -#: templates/appearance/base.html:71 +#: templates/appearance/base.html:72 msgid "Anonymous" msgstr "" -#: templates/appearance/base.html:73 +#: templates/appearance/base.html:74 msgid "User details" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Success" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Information" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Warning" msgstr "" -#: templates/appearance/base.html:86 +#: templates/appearance/base.html:87 msgid "Error" msgstr "" -#: templates/appearance/base.html:115 +#: templates/appearance/base.html:116 msgid "Actions" msgstr "" -#: templates/appearance/base.html:116 +#: templates/appearance/base.html:117 msgid "Toggle Dropdown" msgstr "" @@ -154,21 +155,26 @@ msgid "required" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 -#: templates/appearance/generic_multiform_subtemplate.html:64 +#: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" msgstr "" #: templates/appearance/generic_form_subtemplate.html:74 -#: templates/appearance/generic_multiform_subtemplate.html:67 +#: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" msgstr "" +#: templates/appearance/generic_list_horizontal.html:20 +#: templates/appearance/generic_list_subtemplate.html:108 +msgid "No results" +msgstr "" + #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" @@ -186,10 +192,6 @@ msgstr "" msgid "Identifier" msgstr "" -#: templates/appearance/generic_list_subtemplate.html:108 -msgid "No results" -msgstr "" - #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" msgstr "" @@ -214,46 +216,46 @@ msgstr "" msgid "Advanced" msgstr "" -#: templates/appearance/login.html:9 +#: templates/appearance/login.html:10 msgid "Login" msgstr "" -#: templates/appearance/login.html:20 +#: templates/appearance/login.html:21 msgid "First time login" msgstr "" -#: templates/appearance/login.html:23 +#: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" msgstr "" -#: templates/appearance/login.html:24 -msgid "Login using the following credentials:" -msgstr "" - #: templates/appearance/login.html:25 -#, python-format -msgid "Username: %(account)s" +msgid "Login using the following credentials:" msgstr "" #: templates/appearance/login.html:26 #, python-format -msgid "Email: %(email)s" +msgid "Username: %(account)s" msgstr "" #: templates/appearance/login.html:27 #, python-format -msgid "Password: %(password)s" +msgid "Email: %(email)s" msgstr "" #: templates/appearance/login.html:28 +#, python-format +msgid "Password: %(password)s" +msgstr "" + +#: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." msgstr "" -#: templates/appearance/login.html:37 templates/appearance/login.html.py:46 +#: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" msgstr "" diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po index de6e421e7e..bcfbf4af6c 100644 --- a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +55,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po index 28ba6d8d2f..9f47641250 100644 --- a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" 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 a6254381df..c22153c52b 100644 --- a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +55,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po index c6827f6e4b..cee8894edc 100644 --- a/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" 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 5cb1bcd1b4..bbaa1d9663 100644 --- a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 22:41+0000\n" "Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "Authentifizierung" @@ -34,7 +35,9 @@ msgstr "Passwort" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass das Passwortfeld Groß- und Kleinschreibung unterscheidet." +msgstr "" +"Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass " +"das Passwortfeld Groß- und Kleinschreibung unterscheidet." #: forms.py:26 msgid "This account is inactive." @@ -52,12 +55,14 @@ msgstr "Passwort ändern" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-Mail-Adresse" +msgstr "" +"Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-" +"Mail-Adresse" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "Passwortänderung für aktuellen Benutzer" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "Das Passwort wurde erfolgreich geändert." diff --git a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po index bb68c48a37..38179e8e85 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: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +53,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po index 6218b6c738..61413e8b9a 100644 --- a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 22:36+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "Autenticación " @@ -34,7 +35,9 @@ msgstr "Contraseña" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Introduzca una dirección de correo y contraseña válidos. Recuerde que la contraseña es sensible a mayúsculas." +msgstr "" +"Introduzca una dirección de correo y contraseña válidos. Recuerde que la " +"contraseña es sensible a mayúsculas." #: forms.py:26 msgid "This account is inactive." @@ -52,12 +55,14 @@ msgstr "Cambiar contraseña" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Controla el mecanismo utilizado para el usuario autenticado. Las opciones son: 'username' nombre de usuario, 'email' correo electrónico" +msgstr "" +"Controla el mecanismo utilizado para el usuario autenticado. Las opciones " +"son: 'username' nombre de usuario, 'email' correo electrónico" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "Cambio de contraseña de usuario actual" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "Su contraseña ha sido actualizada con éxito." diff --git a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po index d4a88871f4..3d4dd53bbe 100644 --- a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po index a0c6f695ae..db8290f912 100644 --- a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po index 0950e9e588..7f821dd5d8 100644 --- a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po index 58c61fcb07..985de7b3fe 100644 --- a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po index 10fbcc1ef1..16a1341b4b 100644 --- a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" 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 29050c8aef..b74f51eda0 100644 --- a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po index f7da5b6b07..96ae6f52ef 100644 --- a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +55,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po index 0a31344499..fdaaf6d9ce 100644 --- a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" 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 9020c98cc1..bfac521791 100644 --- a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" 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 483aaf3db9..babc6dfa8e 100644 --- a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +55,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po index d7253dc33d..eb6efc6b06 100644 --- a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po @@ -1,23 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +56,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" 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 0332800c48..628c72da8d 100644 --- a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +55,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" 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 81e1a43c95..a7ea7ccc08 100644 --- a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po index cef73bec03..1fa3348130 100644 --- a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:16 settings.py:7 +#: apps.py:17 settings.py:7 msgid "Authentication" msgstr "" @@ -53,10 +54,10 @@ msgid "" "email" msgstr "" -#: views.py:36 +#: views.py:39 msgid "Current user password change" msgstr "" -#: views.py:52 +#: views.py:55 msgid "Your password has been successfully changed." msgstr "" diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po index 297265d549..e4b8c7af23 100644 --- a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +40,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +98,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +146,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +179,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +217,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +242,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +260,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po index d550a179c2..333f74ff73 100644 --- a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" 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 a2e7d58ad2..8fe817824d 100644 --- a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +40,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +98,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +146,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +179,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +217,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +242,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +260,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po index a8829d19bc..1cc898eb08 100644 --- a/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" 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 a59faf6f26..aaa8f60836 100644 --- a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-15 22:48+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "Ausbuchungen" @@ -39,25 +40,55 @@ msgstr "Dokument ausgebucht" msgid "Document forcefully checked in" msgstr "Dokument zwingend eingebucht" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "Dokument bereits ausgebucht" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" -msgstr "Neue Version nicht erlaubt für ausgebuchtes Dokument %s" +#: forms.py:28 +#, fuzzy +#| msgid "Document status: %s" +msgid "Document status" +msgstr "Dokumentenstatus: %s" -#: links.py:27 +#: forms.py:37 models.py:37 views.py:85 +msgid "User" +msgstr "Benutzer" + +#: forms.py:41 +#, fuzzy +#| msgid "Check out time: %s" +msgid "Check out time" +msgstr "Ausbuchungszeit: %s" + +#: forms.py:46 +#, fuzzy +#| msgid "Checkout expiration" +msgid "Check out expiration" +msgstr "Ausbuchungsende" + +#: forms.py:51 +#, fuzzy +#| msgid "New versions allowed: %s" +msgid "New versions allowed?" +msgstr "Neue Versionen erlaubt: %s" + +#: forms.py:52 +msgid "Yes" +msgstr "Ja" + +#: forms.py:52 +msgid "No" +msgstr "Nein" + +#: links.py:35 msgid "Check out document" msgstr "Dokument ausbuchen" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "Dokument einbuchen" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "Ein-/Ausbuchung" @@ -69,45 +100,39 @@ msgstr "Ausgebucht" msgid "Checked in/available" msgstr "Eingebucht/Verfügbar" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "Dokument" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "Ausbuchungszeit" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "Zeitdauer, die das Dokument ausgebucht bleiben soll." -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "Ausbuchungsende" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "Benutzer" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "Hochladen neuer Versionen dieses Dokuments nicht erlauben." -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "Hochladen neuer Versionen sperren" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "Ausbuchungsende muss in der Zukunft liegen." -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "Ausbuchung" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "Ausbuchungen" @@ -123,6 +148,12 @@ msgstr "Dokumente zwingend einbuchen" msgid "Check out documents" msgstr "Dokumente ausbuchen" +#: permissions.py:19 +#, fuzzy +#| msgid "Check out date and time" +msgid "Check out details view" +msgstr "Ausbuchungszeit" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -150,70 +181,35 @@ msgstr "Ausbuchungszeit" msgid "Checkout expiration" msgstr "Ausbuchungsende" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "Dokumentenstatus: %s" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "Benutzer: %s" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "Ausbuchungszeit: %s" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "Ausbuchungsende: %s" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "Neue Versionen erlaubt: %s" - -#: views.py:147 -msgid "Yes" -msgstr "Ja" - -#: views.py:147 -msgid "No" -msgstr "Nein" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "Ausbuchungsdetails für Dokument %s" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s trotzdem zwingend eingebucht werden?" +msgstr "" +"Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s " +"trotzdem zwingend eingebucht werden?" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Dokument %s einbuchen?" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "Dokument wurde nicht ausgebucht." -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "Fehler bei der Einbuchung von Dokument %s" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "Dokument \"%s\" erfolgreich eingebucht" @@ -222,6 +218,16 @@ msgstr "Dokument \"%s\" erfolgreich eingebucht" msgid "Period" msgstr "Einheit" +#~| msgid "New versions allowed: %s" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "Neue Version nicht erlaubt für ausgebuchtes Dokument %s" + +#~ msgid "User: %s" +#~ msgstr "Benutzer: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Ausbuchungsende: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" @@ -253,11 +259,11 @@ msgstr "Einheit" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po index e7044d02f8..893f513e16 100644 --- a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2012-07-10 15:47+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 #, fuzzy msgid "Checkouts" msgstr "checkouts" @@ -39,27 +39,58 @@ msgstr "Document checked out" msgid "Document forcefully checked in" msgstr "Document forcefully checked in" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "Document already checked out." -#: handlers.py:13 -#, fuzzy, python-format +#: forms.py:28 +#, fuzzy +msgid "Document status" +msgstr "Document status: %(widget)s %(text)s" + +#: forms.py:37 models.py:37 views.py:85 +#, fuzzy +#| msgid "User: %s" +msgid "User" +msgstr "User: %s" + +#: forms.py:41 +#, fuzzy +#| msgid "Check out time: %s" +msgid "Check out time" +msgstr "Check out time: %s" + +#: forms.py:46 +#, fuzzy +msgid "Check out expiration" +msgstr "checkout expiration" + +#: forms.py:51 +#, fuzzy #| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +msgid "New versions allowed?" msgstr "New versions allowed: %s" -#: links.py:27 +#: forms.py:52 +#, fuzzy +msgid "Yes" +msgstr "yes" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 #, fuzzy msgid "Check out document" msgstr "Check out documents" -#: links.py:33 +#: links.py:41 #, fuzzy msgid "Check in document" msgstr "Check in documents" -#: links.py:40 +#: links.py:48 #, fuzzy msgid "Check in/out" msgstr "check in/out" @@ -74,50 +105,44 @@ msgstr "checked out" msgid "Checked in/available" msgstr "checked in/available" -#: models.py:28 +#: models.py:27 #, fuzzy msgid "Document" msgstr "document" -#: models.py:31 +#: models.py:29 #, fuzzy msgid "Check out date and time" msgstr "check out date and time" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "Amount of time to hold the document checked out in minutes." -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "Check out expiration date and time" -#: models.py:39 views.py:85 -#, fuzzy -#| msgid "User: %s" -msgid "User" -msgstr "User: %s" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "Do not allow new version of this document to be uploaded." -#: models.py:45 +#: models.py:43 #, fuzzy msgid "Block new version upload" msgstr "block new version upload" -#: models.py:59 +#: models.py:54 #, fuzzy #| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "Check out expiration date and time" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "Document checkout" -#: models.py:81 +#: models.py:88 #, fuzzy msgid "Document checkouts" msgstr "Document checkout" @@ -134,6 +159,11 @@ msgstr "Forcefully check in documents" msgid "Check out documents" msgstr "Check out documents" +#: permissions.py:19 +#, fuzzy +msgid "Check out details view" +msgstr "check out date and time" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -164,46 +194,12 @@ msgstr "checkout time and date" msgid "Checkout expiration" msgstr "checkout expiration" -#: views.py:124 -#, fuzzy, python-format -msgid "Document status: %s" -msgstr "Document status: %(widget)s %(text)s" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "User: %s" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "Check out time: %s" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "Check out expiration: %s" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "New versions allowed: %s" - -#: views.py:147 -#, fuzzy -msgid "Yes" -msgstr "yes" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "Check out details for document: %s" -#: views.py:170 +#: views.py:136 #, fuzzy, python-format #| msgid "" #| "You didn't originally checked out this document. Are you sure you wish " @@ -215,22 +211,22 @@ msgstr "" "You didn't originally checked out this document. Are you sure you wish to " "forcefully check in document: %s?" -#: views.py:174 +#: views.py:140 #, fuzzy, python-format #| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Check out document: %s" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "Document has not been checked out." -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "Error trying to check in document; %s" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "Document \"%s\" checked in successfully." @@ -239,6 +235,17 @@ msgstr "Document \"%s\" checked in successfully." msgid "Period" msgstr "" +#, fuzzy +#~| msgid "New versions allowed: %s" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" diff --git a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po index 67f294181b..38eba18221 100644 --- a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2015 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 19:19+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "Reservaciones" @@ -39,25 +40,55 @@ msgstr "Documento reservado" msgid "Document forcefully checked in" msgstr "Documento devuelto forzosamente" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "El documento ya está reservado." -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" -msgstr "No está permitido subir nuevas versiones del documento: %s" +#: forms.py:28 +#, fuzzy +#| msgid "Document status: %s" +msgid "Document status" +msgstr "Estado de documento: %s" -#: links.py:27 +#: forms.py:37 models.py:37 views.py:85 +msgid "User" +msgstr "Usuario" + +#: forms.py:41 +#, fuzzy +#| msgid "Check out time: %s" +msgid "Check out time" +msgstr "Tiempo de la reserva: %s" + +#: forms.py:46 +#, fuzzy +#| msgid "Checkout expiration" +msgid "Check out expiration" +msgstr "Expiración de la reservación" + +#: forms.py:51 +#, fuzzy +#| msgid "New versions allowed: %s" +msgid "New versions allowed?" +msgstr "Nuevas versiones permitidas: %s" + +#: forms.py:52 +msgid "Yes" +msgstr "Si" + +#: forms.py:52 +msgid "No" +msgstr "No" + +#: links.py:35 msgid "Check out document" msgstr "Reservar documento" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "Devolver documento" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "Reservas" @@ -69,45 +100,39 @@ msgstr "Reservado" msgid "Checked in/available" msgstr "Devuelto/disponible" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "Documento" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "Fecha y hora de la reservación" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "Cantidad de tiempo para mantener el documento reservado, en minutos." -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "Fecha y hora de la expiración de la reserva." -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "Usuario" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "No permitir que nuevas versiones de este documento sean cargadas." -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "Restringir la subida de nuevas versiones" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "Fecha y hora de la expiración de la reserva deben ser en el futuro." -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "Reserva de documentos" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "Reservaciones de documentos" @@ -123,6 +148,12 @@ msgstr "Devolver documentos forzosamente" msgid "Check out documents" msgstr "Reservar documentos" +#: permissions.py:19 +#, fuzzy +#| msgid "Check out date and time" +msgid "Check out details view" +msgstr "Fecha y hora de la reservación" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -150,70 +181,35 @@ msgstr "Fecha y hora de reservación" msgid "Checkout expiration" msgstr "Expiración de la reservación" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "Estado de documento: %s" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "Usuario: %s" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "Tiempo de la reserva: %s" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "Expiración de la reserva: %s" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "Nuevas versiones permitidas: %s" - -#: views.py:147 -msgid "Yes" -msgstr "Si" - -#: views.py:147 -msgid "No" -msgstr "No" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "Detalles de la reserva para el documento: %s" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Usted no reservó inicialmente este documento. ¿Devolver forzosamente el documento: %s?" +msgstr "" +"Usted no reservó inicialmente este documento. ¿Devolver forzosamente el " +"documento: %s?" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "¿Devolver el documento: %s?" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "El documento no ha sido reservado." -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "Error tratando de devolver documento: %s" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "Documento \"%s\" devuelto con éxito." @@ -222,6 +218,16 @@ msgstr "Documento \"%s\" devuelto con éxito." msgid "Period" msgstr "Periodo" +#~| msgid "New versions allowed: %s" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "No está permitido subir nuevas versiones del documento: %s" + +#~ msgid "User: %s" +#~ msgstr "Usuario: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Expiración de la reserva: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" @@ -253,11 +259,11 @@ msgstr "Periodo" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po index 2b3f713648..ef26c54737 100644 --- a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po index 177796e36a..58a17c4dd2 100644 --- a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po index 65e12845dc..d038e4e502 100644 --- a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po index e5068bc86b..ecee9beab1 100644 --- a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po index d553b4fd67..f2c976c2f0 100644 --- a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" 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 f7666c1a79..e869589b2c 100644 --- a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po index 861c7990bd..2e0dc5f306 100644 --- a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +40,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +98,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +146,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +179,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +217,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +242,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +260,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po index b8d1a2a2c0..2829726e54 100644 --- a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" 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 c6cd3c821a..0a99ebe243 100644 --- a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" 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 6617ba5a7b..ccbbacc4a0 100644 --- a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +40,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +98,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +146,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +179,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +217,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +242,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +260,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po index 2fedd78fc9..3c8cf39d4e 100644 --- a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po @@ -1,24 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +41,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +99,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +147,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +180,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +218,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +243,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +261,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" 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 ce5a08beb5..4d0effead1 100644 --- a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +40,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +98,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +146,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +179,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +217,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +242,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +260,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" 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 5666bec56c..7c2bb181de 100644 --- a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po index e7921329da..9573fa4bfc 100644 --- a/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:24-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-19 06:41+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:22 +#: apps.py:31 links.py:30 msgid "Checkouts" msgstr "" @@ -38,25 +39,53 @@ msgstr "" msgid "Document forcefully checked in" msgstr "" -#: exceptions.py:32 views.py:55 +#: exceptions.py:25 views.py:55 msgid "Document already checked out." msgstr "" -#: handlers.py:13 -#, python-format -#| msgid "New versions allowed: %s" -msgid "New versions not allowed for the checkedout document: %s" +#: forms.py:28 +#, fuzzy +#| msgid "document" +msgid "Document status" +msgstr "document" + +#: forms.py:37 models.py:37 views.py:85 +msgid "User" msgstr "" -#: links.py:27 +#: forms.py:41 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out time" +msgstr "checkout user" + +#: forms.py:46 +#, fuzzy +#| msgid "check out expiration date and time" +msgid "Check out expiration" +msgstr "check out expiration date and time" + +#: forms.py:51 +msgid "New versions allowed?" +msgstr "" + +#: forms.py:52 +msgid "Yes" +msgstr "" + +#: forms.py:52 +msgid "No" +msgstr "" + +#: links.py:35 msgid "Check out document" msgstr "" -#: links.py:33 +#: links.py:41 msgid "Check in document" msgstr "" -#: links.py:40 +#: links.py:48 msgid "Check in/out" msgstr "" @@ -68,45 +97,39 @@ msgstr "" msgid "Checked in/available" msgstr "" -#: models.py:28 +#: models.py:27 msgid "Document" msgstr "" -#: models.py:31 +#: models.py:29 msgid "Check out date and time" msgstr "" -#: models.py:35 +#: models.py:33 msgid "Amount of time to hold the document checked out in minutes." msgstr "" -#: models.py:37 +#: models.py:35 msgid "Check out expiration date and time" msgstr "" -#: models.py:39 views.py:85 -#| msgid "User: %s" -msgid "User" -msgstr "" - -#: models.py:43 +#: models.py:41 msgid "Do not allow new version of this document to be uploaded." msgstr "" -#: models.py:45 +#: models.py:43 msgid "Block new version upload" msgstr "" -#: models.py:59 -#| msgid "Check out expiration date and time" +#: models.py:54 msgid "Check out expiration date and time must be in the future." msgstr "" -#: models.py:80 permissions.py:7 +#: models.py:87 permissions.py:7 msgid "Document checkout" msgstr "" -#: models.py:81 +#: models.py:88 msgid "Document checkouts" msgstr "" @@ -122,6 +145,12 @@ msgstr "" msgid "Check out documents" msgstr "" +#: permissions.py:19 +#, fuzzy +#| msgid "Checkout user" +msgid "Check out details view" +msgstr "checkout user" + #: views.py:59 #, python-format msgid "Error trying to check out document; %s" @@ -149,70 +178,33 @@ msgstr "" msgid "Checkout expiration" msgstr "" -#: views.py:124 -#, python-format -msgid "Document status: %s" -msgstr "" - -#: views.py:130 -#, python-format -msgid "User: %s" -msgstr "" - -#: views.py:136 -#, python-format -msgid "Check out time: %s" -msgstr "" - -#: views.py:141 -#, python-format -msgid "Check out expiration: %s" -msgstr "" - -#: views.py:146 -#, python-format -msgid "New versions allowed: %s" -msgstr "" - -#: views.py:147 -msgid "Yes" -msgstr "" - -#: views.py:147 -msgid "No" -msgstr "" - -#: views.py:154 +#: views.py:118 #, python-format msgid "Check out details for document: %s" msgstr "" -#: views.py:170 +#: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" msgstr "" -#: views.py:174 +#: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" -#: views.py:210 +#: views.py:177 msgid "Document has not been checked out." msgstr "" -#: views.py:213 +#: views.py:182 #, python-format msgid "Error trying to check in document; %s" msgstr "" -#: views.py:217 +#: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." msgstr "" @@ -224,9 +216,6 @@ msgstr "" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" -#~ msgid "Checkout user" -#~ msgstr "checkout user" - #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -252,11 +241,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -270,12 +259,6 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." -#~ msgid "document" -#~ msgstr "document" - -#~ msgid "check out expiration date and time" -#~ msgstr "check out expiration date and time" - #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po index 4de33a354a..bb522eefc6 100644 --- a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -27,11 +29,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "الاختيار" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -48,58 +50,34 @@ msgstr "إضافة" msgid "Remove" msgstr "إزالة" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -138,22 +116,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -195,13 +177,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -218,11 +197,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -239,7 +217,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -249,7 +226,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -257,11 +233,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "لم يتم اختيار اجراء." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "يجب اختيار غرض واحد عالأقل." @@ -303,11 +279,11 @@ msgstr "لا شيء" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -316,11 +292,11 @@ msgstr "لا شيء" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po index a9d68d7890..1aa0232529 100644 --- a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -27,11 +28,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -48,58 +49,34 @@ msgstr "Добави" msgid "Remove" msgstr "Премахнете" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -138,22 +115,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -195,13 +176,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -218,11 +196,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -239,7 +216,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -249,7 +225,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -257,11 +232,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "" -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "" @@ -303,11 +278,11 @@ msgstr "Няма" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -316,11 +291,11 @@ msgstr "Няма" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 1dede93c21..172b0aee33 100644 --- a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -27,11 +29,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Odabir" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -48,58 +50,34 @@ msgstr "Dodati" msgid "Remove" msgstr "Ukloniti" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -138,22 +116,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -195,13 +177,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -218,11 +197,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -239,7 +217,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -249,7 +226,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -257,11 +233,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Nijedna akcija nije odabrana." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Mora biti izabrana barem jedna stanka." @@ -303,11 +279,11 @@ msgstr "Nijedno" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -316,11 +292,11 @@ msgstr "Nijedno" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/da/LC_MESSAGES/django.po b/mayan/apps/common/locale/da/LC_MESSAGES/django.po index f62c62f2c3..7fb27e3d4e 100644 --- a/mayan/apps/common/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/da/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -26,11 +27,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -47,58 +48,34 @@ msgstr "" msgid "Remove" msgstr "" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -137,22 +114,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -194,13 +175,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -217,11 +195,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -238,7 +215,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -248,7 +224,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -256,11 +231,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "" -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "" @@ -302,11 +277,11 @@ msgstr "" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -315,11 +290,11 @@ msgstr "" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 7d37a83982..54d8d34c87 100644 --- a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 23:13+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "Allgemein" @@ -30,11 +31,11 @@ msgstr "Allgemein" msgid "Available attributes: " msgstr "Verfügbare Attribute:" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Auswahl" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "Filter" @@ -51,59 +52,38 @@ msgstr "Hinzufügen" msgid "Remove" msgstr "Entfernen" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." -msgstr "Fehler bei der Erstellung von neuem %s" +msgid "%(object)s not created, error: %(error)s" +msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "Fehler bei der Erstellung des Objekts" - -#: generics.py:292 -#, python-format -msgid "%s created successfully." -msgstr "%s erfolgreich erstellt" - -#: generics.py:297 -msgid "New object created successfully." +#: generics.py:295 +#, fuzzy, python-format +#| msgid "New object created successfully." +msgid "%(object)s created successfully." msgstr "Neues Objekt erfolgreich erstellt" -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "Fehler beim Löschen von %s" - -#: generics.py:322 -msgid "Error deleting object." -msgstr "Fehler beim Löschen des Objekts" +msgid "%(object)s not deleted, error: %(error)s." +msgstr "" #: generics.py:331 -#, python-format -msgid "%s deleted successfully." -msgstr "%s erfolgreich gelöscht" - -#: generics.py:336 -msgid "Object deleted successfully." +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s deleted successfully." msgstr "Objekt erfolgreich gelöscht" -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." -msgstr "Fehler bei der Speicherung von %s Details" +msgid "%(object)s not updated, error: %(error)s." +msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "Fehler bei der Speicherung von Details" - -#: generics.py:393 -#, python-format -msgid "%s details saved successfully." -msgstr "%s Details erfolgreich gespeichert" - -#: generics.py:398 -msgid "Details saved successfully." -msgstr "Details erfolgreich gespeichert" +#: generics.py:383 +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s updated successfully." +msgstr "Objekt erfolgreich gelöscht" #: links.py:9 msgid "About" @@ -141,22 +121,26 @@ msgstr "Andere Paket-Lizenzen" msgid "Setup" msgstr "Einrichtung" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "Werkzeuge" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "Tage" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "Stunden" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "Minuten" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "Datei" @@ -198,14 +182,14 @@ msgid "User locale profiles" msgstr "Benutzerlokalisierungsprofile" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." -msgstr "Temporäres Verzeichnis für die Speicherung von Miniaturen, Vorschauen und temporären Dateien. Wenn keines definiert ist, wird es automatisch erstellt (per tempfile.mkdtemp())." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." +msgstr "" +"Temporäres Verzeichnis für die Speicherung von Miniaturen, Vorschauen und " +"temporären Dateien. Wenn keines definiert ist, wird es automatisch erstellt " +"(per tempfile.mkdtemp())." #: settings.py:22 msgid "A storage backend that all workers can use to share files." @@ -213,7 +197,8 @@ msgstr "Datenbackend, das alle Worker benutzen können, um Dateien zu teilen" #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." -msgstr "Eine Ganzzahl, die die Anzahl der angezeigten Datensätze pro Seite angibt." +msgstr "" +"Eine Ganzzahl, die die Anzahl der angezeigten Datensätze pro Seite angibt." #: settings.py:34 msgid "Automatically enable logging to all apps." @@ -221,11 +206,12 @@ msgstr "Protokollierung für alle Apps automatisch freischalten." #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung auf einen Datenbankcommit warten." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung " +"auf einen Datenbankcommit warten." -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "Aktuelle Benutzerdetails" @@ -242,7 +228,6 @@ msgid "Edit current user locale profile details" msgstr "Aktuelle Benutzerlokalisierungsdetails bearbeiten" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "Filterauswahl" @@ -252,7 +237,6 @@ msgid "Results for filter: %s" msgstr "Ergebnis für Filter %s" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "Filter nicht gefunden" @@ -260,11 +244,11 @@ msgstr "Filter nicht gefunden" msgid "Setup items" msgstr "Einrichtungsdetails" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Keine Aktion ausgewählt." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Es muss mindestens ein Element ausgewählt werden." @@ -272,6 +256,36 @@ msgstr "Es muss mindestens ein Element ausgewählt werden." msgid "None" msgstr "Kein(e)" +#~ msgid "Error creating new %s." +#~ msgstr "Fehler bei der Erstellung von neuem %s" + +#~ msgid "Error creating object." +#~ msgstr "Fehler bei der Erstellung des Objekts" + +#~ msgid "%s created successfully." +#~ msgstr "%s erfolgreich erstellt" + +#~ msgid "Error deleting %s." +#~ msgstr "Fehler beim Löschen von %s" + +#~ msgid "Error deleting object." +#~ msgstr "Fehler beim Löschen des Objekts" + +#~ msgid "%s deleted successfully." +#~ msgstr "%s erfolgreich gelöscht" + +#~ msgid "Error saving %s details." +#~ msgstr "Fehler bei der Speicherung von %s Details" + +#~ msgid "Error saving details." +#~ msgstr "Fehler bei der Speicherung von Details" + +#~ msgid "%s details saved successfully." +#~ msgstr "%s Details erfolgreich gespeichert" + +#~ msgid "Details saved successfully." +#~ msgstr "Details erfolgreich gespeichert" + #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -306,11 +320,11 @@ msgstr "Kein(e)" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -319,11 +333,11 @@ msgstr "Kein(e)" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/en/LC_MESSAGES/django.po b/mayan/apps/common/locale/en/LC_MESSAGES/django.po index d99943889e..30632b7cd9 100644 --- a/mayan/apps/common/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/common/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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -26,11 +26,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Selection" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -47,58 +47,34 @@ msgstr "Add" msgid "Remove" msgstr "Remove" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -140,22 +116,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -228,7 +208,7 @@ msgid "" "Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 #, fuzzy msgid "Current user details" msgstr "current user details" @@ -269,11 +249,11 @@ msgstr "Page not found" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "No action selected." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Must select at least one item." diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index e16ac76528..a313c6b2f4 100644 --- a/mayan/apps/common/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -28,11 +29,11 @@ msgstr "" msgid "Available attributes: " msgstr "Atributos disponibles" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Selección" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -49,59 +50,38 @@ msgstr "Agregar" msgid "Remove" msgstr "Eliminar" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." -msgstr "Error al crear nuevo %s." +msgid "%(object)s not created, error: %(error)s" +msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "Error al crear objeto." - -#: generics.py:292 -#, python-format -msgid "%s created successfully." -msgstr "%s creado con éxito." - -#: generics.py:297 -msgid "New object created successfully." +#: generics.py:295 +#, fuzzy, python-format +#| msgid "New object created successfully." +msgid "%(object)s created successfully." msgstr "Nuevo objeto creado con éxito." -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "Error al borrar %s." - -#: generics.py:322 -msgid "Error deleting object." -msgstr "Error al borrar objeto." +msgid "%(object)s not deleted, error: %(error)s." +msgstr "" #: generics.py:331 -#, python-format -msgid "%s deleted successfully." -msgstr "%s borrado con éxito." - -#: generics.py:336 -msgid "Object deleted successfully." +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s deleted successfully." msgstr "Objeto borrado con éxito." -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." -msgstr "Error al salvar los detalles %s." +msgid "%(object)s not updated, error: %(error)s." +msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "Error al salvar los detalles." - -#: generics.py:393 -#, python-format -msgid "%s details saved successfully." -msgstr "Los detalles %s se han guardado con éxito." - -#: generics.py:398 -msgid "Details saved successfully." -msgstr "Detalles guardados con éxito." +#: generics.py:383 +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s updated successfully." +msgstr "Objeto borrado con éxito." #: links.py:9 msgid "About" @@ -139,22 +119,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "Carpeta" @@ -196,18 +180,17 @@ msgid "User locale profiles" msgstr "Perfil de usuario local" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "Un soporte de almacenamiento que todos los trabajadores puedan utilizar para compartir archivos." +msgstr "" +"Un soporte de almacenamiento que todos los trabajadores puedan utilizar para " +"compartir archivos." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -219,11 +202,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "detalles del usuario corriente" @@ -240,7 +222,6 @@ msgid "Edit current user locale profile details" msgstr "Editar los detalles del perfil del usuario local" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -250,7 +231,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -258,11 +238,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Ninguna acción seleccionada." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Debe seleccionar al menos un artículo." @@ -270,6 +250,36 @@ msgstr "Debe seleccionar al menos un artículo." msgid "None" msgstr "Ninguno" +#~ msgid "Error creating new %s." +#~ msgstr "Error al crear nuevo %s." + +#~ msgid "Error creating object." +#~ msgstr "Error al crear objeto." + +#~ msgid "%s created successfully." +#~ msgstr "%s creado con éxito." + +#~ msgid "Error deleting %s." +#~ msgstr "Error al borrar %s." + +#~ msgid "Error deleting object." +#~ msgstr "Error al borrar objeto." + +#~ msgid "%s deleted successfully." +#~ msgstr "%s borrado con éxito." + +#~ msgid "Error saving %s details." +#~ msgstr "Error al salvar los detalles %s." + +#~ msgid "Error saving details." +#~ msgstr "Error al salvar los detalles." + +#~ msgid "%s details saved successfully." +#~ msgstr "Los detalles %s se han guardado con éxito." + +#~ msgid "Details saved successfully." +#~ msgstr "Detalles guardados con éxito." + #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -304,11 +314,11 @@ msgstr "Ninguno" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -317,11 +327,11 @@ msgstr "Ninguno" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po index 37703a5a77..b06b587891 100644 --- a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -27,11 +28,11 @@ msgstr "" msgid "Available attributes: " msgstr "خصوصیات موجود" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "انتخاب" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -48,59 +49,38 @@ msgstr "افزودن" msgid "Remove" msgstr "حذف" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." -msgstr "خطا در زمان ایجاد %s." +msgid "%(object)s not created, error: %(error)s" +msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "خطا در زمان ایجاد شی" - -#: generics.py:292 -#, python-format -msgid "%s created successfully." -msgstr "%s با موفقیت ایجاد شد." - -#: generics.py:297 -msgid "New object created successfully." +#: generics.py:295 +#, fuzzy, python-format +#| msgid "New object created successfully." +msgid "%(object)s created successfully." msgstr "شی جدید با موفقیت ساخته شد." -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "خطا در زمان حذف %s." - -#: generics.py:322 -msgid "Error deleting object." -msgstr "خطا در حذف شی." +msgid "%(object)s not deleted, error: %(error)s." +msgstr "" #: generics.py:331 -#, python-format -msgid "%s deleted successfully." -msgstr "%s با موفقیت حذف شد." - -#: generics.py:336 -msgid "Object deleted successfully." +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s deleted successfully." msgstr "شی با موفقیت حذف شد." -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." -msgstr "خطا در ثبت چزئیات %s." +msgid "%(object)s not updated, error: %(error)s." +msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "خطا در ثبت چزئیات ." - -#: generics.py:393 -#, python-format -msgid "%s details saved successfully." -msgstr "جزئیات %s با موفقیت ثبت شد." - -#: generics.py:398 -msgid "Details saved successfully." -msgstr "جزییات با موفقیت ثبت شد." +#: generics.py:383 +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s updated successfully." +msgstr "شی با موفقیت حذف شد." #: links.py:9 msgid "About" @@ -138,22 +118,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "فایل" @@ -195,13 +179,10 @@ msgid "User locale profiles" msgstr "پروفایل محلی کاربر" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -218,11 +199,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "جزئیاتا کاربر فعلی" @@ -239,7 +219,6 @@ msgid "Edit current user locale profile details" msgstr "ویرایش شرح پروفایل محلی کاربر فعلی" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -249,7 +228,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -257,11 +235,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "هیچ عملیاتی action انتخاب نشده است." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "حداقل یک مورد انتخاب شود." @@ -269,6 +247,36 @@ msgstr "حداقل یک مورد انتخاب شود." msgid "None" msgstr "هیچکدام." +#~ msgid "Error creating new %s." +#~ msgstr "خطا در زمان ایجاد %s." + +#~ msgid "Error creating object." +#~ msgstr "خطا در زمان ایجاد شی" + +#~ msgid "%s created successfully." +#~ msgstr "%s با موفقیت ایجاد شد." + +#~ msgid "Error deleting %s." +#~ msgstr "خطا در زمان حذف %s." + +#~ msgid "Error deleting object." +#~ msgstr "خطا در حذف شی." + +#~ msgid "%s deleted successfully." +#~ msgstr "%s با موفقیت حذف شد." + +#~ msgid "Error saving %s details." +#~ msgstr "خطا در ثبت چزئیات %s." + +#~ msgid "Error saving details." +#~ msgstr "خطا در ثبت چزئیات ." + +#~ msgid "%s details saved successfully." +#~ msgstr "جزئیات %s با موفقیت ثبت شد." + +#~ msgid "Details saved successfully." +#~ msgstr "جزییات با موفقیت ثبت شد." + #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -303,11 +311,11 @@ msgstr "هیچکدام." #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -316,11 +324,11 @@ msgstr "هیچکدام." #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po index e36c60adca..222ce7aee3 100644 --- a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # PatrickHetu , 2012 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -29,11 +30,11 @@ msgstr "" msgid "Available attributes: " msgstr "Options disponibles" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Sélection" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -50,59 +51,38 @@ msgstr "Ajouter" msgid "Remove" msgstr "Supprimer" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." -msgstr "Erreur nouvelle création %s. " +msgid "%(object)s not created, error: %(error)s" +msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "Erreur de création de l'objet." - -#: generics.py:292 -#, python-format -msgid "%s created successfully." -msgstr "%s créé avec succès" - -#: generics.py:297 -msgid "New object created successfully." +#: generics.py:295 +#, fuzzy, python-format +#| msgid "New object created successfully." +msgid "%(object)s created successfully." msgstr "Le nouvel objet a été créé avec succès" -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "Erreur de suppression %s." - -#: generics.py:322 -msgid "Error deleting object." -msgstr "Erreur de suppression de l'objet" +msgid "%(object)s not deleted, error: %(error)s." +msgstr "" #: generics.py:331 -#, python-format -msgid "%s deleted successfully." -msgstr "%s supprimé avec succès." - -#: generics.py:336 -msgid "Object deleted successfully." +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s deleted successfully." msgstr "Objet supprimé avec succès" -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." -msgstr "Erreur de sauvegarde %s pour voir les détails." +msgid "%(object)s not updated, error: %(error)s." +msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "Erreur de sauvegarde détaillée." - -#: generics.py:393 -#, python-format -msgid "%s details saved successfully." -msgstr "Sauvegarde de %s détaillé avec succès." - -#: generics.py:398 -msgid "Details saved successfully." -msgstr "Détails sauvegardé avec succès." +#: generics.py:383 +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s updated successfully." +msgstr "Objet supprimé avec succès" #: links.py:9 msgid "About" @@ -140,22 +120,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "Fichier" @@ -197,18 +181,17 @@ msgid "User locale profiles" msgstr "Paramètres régionaux des profils utilisateur" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "Un espace de stockage que tous les agents pourront utiliser pour partager des fichiers." +msgstr "" +"Un espace de stockage que tous les agents pourront utiliser pour partager " +"des fichiers." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -220,11 +203,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "Détails de l'utilisateur courant" @@ -241,7 +223,6 @@ msgid "Edit current user locale profile details" msgstr "Éditer le détail des paramètres régionaux de l'utilisateur actuel" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -251,7 +232,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -259,11 +239,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Aucune action sélectionnée." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Vous devez sélectionner au moins un élément." @@ -271,6 +251,36 @@ msgstr "Vous devez sélectionner au moins un élément." msgid "None" msgstr "Aucun" +#~ msgid "Error creating new %s." +#~ msgstr "Erreur nouvelle création %s. " + +#~ msgid "Error creating object." +#~ msgstr "Erreur de création de l'objet." + +#~ msgid "%s created successfully." +#~ msgstr "%s créé avec succès" + +#~ msgid "Error deleting %s." +#~ msgstr "Erreur de suppression %s." + +#~ msgid "Error deleting object." +#~ msgstr "Erreur de suppression de l'objet" + +#~ msgid "%s deleted successfully." +#~ msgstr "%s supprimé avec succès." + +#~ msgid "Error saving %s details." +#~ msgstr "Erreur de sauvegarde %s pour voir les détails." + +#~ msgid "Error saving details." +#~ msgstr "Erreur de sauvegarde détaillée." + +#~ msgid "%s details saved successfully." +#~ msgstr "Sauvegarde de %s détaillé avec succès." + +#~ msgid "Details saved successfully." +#~ msgstr "Détails sauvegardé avec succès." + #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -305,11 +315,11 @@ msgstr "Aucun" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -318,11 +328,11 @@ msgstr "Aucun" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po index f8701129b6..9c652aaaf4 100644 --- a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -26,11 +27,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -47,58 +48,34 @@ msgstr "" msgid "Remove" msgstr "" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -137,22 +114,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -194,13 +175,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -217,11 +195,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -238,7 +215,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -248,7 +224,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -256,11 +231,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "" -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "" @@ -302,11 +277,11 @@ msgstr "" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -315,11 +290,11 @@ msgstr "" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.po b/mayan/apps/common/locale/id/LC_MESSAGES/django.po index c224881d79..75ff48420b 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/id/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -26,11 +27,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -47,58 +48,34 @@ msgstr "" msgid "Remove" msgstr "" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -137,22 +114,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -194,13 +175,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -217,11 +195,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -238,7 +215,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -248,7 +224,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -256,11 +231,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "" -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "" @@ -302,11 +277,11 @@ msgstr "" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -315,11 +290,11 @@ msgstr "" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.po b/mayan/apps/common/locale/it/LC_MESSAGES/django.po index 673cb71f53..a25c726e2c 100644 --- a/mayan/apps/common/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -30,11 +31,11 @@ msgstr "" msgid "Available attributes: " msgstr "Attributi disponibili:" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Selezione" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -51,59 +52,38 @@ msgstr "Aggiungi" msgid "Remove" msgstr "Rimuovi" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." -msgstr "Errore nella creazione del nuovo %s." +msgid "%(object)s not created, error: %(error)s" +msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "Errore nella creazione dell'oggetto" - -#: generics.py:292 -#, python-format -msgid "%s created successfully." -msgstr "%s creato con successo" - -#: generics.py:297 -msgid "New object created successfully." +#: generics.py:295 +#, fuzzy, python-format +#| msgid "New object created successfully." +msgid "%(object)s created successfully." msgstr "Nuovo oggetto creato con successo." -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "Errore nel cancellare %s." - -#: generics.py:322 -msgid "Error deleting object." -msgstr "Errore nel cancellare l'oggetto." +msgid "%(object)s not deleted, error: %(error)s." +msgstr "" #: generics.py:331 -#, python-format -msgid "%s deleted successfully." -msgstr "%s cancellato con successo" - -#: generics.py:336 -msgid "Object deleted successfully." +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s deleted successfully." msgstr "Oggetto cancellato con successo" -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." -msgstr "Errore nel salvataggio %s dei dettagli" +msgid "%(object)s not updated, error: %(error)s." +msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "Dettagli errore di salvataggio." - -#: generics.py:393 -#, python-format -msgid "%s details saved successfully." -msgstr "%s dettagli salvati con successo" - -#: generics.py:398 -msgid "Details saved successfully." -msgstr "Dettagli salvati correttamente." +#: generics.py:383 +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s updated successfully." +msgstr "Oggetto cancellato con successo" #: links.py:9 msgid "About" @@ -141,22 +121,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "File" @@ -198,18 +182,17 @@ msgid "User locale profiles" msgstr "Profili dell'utente locale" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "Un backend di memorizzazione che tutti i lavoratori possono utilizzare per condividere i file." +msgstr "" +"Un backend di memorizzazione che tutti i lavoratori possono utilizzare per " +"condividere i file." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -221,11 +204,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "Dettagli dell'attuale utente" @@ -242,7 +224,6 @@ msgid "Edit current user locale profile details" msgstr "Modificare i dettagli del profilo corrente dell'utente" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -252,7 +233,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -260,11 +240,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Nessuna azione selezionata" -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Devi selezionare un elemento" @@ -272,6 +252,36 @@ msgstr "Devi selezionare un elemento" msgid "None" msgstr "Nessuno" +#~ msgid "Error creating new %s." +#~ msgstr "Errore nella creazione del nuovo %s." + +#~ msgid "Error creating object." +#~ msgstr "Errore nella creazione dell'oggetto" + +#~ msgid "%s created successfully." +#~ msgstr "%s creato con successo" + +#~ msgid "Error deleting %s." +#~ msgstr "Errore nel cancellare %s." + +#~ msgid "Error deleting object." +#~ msgstr "Errore nel cancellare l'oggetto." + +#~ msgid "%s deleted successfully." +#~ msgstr "%s cancellato con successo" + +#~ msgid "Error saving %s details." +#~ msgstr "Errore nel salvataggio %s dei dettagli" + +#~ msgid "Error saving details." +#~ msgstr "Dettagli errore di salvataggio." + +#~ msgid "%s details saved successfully." +#~ msgstr "%s dettagli salvati con successo" + +#~ msgid "Details saved successfully." +#~ msgstr "Dettagli salvati correttamente." + #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -306,11 +316,11 @@ msgstr "Nessuno" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -319,11 +329,11 @@ msgstr "Nessuno" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 7418ad1fe1..9326a1a333 100644 --- a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # woei , 2014 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -27,11 +28,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Selectie" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -48,59 +49,38 @@ msgstr "Voeg toe" msgid "Remove" msgstr "Verwijder" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." -msgstr "Error bij maken nieuwe %s." +msgid "%(object)s not created, error: %(error)s" +msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "Error bij het maken van object." - -#: generics.py:292 -#, python-format -msgid "%s created successfully." -msgstr "%s succesvol aangemaakt." - -#: generics.py:297 -msgid "New object created successfully." +#: generics.py:295 +#, fuzzy, python-format +#| msgid "New object created successfully." +msgid "%(object)s created successfully." msgstr "Nieuw object succesvol aangemaakt." -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "Error bij verwijderen %s." - -#: generics.py:322 -msgid "Error deleting object." -msgstr "Error bij het verwijderen van object." +msgid "%(object)s not deleted, error: %(error)s." +msgstr "" #: generics.py:331 -#, python-format -msgid "%s deleted successfully." -msgstr "%s succesvol verwijderd." - -#: generics.py:336 -msgid "Object deleted successfully." +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s deleted successfully." msgstr "Object succesvol verwijderd." -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." -msgstr "Error bij opslaan van %s gegevens." +msgid "%(object)s not updated, error: %(error)s." +msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "Error bij opslaan gegevens." - -#: generics.py:393 -#, python-format -msgid "%s details saved successfully." -msgstr "%s gegevens succesvol opgeslagen." - -#: generics.py:398 -msgid "Details saved successfully." -msgstr "Gegevens succesvol opgeslagen." +#: generics.py:383 +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s updated successfully." +msgstr "Object succesvol verwijderd." #: links.py:9 msgid "About" @@ -138,22 +118,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -195,13 +179,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -218,11 +199,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -239,7 +219,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -249,7 +228,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -257,11 +235,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Geen acties geselecteerd." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Selecteer minimaal een item." @@ -269,6 +247,36 @@ msgstr "Selecteer minimaal een item." msgid "None" msgstr "Geen" +#~ msgid "Error creating new %s." +#~ msgstr "Error bij maken nieuwe %s." + +#~ msgid "Error creating object." +#~ msgstr "Error bij het maken van object." + +#~ msgid "%s created successfully." +#~ msgstr "%s succesvol aangemaakt." + +#~ msgid "Error deleting %s." +#~ msgstr "Error bij verwijderen %s." + +#~ msgid "Error deleting object." +#~ msgstr "Error bij het verwijderen van object." + +#~ msgid "%s deleted successfully." +#~ msgstr "%s succesvol verwijderd." + +#~ msgid "Error saving %s details." +#~ msgstr "Error bij opslaan van %s gegevens." + +#~ msgid "Error saving details." +#~ msgstr "Error bij opslaan gegevens." + +#~ msgid "%s details saved successfully." +#~ msgstr "%s gegevens succesvol opgeslagen." + +#~ msgid "Details saved successfully." +#~ msgstr "Gegevens succesvol opgeslagen." + #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -303,11 +311,11 @@ msgstr "Geen" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -316,11 +324,11 @@ msgstr "Geen" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po index c01b891f00..877ebfa8dc 100644 --- a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -12,17 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:35+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -30,11 +32,11 @@ msgstr "" msgid "Available attributes: " msgstr "Dostępne atrybuty:" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Zaznaczenie" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -51,59 +53,38 @@ msgstr "Dodaj" msgid "Remove" msgstr "Usuń" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." -msgstr "Błąd podczas tworzenia nowego : %s." +msgid "%(object)s not created, error: %(error)s" +msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "Błąd poczas tworzenia obiektu." - -#: generics.py:292 -#, python-format -msgid "%s created successfully." -msgstr "%s utworzono pomyślnie." - -#: generics.py:297 -msgid "New object created successfully." +#: generics.py:295 +#, fuzzy, python-format +#| msgid "New object created successfully." +msgid "%(object)s created successfully." msgstr "Pomyślnie utworzono nowy obiekt." -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "Błąd podczas usuwania %s." - -#: generics.py:322 -msgid "Error deleting object." -msgstr "Błąd podczas usuwania obiektu." +msgid "%(object)s not deleted, error: %(error)s." +msgstr "" #: generics.py:331 -#, python-format -msgid "%s deleted successfully." -msgstr "%s usunięto pomyślnie." - -#: generics.py:336 -msgid "Object deleted successfully." +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s deleted successfully." msgstr "Pomyślnie usunuęto obiekt." -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." -msgstr "Błąd podczas zapisu %s." +msgid "%(object)s not updated, error: %(error)s." +msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "Błąd zapisu detali." - -#: generics.py:393 -#, python-format -msgid "%s details saved successfully." -msgstr "%s detale zapiane pomyślnie." - -#: generics.py:398 -msgid "Details saved successfully." -msgstr "Detale zapsane pomyślnie." +#: generics.py:383 +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s updated successfully." +msgstr "Pomyślnie usunuęto obiekt." #: links.py:9 msgid "About" @@ -141,22 +122,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "Plik" @@ -198,18 +183,17 @@ msgid "User locale profiles" msgstr "Lokalne profile użytkownika" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie plików." +msgstr "" +"Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie " +"plików." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -221,11 +205,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "Aktualne dane użytkownika" @@ -242,7 +225,6 @@ msgid "Edit current user locale profile details" msgstr "Edytuj profil aktualnego użytkownika." #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -252,7 +234,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -260,11 +241,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Nie wybrano żadnego działania" -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Musisz wybrać co najmniej jeden element." @@ -272,6 +253,36 @@ msgstr "Musisz wybrać co najmniej jeden element." msgid "None" msgstr "Brak" +#~ msgid "Error creating new %s." +#~ msgstr "Błąd podczas tworzenia nowego : %s." + +#~ msgid "Error creating object." +#~ msgstr "Błąd poczas tworzenia obiektu." + +#~ msgid "%s created successfully." +#~ msgstr "%s utworzono pomyślnie." + +#~ msgid "Error deleting %s." +#~ msgstr "Błąd podczas usuwania %s." + +#~ msgid "Error deleting object." +#~ msgstr "Błąd podczas usuwania obiektu." + +#~ msgid "%s deleted successfully." +#~ msgstr "%s usunięto pomyślnie." + +#~ msgid "Error saving %s details." +#~ msgstr "Błąd podczas zapisu %s." + +#~ msgid "Error saving details." +#~ msgstr "Błąd zapisu detali." + +#~ msgid "%s details saved successfully." +#~ msgstr "%s detale zapiane pomyślnie." + +#~ msgid "Details saved successfully." +#~ msgstr "Detale zapsane pomyślnie." + #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -306,11 +317,11 @@ msgstr "Brak" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -319,11 +330,11 @@ msgstr "Brak" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po index 58ed5eea36..fb026f68b6 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: # Translators: # Emerson Soares , 2011 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -29,11 +30,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Seleção" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -50,58 +51,34 @@ msgstr "Adicionar" msgid "Remove" msgstr "Remover" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -140,22 +117,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -197,13 +178,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -220,11 +198,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -241,7 +218,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -251,7 +227,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -259,11 +234,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Nenhuma ação selecionada." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Deve selecionar pelo menos um item." @@ -305,11 +280,11 @@ msgstr "Nenhum" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -318,11 +293,11 @@ msgstr "Nenhum" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 3c3425c00d..30c5d9ef1f 100644 --- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:35+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -29,11 +30,11 @@ msgstr "" msgid "Available attributes: " msgstr "Atributos disponíveis:" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Seleção" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -50,59 +51,38 @@ msgstr "Adicionar" msgid "Remove" msgstr "Remover" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." -msgstr "Erro ao criar nova :%s. " +msgid "%(object)s not created, error: %(error)s" +msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "Erro ao criar objeto." - -#: generics.py:292 -#, python-format -msgid "%s created successfully." -msgstr "%s criado com sucesso." - -#: generics.py:297 -msgid "New object created successfully." +#: generics.py:295 +#, fuzzy, python-format +#| msgid "New object created successfully." +msgid "%(object)s created successfully." msgstr "Novo objeto criado com sucesso." -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "Erro ao excluir:%s." - -#: generics.py:322 -msgid "Error deleting object." -msgstr "Erro ao excluir objeto." +msgid "%(object)s not deleted, error: %(error)s." +msgstr "" #: generics.py:331 -#, python-format -msgid "%s deleted successfully." -msgstr "%s excluído com sucesso" - -#: generics.py:336 -msgid "Object deleted successfully." +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s deleted successfully." msgstr "Objeto excluído com sucesso." -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." -msgstr "Erro ao salvar %s detalhes." +msgid "%(object)s not updated, error: %(error)s." +msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "Salvar detalhes de erro." - -#: generics.py:393 -#, python-format -msgid "%s details saved successfully." -msgstr "%s Detalhes salvos com sucesso." - -#: generics.py:398 -msgid "Details saved successfully." -msgstr "Detalhes salvos com sucesso." +#: generics.py:383 +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s updated successfully." +msgstr "Objeto excluído com sucesso." #: links.py:9 msgid "About" @@ -140,22 +120,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "Arquivo" @@ -197,18 +181,17 @@ msgid "User locale profiles" msgstr "Perfis de localidade do usuário" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "Um backend de armazenamento que todos os trabalhadores podem usar para compartilhar arquivos." +msgstr "" +"Um backend de armazenamento que todos os trabalhadores podem usar para " +"compartilhar arquivos." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -220,11 +203,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "Detalhes do usuário" @@ -241,7 +223,6 @@ msgid "Edit current user locale profile details" msgstr "Editar Usuário Atual - detalhes do perfil de localidade" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -251,7 +232,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -259,11 +239,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Nenhuma ação selecionada." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Deve selecionar pelo menos um item." @@ -271,6 +251,36 @@ msgstr "Deve selecionar pelo menos um item." msgid "None" msgstr "Nenhum" +#~ msgid "Error creating new %s." +#~ msgstr "Erro ao criar nova :%s. " + +#~ msgid "Error creating object." +#~ msgstr "Erro ao criar objeto." + +#~ msgid "%s created successfully." +#~ msgstr "%s criado com sucesso." + +#~ msgid "Error deleting %s." +#~ msgstr "Erro ao excluir:%s." + +#~ msgid "Error deleting object." +#~ msgstr "Erro ao excluir objeto." + +#~ msgid "%s deleted successfully." +#~ msgstr "%s excluído com sucesso" + +#~ msgid "Error saving %s details." +#~ msgstr "Erro ao salvar %s detalhes." + +#~ msgid "Error saving details." +#~ msgstr "Salvar detalhes de erro." + +#~ msgid "%s details saved successfully." +#~ msgstr "%s Detalhes salvos com sucesso." + +#~ msgid "Details saved successfully." +#~ msgstr "Detalhes salvos com sucesso." + #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -305,11 +315,11 @@ msgstr "Nenhum" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -318,11 +328,11 @@ msgstr "Nenhum" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 48f92f2161..f00478ea2e 100644 --- a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -27,11 +29,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "selecţie" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -48,58 +50,34 @@ msgstr "Adaugă" msgid "Remove" msgstr "Şterge" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -138,22 +116,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -195,13 +177,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -218,11 +197,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -239,7 +217,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -249,7 +226,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -257,11 +233,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Nu a fost selectată nici o acţiune." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Trebuie sa selectaţi cel puţin un rând" @@ -303,11 +279,11 @@ msgstr "Nici unul" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -316,11 +292,11 @@ msgstr "Nici unul" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po index bd5db98e1f..6f36fb0c15 100644 --- a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po @@ -1,24 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -26,11 +29,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Выбор" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -47,58 +50,34 @@ msgstr "Добавить" msgid "Remove" msgstr "Удалить" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -137,22 +116,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -194,13 +177,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -217,11 +197,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -238,7 +217,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -248,7 +226,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -256,11 +233,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Никаких действий не выбрано." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Необходимо выбрать хотя бы один элемент." @@ -302,11 +279,11 @@ msgstr "Ни один" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -315,11 +292,11 @@ msgstr "Ни один" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 6ee4dc5b0d..19d73d3fd9 100644 --- a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -26,11 +28,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -47,58 +49,34 @@ msgstr "" msgid "Remove" msgstr "" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -137,22 +115,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -194,13 +176,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -217,11 +196,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -238,7 +216,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -248,7 +225,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -256,11 +232,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "" -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "" @@ -302,11 +278,11 @@ msgstr "" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -315,11 +291,11 @@ msgstr "" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 f48c398c58..ebf31dae6f 100644 --- a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -27,11 +28,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "Lựa chọn" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -48,58 +49,34 @@ msgstr "Thêm" msgid "Remove" msgstr "Xóa" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." +msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "" - -#: generics.py:292 +#: generics.py:295 #, python-format -msgid "%s created successfully." +msgid "%(object)s created successfully." msgstr "" -#: generics.py:297 -msgid "New object created successfully." -msgstr "" - -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "" - -#: generics.py:322 -msgid "Error deleting object." +msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 #, python-format -msgid "%s deleted successfully." +msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:336 -msgid "Object deleted successfully." -msgstr "" - -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." +msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "" - -#: generics.py:393 +#: generics.py:383 #, python-format -msgid "%s details saved successfully." -msgstr "" - -#: generics.py:398 -msgid "Details saved successfully." +msgid "%(object)s updated successfully." msgstr "" #: links.py:9 @@ -138,22 +115,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -195,13 +176,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -218,11 +196,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -239,7 +216,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -249,7 +225,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -257,11 +232,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "Không thao tác nào được chọn." -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "Cần chọn ít nhất một phần tử." @@ -303,11 +278,11 @@ msgstr "None" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -316,11 +291,11 @@ msgstr "None" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po index b022376523..3b97b21cba 100644 --- a/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-24 20:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:66 settings.py:9 +#: apps.py:70 settings.py:9 msgid "Common" msgstr "" @@ -27,11 +28,11 @@ msgstr "" msgid "Available attributes: " msgstr "" -#: forms.py:27 +#: forms.py:26 msgid "Selection" msgstr "选择" -#: forms.py:106 +#: forms.py:105 msgid "Filter" msgstr "" @@ -48,59 +49,38 @@ msgstr "新增" msgid "Remove" msgstr "移除" -#: generics.py:265 +#: generics.py:284 #, python-format -msgid "Error creating new %s." -msgstr "创建新 %s的时候出错。" +msgid "%(object)s not created, error: %(error)s" +msgstr "" -#: generics.py:268 -msgid "Error creating object." -msgstr "创建对象的时候出错" - -#: generics.py:292 -#, python-format -msgid "%s created successfully." -msgstr "创建%s成功" - -#: generics.py:297 -msgid "New object created successfully." +#: generics.py:295 +#, fuzzy, python-format +#| msgid "New object created successfully." +msgid "%(object)s created successfully." msgstr "新对象创建成功" -#: generics.py:318 +#: generics.py:320 #, python-format -msgid "Error deleting %s." -msgstr "删除%s时候出错。" - -#: generics.py:322 -msgid "Error deleting object." -msgstr "删除对象时候出错。" +msgid "%(object)s not deleted, error: %(error)s." +msgstr "" #: generics.py:331 -#, python-format -msgid "%s deleted successfully." -msgstr "删除%s成功。" - -#: generics.py:336 -msgid "Object deleted successfully." +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s deleted successfully." msgstr "对象删除成功" -#: generics.py:363 +#: generics.py:372 #, python-format -msgid "Error saving %s details." -msgstr "保存 %s 详细信息出错。" +msgid "%(object)s not updated, error: %(error)s." +msgstr "" -#: generics.py:368 -msgid "Error saving details." -msgstr "保存详细信息出错" - -#: generics.py:393 -#, python-format -msgid "%s details saved successfully." -msgstr "%s的详单成功保存" - -#: generics.py:398 -msgid "Details saved successfully." -msgstr "详单保存成功" +#: generics.py:383 +#, fuzzy, python-format +#| msgid "Object deleted successfully." +msgid "%(object)s updated successfully." +msgstr "对象删除成功" #: links.py:9 msgid "About" @@ -138,22 +118,26 @@ msgstr "" msgid "Setup" msgstr "" -#: links.py:41 views.py:191 +#: links.py:41 views.py:194 msgid "Tools" msgstr "" -#: literals.py:8 +#: literals.py:13 msgid "Days" msgstr "" -#: literals.py:9 +#: literals.py:14 msgid "Hours" msgstr "" -#: literals.py:10 +#: literals.py:15 msgid "Minutes" msgstr "" +#: mixins.py:125 +msgid "Object" +msgstr "" + #: models.py:23 msgid "File" msgstr "" @@ -195,13 +179,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -218,11 +199,10 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: views.py:36 +#: views.py:37 msgid "Current user details" msgstr "" @@ -239,7 +219,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -249,7 +228,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -257,11 +235,11 @@ msgstr "" msgid "Setup items" msgstr "" -#: views.py:218 +#: views.py:221 msgid "No action selected." msgstr "请选择一个操作" -#: views.py:226 +#: views.py:229 msgid "Must select at least one item." msgstr "至少需要选择一项" @@ -269,6 +247,36 @@ msgstr "至少需要选择一项" msgid "None" msgstr "无" +#~ msgid "Error creating new %s." +#~ msgstr "创建新 %s的时候出错。" + +#~ msgid "Error creating object." +#~ msgstr "创建对象的时候出错" + +#~ msgid "%s created successfully." +#~ msgstr "创建%s成功" + +#~ msgid "Error deleting %s." +#~ msgstr "删除%s时候出错。" + +#~ msgid "Error deleting object." +#~ msgstr "删除对象时候出错。" + +#~ msgid "%s deleted successfully." +#~ msgstr "删除%s成功。" + +#~ msgid "Error saving %s details." +#~ msgstr "保存 %s 详细信息出错。" + +#~ msgid "Error saving details." +#~ msgstr "保存详细信息出错" + +#~ msgid "%s details saved successfully." +#~ msgstr "%s的详单成功保存" + +#~ msgid "Details saved successfully." +#~ msgstr "详单保存成功" + #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -303,11 +311,11 @@ msgstr "无" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -316,11 +324,11 @@ msgstr "无" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po index 93528cf219..4ada41a3d0 100644 --- a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,60 +9,61 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "تغيير حجم" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "تدوير" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "التكبير" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -78,7 +79,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -88,11 +89,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -111,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -136,17 +136,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -188,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po index 9cec401518..1600f5997d 100644 --- a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,60 +9,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Преоразмеряване" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Завъртете" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Увеличаване" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -78,7 +78,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -88,11 +88,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -111,7 +111,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -136,17 +135,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -188,14 +187,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +506,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +626,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 7118b0f5ad..629516f2c6 100644 --- a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,60 +9,61 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Promjeni veličinu" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Rotiraj" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Uvećaj" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -78,7 +79,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -88,11 +89,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -111,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -136,17 +136,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -188,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/da/LC_MESSAGES/django.po b/mayan/apps/converter/locale/da/LC_MESSAGES/django.po index 0fed5b80cf..d423e0e567 100644 --- a/mayan/apps/converter/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/da/LC_MESSAGES/django.po @@ -1,67 +1,67 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 19:29+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -77,7 +77,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -87,11 +87,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -110,7 +110,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -135,17 +134,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -187,14 +186,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +505,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +625,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 854ad308f5..caa3cd0f23 100644 --- a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -10,60 +10,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-08 23:04+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "Konverter" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "Reihenfolge" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "Transformation" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "Argumente" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "Ausnahme bei der Ermittlung der PDF-Seitenanzahl: %s" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "Kein Office-Dateiformat" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "LibreOffice nicht installiert oder in Pfad %s nicht gefunden" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "Kein Office-Dateiformat" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Größe ändern" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Drehen" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Zoom" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "Zuschneiden" @@ -79,7 +79,7 @@ msgstr "Löschen" msgid "Edit" msgstr "Bearbeiten" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "Transformationen" @@ -87,17 +87,21 @@ msgstr "Transformationen" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird automatisch eine Reihenfolge zugewiesen." +msgstr "" +"Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird " +"automatisch eine Reihenfolge zugewiesen." -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "Name" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Argumemte für die Transformation als YAML dictionary eingeben, z.B: {\"degrees\": 180}" +msgstr "" +"Argumemte für die Transformation als YAML dictionary eingeben, z.B: " +"{\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -112,7 +116,6 @@ msgid "Edit transformations" msgstr "Transformationen bearbeiten" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Transformationen anzeigen" @@ -135,19 +138,22 @@ msgstr "Einen gültigen YAML Wert eingeben" #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Transformation \"%(transformation)s\" für %(content_object)s wirklich löschen?" +msgstr "" +"Transformation \"%(transformation)s\" für %(content_object)s wirklich " +"löschen?" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "Transformation erstellen für %s" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" +msgstr "" +"Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "Transformationen von %s" @@ -189,14 +195,13 @@ msgstr "Transformationen von %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -509,9 +514,11 @@ msgstr "Transformationen von %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,7 +634,8 @@ msgstr "Transformationen von %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po index a9591018cf..6a2e6f4bc6 100644 --- a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/converter/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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,51 +18,51 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 -#, python-format -msgid "LibreOffice not installed or not found at path: %s" -msgstr "" - -#: classes.py:159 +#: classes.py:98 #, fuzzy #| msgid "suported file formats" msgid "Not an office file format." msgstr "suported file formats" -#: classes.py:252 +#: classes.py:121 +#, python-format +msgid "LibreOffice not installed or not found at path: %s" +msgstr "" + +#: classes.py:254 msgid "Resize" msgstr "Resize" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Rotate" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Zoom" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -78,7 +78,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -88,11 +88,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -138,17 +138,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" diff --git a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po index 133ddc52e0..7a038c1538 100644 --- a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lory977 , 2015 @@ -10,60 +10,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:39+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "Convertidor" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "Orden" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "Transformación" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "Argumentos" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Cambiar el tamaño" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Girar" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Ampliar" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -79,7 +79,7 @@ msgstr "Borrar" msgid "Edit" msgstr "Editar" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "Transformaciones" @@ -89,11 +89,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "Nombre" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -112,7 +112,6 @@ msgid "Edit transformations" msgstr "Editar transformaciones" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Ver transformaciones existentes" @@ -137,17 +136,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "Crear transformación para :%s" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "Editar transformación \"%(transformation)s\" para: %(content_object)s" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "Transformaciones para: %s" @@ -189,14 +188,13 @@ msgstr "Transformaciones para: %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -509,9 +507,11 @@ msgstr "Transformaciones para: %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,7 +627,8 @@ msgstr "Transformaciones para: %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po index 4273c1ef40..696790d124 100644 --- a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po @@ -1,67 +1,67 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "تغییر اندازه" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "چرخاندن" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "بزرگ/کوچک نمایی" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -77,7 +77,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -87,11 +87,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -110,7 +110,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -135,17 +134,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -187,14 +186,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +505,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +625,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po index 55c5e96e87..89fccfdf49 100644 --- a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -9,60 +9,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Redimensionner" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Rotation" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Zoom" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -78,7 +78,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -88,11 +88,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -111,7 +111,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -136,17 +135,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -188,14 +187,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +506,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +626,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po index 24e654e6e3..8a04257517 100644 --- a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po @@ -1,67 +1,67 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 19:29+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -77,7 +77,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -87,11 +87,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -110,7 +110,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -135,17 +134,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -187,14 +186,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +505,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +625,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po index 5d57ece859..04289aa168 100644 --- a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po @@ -1,67 +1,67 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 19:29+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -77,7 +77,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -87,11 +87,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -110,7 +110,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -135,17 +134,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -187,14 +186,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +505,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +625,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po index ef145cae5f..83a2da6a7d 100644 --- a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011,2015 @@ -9,60 +9,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Ridimensiona" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Ruotare" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Zoom" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -78,7 +78,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -88,11 +88,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -111,7 +111,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -136,17 +135,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -188,14 +187,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +506,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +626,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 1b571c2963..2b87c08d97 100644 --- a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -10,60 +10,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Afmeting wijzigen" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Roteren" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Inzoomen" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -79,7 +79,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -89,11 +89,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -112,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -137,17 +136,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -189,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -509,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po index fb8f9206a6..e546bb54aa 100644 --- a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012,2015 @@ -9,60 +9,61 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Zmiana rozmiaru" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Obracać" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Powiększ" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -78,7 +79,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -88,11 +89,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -111,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -136,17 +136,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -188,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po index 080c016289..04cb7abf97 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: # Translators: # Emerson Soares , 2011 @@ -11,60 +11,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Redimensionar" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Rodar" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Zoom" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -80,7 +80,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -90,11 +90,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -113,7 +113,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -138,17 +137,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -190,14 +189,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -510,9 +508,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -628,7 +628,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 01cc25a5bf..b8b2aebbfe 100644 --- a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Renata Oliveira , 2011 @@ -10,60 +10,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Redimensionar" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Rodar" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Zoom" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -79,7 +79,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -89,11 +89,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -112,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -137,17 +136,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -189,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -509,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 b8b0bdd0f4..4706731523 100644 --- a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,60 +9,61 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Redimensionarea" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Roti" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Zoom" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -78,7 +79,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -88,11 +89,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -111,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -136,17 +136,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -188,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po index 565280d081..55b5935cd3 100644 --- a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po @@ -1,67 +1,69 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "Изменение размера" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "Вращать" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "Увеличить" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -77,7 +79,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -87,11 +89,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -110,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -135,17 +136,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -187,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 ad46e48683..da540764a3 100644 --- a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po @@ -1,67 +1,68 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 19:29+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -77,7 +78,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -87,11 +88,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -110,7 +111,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -135,17 +135,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -187,14 +187,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +506,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +626,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 8cc9164677..b2eff393f0 100644 --- a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po @@ -1,67 +1,67 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 19:29+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -77,7 +77,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -87,11 +87,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -110,7 +110,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -135,17 +134,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -187,14 +186,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +505,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +625,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po index 0848532dfc..9fc0b6d8f1 100644 --- a/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,60 +9,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-20 22:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:19 permissions.py:7 settings.py:7 +#: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" msgstr "" -#: apps.py:37 models.py:33 +#: apps.py:38 models.py:34 msgid "Order" msgstr "" -#: apps.py:39 models.py:62 +#: apps.py:40 models.py:64 msgid "Transformation" msgstr "" -#: apps.py:43 models.py:42 +#: apps.py:44 models.py:44 msgid "Arguments" msgstr "" -#: backends/python.py:86 backends/python.py:98 +#: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" msgstr "" -#: classes.py:87 +#: classes.py:98 +msgid "Not an office file format." +msgstr "" + +#: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" msgstr "" -#: classes.py:159 -#| msgid "suported file formats" -msgid "Not an office file format." -msgstr "" - -#: classes.py:252 +#: classes.py:254 msgid "Resize" msgstr "调整大小" -#: classes.py:293 +#: classes.py:295 msgid "Rotate" msgstr "旋转" -#: classes.py:305 +#: classes.py:307 msgid "Zoom" msgstr "缩放" -#: classes.py:322 +#: classes.py:324 msgid "Crop" msgstr "" @@ -78,7 +78,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:43 models.py:63 +#: links.py:43 models.py:65 msgid "Transformations" msgstr "" @@ -88,11 +88,11 @@ msgid "" "automatic order value will be assigned." msgstr "" -#: models.py:37 +#: models.py:38 msgid "Name" msgstr "" -#: models.py:41 +#: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" @@ -111,7 +111,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -136,17 +135,17 @@ msgstr "" msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" msgstr "" -#: views.py:138 +#: views.py:139 #, python-format msgid "Create new transformation for: %s" msgstr "" -#: views.py:190 +#: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" msgstr "" -#: views.py:236 +#: views.py:238 #, python-format msgid "Transformations for: %s" msgstr "" @@ -188,14 +187,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +506,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +626,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 415c44df02..722d79a119 100644 --- a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,54 +9,55 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Owner" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -149,7 +150,6 @@ msgid "Import keys from keyservers" msgstr "Import keys from keyservers" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -167,7 +167,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -178,7 +177,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -197,9 +195,6 @@ msgstr "Delete key" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 4a296077dd..27c62b0219 100644 --- a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,54 +9,54 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Собственик" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -149,7 +149,6 @@ msgid "Import keys from keyservers" msgstr "Внос ключове от сървъри за ключове" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -167,7 +166,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -178,7 +176,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -197,9 +194,6 @@ msgstr "Изтриване на ключ" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 7b6b3fc0e4..9620fb637b 100644 --- a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,54 +9,55 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Vlasnik" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -149,7 +150,6 @@ msgid "Import keys from keyservers" msgstr "Uvezi ključeve sa keyservera" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -159,7 +159,9 @@ msgstr "Popis keyservera za upit za nepoznate ključeve." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih datoteka." +msgstr "" +"Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih " +"datoteka." #: settings.py:25 msgid "Path to the GPG binary." @@ -167,7 +169,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -178,7 +179,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -197,9 +197,6 @@ msgstr "Obriši ključ" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." diff --git a/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po index 77aa13db52..e4edc6faa5 100644 --- a/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po @@ -1,61 +1,61 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -148,7 +148,6 @@ msgid "Import keys from keyservers" msgstr "" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -166,7 +165,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -177,7 +175,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -196,9 +193,6 @@ msgstr "" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 9d6b61a36f..bd337cc6de 100644 --- a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,54 +11,54 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-09-08 23:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 msgid "Unknown" msgstr "Unbekannt" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Eigentümer" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "Typ" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "Erstellungsdatum" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "Ablaufdatum" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "Ohne Ablaufdatum" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "Länge" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "Identitäten" @@ -68,7 +68,9 @@ msgstr "Begriff" #: forms.py:10 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht wird" +msgstr "" +"Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht " +"wird" #: links.py:14 views.py:81 msgid "Private keys" @@ -128,7 +130,9 @@ msgstr "Signaturfehler" #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung verfügbar." +msgstr "" +"Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung " +"verfügbar." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -151,7 +155,6 @@ msgid "Import keys from keyservers" msgstr "Schlüssel von Schlüsselservern importieren" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Unterschriften" @@ -169,7 +172,6 @@ msgstr "Pfad zum Programm GPG" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "Schlüssel-ID %(key_id)s konnte nicht importiert werden: %(error)s" @@ -180,7 +182,6 @@ msgstr "Schlüssel %(key_id)s erfolgreich heruntergeladen" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Schlüssel-ID %s importieren?" @@ -199,13 +200,13 @@ msgstr "Schlüssel löschen" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." -msgstr "Sind Sie sicher, dass Sie den Schlüssel %s löschen wollen? Wenn Sie einen öffentlichen Schlüssel löschen, der Teil eines öffentlichen/privaten Paars ist, wird der private Schlüssel ebenfalls gelöscht." +msgstr "" +"Sind Sie sicher, dass Sie den Schlüssel %s löschen wollen? Wenn Sie einen " +"öffentlichen Schlüssel löschen, der Teil eines öffentlichen/privaten Paars " +"ist, wird der private Schlüssel ebenfalls gelöscht." #: views.py:134 msgid "Search" 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 5517ea81a7..d46ade8db2 100644 --- a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -23,43 +23,43 @@ msgstr "" msgid "Unknown" msgstr "unknown" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Owner" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 #, fuzzy msgid "Creation date" msgstr "creation date" -#: apps.py:72 +#: apps.py:73 #, fuzzy msgid "Expiration date" msgstr "expiration date" -#: apps.py:73 +#: apps.py:74 #, fuzzy msgid "No expiration" msgstr "expiration date" -#: apps.py:75 +#: apps.py:76 #, fuzzy msgid "Length" msgstr "length" -#: apps.py:77 +#: apps.py:78 #, fuzzy #| msgid "Identifies" msgid "Identities" 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 4e2965621a..f4594b698c 100644 --- a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -10,54 +10,54 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 msgid "Unknown" msgstr "Desconocido" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Propietario" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "Tipo" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "Fecha de creación" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "Fecha de expiración" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "Largo" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -67,7 +67,9 @@ msgstr "Término" #: forms.py:10 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "Nombre, dirección de correo electrónico, identificador de clave o huella digital de clave a buscar." +msgstr "" +"Nombre, dirección de correo electrónico, identificador de clave o huella " +"digital de clave a buscar." #: links.py:14 views.py:81 msgid "Private keys" @@ -127,7 +129,9 @@ msgstr "Error de firma." #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "El documento ha sido firmado pero no hay clave pública disponible para verificación." +msgstr "" +"El documento ha sido firmado pero no hay clave pública disponible para " +"verificación." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -150,17 +154,20 @@ msgid "Import keys from keyservers" msgstr "Importar llaves del servidores de claves" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" #: settings.py:13 msgid "List of keyservers to be queried for unknown keys." -msgstr "Lista de servidores de claves a ser utilizados para buscar claves desconocidas." +msgstr "" +"Lista de servidores de claves a ser utilizados para buscar claves " +"desconocidas." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "Directorio de inicio utilizado para almacenar las claves, así como los archivos de configuración." +msgstr "" +"Directorio de inicio utilizado para almacenar las claves, así como los " +"archivos de configuración." #: settings.py:25 msgid "Path to the GPG binary." @@ -168,7 +175,6 @@ msgstr "Ruta al binario GPG." #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -179,7 +185,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -198,9 +203,6 @@ msgstr "Borrar clave" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 d17d94436a..be3c05c6cd 100644 --- a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po @@ -1,61 +1,61 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: api.py:100 msgid "Unknown" msgstr "ناشناخته" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "شناسه" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "صاحب" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "نوع" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "تاریخ ایجاد" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "تاریخ انقضا" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "طول" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -148,7 +148,6 @@ msgid "Import keys from keyservers" msgstr "وارد کردن کلیده از سرور کلیدها" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -166,7 +165,6 @@ msgstr "محل کتایخانه باینری GPG" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -177,7 +175,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -196,9 +193,6 @@ msgstr "حذف کلید" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 bda9eb5831..d89fd5fb4a 100644 --- a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -9,54 +9,54 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: api.py:100 msgid "Unknown" msgstr "Inconnu" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Propriétaire" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "Type" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "Date de création" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "Date d'expiration" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "Durée" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -126,7 +126,9 @@ msgstr "Erreur de signature." #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "Ce document est signé mais aucune clé publique n'est disponible pour vérifier la signature." +msgstr "" +"Ce document est signé mais aucune clé publique n'est disponible pour " +"vérifier la signature." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -149,7 +151,6 @@ msgid "Import keys from keyservers" msgstr "Importer les clés à partir des serveurs de clés" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -159,7 +160,9 @@ msgstr "Liste des serveurs de clés à interroger pour les clés inconnues." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers de configuration" +msgstr "" +"Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers " +"de configuration" #: settings.py:25 msgid "Path to the GPG binary." @@ -167,7 +170,6 @@ msgstr "Chemin du binaire GPG" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -178,7 +180,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -197,9 +198,6 @@ msgstr "Supprimer la clé" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 adfb986e37..5ddcedf39a 100644 --- a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po @@ -1,61 +1,61 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -148,7 +148,6 @@ msgid "Import keys from keyservers" msgstr "" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -166,7 +165,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -177,7 +175,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -196,9 +193,6 @@ msgstr "" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 d8e8d63bf0..27c0d5a271 100644 --- a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po @@ -1,61 +1,61 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -148,7 +148,6 @@ msgid "Import keys from keyservers" msgstr "" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -166,7 +165,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -177,7 +175,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -196,9 +193,6 @@ msgstr "" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 7442b0a647..081e26e898 100644 --- a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012,2015 @@ -9,54 +9,54 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 msgid "Unknown" msgstr "Sconosciuto" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Proprietario" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "Tipo" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "Data di creazione" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "Data scadenza" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "Lunghezza" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -126,7 +126,9 @@ msgstr "Errore di firma" #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "Il documento è stato firmato, ma la chiave pubblica non è disponibile per la verifica" +msgstr "" +"Il documento è stato firmato, ma la chiave pubblica non è disponibile per la " +"verifica" #: literals.py:50 msgid "Document is signed, and signature is good." @@ -149,7 +151,6 @@ msgid "Import keys from keyservers" msgstr "Importa le chiavi dal server di chiavi" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -159,7 +160,9 @@ msgstr "Lista di server per chiavi che si possono interrogare." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "Home directory utilizzata per memorizzare le chiavi così come i file di configurazione." +msgstr "" +"Home directory utilizzata per memorizzare le chiavi così come i file di " +"configurazione." #: settings.py:25 msgid "Path to the GPG binary." @@ -167,7 +170,6 @@ msgstr "Percorso per il programma GPG" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -178,7 +180,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -197,9 +198,6 @@ msgstr "Cancella chiave" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 afc03ef368..9d46ed720c 100644 --- a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po @@ -1,61 +1,61 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -148,7 +148,6 @@ msgid "Import keys from keyservers" msgstr "" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -166,7 +165,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -177,7 +175,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -196,9 +193,6 @@ msgstr "" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 c51baa4045..854e73b6b3 100644 --- a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -10,54 +10,55 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: api.py:100 msgid "Unknown" msgstr "Nieznany" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Właściciel" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "Typ" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "Data utworzenia" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "Data wygaśnięcia" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "Długość" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -127,7 +128,9 @@ msgstr "Błąd podpisu." #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "Dokument został podpisany, ale klucz publiczny nie jest dostępny do weryfikacji." +msgstr "" +"Dokument został podpisany, ale klucz publiczny nie jest dostępny do " +"weryfikacji." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -150,7 +153,6 @@ msgid "Import keys from keyservers" msgstr "Import keys from keyservers" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -160,7 +162,8 @@ msgstr "List of keyservers to be queried for unknown keys." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." +msgstr "" +"Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." #: settings.py:25 msgid "Path to the GPG binary." @@ -168,7 +171,6 @@ msgstr "Ścieżka do GPG binary." #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -179,7 +181,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -198,9 +199,6 @@ msgstr "Usuń klucz" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 2976e628e4..9063593c41 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: # Translators: # Roberto Rosario, 2012 @@ -10,54 +10,54 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Proprietário" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -127,7 +127,9 @@ msgstr "Erro de assinatura." #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "O documento está assinado, mas não está disponível uma chave pública para verificação." +msgstr "" +"O documento está assinado, mas não está disponível uma chave pública para " +"verificação." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -150,7 +152,6 @@ msgid "Import keys from keyservers" msgstr "Importar chaves de servidores de chaves" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -168,7 +169,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -179,7 +179,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -198,9 +197,6 @@ msgstr "Excluir chave" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 20dd27c403..bfe4a1ca63 100644 --- a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2012 @@ -10,54 +10,54 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: api.py:100 msgid "Unknown" msgstr "desconhecido" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Proprietário" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "Tipo" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "data de criação" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "data de validade" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "comprimento" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -150,7 +150,6 @@ msgid "Import keys from keyservers" msgstr "Importar chaves do Keyservers" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -168,7 +167,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -179,7 +177,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -198,9 +195,6 @@ msgstr "Excluir chave" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 c340aa02d5..78f24267e2 100644 --- a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,54 +9,55 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID-ul" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Proprietar" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -126,7 +127,9 @@ msgstr "Eroare semnătură." #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru verificare." +msgstr "" +"Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru " +"verificare." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -149,17 +152,19 @@ msgid "Import keys from keyservers" msgstr "Importă cheile din keyservers" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" #: settings.py:13 msgid "List of keyservers to be queried for unknown keys." -msgstr "Lista de keyservers care urmează să fie interogat pentru chei necunoscute." +msgstr "" +"Lista de keyservers care urmează să fie interogat pentru chei necunoscute." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "Cale director utilizată pentru a stoca cheile, precum și fișiere de configurare." +msgstr "" +"Cale director utilizată pentru a stoca cheile, precum și fișiere de " +"configurare." #: settings.py:25 msgid "Path to the GPG binary." @@ -167,7 +172,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -178,7 +182,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -197,9 +200,6 @@ msgstr "Ștergeți-cheie" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 eabf414b3a..5fc12b7019 100644 --- a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po @@ -1,61 +1,63 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Владелец" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -148,7 +150,6 @@ msgid "Import keys from keyservers" msgstr "Импортировать ключи с серверов ключей " #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -158,7 +159,9 @@ msgstr "Список ключевых серверов для запроса н #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "Домашний каталог, используемый для хранения ключей, а также файлов конфигурации." +msgstr "" +"Домашний каталог, используемый для хранения ключей, а также файлов " +"конфигурации." #: settings.py:25 msgid "Path to the GPG binary." @@ -166,7 +169,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -177,7 +179,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -196,9 +197,6 @@ msgstr "Удалить ключ." #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 af87cbc103..6d30ed2023 100644 --- a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po @@ -1,61 +1,62 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -148,7 +149,6 @@ msgid "Import keys from keyservers" msgstr "" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -166,7 +166,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -177,7 +176,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -196,9 +194,6 @@ msgstr "" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 0b41053a1a..a953f33ea5 100644 --- a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,54 +9,54 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "Nhười sở hữu" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -149,7 +149,6 @@ msgid "Import keys from keyservers" msgstr "Import keys from keyservers" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -167,7 +166,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -178,7 +176,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -197,9 +194,6 @@ msgstr " Xóa khóa" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." diff --git a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po index 2cc6f2e1f1..7128530712 100644 --- a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,54 +9,54 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: api.py:100 msgid "Unknown" msgstr "" -#: apps.py:21 +#: apps.py:22 msgid "Django GPG" msgstr "" -#: apps.py:54 apps.py:61 +#: apps.py:55 apps.py:62 msgid "ID" msgstr "ID" -#: apps.py:56 +#: apps.py:57 msgid "Owner" msgstr "持有者" -#: apps.py:64 +#: apps.py:65 msgid "Type" msgstr "" -#: apps.py:66 +#: apps.py:67 msgid "Creation date" msgstr "" -#: apps.py:72 +#: apps.py:73 msgid "Expiration date" msgstr "" -#: apps.py:73 +#: apps.py:74 msgid "No expiration" msgstr "" -#: apps.py:75 +#: apps.py:76 msgid "Length" msgstr "" -#: apps.py:77 -#| msgid "Identifies" +#: apps.py:78 msgid "Identities" msgstr "" @@ -149,7 +149,6 @@ msgid "Import keys from keyservers" msgstr "从密钥服务器倒入密钥" #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -167,7 +166,6 @@ msgstr "" #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -178,7 +176,6 @@ msgstr "" #: views.py:57 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -197,9 +194,6 @@ msgstr "删除密钥" #: views.py:110 #, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." 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 72d975a4d3..63f745c84e 100644 --- a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po @@ -1,48 +1,47 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +53,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +84,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 6c24fe3ef9..8968e4b9a3 100644 --- a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 5368e901e2..33ba22e69a 100644 --- a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po @@ -1,48 +1,47 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +53,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +84,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po index 4803de00fe..9bd8852559 100644 --- a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 ce6695ea3a..4e00f386fc 100644 --- a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -9,41 +9,39 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-09-08 23:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "Kommentare" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "Datum" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "Benutzer" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "Kommentar" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "Kommentar erstellt" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Kommentar gelöscht" @@ -55,7 +53,7 @@ msgstr "Kommentar hinzufügen" msgid "Delete" msgstr "Löschen" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "Kommentare" @@ -86,7 +84,6 @@ msgstr "Kommentar zu Dokument %s hinzufügen" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Kommentar %s löschen?" 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 ecc759ee40..296319563b 100644 --- a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2013-11-20 11:56+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,22 +18,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 +#: apps.py:23 #, fuzzy #| msgid "Delete comments" msgid "Document comments" msgstr "Delete comments" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 #, fuzzy msgid "Comment" msgstr "Comments" @@ -60,7 +60,7 @@ msgstr "add comment" msgid "Delete" msgstr "delete" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "Comments" 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 11426c73b0..4948e50d45 100644 --- a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2015 @@ -9,41 +9,39 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "Comentarios de documento" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "Fecha" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "Usuario" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "Comentario" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "Comentario de documento creado" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Comentario de documento borrado" @@ -55,7 +53,7 @@ msgstr "Añadir comentario" msgid "Delete" msgstr "Borrar" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "Comentarios" @@ -86,7 +84,6 @@ msgstr "Añadir comentario al documento: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "¿Borrar comentario: %s?" 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 41d49eb6c1..895e47c853 100644 --- a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 02d3fe61f3..24a715a601 100644 --- a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 19072e14d2..e68087f9d7 100644 --- a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 7a98543f42..0265c1a058 100644 --- a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 bd396171fd..8d56b423b9 100644 --- a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 a3285d354a..8c0ed3ac38 100644 --- a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 bdb1d125e0..2509373bc3 100644 --- a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po @@ -1,48 +1,47 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +53,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +84,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 52e0b7eb2a..bbed049b0e 100644 --- a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %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 5dcb677854..6c6ff3d16a 100644 --- a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 9f6544e928..dadd6e659e 100644 --- a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po @@ -1,48 +1,47 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +53,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +84,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 51135a53f6..ad79d251b1 100644 --- a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po @@ -1,48 +1,48 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +54,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +85,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 369685ed51..ee6f768f89 100644 --- a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po @@ -1,48 +1,47 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +53,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +84,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 46f17dab4e..b896949594 100644 --- a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po index ec977d70c4..0724bbb034 100644 --- a/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po @@ -1,48 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:24 -#| msgid "Delete comments" +#: apps.py:23 msgid "Document comments" msgstr "" -#: apps.py:36 +#: apps.py:41 msgid "Date" msgstr "" -#: apps.py:38 models.py:27 +#: apps.py:43 models.py:27 msgid "User" msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored -#: apps.py:41 models.py:30 models.py:72 views.py:25 +#: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" msgstr "" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +52,7 @@ msgstr "" msgid "Delete" msgstr "" -#: links.py:21 models.py:73 permissions.py:7 +#: links.py:22 models.py:73 permissions.py:7 msgid "Comments" msgstr "" @@ -85,7 +83,6 @@ msgstr "" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 f73d32faf1..64e38fd18b 100644 --- a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,185 +9,182 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Indexes" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Deletes and creates from scratch all the document indexes." -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" "Causes this index to be visible and updated when document data changes." -msgstr "Causes this index to be visible and updated when document data changes." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." msgstr "Causes this node to be visible and updated when document data changes." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -196,105 +193,104 @@ msgid "Indexing" msgstr "Indexing" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Configure document indexes" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Create new document indexes" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Edit document indexes" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Delete document indexes" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "View document indexes" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "Rebuild document indexes" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "Index template node created successfully." - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "Index template node edited successfully" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "On large databases this operation may take some time to execute." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" +#~ msgid "Configure document indexes" +#~ msgstr "Configure document indexes" + +#~ msgid "Index template node created successfully." +#~ msgstr "Index template node created successfully." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -332,9 +328,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -345,9 +338,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -384,11 +379,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 3ad0c30344..1be57810fa 100644 --- a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,185 +9,180 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Индекси" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Изтриване и създаване от нулата на всички индекси за документа." -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Предизвиква този индекс да бъдат видим и актуализиран, когато данните в документа се променят." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Предизвиква този индекс да бъдат видим и актуализиран, когато данните в " +"документа се променят." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." msgstr "" -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -196,106 +191,96 @@ msgid "Indexing" msgstr "Индексиране" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "" - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "" -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" - #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -332,9 +317,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -345,9 +327,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -384,11 +368,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 472ae99d1d..4eefa6e451 100644 --- a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,185 +9,185 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Indeksi" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Briše i nanovo kreira indekse svih dokumenata." -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Uzrokuje da će ovaj indeks biti vidljiv i update-ovan kad se promjene podaci dokumenta." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Uzrokuje da će ovaj indeks biti vidljiv i update-ovan kad se promjene podaci " +"dokumenta." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Uzrokuje da će ovaj nod biti vidljiv i update-ovan kad se promjene podaci dokumenta." +msgstr "" +"Uzrokuje da će ovaj nod biti vidljiv i update-ovan kad se promjene podaci " +"dokumenta." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Označite ovu opciju da ovaj nod služi kao kontejner za dokumente a ne kao parent za buduće nodove." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Označite ovu opciju da ovaj nod služi kao kontejner za dokumente a ne kao " +"parent za buduće nodove." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -196,105 +196,104 @@ msgid "Indexing" msgstr "Indeksiranje" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Konfiguriši indekse dokumenata" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Kreiraj nove indekse dokumenata" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Izmjeni indekse dokumenata" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Obriši indekse dokumenata" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "Pregledaj indekse dokumenata" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr " Obnovi indekse dokumenata" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "Nod predložaka indeksa uspješno kreiran." - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "Nod predložaka indeksa uspješno izmjenjen." - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "Na velikim bazama podataka ove operacije mogu potrajati neko vrijeme." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" +#~ msgid "Configure document indexes" +#~ msgstr "Konfiguriši indekse dokumenata" + +#~ msgid "Index template node created successfully." +#~ msgstr "Nod predložaka indeksa uspješno kreiran." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Nod predložaka indeksa uspješno izmjenjen." #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -332,9 +331,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -345,9 +341,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -384,11 +382,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po index 0df28c1cf7..593ded1087 100644 --- a/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po @@ -1,192 +1,185 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "" -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." msgstr "" -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." msgstr "" -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -195,106 +188,96 @@ msgid "Indexing" msgstr "" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "" - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "" -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" - #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -331,9 +314,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -344,9 +324,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -383,11 +365,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 87d77b7710..203b0600f4 100644 --- a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -13,185 +13,190 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-09-08 23:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" msgstr "Keine" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "Dokumententypen" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "Dokumentenindices" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "Bezeichner" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "Abkürzung" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "Aktiviert" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "Elemente" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "Stufe" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "Dokument verknüpft" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "Knotenpunkt" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Indices" -#: links.py:25 -msgid "Index list" -msgstr "Indices" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "Index erstellen" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "Bearbeiten" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "Löschen" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "Baumvorlage" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Löscht und erstellt alle Dokumentenindices neu" -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "Indices wiederaufbauen" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "Neuer Unterknoten" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Fehler bei der Indexierung von Dokument %(document)s; Ausdruck: %(expression)s; %(exception)s" +msgstr "" +"Fehler bei der Indexierung von Dokument %(document)s; Ausdruck: " +"%(expression)s; %(exception)s" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "Interner Name um diesen Index zu identifizieren" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert werden." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert " +"werden." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "Index" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "Index-Instanzen" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-" +"Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/" +"builtins/)" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "Indexierungsausdruck" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert werden." +msgstr "" +"Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert " +"werden." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Wählen Sie diese Option, wenn Dokumente in diesem Knoten dargestellt werden sollen (und dieser Knoten nicht als Eltern-Knoten für weitere Kind-Knotenpunkte fungieren soll)." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Wählen Sie diese Option, wenn Dokumente in diesem Knoten dargestellt werden " +"sollen (und dieser Knoten nicht als Eltern-Knoten für weitere Kind-" +"Knotenpunkte fungieren soll)." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "Dokumente verknüpfen" -#: models.py:137 -#, python-format -msgid "<%s Root>" -msgstr "<%s Wurzelverzeichnis>" +#: models.py:139 +msgid "Root" +msgstr "Wurzel" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "Index Knotenvorlage" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "Index Knotenvorlagen" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "Index Knotenpunkt" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "Wert" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "Dokumente" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "Indexknotenpunkt" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "Indexknotenpunkte" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "Indexknotenpunkt" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "Indexknotenpunkte" @@ -200,105 +205,112 @@ msgid "Indexing" msgstr "Indizierung" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Dokumentenindices konfigurieren" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Dokumentenindices erstellen " -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Dokumentenindices bearbeiten" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Dokumentenindices löschen" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "Dokumentenindices anzeigen" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "Dokumentenindices neu aufbauen" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "Index %s löschen?" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "Index %s bearbeiten" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "Index %s löschen?" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "Baumvorlagen für Index %s" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "Verfügbare Dokumententypen" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "Verknüpfte Dokumententypen" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "Mit Index %s verknüpfte Dokumententypen" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "Knotenpunkt erfolgreich angelegt" +#: views.py:145 +#, python-format +msgid "Tree template nodes for index: %s" +msgstr "Baumvorlagen für Index %s" -#: views.py:170 -msgid "Create child node" +#: views.py:172 +#, fuzzy, python-format +#| msgid "Create child node" +msgid "Create child node of: %s" msgstr "Unterknotenpunkt erstellen" -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "Knotenpunkt erfolgreich bearbeitet" - -#: views.py:204 -#, python-format -msgid "Edit index template node: %s" -msgstr "Knotenpunkt %s bearbeiten" - -#: views.py:218 +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "Indexvorlagen-Knotenpunkt %s löschen?" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Edit index template node: %s" +msgid "Edit the index template node: %s?" +msgstr "Knotenpunkt %s bearbeiten" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "Inhalt von Index %s" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "Knotenpunkte der Indices, die Dokumente enthalten: %s" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." +msgstr "" +"Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "Alle Indices neu aufbauen?" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "Indexwiederaufbau erfolgreich eingereiht" -#: widgets.py:95 -msgid "Root" -msgstr "Wurzel" +#~ msgid "Index list" +#~ msgstr "Indices" + +#~ msgid "<%s Root>" +#~ msgstr "<%s Wurzelverzeichnis>" + +#~ msgid "Configure document indexes" +#~ msgstr "Dokumentenindices konfigurieren" + +#~ msgid "Index template node created successfully." +#~ msgstr "Knotenpunkt erfolgreich angelegt" + +#~ msgid "Index template node edited successfully" +#~ msgstr "Knotenpunkt erfolgreich bearbeitet" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -349,9 +361,11 @@ msgstr "Wurzel" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -388,11 +402,11 @@ msgstr "Wurzel" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 e696ff05e0..345c1b709d 100644 --- a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -22,93 +22,88 @@ msgstr "" msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 #, fuzzy msgid "Document types" msgstr "document types" -#: apps.py:44 +#: apps.py:48 #, fuzzy #| msgid "document indexes" msgid "Document indexing" msgstr "document indexes" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 #, fuzzy msgid "Enabled" msgstr "enabled" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 #, fuzzy msgid "Items" msgstr "items" -#: apps.py:110 +#: apps.py:139 #, fuzzy msgid "Level" msgstr "level" -#: apps.py:118 +#: apps.py:147 #, fuzzy msgid "Has document links?" msgstr "has document links?" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Indexes" -#: links.py:25 -#, fuzzy -msgid "Index list" -msgstr "index list" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 #, fuzzy msgid "Create index" msgstr "create index" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 #, fuzzy msgid "Delete" msgstr "delete" -#: links.py:53 +#: links.py:44 #, fuzzy msgid "Tree template" msgstr "tree template" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Deletes and creates from scratch all the document indexes." -#: links.py:66 +#: links.py:57 #, fuzzy msgid "Rebuild indexes" msgstr "rebuild indexes" -#: links.py:70 +#: links.py:60 #, fuzzy msgid "New child node" msgstr "new child node" -#: managers.py:51 +#: managers.py:56 #, fuzzy, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " @@ -116,48 +111,48 @@ msgid "" msgstr "" "Error updating document index, expression: %(expression)s; %(exception)s" -#: models.py:27 +#: models.py:29 #, fuzzy #| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "Internal name used to reference this index." -#: models.py:33 +#: models.py:35 msgid "Causes this index to be visible and updated when document data changes." msgstr "" "Causes this index to be visible and updated when document data changes." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 #, fuzzy msgid "Index" msgstr "Indexes" -#: models.py:99 +#: models.py:101 #, fuzzy msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 #, fuzzy msgid "Index instances" msgstr "index instance" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 #, fuzzy msgid "Indexing expression" msgstr "indexing expression" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." msgstr "Causes this node to be visible and updated when document data changes." -#: models.py:129 +#: models.py:131 msgid "" "Check this option to have this node act as a container for documents and not " "as a parent for further nodes." @@ -165,57 +160,56 @@ msgstr "" "Check this option to have this node act as a container for documents and not " "as a parent for further nodes." -#: models.py:132 +#: models.py:134 #, fuzzy msgid "Link documents" msgstr "link documents" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 #, fuzzy msgid "Index node template" msgstr "index template node" -#: models.py:143 +#: models.py:145 #, fuzzy msgid "Indexes node template" msgstr "indexes template nodes" -#: models.py:151 +#: models.py:153 #, fuzzy msgid "Index template node" msgstr "index template node" -#: models.py:154 +#: models.py:156 #, fuzzy msgid "Value" msgstr "value" -#: models.py:157 +#: models.py:159 #, fuzzy msgid "Documents" msgstr "documents" -#: models.py:192 +#: models.py:204 #, fuzzy msgid "Index node instance" msgstr "index instance" -#: models.py:193 +#: models.py:205 #, fuzzy msgid "Indexes node instances" msgstr "index instance" -#: models.py:206 +#: models.py:213 #, fuzzy msgid "Document index node instance" msgstr "index instance" -#: models.py:207 +#: models.py:214 #, fuzzy msgid "Document indexes node instances" msgstr "index instance" @@ -225,110 +219,112 @@ msgid "Indexing" msgstr "Indexing" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Configure document indexes" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Create new document indexes" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Edit document indexes" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Delete document indexes" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "View document indexes" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "Rebuild document indexes" -#: views.py:66 -#, fuzzy, python-format -msgid "Edit index: %s" -msgstr "edit index: %s" - -#: views.py:78 +#: views.py:51 #, fuzzy, python-format #| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "Delete document indexes" -#: views.py:98 +#: views.py:64 #, fuzzy, python-format -msgid "Tree template nodes for index: %s" -msgstr "tree template nodes for index: %s" +msgid "Edit index: %s" +msgstr "edit index: %s" -#: views.py:105 +#: views.py:81 #, fuzzy msgid "Available document types" msgstr "document types" -#: views.py:106 +#: views.py:83 #, fuzzy msgid "Document types linked" msgstr "document types" -#: views.py:133 +#: views.py:106 #, fuzzy, python-format msgid "Document types linked to index: %s" msgstr "document types for index: %s" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "Index template node created successfully." +#: views.py:145 +#, fuzzy, python-format +msgid "Tree template nodes for index: %s" +msgstr "tree template nodes for index: %s" -#: views.py:170 -#, fuzzy -msgid "Create child node" +#: views.py:172 +#, fuzzy, python-format +msgid "Create child node of: %s" msgstr "create child node" -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "Index template node edited successfully" - -#: views.py:204 -#, fuzzy, python-format -msgid "Edit index template node: %s" -msgstr "edit index template node: %s" - -#: views.py:218 +#: views.py:196 #, fuzzy, python-format msgid "Delete the index template node: %s?" msgstr "edit index template node: %s" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +msgid "Edit the index template node: %s?" +msgstr "edit index template node: %s" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, fuzzy, python-format msgid "Contents for index: %s" msgstr "contents for index: %s" -#: views.py:326 +#: views.py:331 #, fuzzy, python-format msgid "Indexes nodes containing document: %s" msgstr "indexes containing: %s" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "On large databases this operation may take some time to execute." -#: views.py:337 +#: views.py:342 #, fuzzy msgid "Rebuild all indexes?" msgstr "rebuild indexes" -#: views.py:346 +#: views.py:351 #, fuzzy msgid "Index rebuild queued successfully." msgstr "Index rebuild completed successfully." -#: widgets.py:95 -msgid "Root" -msgstr "" +#, fuzzy +#~ msgid "Index list" +#~ msgstr "index list" + +#~ msgid "Configure document indexes" +#~ msgstr "Configure document indexes" + +#~ msgid "Index template node created successfully." +#~ msgstr "Index template node created successfully." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." 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 5b798187c6..95ecf0eff0 100644 --- a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -10,185 +10,186 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" msgstr "Ninguno" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "Tipos de documento" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "Habilitado" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "Elementos" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "Nível" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "El documento tiene enlaces?" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "Nodo" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Índices" -#: links.py:25 -msgid "Index list" -msgstr "lista de indices" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "Crear índice" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "Editar" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "Borrar" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "árbol de plantilla" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Borra y crea desde cero todos los índices de documentos." -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "reconstruir índices" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "nuevo nodo secundario" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Error indexando documento: %(document)s; expresión: %(expression)s; %(exception)s" +msgstr "" +"Error indexando documento: %(document)s; expresión: %(expression)s; " +"%(exception)s" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Hace que este índice sea visible y actualizado cuando los datos de documentos cambien." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Hace que este índice sea visible y actualizado cuando los datos de " +"documentos cambien." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "índice" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "expresión de indexación" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Hace que este nodo sea visible y actualizado cuando los datos de los documentos son cambiados." +msgstr "" +"Hace que este nodo sea visible y actualizado cuando los datos de los " +"documentos son cambiados." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Marque esta opción para que el nodo actúe como un contenedor de documentos y no como un padre para otros nodos secundarios." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Marque esta opción para que el nodo actúe como un contenedor de documentos y " +"no como un padre para otros nodos secundarios." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "enlace de documentos" -#: models.py:137 -#, python-format -msgid "<%s Root>" -msgstr "<%s Raíz>" +#: models.py:139 +msgid "Root" +msgstr "raíz" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "nodo de plantilla de indice" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "nodos de plantillas de índices" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "nodo de plantilla de indice" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "Valor" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "Documentos" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "índice de nodo de instancia" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "nodos de instancias de indices" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -197,105 +198,113 @@ msgid "Indexing" msgstr "Indexación" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Configurar índices de documento" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Crear nuevos índices de documentos" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Editar los índices de documentos" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Eliminar los índices de documentos" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "Ver los índices de documentos" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "Generar índices de documentos" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "Editar índice: %s" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "nodos de la plantilla del árbol del índice: %s" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "Nodo de plantilla de índice creado con éxito." +#: views.py:145 +#, python-format +msgid "Tree template nodes for index: %s" +msgstr "nodos de la plantilla del árbol del índice: %s" -#: views.py:170 -msgid "Create child node" +#: views.py:172 +#, fuzzy, python-format +#| msgid "Create child node" +msgid "Create child node of: %s" msgstr "crear nodo hijo" -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "Nodo de la plantilla de índice editado con éxito" - -#: views.py:204 -#, python-format -msgid "Edit index template node: %s" -msgstr "editar nodo de la plantilla de índice: %s" - -#: views.py:218 +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Edit index template node: %s" +msgid "Edit the index template node: %s?" +msgstr "editar nodo de la plantilla de índice: %s" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "contenido del indice: %s" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "En bases de datos de gran tamaño esta operación puede tardar algún tiempo en ejecutarse." +msgstr "" +"En bases de datos de gran tamaño esta operación puede tardar algún tiempo en " +"ejecutarse." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "Reconstrucción de Índices en espera de forma exitosa." -#: widgets.py:95 -msgid "Root" -msgstr "raíz" +#~ msgid "Index list" +#~ msgstr "lista de indices" + +#~ msgid "<%s Root>" +#~ msgstr "<%s Raíz>" + +#~ msgid "Configure document indexes" +#~ msgstr "Configurar índices de documento" + +#~ msgid "Index template node created successfully." +#~ msgstr "Nodo de plantilla de índice creado con éxito." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Nodo de la plantilla de índice editado con éxito" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -346,9 +355,11 @@ msgstr "raíz" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -385,11 +396,11 @@ msgstr "raíz" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 56fa798898..53a17e6ce7 100644 --- a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po @@ -1,192 +1,190 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 msgid "None" msgstr "ناموجود" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "انواع سند" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "فعال شده" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "اقلام" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "سطح" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "آیا سند دارای پیوند است؟" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "گره" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "اندیس ها" -#: links.py:25 -msgid "Index list" -msgstr "لیست اندیس" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "ایجاد اندیس" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "ویرایش" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "حذف" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "الگوی درخت" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "کلیه ایندکس ها پاک شده و از اول بازسازی خواهند شد." -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "بازسازی اندیس ها" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "گره فرزند جدید" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "خطای ساختن ایندکس سند: %(document)s; , عبارت : %(expression)s; %(exception)s" +msgstr "" +"خطای ساختن ایندکس سند: %(document)s; , عبارت : %(expression)s; %(exception)s" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی شود." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی " +"شود." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "اندیس" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "عبارت اندیس گذاری" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی شود." +msgstr "" +"باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی " +"شود." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "بررسی شود که اینکه این گره ظرفی برای اسناد است و نه پدر گره های دیگر." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "اسناد پیوند" -#: models.py:137 -#, python-format -msgid "<%s Root>" -msgstr "<%s Root>" +#: models.py:139 +msgid "Root" +msgstr "ریشه" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "الگوی گره اندیس" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "الگوی گره اندیس ها" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "گره الگوی اندیس" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "مقدار" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "اسناد" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "موردی ازگره اندیس" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "موارد گره اندیس ها" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -195,105 +193,111 @@ msgid "Indexing" msgstr "ایندکس گذاری" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "پیکربندی ایندکس سند" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "ایجاد ایندکس های جدید سند" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "ویرایش ایندکس های سند" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "حذف ایندکس های سند" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "دیدن ایندکسهای سند" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "بازسازی ایندکسهای سند" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "ویرایش اندیس %s" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "گره الگوی درخت اندیس %s" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "ایجاد موفق گره الگوی ایندکس" +#: views.py:145 +#, python-format +msgid "Tree template nodes for index: %s" +msgstr "گره الگوی درخت اندیس %s" -#: views.py:170 -msgid "Create child node" +#: views.py:172 +#, fuzzy, python-format +#| msgid "Create child node" +msgid "Create child node of: %s" msgstr "ایجاد گره فرزند" -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "ویرایش موفق گره الگوی ایندکس." - -#: views.py:204 -#, python-format -msgid "Edit index template node: %s" -msgstr "ویرایش الگوی گره اندیس: %s" - -#: views.py:218 +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Edit index template node: %s" +msgid "Edit the index template node: %s?" +msgstr "ویرایش الگوی گره اندیس: %s" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "محتوا برای اندیس : %s" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "در پایگاه داده بزرگ این عملیات مدت زیادی بطول خواهد انجامید." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "ساخت مجدد اندیسها در صف قرار گرفت." -#: widgets.py:95 -msgid "Root" -msgstr "ریشه" +#~ msgid "Index list" +#~ msgstr "لیست اندیس" + +#~ msgid "<%s Root>" +#~ msgstr "<%s Root>" + +#~ msgid "Configure document indexes" +#~ msgstr "پیکربندی ایندکس سند" + +#~ msgid "Index template node created successfully." +#~ msgstr "ایجاد موفق گره الگوی ایندکس" + +#~ msgid "Index template node edited successfully" +#~ msgstr "ویرایش موفق گره الگوی ایندکس." #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -344,9 +348,11 @@ msgstr "ریشه" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -383,11 +389,11 @@ msgstr "ریشه" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 96dcb117b7..783a26cc80 100644 --- a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -10,185 +10,187 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 msgid "None" msgstr "Aucun" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "Types de document" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "Activé" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "Éléments" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "Niveau" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "Est lié à d'autres documents ?" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "Noeud" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Indexes" -#: links.py:25 -msgid "Index list" -msgstr "Liste des index" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "Créer un index" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "Modifier" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "Supprimer" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "Modèle d'arborescence" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." -msgstr "Supprimer et reconstruire les indexes des documents en partant de zéro." +msgstr "" +"Supprimer et reconstruire les indexes des documents en partant de zéro." -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "Reconstruire les index" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "Nouveau noeud enfant" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Erreur lors de l'indexation du document: %(document)s; expression: %(expression)s; %(exception)s" +msgstr "" +"Erreur lors de l'indexation du document: %(document)s; expression: " +"%(expression)s; %(exception)s" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Permet à cet index d'être à la fois visible et mis à jour quand le contenu d'un document est modifié." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Permet à cet index d'être à la fois visible et mis à jour quand le contenu " +"d'un document est modifié." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "Index" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "Expression d'indexation" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Permet à ce noeud d'être visible et mis à jour quand le contenu d'un document est modifié." +msgstr "" +"Permet à ce noeud d'être visible et mis à jour quand le contenu d'un " +"document est modifié." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Cochez cette option pour permettre à ce noeud d'être un conteneur de documents et pas seulement un noeud parent d'autres noeuds enfants." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Cochez cette option pour permettre à ce noeud d'être un conteneur de " +"documents et pas seulement un noeud parent d'autres noeuds enfants." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "Lier les documents" -#: models.py:137 -#, python-format -msgid "<%s Root>" -msgstr "<%s Root>" +#: models.py:139 +msgid "Root" +msgstr "Racine" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "Noeud de modèle d'index" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "Noeud de modèle d'index" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "Noeud de modèle d'index" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "Valeur" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "Documents" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "Noeud d'instance d'index" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "Noeud d'instances d'indexes" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -197,105 +199,113 @@ msgid "Indexing" msgstr "Indexation" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Configurer les indexes de documents" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Créer de nouveaux indexes de documents" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Modifier les indexes de documents" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Supprimer des indexes de documents" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "Afficher les indexes des documents" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "Reconstruire les indexes des documents" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "Modifier l'index: %s" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "Noeuds de modèles arborescentes pour l'index: %s" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "Noeud de modèle d'index créé avec succès." +#: views.py:145 +#, python-format +msgid "Tree template nodes for index: %s" +msgstr "Noeuds de modèles arborescentes pour l'index: %s" -#: views.py:170 -msgid "Create child node" +#: views.py:172 +#, fuzzy, python-format +#| msgid "Create child node" +msgid "Create child node of: %s" msgstr "Créer un noeud enfant" -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "Noeud de modèle d'index modifié avec succès." - -#: views.py:204 -#, python-format -msgid "Edit index template node: %s" -msgstr "Modifier le noeud de modèle d'index: %s" - -#: views.py:218 +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Edit index template node: %s" +msgid "Edit the index template node: %s?" +msgstr "Modifier le noeud de modèle d'index: %s" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "Contenu de l'index:%s" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "Sur de grosses bases de données, cette opération peut prendre un certain temps." +msgstr "" +"Sur de grosses bases de données, cette opération peut prendre un certain " +"temps." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "La ré-indexation en attente a été faite avec succès." -#: widgets.py:95 -msgid "Root" -msgstr "Racine" +#~ msgid "Index list" +#~ msgstr "Liste des index" + +#~ msgid "<%s Root>" +#~ msgstr "<%s Root>" + +#~ msgid "Configure document indexes" +#~ msgstr "Configurer les indexes de documents" + +#~ msgid "Index template node created successfully." +#~ msgstr "Noeud de modèle d'index créé avec succès." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Noeud de modèle d'index modifié avec succès." #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -346,9 +356,11 @@ msgstr "Racine" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -385,11 +397,11 @@ msgstr "Racine" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 63e8ef01de..c39738de06 100644 --- a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po @@ -1,192 +1,185 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "" -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." msgstr "" -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." msgstr "" -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -195,106 +188,96 @@ msgid "Indexing" msgstr "" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "" - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "" -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" - #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -331,9 +314,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -344,9 +324,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -383,11 +365,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 b38df34b61..d9499cb927 100644 --- a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po @@ -1,192 +1,185 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "" -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." msgstr "" -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." msgstr "" -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -195,106 +188,96 @@ msgid "Indexing" msgstr "" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "" - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "" -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" - #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -331,9 +314,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -344,9 +324,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -383,11 +365,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 8304badba2..c1d8384d1c 100644 --- a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -11,185 +11,186 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "Tipi di documento" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "Abilitato" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "Articoli" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "Livello" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "Il documento ha un collegamento?" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "Nodo" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Indici" -#: links.py:25 -msgid "Index list" -msgstr "Lista Indici" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "Crea indice" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "Modifica" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "Cancella" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "Template Principale" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Cancellazione e ricostruzione di tutti gli indici documento" -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "Ricostruisci indici" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "Novo nodo figlio" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Errore nell'ndicizzazione del documento: %(document)s; espressione: %(expression)s; %(exception)s" +msgstr "" +"Errore nell'ndicizzazione del documento: %(document)s; espressione: " +"%(expression)s; %(exception)s" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Fa sì che questo indice possa essere visibile e aggiornato quando i dati del documento cambiano." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Fa sì che questo indice possa essere visibile e aggiornato quando i dati del " +"documento cambiano." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "Indice" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "Espressione di indicizzazione" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Fa sì che questo nodo possa essere visibili e aggiornato quando i dati del documento cambiano." +msgstr "" +"Fa sì che questo nodo possa essere visibili e aggiornato quando i dati del " +"documento cambiano." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Selezionare questa opzione per questo specifico nodo quale contenitore per i documenti e non come un genitore per ulteriori nodi." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Selezionare questa opzione per questo specifico nodo quale contenitore per i " +"documenti e non come un genitore per ulteriori nodi." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "Documenti di collegamento" -#: models.py:137 -#, python-format -msgid "<%s Root>" -msgstr "" +#: models.py:139 +msgid "Root" +msgstr "Principale" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "Indice del nodo Template " -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "Indici dei nodi Template" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "Indice del nodo Template" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "Valore" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "Documenti" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "Istanza nodo Indice" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "Istanze nodo indici" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -198,105 +199,110 @@ msgid "Indexing" msgstr "Indicizzazione" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Configura gli indici dei documenti" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Creare nuovi indici documento" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Modifica gli indici dei documenti" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Eliminare gli indici dei documenti" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "Visualizza indici documento" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "Ricostruisci indici documento" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "Modifica indice: %s" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "Template principale per i nodi dell'indice: %s" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "Modello nodo indice creato con successo." +#: views.py:145 +#, python-format +msgid "Tree template nodes for index: %s" +msgstr "Template principale per i nodi dell'indice: %s" -#: views.py:170 -msgid "Create child node" +#: views.py:172 +#, fuzzy, python-format +#| msgid "Create child node" +msgid "Create child node of: %s" msgstr "Crea un nodo figlio" -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "Template nodo Indice modificato con successo" - -#: views.py:204 -#, python-format -msgid "Edit index template node: %s" -msgstr "Modfica il template dell nodo per l'indice: %s" - -#: views.py:218 +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Edit index template node: %s" +msgid "Edit the index template node: %s?" +msgstr "Modfica il template dell nodo per l'indice: %s" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "Contenuti per l'indice: %s" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di tempo." +msgstr "" +"Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di " +"tempo." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "Ricostruzione dell'indice messo in coda." -#: widgets.py:95 -msgid "Root" -msgstr "Principale" +#~ msgid "Index list" +#~ msgstr "Lista Indici" + +#~ msgid "Configure document indexes" +#~ msgstr "Configura gli indici dei documenti" + +#~ msgid "Index template node created successfully." +#~ msgstr "Modello nodo indice creato con successo." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Template nodo Indice modificato con successo" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -347,9 +353,11 @@ msgstr "Principale" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -386,11 +394,11 @@ msgstr "Principale" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 c0474b0d98..2a4fbd554c 100644 --- a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -9,185 +9,181 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Indexeringen" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "document indexeringen vernieuwen" -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Maakt deze index zichtbaar en 'up-to-date' wanneer document gegevens wijzigd." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Maakt deze index zichtbaar en 'up-to-date' wanneer document gegevens wijzigd." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Maakt deze node zichtbaar en 'up-to-date' wanneer document gegevens wijzigen" +msgstr "" +"Maakt deze node zichtbaar en 'up-to-date' wanneer document gegevens wijzigen" -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Selecteer deze optie, wanneer deze node alleen documenten dient te bevatten. " +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Selecteer deze optie, wanneer deze node alleen documenten dient te bevatten. " -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -196,105 +192,104 @@ msgid "Indexing" msgstr "Indexering bezig" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Document indexeringen configureren" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Aanmaken van nieuw document-indexeringen" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Wijzig document-indexeringen" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Verwijder document-indexeringen" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "Bekijk document-indexeringen" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "documenten opnieuw indexeren" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "sjabloon node index succesvol aangemaakt." - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "Sjabloon node index succesvol bewerkt" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "Voor een grote database kan deze operatie lang duren." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" +#~ msgid "Configure document indexes" +#~ msgstr "Document indexeringen configureren" + +#~ msgid "Index template node created successfully." +#~ msgstr "sjabloon node index succesvol aangemaakt." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Sjabloon node index succesvol bewerkt" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -332,9 +327,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -345,9 +337,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -384,11 +378,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 f3a3ca8974..b3a9f97491 100644 --- a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012,2015 @@ -9,185 +9,183 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "Włączony" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Indeksy" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "Tworzenie indeksu" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "Edytuj" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "Usunąć" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Usuwa i tworzy od podstaw wszystkie indeksy dokumentów." -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Powoduje że ten wskaźnik będzie widoczny i zaktualizowany podczas zmiany danych dokumentów." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Powoduje że ten wskaźnik będzie widoczny i zaktualizowany podczas zmiany " +"danych dokumentów." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "Indeks" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." msgstr "Causes this node to be visible and updated when document data changes." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "Wartość" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "Dokumenty" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -196,105 +194,105 @@ msgid "Indexing" msgstr "Indeksowanie" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Skonfiguruj indeksy dokumentów" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Tworzenie nowych indeksów dokumentów" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Edytuj indeksy dokumentów" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Usuń indeksy dokumentów" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "Zobacz indeksy dokumentów" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "Odbuduj indeksy dokumentów" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "Index template node created successfully." - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "Index template node edited successfully" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, fuzzy, python-format +#| msgid "Create index" +msgid "Create child node of: %s" +msgstr "Tworzenie indeksu" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "Na dużych bazach danych operacja może chwilę potrwać." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" +#~ msgid "Configure document indexes" +#~ msgstr "Skonfiguruj indeksy dokumentów" + +#~ msgid "Index template node created successfully." +#~ msgstr "Index template node created successfully." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -332,9 +330,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -345,9 +340,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -384,11 +381,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 336d4c3a6d..1ec0e412f4 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: # Translators: # Renata Oliveira , 2011 @@ -10,185 +10,184 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Índices" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Exclui e cria a partir do zero todos os índices de documentos." -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Faz com que este índice seja visível e atualizado quando os dados do documento forem alterados." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Faz com que este índice seja visível e atualizado quando os dados do " +"documento forem alterados." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Faz com que este nó seja visível e atualizado quando os dados do documento forem alterados." +msgstr "" +"Faz com que este nó seja visível e atualizado quando os dados do documento " +"forem alterados." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Escolha esta opção para que este nó atue como contentor para documentos e não como pai de outros nós." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Escolha esta opção para que este nó atue como contentor para documentos e " +"não como pai de outros nós." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -197,105 +196,104 @@ msgid "Indexing" msgstr "Indexação" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Configurar índices de documento" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Criar novos índices de documento" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Editar índices de documento" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Eliminar índices de documento" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "Ver índices de documento" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "Reconstruir índices de documento" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "Nó de modelo de índice criado com sucesso." - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "nó de modelo de índice editado com sucesso" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "Esta operação pode levar algum tempo em bases de dados grandes." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" +#~ msgid "Configure document indexes" +#~ msgstr "Configurar índices de documento" + +#~ msgid "Index template node created successfully." +#~ msgstr "Nó de modelo de índice criado com sucesso." + +#~ msgid "Index template node edited successfully" +#~ msgstr "nó de modelo de índice editado com sucesso" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -333,9 +331,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -346,9 +341,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -385,11 +382,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 6fcb958003..909d7700da 100644 --- a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Renata Oliveira , 2011 @@ -10,185 +10,186 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "Tipos de Documentos" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "habilitado" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "itens" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "Nível" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "Tem links de documentos?" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "Nó" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Indices" -#: links.py:25 -msgid "Index list" -msgstr "Lista Index" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "Criar Index" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "Editar" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "Excluir" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "Template Árvore" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Exclui e criar a partir do zero todos os índices de documento." -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "Reconstruir índices de documento" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "Novo node filho" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Error indexing document: %(document)s; expression: %(expression)s; %(exception)s" +msgstr "" +"Error indexing document: %(document)s; expression: %(expression)s; " +"%(exception)s" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Faz com que este índice seja visível, e atualizado quando alterações de dados de documentos." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Faz com que este índice seja visível, e atualizado quando alterações de " +"dados de documentos." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "Indice" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "Indexando expressão" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Faz com que este nó para ser quando alterações de dados do documento visível e atualizado." +msgstr "" +"Faz com que este nó para ser quando alterações de dados do documento visível " +"e atualizado." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Marque esta opção para que este nó ato como um contêiner para documentos e não como um pai para mais nós." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Marque esta opção para que este nó ato como um contêiner para documentos e " +"não como um pai para mais nós." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "Link de documentos" -#: models.py:137 -#, python-format -msgid "<%s Root>" -msgstr "" +#: models.py:139 +msgid "Root" +msgstr "Raiz" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "Índice Template de nó" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "Indices Template de Nó" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "Indice Template de nó" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "Valor" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "Documento" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "Índice instância de nó" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "Índices instâncias de nó " -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -197,105 +198,109 @@ msgid "Indexing" msgstr "Indexando" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Configurar documento indexado" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "riar novo documento indexado" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Editar documento indexado" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Excluir documento indexeado" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "Ver índices de documento" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "Reconstruir índices de documento" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "Editar Indice: %s" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "Árvore nó modelo para o índice: %s" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "Modelo de nó de indice criado com sucesso." +#: views.py:145 +#, python-format +msgid "Tree template nodes for index: %s" +msgstr "Árvore nó modelo para o índice: %s" -#: views.py:170 -msgid "Create child node" +#: views.py:172 +#, fuzzy, python-format +#| msgid "Create child node" +msgid "Create child node of: %s" msgstr "Criar nó filho" -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "Modelo de nó de indice criado com sucesso." - -#: views.py:204 -#, python-format -msgid "Edit index template node: %s" -msgstr "Editar template de nó indice: %s" - -#: views.py:218 +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Edit index template node: %s" +msgid "Edit the index template node: %s?" +msgstr "Editar template de nó indice: %s" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "Conteúdo para Indice? %s" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "Em grandes bases de dados esta operação pode levar algum tempo para executar." +msgstr "" +"Em grandes bases de dados esta operação pode levar algum tempo para executar." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "Sucesso do Rebuild da fila de indice." -#: widgets.py:95 -msgid "Root" -msgstr "Raiz" +#~ msgid "Index list" +#~ msgstr "Lista Index" + +#~ msgid "Configure document indexes" +#~ msgstr "Configurar documento indexado" + +#~ msgid "Index template node created successfully." +#~ msgstr "Modelo de nó de indice criado com sucesso." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Modelo de nó de indice criado com sucesso." #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -346,9 +351,11 @@ msgstr "Raiz" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -385,11 +392,11 @@ msgstr "Raiz" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 d8c73e2c1d..33c8999815 100644 --- a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,185 +9,185 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Indexuri" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Șterge și creează de la zero toate indexurile de documente." -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Cauză pentru acest index să fie vizibil și actualizat când documentul suferă schimbări." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Cauză pentru acest index să fie vizibil și actualizat când documentul suferă " +"schimbări." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Cauză pentru ca acest nod să fie vizibil și actualizat atunci când datele documentului se modifică." +msgstr "" +"Cauză pentru ca acest nod să fie vizibil și actualizat atunci când datele " +"documentului se modifică." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Bifați această opțiune pentru a avea acest nod ca un container pentru documente și nu ca un părinte pentru nodurile suplimentare." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Bifați această opțiune pentru a avea acest nod ca un container pentru " +"documente și nu ca un părinte pentru nodurile suplimentare." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -196,105 +196,105 @@ msgid "Indexing" msgstr "Indexare" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Configurați un index de documente" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Creați un nou index de documente" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Editați indexul de documente" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Ștergeți indexul de documente" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "Vezi indexul de documente" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "Reconstruire index documente" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "Nodul șablon index creat cu succes." - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "Nod șablon index a fost editat cu succes" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "Pe baze de date mari, această operație poate dura ceva timp pentru a executa." +msgstr "" +"Pe baze de date mari, această operație poate dura ceva timp pentru a executa." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" +#~ msgid "Configure document indexes" +#~ msgstr "Configurați un index de documente" + +#~ msgid "Index template node created successfully." +#~ msgstr "Nodul șablon index creat cu succes." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Nod șablon index a fost editat cu succes" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -332,9 +332,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -345,9 +342,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -384,11 +383,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 07bd408cdf..108d7f0433 100644 --- a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po @@ -1,192 +1,190 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "Индексы" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "Удаляет и создается с нуля, все индексы документа." -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Этот индекс должен быть видимым и обновляться при изменении данных документа." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Этот индекс должен быть видимым и обновляться при изменении данных документа." -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Этот узел должен быть видимым и обновляются при изменении данных документа." +msgstr "" +"Этот узел должен быть видимым и обновляются при изменении данных документа." -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Этот узел будет контейнером для документов и не будет иметь дочерних узлов." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Этот узел будет контейнером для документов и не будет иметь дочерних узлов." -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -195,105 +193,106 @@ msgid "Indexing" msgstr "Индексирование" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "Настройка индексов документа" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "Создайте новый индекс документов" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "Редактирование индексов документов" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "Удалить индексы документов" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "Просмотр индексов документа" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "Восстановление индексов документа" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "узел шаблона индексирования создан" - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "узел шаблона индексирования изменён" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "В больших базах данных эта операция может занять некоторое время для выполнения." +msgstr "" +"В больших базах данных эта операция может занять некоторое время для " +"выполнения." -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" +#~ msgid "Configure document indexes" +#~ msgstr "Настройка индексов документа" + +#~ msgid "Index template node created successfully." +#~ msgstr "узел шаблона индексирования создан" + +#~ msgid "Index template node edited successfully" +#~ msgstr "узел шаблона индексирования изменён" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -331,9 +330,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -344,9 +340,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -383,11 +381,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 d4de773a82..22829cb27b 100644 --- a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po @@ -1,192 +1,186 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "" -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." msgstr "" -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." msgstr "" -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -195,106 +189,96 @@ msgid "Indexing" msgstr "" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "" - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "" -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" - #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -331,9 +315,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -344,9 +325,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -383,11 +366,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 52337f30c2..c61a835c0a 100644 --- a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po @@ -1,192 +1,185 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "" -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." msgstr "" -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." msgstr "" -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -195,106 +188,96 @@ msgid "Indexing" msgstr "" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "" - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "" -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" - #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -331,9 +314,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -344,9 +324,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -383,11 +365,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po index 1fc473869c..8ff75d6bd1 100644 --- a/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,185 +9,178 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 msgid "None" msgstr "" -#: admin.py:26 apps.py:105 links.py:57 models.py:39 +#: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" -#: apps.py:44 -#| msgid "document indexes" +#: apps.py:48 msgid "Document indexing" msgstr "" -#: apps.py:91 models.py:23 +#: apps.py:120 models.py:25 msgid "Label" msgstr "" -#: apps.py:92 models.py:28 +#: apps.py:121 models.py:30 msgid "Slug" msgstr "" -#: apps.py:94 apps.py:114 models.py:36 models.py:124 +#: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" msgstr "" -#: apps.py:99 apps.py:129 apps.py:142 +#: apps.py:128 apps.py:158 apps.py:171 msgid "Items" msgstr "" -#: apps.py:110 +#: apps.py:139 msgid "Level" msgstr "" -#: apps.py:118 +#: apps.py:147 msgid "Has document links?" msgstr "" -#: apps.py:125 apps.py:136 +#: apps.py:154 apps.py:165 msgid "Node" msgstr "" -#: links.py:21 links.py:29 links.py:33 links.py:36 models.py:81 views.py:53 +#: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" msgstr "索引" -#: links.py:25 -msgid "Index list" -msgstr "" - -#: links.py:40 views.py:39 +#: links.py:31 views.py:36 msgid "Create index" msgstr "" -#: links.py:44 links.py:75 +#: links.py:35 links.py:64 msgid "Edit" msgstr "" -#: links.py:49 links.py:82 +#: links.py:40 links.py:68 msgid "Delete" msgstr "" -#: links.py:53 +#: links.py:44 msgid "Tree template" msgstr "" -#: links.py:63 +#: links.py:54 msgid "Deletes and creates from scratch all the document indexes." msgstr "从所有的文档索引中删除并创建。" -#: links.py:66 +#: links.py:57 msgid "Rebuild indexes" msgstr "" -#: links.py:70 +#: links.py:60 msgid "New child node" msgstr "" -#: managers.py:51 +#: managers.py:56 #, python-format msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" msgstr "" -#: models.py:27 -#| msgid "Internal name used to reference this index." +#: models.py:29 msgid "This values will be used by other apps to reference this index." msgstr "" -#: models.py:33 -msgid "" -"Causes this index to be visible and updated when document data changes." +#: models.py:35 +msgid "Causes this index to be visible and updated when document data changes." msgstr "当文档数据变化时,将导致索引被更新和可见。" -#: models.py:80 models.py:107 +#: models.py:82 models.py:109 msgid "Index" msgstr "" -#: models.py:99 +#: models.py:101 msgid "Index instance" msgstr "index instance" -#: models.py:100 +#: models.py:102 msgid "Index instances" msgstr "" -#: models.py:112 +#: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:116 +#: models.py:118 msgid "Indexing expression" msgstr "" -#: models.py:121 +#: models.py:123 msgid "Causes this node to be visible and updated when document data changes." msgstr "当文档数据变化时,导致节点被更新和可见。" -#: models.py:129 +#: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "检查当前节点是否为文档容器,而不是作为别处节点的父节点。" -#: models.py:132 +#: models.py:134 msgid "Link documents" msgstr "" -#: models.py:137 -#, python-format -msgid "<%s Root>" +#: models.py:139 +msgid "Root" msgstr "" -#: models.py:142 +#: models.py:144 msgid "Index node template" msgstr "" -#: models.py:143 +#: models.py:145 msgid "Indexes node template" msgstr "" -#: models.py:151 +#: models.py:153 msgid "Index template node" msgstr "" -#: models.py:154 +#: models.py:156 msgid "Value" msgstr "" -#: models.py:157 +#: models.py:159 msgid "Documents" msgstr "" -#: models.py:192 +#: models.py:204 msgid "Index node instance" msgstr "" -#: models.py:193 +#: models.py:205 msgid "Indexes node instances" msgstr "" -#: models.py:206 +#: models.py:213 msgid "Document index node instance" msgstr "" -#: models.py:207 +#: models.py:214 msgid "Document indexes node instances" msgstr "" @@ -196,105 +189,104 @@ msgid "Indexing" msgstr "索引" #: permissions.py:10 -msgid "Configure document indexes" -msgstr "配置文档索引" - -#: permissions.py:13 msgid "Create new document indexes" msgstr "新建文档索引" -#: permissions.py:16 +#: permissions.py:13 msgid "Edit document indexes" msgstr "编辑文档索引" -#: permissions.py:19 +#: permissions.py:16 msgid "Delete document indexes" msgstr "删除文档索引" -#: permissions.py:22 +#: permissions.py:19 msgid "View document indexes" msgstr "查看文档索引" -#: permissions.py:25 +#: permissions.py:22 msgid "Rebuild document indexes" msgstr "重建文档索引" -#: views.py:66 +#: views.py:51 +#, python-format +msgid "Delete the index: %s?" +msgstr "" + +#: views.py:64 #, python-format msgid "Edit index: %s" msgstr "" -#: views.py:78 -#, python-format -#| msgid "Delete document indexes" -msgid "Delete the index: %s?" -msgstr "" - -#: views.py:98 -#, python-format -msgid "Tree template nodes for index: %s" -msgstr "" - -#: views.py:105 +#: views.py:81 msgid "Available document types" msgstr "" -#: views.py:106 +#: views.py:83 msgid "Document types linked" msgstr "" -#: views.py:133 +#: views.py:106 #, python-format msgid "Document types linked to index: %s" msgstr "" -#: views.py:156 -msgid "Index template node created successfully." -msgstr "索引模版节点创建成功" - -#: views.py:170 -msgid "Create child node" -msgstr "" - -#: views.py:191 -msgid "Index template node edited successfully" -msgstr "索引模版节点编辑成功" - -#: views.py:204 +#: views.py:145 #, python-format -msgid "Edit index template node: %s" +msgid "Tree template nodes for index: %s" msgstr "" -#: views.py:218 +#: views.py:172 +#, python-format +msgid "Create child node of: %s" +msgstr "" + +#: views.py:196 #, python-format msgid "Delete the index template node: %s?" msgstr "" -#: views.py:285 +#: views.py:218 +#, fuzzy, python-format +#| msgid "Are you sure you with to delete the index template node: %s?" +msgid "Edit the index template node: %s?" +msgstr "Are you sure you with to delete the index template node: %s?" + +#: views.py:286 +#, python-format +msgid "Navigation: %s" +msgstr "" + +#: views.py:291 #, python-format msgid "Contents for index: %s" msgstr "" -#: views.py:326 +#: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" msgstr "" -#: views.py:336 +#: views.py:341 msgid "On large databases this operation may take some time to execute." msgstr "在大数据库中,此操作将比较耗时。" -#: views.py:337 +#: views.py:342 msgid "Rebuild all indexes?" msgstr "" -#: views.py:346 +#: views.py:351 msgid "Index rebuild queued successfully." msgstr "" -#: widgets.py:95 -msgid "Root" -msgstr "" +#~ msgid "Configure document indexes" +#~ msgstr "配置文档索引" + +#~ msgid "Index template node created successfully." +#~ msgstr "索引模版节点创建成功" + +#~ msgid "Index template node edited successfully" +#~ msgstr "索引模版节点编辑成功" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -332,9 +324,6 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" -#~ msgid "Are you sure you with to delete the index template node: %s?" -#~ msgstr "Are you sure you with to delete the index template node: %s?" - #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -345,9 +334,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -384,11 +375,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 5c377280b0..abd3997b0a 100644 --- a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Document signatures" @@ -27,19 +29,19 @@ msgstr "Document signatures" msgid "Signature file" msgstr "Signature file" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" 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 132fdd3fcd..f9bd39e1af 100644 --- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Сигнатури на документа" @@ -27,19 +28,19 @@ msgstr "Сигнатури на документа" msgid "Signature file" msgstr "Файл със сигнатура" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" 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 56b9d165cf..92169603bf 100644 --- a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Potpisi dokumenta" @@ -27,19 +29,19 @@ msgstr "Potpisi dokumenta" msgid "Signature file" msgstr "Datoteka potpisa" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" diff --git a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po index 9c33d409c0..d910961399 100644 --- a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "" @@ -26,19 +27,19 @@ msgstr "" msgid "Signature file" msgstr "" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" 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 29b638dfc6..0eb0de781a 100644 --- a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -13,17 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-09-08 23:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Dokumentenunterschriften" @@ -31,19 +32,19 @@ msgstr "Dokumentenunterschriften" msgid "Signature file" msgstr "Unterschriftsdatei" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "Unterschrift löschen" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "Unterschrift herunterladen" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "Unterschrift hochladen" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "Unterschriften" 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 6553f62bee..b5b1bf8c76 100644 --- a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Document signatures" @@ -26,22 +26,22 @@ msgstr "Document signatures" msgid "Signature file" msgstr "Signature file" -#: links.py:31 +#: links.py:39 #, fuzzy msgid "Delete signature" msgstr "download signature" -#: links.py:35 +#: links.py:43 #, fuzzy msgid "Download signature" msgstr "download signature" -#: links.py:41 +#: links.py:49 #, fuzzy msgid "Upload signature" msgstr "upload signature" -#: links.py:45 +#: links.py:54 #, fuzzy msgid "Signatures" msgstr "signatures" diff --git a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po index 5abb0eb1bb..b2381b898b 100644 --- a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-24 19:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Firmas de documentos" @@ -30,19 +31,19 @@ msgstr "Firmas de documentos" msgid "Signature file" msgstr "Archivo de firma" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "Borrar firma" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "Descargar firma" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "Subir firma" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "Firma" 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 bd2aa103d8..72ab0ef01d 100644 --- a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "امضاهای سند" @@ -26,19 +27,19 @@ msgstr "امضاهای سند" msgid "Signature file" msgstr "فایل امضا" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "حذف امضا" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "دانلود امضا" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "آپلود امضا" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "امضاها" 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 e1c958f3c3..14d1566842 100644 --- a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Signatures du document" @@ -27,19 +28,19 @@ msgstr "Signatures du document" msgid "Signature file" msgstr "Fichier de signature" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "Supprimer la signature" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "Télécharger une signature" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "Transférer une signature" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "Signatures" diff --git a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po index 47ff6fe557..fff9abf61b 100644 --- a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "" @@ -26,19 +27,19 @@ msgstr "" msgid "Signature file" msgstr "" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" 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 530ae6af24..0ba019509e 100644 --- a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "" @@ -26,19 +27,19 @@ msgstr "" msgid "Signature file" msgstr "" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" 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 8eb8a75313..228520be66 100644 --- a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Firme documento" @@ -28,19 +29,19 @@ msgstr "Firme documento" msgid "Signature file" msgstr "File della firma" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "Elimina firma" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "Scarica firma" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "Carica firma" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "Firme" 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 4d37487373..1b627100f8 100644 --- a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "" @@ -26,19 +27,19 @@ msgstr "" msgid "Signature file" msgstr "" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" 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 07a82bb213..3557310afb 100644 --- a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Document signatures" @@ -27,19 +29,19 @@ msgstr "Document signatures" msgid "Signature file" msgstr "Signature file" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" 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 b13a7313b3..5c50277240 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: # Translators: # Vítor Figueiró , 2012 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Assinaturas do documento" @@ -27,19 +28,19 @@ msgstr "Assinaturas do documento" msgid "Signature file" msgstr "Ficheiro de assinatura" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" 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 c3e536a310..104404dd39 100644 --- a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Rogerio Falcone , 2015 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Assinaturas de documentos" @@ -27,19 +28,19 @@ msgstr "Assinaturas de documentos" msgid "Signature file" msgstr "Arquivo de assinatura" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "Excluir assinatura" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "download do assinatura" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "upload do assinatura" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "assinaturas" 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 df7cde2bfa..4551f24578 100644 --- a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Document de semnături" @@ -27,19 +29,19 @@ msgstr "Document de semnături" msgid "Signature file" msgstr "Fisier semnătura" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" 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 306025d547..53f09c46a3 100644 --- a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Sergey Glita , 2012 @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Подписи документа" @@ -27,19 +30,19 @@ msgstr "Подписи документа" msgid "Signature file" msgstr "Файл подписи" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" 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 c92966da7e..9fbe08d516 100644 --- a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "" @@ -26,19 +28,19 @@ msgstr "" msgid "Signature file" msgstr "" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" 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 b03da32b0d..3012b4cd01 100644 --- a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Chữ kí tài liệu" @@ -27,19 +28,19 @@ msgstr "Chữ kí tài liệu" msgid "Signature file" msgstr "File lưu chữ kí" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" diff --git a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po index cfba71733a..579c8a5083 100644 --- a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 22:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:62 permissions.py:8 settings.py:7 +#: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "文档签名" @@ -27,19 +28,19 @@ msgstr "文档签名" msgid "Signature file" msgstr "签名文件" -#: links.py:31 +#: links.py:39 msgid "Delete signature" msgstr "" -#: links.py:35 +#: links.py:43 msgid "Download signature" msgstr "" -#: links.py:41 +#: links.py:49 msgid "Upload signature" msgstr "" -#: links.py:45 +#: links.py:54 msgid "Signatures" msgstr "" 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 061b9ba7d9..064fd8a8c2 100644 --- a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po @@ -1,111 +1,113 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" 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 1e9f4f546f..b8206a4979 100644 --- a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po @@ -1,111 +1,112 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" 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 4ac64da6ab..9a7d1c8f46 100644 --- a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po @@ -1,111 +1,113 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" diff --git a/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po index 90e16c4dcd..5a1a42584f 100644 --- a/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po @@ -1,111 +1,112 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" 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 5cfad45721..679ebf0129 100644 --- a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po @@ -1,111 +1,112 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-09-24 23:13+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "Status" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "Initialstatus" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "Keiner" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "Aktueller Status" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "Benutzer" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "Letzter Übergang" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "Datum und Zeit" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "Fertigstellung" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "Übergang" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "Kommentar" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "Initialstatus" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "Herkunftsstatus" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "Zielstatus" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "Workflows" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "Workflow erstellen" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "Löschen" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "Dokumententypen" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "Bearbeiten" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "Status erstellen" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "Status" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "Übergang erstellen" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "Übergänge" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "Detail" @@ -121,7 +122,9 @@ msgstr "Workflow" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein Status kann initial sein." +msgstr "" +"Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein " +"Status kann initial sein." #: models.py:73 msgid "Initial" @@ -131,7 +134,9 @@ msgstr "Initial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der Fertigstellung in Bezug auf den Workflow angibt." +msgstr "" +"Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der " +"Fertigstellung in Bezug auf den Workflow angibt." #: models.py:92 msgid "Workflow state" 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 d54a922364..337799916b 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,95 +17,95 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" diff --git a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po index b5d270f62e..e295e7532c 100644 --- a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po @@ -1,112 +1,113 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "Estado inicial" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "Ninguno" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "Estado actual" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "Usuario" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "Última transición" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "Transición" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "Comentario" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "¿Es el estado inicial?" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "Estado origen" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "Estado destino" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "Flujos de trabajo" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "Borrar" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "Tipos de documentos" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "Editar" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "Crear estado" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "Estados" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "Crear transición" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "Transiciones" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "Detalle" @@ -122,7 +123,9 @@ msgstr "Flujo de trabajo" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Seleccione si este va a ser el estado con el que desea que el flujo de trabajo comience. Sólo un estado puede ser el estado inicial." +msgstr "" +"Seleccione si este va a ser el estado con el que desea que el flujo de " +"trabajo comience. Sólo un estado puede ser el estado inicial." #: models.py:73 msgid "Initial" diff --git a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po index 96fc7d2e43..0cd456f28f 100644 --- a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po @@ -1,112 +1,113 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "وضعیت اولیه" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "هیچ" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "وضعیت فعلی" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "کاربر" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "آخرین تغییر وضعیت" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "تاریخ و زمان" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "تغییر وضعیت" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "شرح" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "آیا در وضعیت اولیه است؟" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "وضعیت شروع" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "وضعیت نهایی" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "گردشکار" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "حذف" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "انواع سند" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "ویرایش" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "وضغیت ایجاد" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "وضعیت ها" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "تغییر وضعیت به ایجاد" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "تغییر وضعیت ها" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "شرح" @@ -122,7 +123,9 @@ msgstr "گردشکار" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "در صورتیکه این وضعیت شروع گردشکار باشد این وضعیت را انتخاب کنید. وضعیت فقط میتواند وضعیت اولیه باشد." +msgstr "" +"در صورتیکه این وضعیت شروع گردشکار باشد این وضعیت را انتخاب کنید. وضعیت فقط " +"میتواند وضعیت اولیه باشد." #: models.py:73 msgid "Initial" diff --git a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po index c4be0962b2..ad73660716 100644 --- a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po @@ -1,112 +1,113 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe kryskool , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "État initial" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "Aucun" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "État actuel" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "Utilisateur" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "Dernière transition" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "Date et heure" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "Transition" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "Commentaire" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "Est ce l'état initial?" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "État d'origine" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "État de destination" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "Flux de travail" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "Supprimer" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "Types de document" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "Modifier" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "Créer un état" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "États" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "Créer une transition" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "Transitions" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "Détail" @@ -122,7 +123,9 @@ msgstr "Flux de travail" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Sélectionnez si ceci sera l'état avec lequel vous voulez que le flux de travail pour démarrer. Un seul état peut être à l'état initial." +msgstr "" +"Sélectionnez si ceci sera l'état avec lequel vous voulez que le flux de " +"travail pour démarrer. Un seul état peut être à l'état initial." #: models.py:73 msgid "Initial" diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po index 2680421fc9..66ef0d8963 100644 --- a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po @@ -1,111 +1,112 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" diff --git a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po index f5cdc1739e..d3dc3b4a6c 100644 --- a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po @@ -1,111 +1,112 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" diff --git a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po index cf09cb5b17..4e3b3a1d6e 100644 --- a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po @@ -1,111 +1,112 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" 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 a16fe56252..6616cac4ce 100644 --- a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po @@ -1,111 +1,112 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" 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 a5bbfb4c9f..4e5eb53497 100644 --- a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po @@ -1,112 +1,114 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "Stan początkowy" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "Brak" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "Aktualny stan" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "Użytkownik" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "Data i godzina" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "Komentarz" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "Czy jest stan początkowy?" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "Usuń" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "Typy dokumentu" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "Edytuj" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "Utwórz stan" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "Stany" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "Szczegół" 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 d8863b8f50..b23df6fb6d 100644 --- a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po @@ -1,111 +1,112 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" 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 a8ddc4c4ef..f3e5591c38 100644 --- a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po @@ -1,112 +1,113 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "Estado Inicial" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "Nenhum" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "Estado corrente" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "Usuário" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "Última transação" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "data e hora" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "Transações" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "Comentário" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "é estado inicial?" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "Estado Original" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "Workflows" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "Excluir" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "Tipos de Documentos" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "Editar" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "Criar estado" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "estado" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "Criar Transições" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "Transações" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "Detalhes" @@ -122,7 +123,9 @@ msgstr "Workflow" 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 para começar em. Apenas um Estado pode ser o estado inicial." +msgstr "" +"Selecione se este será o estado com o qual você deseja que o fluxo de " +"trabalho para começar em. Apenas um Estado pode ser o estado inicial." #: models.py:73 msgid "Initial" 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 cbb3602486..8dba452a7b 100644 --- a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po @@ -1,111 +1,113 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:43-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-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" 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 5a8e681d9d..cd91190d4d 100644 --- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po @@ -1,111 +1,114 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" 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 3dd84cd20e..241a60c252 100644 --- a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po @@ -1,111 +1,113 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" 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 00c861c9cd..e03a54ee92 100644 --- a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po @@ -1,111 +1,112 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" diff --git a/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po index 127d451957..6793409dd8 100644 --- a/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po @@ -1,111 +1,112 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:25-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:34 +#: apps.py:31 msgid "Document states" msgstr "" -#: apps.py:40 +#: apps.py:47 msgid "Initial state" msgstr "" -#: apps.py:41 apps.py:51 apps.py:61 apps.py:67 +#: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" msgstr "" -#: apps.py:45 +#: apps.py:52 msgid "Current state" msgstr "" -#: apps.py:49 apps.py:76 models.py:189 +#: apps.py:56 apps.py:83 models.py:189 msgid "User" msgstr "" -#: apps.py:55 +#: apps.py:62 msgid "Last transition" msgstr "" -#: apps.py:59 apps.py:72 +#: apps.py:66 apps.py:79 msgid "Date and time" msgstr "" -#: apps.py:65 apps.py:92 models.py:79 +#: apps.py:72 apps.py:99 models.py:79 msgid "Completion" msgstr "" -#: apps.py:79 forms.py:39 links.py:77 models.py:187 +#: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" msgstr "" -#: apps.py:83 forms.py:41 models.py:190 +#: apps.py:90 forms.py:41 models.py:190 msgid "Comment" msgstr "" -#: apps.py:88 +#: apps.py:95 msgid "Is initial state?" msgstr "" -#: apps.py:96 models.py:105 +#: apps.py:103 models.py:105 msgid "Origin state" msgstr "" -#: apps.py:100 models.py:109 +#: apps.py:107 models.py:109 msgid "Destination state" msgstr "" -#: links.py:14 links.py:36 models.py:59 views.py:185 +#: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:18 +#: links.py:19 msgid "Create workflow" msgstr "" -#: links.py:23 links.py:44 links.py:61 +#: links.py:24 links.py:45 links.py:62 msgid "Delete" msgstr "" -#: links.py:27 models.py:25 +#: links.py:28 models.py:25 msgid "Document types" msgstr "" -#: links.py:31 links.py:48 links.py:65 +#: links.py:32 links.py:49 links.py:66 msgid "Edit" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Create state" msgstr "" -#: links.py:52 +#: links.py:53 msgid "States" msgstr "" -#: links.py:56 +#: links.py:57 msgid "Create transition" msgstr "" -#: links.py:69 +#: links.py:70 msgid "Transitions" msgstr "" -#: links.py:73 +#: links.py:74 msgid "Detail" msgstr "" diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po index 0f437541f2..8ad74dc60a 100644 --- a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po @@ -1,102 +1,101 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +112,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +272,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +297,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +326,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +338,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +483,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +503,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,229 +522,225 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" @@ -730,27 +750,31 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" @@ -760,21 +784,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" @@ -784,62 +808,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -916,11 +897,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1056,7 +1037,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1070,11 +1052,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1100,11 +1082,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1121,15 +1103,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1173,9 +1159,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1189,11 +1172,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1217,14 +1200,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1242,9 +1222,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1274,11 +1256,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1335,15 +1317,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po index a1da6af08b..d7ae61315d 100644 --- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,336 +521,293 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -904,11 +884,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1040,7 +1020,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1054,11 +1035,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1084,11 +1065,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1105,15 +1086,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1157,9 +1142,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1173,11 +1155,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1201,14 +1183,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1226,9 +1205,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1258,11 +1239,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1319,15 +1300,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 ac2e96afb2..6d9869cf6c 100644 --- a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po @@ -1,102 +1,101 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +112,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +272,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +297,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +326,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +338,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +483,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +503,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,339 +522,296 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -907,11 +888,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1044,7 +1025,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1058,11 +1040,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1088,11 +1070,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1109,15 +1091,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1161,9 +1147,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1177,11 +1160,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1205,14 +1188,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1230,9 +1210,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1262,11 +1244,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1323,15 +1305,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po index 52f0ef9eaa..904ce22a77 100644 --- a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,336 +521,293 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -904,11 +884,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1040,7 +1020,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1054,11 +1035,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1084,11 +1065,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1105,15 +1086,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1157,9 +1142,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1173,11 +1155,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1201,14 +1183,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1226,9 +1205,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1258,11 +1239,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1319,15 +1300,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 536f05ef63..bd9a39e151 100644 --- a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -10,95 +10,95 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-09-24 23:13+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "Dokumente" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "Dokumententyp erstellen" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert. " +msgstr "" +"Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da " +"Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert. " -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "Bezeichner" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "Der MIME-Typ der jeweiligen Dokumentenversion" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "MIME Typ" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "Miniaturbild" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "Typ" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "Aktiviert" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "Zeitpunkt der Löschung" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "Zeit und Datum" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "Kodierung" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "Kommentar" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "Neue Dokumente pro Monat" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "Neue Dokumentenversionen pro Monat" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "Neue Dokumentenseiten pro Monat" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "Summe der Dokumente im Monat" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "Summe der Dokumentenversionen im Monat" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "Summe der Dokumentenseiten im Monat" @@ -115,118 +115,157 @@ msgid "Document type changed" msgstr "Dokumententyp geändert" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "Neue Dokumentenversion hochgeladen." #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Dokumentenversion wurde erfolgreich wiederhergestellt" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "Seitenbild" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "Dokumentseiten (%d)" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "Dokument schnell umbenennen" -#: forms.py:122 -msgid "Compress" -msgstr "Komprimieren" +#: forms.py:110 +msgid "Date added" +msgstr "Hinzugefügt am" + +#: forms.py:114 +msgid "UUID" +msgstr "UUID" + +#: forms.py:120 +msgid "File mimetype" +msgstr "Datei MIME Type" + +#: forms.py:121 forms.py:126 +msgid "None" +msgstr "Keine" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." -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 "Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." +msgid "File encoding" +msgstr "Dateikodierung" -#: forms.py:131 -msgid "Compressed filename" -msgstr "Name der komprimierten Datei" +#: forms.py:130 +msgid "File size" +msgstr "Dateigröße" -#: forms.py:134 -msgid "" -"The filename of the compressed file that will contain the documents to be " -"downloaded, if the previous option is selected." -msgstr "Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, wenn die vorherige Option gewählt wurde." +#: forms.py:135 +msgid "Exists in storage" +msgstr "Im Dateispeicher" -#: forms.py:151 literals.py:21 -msgid "Page range" -msgstr "Seitenbereich" +#: forms.py:137 +msgid "File path in storage" +msgstr "Pfad im Dateispeicher" -#: handlers.py:9 -msgid "Default" -msgstr "Standard" +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "Prüfsumme" -#: links.py:42 -msgid "Preview" -msgstr "Vorschau" - -#: links.py:46 -msgid "Properties" -msgstr "Eigenschaften" - -#: links.py:50 -msgid "Versions" -msgstr "Versionen" - -#: links.py:54 views.py:589 +#: forms.py:141 links.py:57 msgid "Pages" msgstr "Seiten" -#: links.py:61 links.py:99 +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "Dokumententyp" + +#: forms.py:188 +msgid "Compress" +msgstr "Komprimieren" + +#: forms.py:190 +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 "" +"Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese " +"Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. " +"Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." + +#: forms.py:197 +msgid "Compressed filename" +msgstr "Name der komprimierten Datei" + +#: forms.py:200 +msgid "" +"The filename of the compressed file that will contain the documents to be " +"downloaded, if the previous option is selected." +msgstr "" +"Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, " +"wenn die vorherige Option gewählt wurde." + +#: forms.py:217 literals.py:23 +msgid "Page range" +msgstr "Seitenbereich" + +#: handlers.py:13 +msgid "Default" +msgstr "Standard" + +#: links.py:43 +msgid "Preview" +msgstr "Vorschau" + +#: links.py:47 +msgid "Properties" +msgstr "Eigenschaften" + +#: links.py:52 +msgid "Versions" +msgstr "Versionen" + +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "Transformationen löschen" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "Löschen" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "In den Papierkorb verschieben" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "Eigenschaften bearbeiten" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "Typ ändern" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "Herunterladen" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "Drucken" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "Seitenzählung korrigieren" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "Wiederherstellen" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "Alle Dokumente" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "Letzte Dokumente" @@ -238,14 +277,17 @@ msgstr "Papierkorb" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Grafiken löschen, die benutzt werden um die Dokumentendarstellung und interaktive Transformationsausgabe zu beschleunigen." +msgstr "" +"Grafiken löschen, die benutzt werden um die Dokumentendarstellung und " +"interaktive Transformationsausgabe zu beschleunigen." #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" +#, fuzzy +#| msgid "Clear document cache" +msgid "Clear document image cache" msgstr "Dokumentencache löschen" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "Papierkorb leeren" @@ -265,7 +307,8 @@ msgstr "Vorherige Seite" msgid "Next page" msgstr "Nächste Seite" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "Dokument" @@ -293,7 +336,7 @@ msgstr "Ansicht verkleinern" msgid "Revert" msgstr "Wiederherstellen" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "Dokumententypen erstellen" @@ -305,147 +348,152 @@ msgstr "Bearbeiten" msgid "Add quick label to document type" msgstr "Schnellbezeichner zu Dokumententyp hinzufügen" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "Schnellbezeichner" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "Dokumententypen" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "Alle Seiten" -#: models.py:68 -msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben werden." - #: models.py:70 +msgid "" +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben " +"werden." + +#: models.py:72 msgid "Trash time period" msgstr "Papierkorb nach" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "Einheit (Papierkorb)" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden endgültig gelöscht werden." +msgstr "" +"Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden " +"endgültig gelöscht werden." -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "Endgültig löschen nach" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "Einheit (Löschen)" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "Dokumententyp" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "Dokumententypen" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "Name des Dokuments" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "Beschreibung" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "Hinzugefügt" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "Sprache" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "Im Papierkorb?" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "Zeitpunkt der Löschung" -#: models.py:162 +#: models.py:182 msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." +msgstr "" +"Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das " +"keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener " +"Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "Inkomplett" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Fragment, ID: %d" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "Zeitstempel" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "Datei" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "Prüfsumme" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "Dokumentenversion" -#: models.py:613 -msgid "Quick rename template" -msgstr "Dokument schnell umbenennen" +#: models.py:632 +#, fuzzy +#| msgid "Quick labels" +msgid "Quick label" +msgstr "Schnellbezeichner" -#: models.py:614 -msgid "Quick rename templates" -msgstr "Dokumente schnell umbenennen" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "Seitennummer" -#: models.py:636 -msgid "Document page" -msgstr "Dokumentenseite" - -#: models.py:637 -msgid "Document pages" -msgstr "Dokumentenseiten" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Seite %(page_num)d von %(total_pages)d des Dokuments %(document)s" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "Dokumentenseite" + +#: models.py:672 +msgid "Document pages" +msgstr "Dokumentenseiten" + +#: models.py:782 +#, fuzzy +#| msgid "New version uploaded" +msgid "New version block" +msgstr "Neue Dokumentenversion hochgeladen." + +#: models.py:783 +#, fuzzy +#| msgid "New version uploaded" +msgid "New version blocks" +msgstr "Neue Dokumentenversion hochgeladen." + +#: models.py:793 msgid "User" msgstr "Benutzer" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "Letzter Zugriff" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "Letztes Dokument" @@ -458,11 +506,10 @@ msgid "Delete documents" msgstr "Dokumente löschen" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "Dokumente in den Papierkorb verschieben" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "Dokumente herunterladen" @@ -479,12 +526,10 @@ msgid "Edit document properties" msgstr "Dokumenteneigenschaften bearbeiten" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Dukumente drucken" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "Gelöschte Dokumente wiederherstellen" @@ -500,336 +545,307 @@ msgstr "Vorherige Dokumentenversion wiederherstellen" msgid "View documents" msgstr "Dokumente anzeigen" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "Dokumententypen" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "Dokumententypen erstellen" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "Dokumententypen löschen" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "Dokumententypen bearbeiten" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "Dokumententypen anzeigen" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Maximale Anzahl der letzten Dokumente (erstellt, bearbeitet, angezeigt) pro Benutzer." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Maximale Anzahl der letzten Dokumente (erstellt, bearbeitet, angezeigt) pro " +"Benutzer." -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." +msgstr "" +"Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "Maximaler erlaubter Zoom in %, den Benutzer interaktiv wählen können." -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "Minimaler erlaubter Zoom in %, den Benutzer interaktiv wählen können." -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "Gradzahl, die ein Dokument pro Benutzer Aktion gedreht wird." -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "Standarddokumentensprache (im ISO639-2 Format)" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "Liste der unterstützen Dokumentensprachen" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Clear the document cache?" +msgid "Clear the document image cache?" +msgstr "Dokumentencache löschen?" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "Löschung des Dokumentenbildcaches erfolgreich eingereiht." + +#: views.py:99 msgid "Documents in trash" msgstr "Dokumente im Papierkorb" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "Das ausgwählte Dokument löschen?" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Dokument %(document)s gelöscht." -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "Die ausgwählten Dokumente löschen?" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "Eigenschaften von Dokument \"%s\" bearbeiten" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "Das ausgwählte Dokument wiederherstellen?" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Dokument %(document)s wiederhergestellt" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "Die ausgwählten Dokumente wiederherstellen?" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "Seiten des Dokuments: %s" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "Seitenbild für %s" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "Vorschau von Dokument %s" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "\"%s\" in den Papierkorb verschieben?" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Dokument \"%(document)s\" erfolgreich in den Papierkorb verschoben." -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "Die ausgewählten Dokumente in den Papierkorb verschieben?" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Dokumente des Typs: %s" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "Alle Dokumente dieses Typs werden auch gelöscht." -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Dokumententyp %s löschen?" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "Dokumententyp %s bearbeiten" -#: views.py:445 +#: views.py:473 +#, python-format +msgid "Create quick label for document type: %s" +msgstr "Schnellbezeichner erstellen für Dokumentenyp %s" + +#: views.py:494 +#, python-format +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" " +"bearbeiten" + +#: views.py:519 +#, python-format +msgid "" +"Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" +msgstr "" +"Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" + +#: views.py:547 #, python-format msgid "Quick labels for document type: %s" msgstr "Schnellbezeichner für Dokumententyp %s" -#: views.py:466 -#, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" bearbeiten" - -#: views.py:491 -#, python-format -msgid "" -"Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" - -#: views.py:529 +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "Versionen von Dokument %s" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "Alle späteren Versionen dieses Dokuments werden ebenfalls gelöscht." + +#: views.py:595 +msgid "Revert to this version?" +msgstr "Diese Dokumentenversion wiederherstellen?" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "Dokument wurde erfolgreich wiederhergestellt" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "Fehler beim Wiederherstellen der Dokumentenversion %s" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "Eigenschaften von Dokument %s" -#: views.py:558 -msgid "Date added" -msgstr "Hinzugefügt am" - -#: views.py:563 -msgid "UUID" -msgstr "UUID" - -#: views.py:568 -msgid "File mimetype" -msgstr "Datei MIME Type" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "Keine" - -#: views.py:572 -msgid "File encoding" -msgstr "Dateikodierung" - -#: views.py:578 -msgid "File size" -msgstr "Dateigröße" - -#: views.py:583 -msgid "Exists in storage" -msgstr "Im Dateispeicher" - -#: views.py:585 -msgid "File path in storage" -msgstr "Pfad im Dateispeicher" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "Papierkorb leeren" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "Papierkorb erfolgreich gelöscht." -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "Es muss mindestens ein Dokument angegeben werden." -#: views.py:656 -msgid "Document type changed successfully." -msgstr "Dokumententyp erfolgreich geändert." +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "Ändern" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "Den Typ des ausgewählten Dokuments ändern." msgstr[1] "Den Typ der ausgewählten Dokumente ändern." -#: views.py:737 +#: views.py:794 +#, fuzzy +#| msgid "Must provide at least one document." +msgid "Must provide at least one document or version." +msgstr "Es muss mindestens ein Dokument angegeben werden." + +#: views.py:814 msgid "Documents to be downloaded" msgstr "Herunterzuladende Dokumente" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "Datum und Zeit" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "Es muss mindestens ein Dokument ausgewählt werden." -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "Dokument eingereiht für Neuberechnung der Seitenzahl" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "Dokumente eingereiht für Neuberechnung der Seitenzahlen." -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "Seitenzahl des ausgewählten Dokuments neu berechnen?" msgstr[1] "Seitenzahl der ausgewählten Dokumente neu berechnen?" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s" +msgstr "" +"Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Alle Seitentransformationen für Dokument %s wurden erfolgreich gelöscht." +msgstr "" +"Alle Seitentransformationen für Dokument %s wurden erfolgreich gelöscht." -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" -msgstr[0] "Sind Sie sicher, dass Sie die Transformationen des ausgewählten Dokuments zurücksetzen wollen?" -msgstr[1] "Sind Sie sicher, dass Sie die Transformationen der ausgewählten Dokumente zurücksetzen wollen?" +msgstr[0] "" +"Sind Sie sicher, dass Sie die Transformationen des ausgewählten Dokuments " +"zurücksetzen wollen?" +msgstr[1] "" +"Sind Sie sicher, dass Sie die Transformationen der ausgewählten Dokumente " +"zurücksetzen wollen?" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "Keine weiteren Seiten in diesem Dokument" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "Sie sind bereits auf der ersten Seite dieses Dokuments" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "%s drucken" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "Schnellbezeichner für Dokumententyp erfolgreich angelegt" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "Fehler beim Erstellen des Schnellbezeichners: %(error)s" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "Schnellbezeichner erstellen für Dokumentenyp %s" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "Löschung des Dokumentenbildcaches erfolgreich eingereiht." - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "Dokumentencache löschen?" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "Dokument wurde erfolgreich wiederhergestellt" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "Fehler beim Wiederherstellen der Dokumentenversion %s" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "Diese Dokumentenversion wiederherstellen?" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "Alle späteren Versionen dieses Dokuments werden ebenfalls gelöscht." - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -839,6 +855,23 @@ msgstr "Seite %(page_number)d von %(total_pages)d" msgid "Document page image" msgstr "Dokumentenseitenbild" +#~ msgid "Quick rename template" +#~ msgstr "Dokument schnell umbenennen" + +#~ msgid "Quick rename templates" +#~ msgstr "Dokumente schnell umbenennen" + +#~ msgid "Document type changed successfully." +#~ msgstr "Dokumententyp erfolgreich geändert." + +#~| msgid "Document type filename created successfully" +#~ msgid "Document type quick label created successfully" +#~ msgstr "Schnellbezeichner für Dokumententyp erfolgreich angelegt" + +#~| msgid "Error creating document type filename; %(error)s" +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Fehler beim Erstellen des Schnellbezeichners: %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -906,11 +939,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1042,7 +1075,8 @@ msgstr "Dokumentenseitenbild" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1056,11 +1090,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1086,11 +1120,11 @@ msgstr "Dokumentenseitenbild" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1107,15 +1141,19 @@ msgstr "Dokumentenseitenbild" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1159,9 +1197,6 @@ msgstr "Dokumentenseitenbild" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1175,11 +1210,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1203,11 +1238,11 @@ msgstr "Dokumentenseitenbild" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1228,9 +1263,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1260,11 +1297,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1321,15 +1358,17 @@ msgstr "Dokumentenseitenbild" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po index ceb6dbe65f..aa0c2140ef 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: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2013-11-20 11:36+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,94 +18,94 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "Documents" -#: apps.py:93 +#: apps.py:97 #, fuzzy msgid "Create a document type" msgstr "Create document types" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "MIME type" -#: apps.py:134 +#: apps.py:150 apps.py:174 #, fuzzy msgid "Thumbnail" msgstr "thumbnail" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 #, fuzzy msgid "Enabled" msgstr "enabled" -#: apps.py:160 +#: apps.py:187 #, fuzzy msgid "Date time trashed" msgstr "Date added" -#: apps.py:165 +#: apps.py:192 #, fuzzy msgid "Time and date" msgstr "time and date" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 #, fuzzy msgid "Encoding" msgstr "encoding" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "Comment" -#: apps.py:359 +#: apps.py:386 #, fuzzy #| msgid "New document filename" msgid "New documents per month" msgstr "New document filename" -#: apps.py:366 +#: apps.py:393 #, fuzzy #| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "Document version reverted successfully" -#: apps.py:373 +#: apps.py:400 #, fuzzy #| msgid "View document types" msgid "New document pages per month" msgstr "View document types" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -136,24 +136,69 @@ msgstr "Version update" msgid "Document version reverted" msgstr "Document version reverted successfully" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "Page image" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, fuzzy, python-format msgid "Document pages (%d)" msgstr "Document pages (%s)" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "Quick document rename" -#: forms.py:122 +#: forms.py:110 +msgid "Date added" +msgstr "Date added" + +#: forms.py:114 +msgid "UUID" +msgstr "UUID" + +#: forms.py:120 +msgid "File mimetype" +msgstr "File mimetype" + +#: forms.py:121 forms.py:126 +msgid "None" +msgstr "None" + +#: forms.py:124 +#, fuzzy +msgid "File encoding" +msgstr "File mime encoding" + +#: forms.py:130 +msgid "File size" +msgstr "File size" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "Exists in storage" + +#: forms.py:137 +msgid "File path in storage" +msgstr "File path in storage" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "Checksum" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "Pages" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "Document type" + +#: forms.py:188 msgid "Compress" msgstr "Compress" -#: forms.py:124 +#: forms.py:190 #, fuzzy #| msgid "" #| "Download the document in the original format or in a compressed manner. " @@ -169,11 +214,11 @@ msgstr "" "This option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "Compressed filename" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." @@ -181,80 +226,76 @@ msgstr "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "Page range" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 #, fuzzy msgid "Preview" msgstr "preview" -#: links.py:46 +#: links.py:47 #, fuzzy msgid "Properties" msgstr "properties" -#: links.py:50 +#: links.py:52 #, fuzzy msgid "Versions" msgstr "versions" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "Pages" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 #, fuzzy msgid "Clear transformations" msgstr "clear transformations" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 #, fuzzy msgid "Delete" msgstr "delete" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 #, fuzzy msgid "Edit properties" msgstr "Edit document properties" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 #, fuzzy msgid "Change type" msgstr "page text" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "Download" -#: links.py:86 +#: links.py:88 #, fuzzy msgid "Print" msgstr "print" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 #, fuzzy msgid "All documents" msgstr "all documents" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 #, fuzzy msgid "Recent documents" msgstr "recent documents" @@ -274,10 +315,10 @@ msgstr "" #: links.py:151 #, fuzzy #| msgid "Clear the document image cache" -msgid "Clear document cache" +msgid "Clear document image cache" msgstr "Clear the document image cache" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -301,7 +342,8 @@ msgstr "previous page" msgid "Next page" msgstr "next page" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 #, fuzzy msgid "Document" msgstr "Documents" @@ -336,7 +378,7 @@ msgstr "zoom out" msgid "Revert" msgstr "revert" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 #, fuzzy msgid "Create document type" msgstr "Create document types" @@ -350,162 +392,162 @@ msgstr "" msgid "Add quick label to document type" msgstr "add filename to document type" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 #, fuzzy msgid "Document types" msgstr "Document type" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 #, fuzzy msgid "" "Amount of time after which documents of this type will be moved to the trash." msgstr "All later version after this one will be deleted too." -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 #, fuzzy msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "All later version after this one will be deleted too." -#: models.py:80 +#: models.py:82 #, fuzzy #| msgid "Delete document types" msgid "Delete time period" msgstr "Delete document types" -#: models.py:84 +#: models.py:87 #, fuzzy #| msgid "Delete documents" msgid "Delete time unit" msgstr "Delete documents" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "Document type" - -#: models.py:92 +#: models.py:107 #, fuzzy msgid "Documents types" msgstr "documents types" -#: models.py:139 +#: models.py:159 #, fuzzy msgid "The name of the document" msgstr "Create documents" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "Description" -#: models.py:145 +#: models.py:165 #, fuzzy msgid "Added" msgstr "added" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 #, fuzzy msgid "Date and time trashed" msgstr "Date added" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, fuzzy, python-format #| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Document types: %d" -#: models.py:338 +#: models.py:357 #, fuzzy msgid "Timestamp" msgstr "timestamp" -#: models.py:347 +#: models.py:366 #, fuzzy msgid "File" msgstr "Filename" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "Checksum" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 #, fuzzy msgid "Document version" msgstr "document version" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 #, fuzzy msgid "Page number" msgstr "page number" -#: models.py:636 -#, fuzzy -msgid "Document page" -msgstr "document page" - -#: models.py:637 -#, fuzzy -msgid "Document pages" -msgstr "document pages" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s" -#: models.py:774 +#: models.py:671 +#, fuzzy +msgid "Document page" +msgstr "document page" + +#: models.py:672 +#, fuzzy +msgid "Document pages" +msgstr "document pages" + +#: models.py:782 +#, fuzzy +#| msgid "Version update" +msgid "New version block" +msgstr "Version update" + +#: models.py:783 +#, fuzzy +#| msgid "Version update" +msgid "New version blocks" +msgstr "Version update" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 #, fuzzy msgid "Accessed" msgstr "accessed" -#: models.py:787 +#: models.py:813 #, fuzzy msgid "Recent document" msgstr "recent document" @@ -524,7 +566,7 @@ msgstr "Delete documents" msgid "Trash documents" msgstr "Transform documents" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "Download documents" @@ -564,27 +606,27 @@ msgstr "Revert documents to a previous version" msgid "View documents" msgstr "View documents" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "Documents setup" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "Create document types" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "Delete document types" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "Edit document types" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "View document types" -#: settings.py:36 +#: settings.py:37 msgid "" "Maximum number of recent (created, edited, viewed) documents to remember per " "user." @@ -592,11 +634,11 @@ msgstr "" "Maximum number of recent (created, edited, viewed) documents to remember per " "user." -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Amount in percent zoom in or out a document page per user interaction." -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." @@ -604,7 +646,7 @@ msgstr "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." @@ -612,230 +654,238 @@ msgstr "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "Amount in degrees to rotate a document page per user interaction." -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 +#: views.py:67 +#, fuzzy +#| msgid "Clear the document image cache" +msgid "Clear the document image cache?" +msgstr "Clear the document image cache" + +#: views.py:74 +#, fuzzy +msgid "Document cache clearing queued successfully." +msgstr "Document image cache cleared successfully" + +#: views.py:99 #, fuzzy #| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "Documents in storage: %d" -#: views.py:110 +#: views.py:121 #, fuzzy msgid "Delete the selected document?" msgstr "Create documents" -#: views.py:133 +#: views.py:144 #, fuzzy, python-format #| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Document \"%(document)s\" deleted by %(fullname)s." -#: views.py:141 +#: views.py:152 #, fuzzy msgid "Delete the selected documents?" msgstr "Create documents" -#: views.py:163 +#: views.py:174 #, fuzzy, python-format msgid "Edit properties of document: %s" msgstr "document properties for: %s" -#: views.py:179 +#: views.py:190 #, fuzzy msgid "Restore the selected document?" msgstr "Create documents" -#: views.py:204 +#: views.py:215 #, fuzzy, python-format #| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Document: %(document)s delete error: %(error)s" -#: views.py:212 +#: views.py:223 #, fuzzy msgid "Restore the selected documents?" msgstr "Create documents" -#: views.py:244 +#: views.py:255 #, fuzzy, python-format msgid "Pages for document: %s" msgstr "versions for document: %s" -#: views.py:272 +#: views.py:283 #, fuzzy, python-format msgid "Image of: %s" msgstr "duplicates of: %s" -#: views.py:310 +#: views.py:325 #, fuzzy, python-format msgid "Preview of document: %s" msgstr "versions for document: %s" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, fuzzy, python-format #| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Document deleted successfully." -#: views.py:358 +#: views.py:373 #, fuzzy msgid "Move the selected documents to the trash?" msgstr "Create documents" -#: views.py:373 +#: views.py:388 #, fuzzy, python-format #| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "documents of type \"%s\"" -#: views.py:395 +#: views.py:425 #, fuzzy msgid "All documents of this type will be deleted too." msgstr "All later version after this one will be deleted too." -#: views.py:397 +#: views.py:427 #, fuzzy, python-format #| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Delete document types" -#: views.py:413 +#: views.py:443 #, fuzzy, python-format msgid "Edit document type: %s" msgstr "edit document type: %s" -#: views.py:445 +#: views.py:473 #, fuzzy, python-format -msgid "Quick labels for document type: %s" -msgstr "filenames for document type: %s" +msgid "Create quick label for document type: %s" +msgstr "create filename for document type: %s" -#: views.py:466 +#: views.py:494 #, fuzzy, python-format msgid "" "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" "edit filename \"%(filename)s\" from document type \"%(document_type)s\"" -#: views.py:491 +#: views.py:519 #, fuzzy, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" "edit filename \"%(filename)s\" from document type \"%(document_type)s\"" -#: views.py:529 +#: views.py:547 +#, fuzzy, python-format +msgid "Quick labels for document type: %s" +msgstr "filenames for document type: %s" + +#: views.py:578 #, fuzzy, python-format msgid "Versions of document: %s" msgstr "versions for document: %s" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "All later version after this one will be deleted too." + +#: views.py:595 +#, fuzzy +#| msgid "Revert documents to a previous version" +msgid "Revert to this version?" +msgstr "Revert documents to a previous version" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "Document version reverted successfully" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "Error reverting document version; %s" + +#: views.py:628 #, fuzzy, python-format msgid "Properties for document: %s" msgstr "versions for document: %s" -#: views.py:558 -msgid "Date added" -msgstr "Date added" - -#: views.py:563 -msgid "UUID" -msgstr "UUID" - -#: views.py:568 -msgid "File mimetype" -msgstr "File mimetype" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "None" - -#: views.py:572 -#, fuzzy -msgid "File encoding" -msgstr "File mime encoding" - -#: views.py:578 -msgid "File size" -msgstr "File size" - -#: views.py:583 -msgid "Exists in storage" -msgstr "Exists in storage" - -#: views.py:585 -msgid "File path in storage" -msgstr "File path in storage" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 +#: views.py:645 #, fuzzy #| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "Document deleted successfully." -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "Must provide at least one document." -#: views.py:656 -#, fuzzy -msgid "Document type changed successfully." -msgstr "Document type created successfully" +#: views.py:699 +#, fuzzy, python-format +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 #, fuzzy msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "Create documents" msgstr[1] "Create documents" -#: views.py:737 +#: views.py:794 +#, fuzzy +#| msgid "Must provide at least one document." +msgid "Must provide at least one document or version." +msgstr "Must provide at least one document." + +#: views.py:814 #, fuzzy msgid "Documents to be downloaded" msgstr "documents to be downloaded" -#: views.py:746 +#: views.py:823 #, fuzzy msgid "Date and time" msgstr "Date added" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 #, fuzzy msgid "Document queued for page count recalculation." msgstr "document page transformation" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 #, fuzzy msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" @@ -844,7 +894,7 @@ msgstr[0] "" msgstr[1] "" "Are you sure you wish to update the page count for the office documents (%d)?" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " @@ -853,7 +903,7 @@ msgstr "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " @@ -862,7 +912,7 @@ msgstr "" "All the page transformations for document: %s, have been deleted " "successfully." -#: views.py:914 +#: views.py:1032 #, fuzzy msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" @@ -871,66 +921,19 @@ msgstr[0] "" msgstr[1] "" "Are you sure you wish to clear all the page transformations for document: %s?" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "There are no more pages in this document" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "You are already at the first page of this document" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, fuzzy, python-format msgid "Print: %s" msgstr "print: %s" -#: views.py:1122 -#, fuzzy -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "Document type filename created successfully" - -#: views.py:1125 -#, fuzzy, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "Error creating document type filename; %(error)s" - -#: views.py:1134 -#, fuzzy, python-format -msgid "Create quick label for document type: %s" -msgstr "create filename for document type: %s" - -#: views.py:1145 -#, fuzzy -msgid "Document cache clearing queued successfully." -msgstr "Document image cache cleared successfully" - -#: views.py:1151 -#, fuzzy -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "Clear the document image cache" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "Document version reverted successfully" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "Error reverting document version; %s" - -#: views.py:1177 -#, fuzzy -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "Revert documents to a previous version" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "All later version after this one will be deleted too." - #: widgets.py:71 #, fuzzy, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -941,6 +944,20 @@ msgstr "Page %(page_num)d out of %(total_pages)d of %(document)s" msgid "Document page image" msgstr "document page image" +#, fuzzy +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#, fuzzy +#~| msgid "Document type filename created successfully" +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#, fuzzy +#~| msgid "Error creating document type filename; %(error)s" +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #, fuzzy #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -1319,10 +1336,6 @@ msgstr "document page image" #~ msgid "Document data" #~ msgstr "document data" -#, fuzzy -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #, fuzzy #~ msgid "Change document type of: %s" #~ msgstr "Create document types" diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index 2ae6594f52..16b23ccf09 100644 --- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2015 @@ -9,95 +9,93 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "Documentos" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "Crear tipo un tipo de documento" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "Etiqueta" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "Tipo MIME" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "Foto miniatura" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "Tipo" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "Activado" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "Hora y fecha" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "Codificación" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "Comentario" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -114,118 +112,156 @@ msgid "Document type changed" msgstr "Tipo de documento ha sido cambiado" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "Nueva versión subida" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Versión de documento revertida" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "Imagen de la página" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "Páginas del documento (%d)" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "Cambio rápido de nombre" -#: forms.py:122 +#: forms.py:110 +msgid "Date added" +msgstr "Fecha en que se agregó" + +#: forms.py:114 +msgid "UUID" +msgstr "UUID" + +#: forms.py:120 +msgid "File mimetype" +msgstr "Tipo MIME del archivo" + +#: forms.py:121 forms.py:126 +msgid "None" +msgstr "" + +#: forms.py:124 +msgid "File encoding" +msgstr "Codificación de archivo" + +#: forms.py:130 +msgid "File size" +msgstr "Tamaño del archivo" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "Existe en el almacenamiento" + +#: forms.py:137 +msgid "File path in storage" +msgstr "Ruta de archivo en el almacenamiento" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "Suma de comprobación" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "Páginas" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "Tipo de documento" + +#: forms.py:188 msgid "Compress" msgstr "Comprimir" -#: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Descargue el documento en el formato original o en una forma comprimida. Esta opción se puede seleccionar sólo cuando se descarga un documento. Para múltiples documentos, el paquete será siempre descargado en un archivo comprimido." +msgstr "" +"Descargue el documento en el formato original o en una forma comprimida. " +"Esta opción se puede seleccionar sólo cuando se descarga un documento. Para " +"múltiples documentos, el paquete será siempre descargado en un archivo " +"comprimido." -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "Nombre de archivo comprimido" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "Rango de páginas" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "Por defecto" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "Muestra" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "Propiedades" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "Versiones" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "Páginas" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "Borrar transformaciones" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "Borrar" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "Mover a la papelera" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "Editar propiedades" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "Cambiar tipo" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "Descargar" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "Imprimir" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "Recalcular el conteo de páginas" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "Resturar" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "Todos los documentos" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "Documentos recientes" @@ -237,14 +273,18 @@ msgstr "Papelera" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Borrar las representaciones gráficas utilizadas para acelerar la presentación de los documentos y resultados de las transformaciones interactivas." +msgstr "" +"Borrar las representaciones gráficas utilizadas para acelerar la " +"presentación de los documentos y resultados de las transformaciones " +"interactivas." #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" +#, fuzzy +#| msgid "Clear document cache" +msgid "Clear document image cache" msgstr "Borrar el caché de imágenes de documentos" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "Vaciar papelera" @@ -264,7 +304,8 @@ msgstr "Página previa" msgid "Next page" msgstr "Próxima página" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "Documento" @@ -292,7 +333,7 @@ msgstr "Alejar imagen" msgid "Revert" msgstr "Revertir" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "Crear tipo de documento" @@ -304,147 +345,145 @@ msgstr "Editar" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "Tipos de documentos" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Cantidad de tiempo tras el cual se eliminarán los documentos de este tipo de la papelera." +msgstr "" +"Cantidad de tiempo tras el cual se eliminarán los documentos de este tipo de " +"la papelera." -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "Período de tiempo de eliminación" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "Unidad de tiempo de eliminación" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "Tipo de documento" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "Tipos de documentos" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "El nombre del documento" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "Descripción" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "Añadido" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "Lenguaje" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "¿En la papelera?" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "Archivo" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "Suma de comprobación" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "Versión de documento" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "Número de página" -#: models.py:636 -msgid "Document page" -msgstr "Página de documento" - -#: models.py:637 -msgid "Document pages" -msgstr "Páginas de documento" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "Página %(page_num)d de %(total_pages)d de %(document)s " -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "Página de documento" + +#: models.py:672 +msgid "Document pages" +msgstr "Páginas de documento" + +#: models.py:782 +#, fuzzy +#| msgid "New version uploaded" +msgid "New version block" +msgstr "Nueva versión subida" + +#: models.py:783 +#, fuzzy +#| msgid "New version uploaded" +msgid "New version blocks" +msgstr "Nueva versión subida" + +#: models.py:793 msgid "User" msgstr "Usuario" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "Accedido" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "Documento reciente" @@ -457,11 +496,10 @@ msgid "Delete documents" msgstr "Eliminar documentos" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "Enivar documentos a la papelera" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "Descargar documentos" @@ -478,12 +516,10 @@ msgid "Edit document properties" msgstr "Editar propiedades del documento" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Imprimir documentos" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "Restaurar documentos en la papelera" @@ -499,336 +535,295 @@ msgstr "Regresar documentos a una versiónes anterior" msgid "View documents" msgstr "Ver documentos" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "Configurar documentos" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "Crear tipos de documentos" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "Eliminar tipos de documentos" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "Editar tipos de documentos" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "Ver los tipos de documentos" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "Idioma por defecto para documentos (en formato ISO639-2)." -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "Lista de idiomas de documento apoyados." -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Clear the document cache?" +msgid "Clear the document image cache?" +msgstr "Borrar el caché de imágenes de documentos" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "Documentos en la papelera" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "Editar propiedades del documento: %s" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "Pagínas para documento: %s" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "Visualización del documento: %s" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "Todos los documentos de este tipo serán borrados también" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "Editar tipo de documento: %s" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "Versiones del documento: %s" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "También se borrarán todas las versiones más recientes a esta." + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "Versión de documento revertida con éxito." + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "Error revirtiendo la versión del documento; %s" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "Propiedades para el documento: %s" -#: views.py:558 -msgid "Date added" -msgstr "Fecha en que se agregó" - -#: views.py:563 -msgid "UUID" -msgstr "UUID" - -#: views.py:568 -msgid "File mimetype" -msgstr "Tipo MIME del archivo" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "Codificación de archivo" - -#: views.py:578 -msgid "File size" -msgstr "Tamaño del archivo" - -#: views.py:583 -msgid "Exists in storage" -msgstr "Existe en el almacenamiento" - -#: views.py:585 -msgid "File path in storage" -msgstr "Ruta de archivo en el almacenamiento" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "¿Vaciar papelera?" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "Papelera vaciada con éxito" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "Debe proveer al menos un documento" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "Tipo de documento cambiado con éxito." +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "Enviar" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "Cambiar el tipo del documento seleccionado." msgstr[1] "Cambiar el tipo de los documentos seleccionados." -#: views.py:737 +#: views.py:794 +#, fuzzy +#| msgid "Must provide at least one document." +msgid "Must provide at least one document or version." +msgstr "Debe proveer al menos un documento" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "Documentos a descargar" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "Fecha y hora" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "No hay más páginas en este documento" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "Usted ya está en la primera página de este documento" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "Imprimir: %s" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "Borrar el caché de imágenes de documentos" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "Versión de documento revertida con éxito." - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "Error revirtiendo la versión del documento; %s" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "También se borrarán todas las versiones más recientes a esta." - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -838,6 +833,9 @@ msgstr "Página %(page_number)d de %(total_pages)d" msgid "Document page image" msgstr "Imagen de página de documento" +#~ msgid "Document type changed successfully." +#~ msgstr "Tipo de documento cambiado con éxito." + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -905,11 +903,11 @@ msgstr "Imagen de página de documento" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1041,7 +1039,8 @@ msgstr "Imagen de página de documento" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1055,11 +1054,11 @@ msgstr "Imagen de página de documento" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1085,11 +1084,11 @@ msgstr "Imagen de página de documento" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1106,15 +1105,19 @@ msgstr "Imagen de página de documento" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1158,9 +1161,6 @@ msgstr "Imagen de página de documento" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1174,11 +1174,11 @@ msgstr "Imagen de página de documento" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1202,11 +1202,11 @@ msgstr "Imagen de página de documento" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1227,9 +1227,11 @@ msgstr "Imagen de página de documento" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1259,11 +1261,11 @@ msgstr "Imagen de página de documento" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1320,15 +1322,17 @@ msgstr "Imagen de página de documento" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po index d0d050f7a2..d71bf547f1 100644 --- a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,333 +521,290 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -901,11 +881,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1036,7 +1016,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1050,11 +1031,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1080,11 +1061,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1101,15 +1082,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1153,9 +1138,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1169,11 +1151,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1197,14 +1179,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1222,9 +1201,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1254,11 +1235,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1315,15 +1296,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po index b18a028c57..e4ec5fb14b 100644 --- a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,336 +521,293 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -904,11 +884,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1040,7 +1020,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1054,11 +1035,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1084,11 +1065,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1105,15 +1086,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1157,9 +1142,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1173,11 +1155,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1201,14 +1183,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1226,9 +1205,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1258,11 +1239,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1319,15 +1300,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po index a5bfd4bc71..ee22709580 100644 --- a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,336 +521,293 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -904,11 +884,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1040,7 +1020,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1054,11 +1035,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1084,11 +1065,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1105,15 +1086,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1157,9 +1142,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1173,11 +1155,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1201,14 +1183,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1226,9 +1205,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1258,11 +1239,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1319,15 +1300,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po index 8752a9246d..82059150e1 100644 --- a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,333 +521,290 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -901,11 +881,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1036,7 +1016,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1050,11 +1031,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1080,11 +1061,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1101,15 +1082,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1153,9 +1138,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1169,11 +1151,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1197,14 +1179,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1222,9 +1201,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1254,11 +1235,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1315,15 +1296,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po index 0ed5df88de..38fb6b250a 100644 --- a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,336 +521,293 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -904,11 +884,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1040,7 +1020,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1054,11 +1035,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1084,11 +1065,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1105,15 +1086,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1157,9 +1142,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1173,11 +1155,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1201,14 +1183,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1226,9 +1205,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1258,11 +1239,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1319,15 +1300,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 c67663e213..96635358f8 100644 --- a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,336 +521,293 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -904,11 +884,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1040,7 +1020,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1054,11 +1035,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1084,11 +1065,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1105,15 +1086,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1157,9 +1142,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1173,11 +1155,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1201,14 +1183,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1226,9 +1205,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1258,11 +1239,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1319,15 +1300,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po index d0c43b2cda..3fa08de54e 100644 --- a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po @@ -1,102 +1,101 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +112,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +272,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +297,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +326,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +338,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +483,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +503,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,339 +522,296 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -907,11 +888,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1044,7 +1025,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1058,11 +1040,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1088,11 +1070,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1109,15 +1091,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1161,9 +1147,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1177,11 +1160,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1205,14 +1188,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1230,9 +1210,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1262,11 +1244,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1323,15 +1305,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po index 5a725b9eca..2e0e8cce9f 100644 --- a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,336 +521,293 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -904,11 +884,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1040,7 +1020,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1054,11 +1035,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1084,11 +1065,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1105,15 +1086,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1157,9 +1142,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1173,11 +1155,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1201,14 +1183,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1226,9 +1205,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1258,11 +1239,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1319,15 +1300,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 206b89333f..56daace4d1 100644 --- a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,336 +521,293 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -904,11 +884,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1040,7 +1020,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1054,11 +1035,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1084,11 +1065,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1105,15 +1086,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1157,9 +1142,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1173,11 +1155,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1201,14 +1183,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1226,9 +1205,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1258,11 +1239,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1319,15 +1300,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 f34693bb09..8345c66649 100644 --- a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po @@ -1,102 +1,101 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +112,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +272,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +297,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +326,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +338,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +483,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +503,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,339 +522,296 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -907,11 +888,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1044,7 +1025,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1058,11 +1040,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1088,11 +1070,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1109,15 +1091,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1161,9 +1147,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1177,11 +1160,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1205,14 +1188,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1230,9 +1210,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1262,11 +1244,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1323,15 +1305,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po index e5fa404c6b..61036e3b47 100644 --- a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po @@ -1,102 +1,102 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +113,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +273,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +298,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +327,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +339,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +484,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +504,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,229 +523,225 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" @@ -728,27 +749,31 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" @@ -756,21 +781,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" @@ -778,62 +803,19 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -910,11 +892,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1048,7 +1030,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1062,11 +1045,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1092,11 +1075,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1113,15 +1096,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1165,9 +1152,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1181,11 +1165,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1209,14 +1193,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1234,9 +1215,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1266,11 +1249,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1327,15 +1310,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 943db592e7..a2605805ab 100644 --- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po @@ -1,102 +1,101 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +112,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +272,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +297,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +326,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +338,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +483,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +503,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,229 +522,225 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" @@ -728,27 +748,31 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" @@ -756,21 +780,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" @@ -778,62 +802,19 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -910,11 +891,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1048,7 +1029,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1062,11 +1044,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1092,11 +1074,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1113,15 +1095,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1165,9 +1151,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1181,11 +1164,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1209,14 +1192,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1234,9 +1214,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1266,11 +1248,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1327,15 +1309,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 e58788f5d5..aed70726c5 100644 --- a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,333 +521,290 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -901,11 +881,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1036,7 +1016,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1050,11 +1031,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1080,11 +1061,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1101,15 +1082,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1153,9 +1138,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1169,11 +1151,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1197,14 +1179,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1222,9 +1201,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1254,11 +1235,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1315,15 +1296,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po index 6f03db4d07..369cd6296f 100644 --- a/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po @@ -1,102 +1,100 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:85 apps.py:147 apps.py:356 models.py:173 permissions.py:7 -#: settings.py:16 +#: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 +#: settings.py:17 msgid "Documents" msgstr "" -#: apps.py:93 +#: apps.py:97 msgid "Create a document type" msgstr "" -#: apps.py:95 +#: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." msgstr "" -#: apps.py:102 models.py:64 models.py:139 models.py:606 search.py:20 +#: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" msgstr "" -#: apps.py:107 +#: apps.py:111 msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:108 apps.py:169 search.py:18 views.py:747 +#: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" msgstr "" -#: apps.py:134 +#: apps.py:150 apps.py:174 msgid "Thumbnail" msgstr "" -#: apps.py:142 apps.py:157 +#: apps.py:158 apps.py:184 msgid "Type" msgstr "" -#: apps.py:152 models.py:608 +#: apps.py:169 models.py:627 msgid "Enabled" msgstr "" -#: apps.py:160 +#: apps.py:187 msgid "Date time trashed" msgstr "" -#: apps.py:165 +#: apps.py:192 msgid "Time and date" msgstr "" -#: apps.py:173 views.py:748 +#: apps.py:200 views.py:825 msgid "Encoding" msgstr "" -#: apps.py:177 models.py:341 +#: apps.py:204 models.py:360 msgid "Comment" msgstr "" -#: apps.py:359 -#| msgid "New document filename" +#: apps.py:386 msgid "New documents per month" msgstr "" -#: apps.py:366 -#| msgid "Document version reverted successfully" +#: apps.py:393 msgid "New document versions per month" msgstr "" -#: apps.py:373 -#| msgid "View document types" +#: apps.py:400 msgid "New document pages per month" msgstr "" -#: apps.py:380 +#: apps.py:407 msgid "Total documents at each month" msgstr "" -#: apps.py:387 +#: apps.py:414 msgid "Total document versions at each month" msgstr "" -#: apps.py:394 +#: apps.py:421 msgid "Total document pages at each month" msgstr "" @@ -113,118 +111,152 @@ msgid "Document type changed" msgstr "" #: events.py:17 -#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 -#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" -#: forms.py:32 links.py:201 +#: forms.py:41 links.py:201 msgid "Page image" msgstr "" -#: forms.py:46 forms.py:49 +#: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" msgstr "" -#: forms.py:79 +#: forms.py:88 msgid "Quick document rename" msgstr "" -#: forms.py:122 -msgid "Compress" +#: forms.py:110 +msgid "Date added" +msgstr "" + +#: forms.py:114 +msgid "UUID" +msgstr "" + +#: forms.py:120 +msgid "File mimetype" +msgstr "" + +#: forms.py:121 forms.py:126 +msgid "None" msgstr "" #: forms.py:124 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." +msgid "File encoding" +msgstr "" + +#: forms.py:130 +msgid "File size" +msgstr "" + +#: forms.py:135 +msgid "Exists in storage" +msgstr "" + +#: forms.py:137 +msgid "File path in storage" +msgstr "" + +#: forms.py:140 models.py:375 +msgid "Checksum" +msgstr "" + +#: forms.py:141 links.py:57 +msgid "Pages" +msgstr "" + +#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +msgid "Document type" +msgstr "" + +#: forms.py:188 +msgid "Compress" +msgstr "" + +#: forms.py:190 msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" -#: forms.py:131 +#: forms.py:197 msgid "Compressed filename" msgstr "" -#: forms.py:134 +#: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." msgstr "" -#: forms.py:151 literals.py:21 +#: forms.py:217 literals.py:23 msgid "Page range" msgstr "" -#: handlers.py:9 +#: handlers.py:13 msgid "Default" msgstr "" -#: links.py:42 +#: links.py:43 msgid "Preview" msgstr "" -#: links.py:46 +#: links.py:47 msgid "Properties" msgstr "" -#: links.py:50 +#: links.py:52 msgid "Versions" msgstr "" -#: links.py:54 views.py:589 -msgid "Pages" -msgstr "" - -#: links.py:61 links.py:99 +#: links.py:63 links.py:101 msgid "Clear transformations" msgstr "" -#: links.py:66 links.py:108 links.py:234 links.py:248 +#: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" msgstr "" -#: links.py:70 links.py:104 +#: links.py:72 links.py:105 msgid "Move to trash" msgstr "" -#: links.py:74 +#: links.py:76 msgid "Edit properties" msgstr "" -#: links.py:78 links.py:111 +#: links.py:80 links.py:113 msgid "Change type" msgstr "" -#: links.py:82 links.py:115 links.py:128 views.py:805 +#: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" msgstr "" -#: links.py:86 +#: links.py:88 msgid "Print" msgstr "" -#: links.py:90 links.py:119 +#: links.py:92 links.py:120 msgid "Recalculate page count" msgstr "" -#: links.py:94 links.py:123 +#: links.py:96 links.py:124 msgid "Restore" msgstr "" -#: links.py:133 views.py:70 +#: links.py:133 views.py:81 msgid "All documents" msgstr "" -#: links.py:136 models.py:788 views.py:616 +#: links.py:136 models.py:814 views.py:651 msgid "Recent documents" msgstr "" @@ -239,11 +271,12 @@ msgid "" msgstr "" #: links.py:151 -#| msgid "Clear the document image cache" -msgid "Clear document cache" -msgstr "" +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear document image cache" +msgstr "Error clearing document image cache; %s" -#: links.py:155 permissions.py:48 +#: links.py:155 permissions.py:47 msgid "Empty trash" msgstr "" @@ -263,7 +296,8 @@ msgstr "" msgid "Next page" msgstr "" -#: links.py:187 models.py:172 models.py:335 models.py:777 views.py:745 +#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 +#: views.py:822 msgid "Document" msgstr "" @@ -291,7 +325,7 @@ msgstr "" msgid "Revert" msgstr "" -#: links.py:230 views.py:428 +#: links.py:230 views.py:414 msgid "Create document type" msgstr "" @@ -303,147 +337,139 @@ msgstr "" msgid "Add quick label to document type" msgstr "" -#: links.py:256 +#: links.py:256 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:384 +#: links.py:260 links.py:265 views.py:399 msgid "Document types" msgstr "" -#: literals.py:21 +#: literals.py:23 msgid "All pages" msgstr "" -#: models.py:68 +#: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" -#: models.py:70 +#: models.py:72 msgid "Trash time period" msgstr "" -#: models.py:74 +#: models.py:76 msgid "Trash time unit" msgstr "" -#: models.py:78 +#: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." msgstr "" -#: models.py:80 -#| msgid "Delete document types" +#: models.py:82 msgid "Delete time period" msgstr "" -#: models.py:84 -#| msgid "Delete documents" +#: models.py:87 msgid "Delete time unit" msgstr "" -#: models.py:91 models.py:135 models.py:603 search.py:15 -msgid "Document type" -msgstr "" - -#: models.py:92 +#: models.py:107 msgid "Documents types" msgstr "" -#: models.py:139 +#: models.py:159 msgid "The name of the document" msgstr "" -#: models.py:142 search.py:21 +#: models.py:162 search.py:21 msgid "Description" msgstr "" -#: models.py:145 +#: models.py:165 msgid "Added" msgstr "" -#: models.py:150 +#: models.py:170 msgid "Language" msgstr "" -#: models.py:153 +#: models.py:173 msgid "In trash?" msgstr "" -#: models.py:158 +#: models.py:178 msgid "Date and time trashed" msgstr "" -#: models.py:162 +#: models.py:182 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 "" -#: models.py:164 +#: models.py:184 msgid "Is stub?" msgstr "" -#: models.py:177 +#: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:338 +#: models.py:357 msgid "Timestamp" msgstr "" -#: models.py:347 +#: models.py:366 msgid "File" msgstr "" -#: models.py:356 views.py:588 -msgid "Checksum" -msgstr "" - -#: models.py:360 models.py:361 models.py:627 +#: models.py:446 models.py:447 models.py:646 msgid "Document version" msgstr "" -#: models.py:613 -msgid "Quick rename template" +#: models.py:632 +msgid "Quick label" msgstr "" -#: models.py:614 -msgid "Quick rename templates" -msgstr "" - -#: models.py:631 +#: models.py:650 msgid "Page number" msgstr "" -#: models.py:636 -msgid "Document page" -msgstr "" - -#: models.py:637 -msgid "Document pages" -msgstr "" - -#: models.py:641 +#: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" msgstr "" -#: models.py:774 +#: models.py:671 +msgid "Document page" +msgstr "" + +#: models.py:672 +msgid "Document pages" +msgstr "" + +#: models.py:782 +msgid "New version block" +msgstr "" + +#: models.py:783 +msgid "New version blocks" +msgstr "" + +#: models.py:793 msgid "User" msgstr "" -#: models.py:780 +#: models.py:799 msgid "Accessed" msgstr "" -#: models.py:787 +#: models.py:813 msgid "Recent document" msgstr "" @@ -456,11 +482,10 @@ msgid "Delete documents" msgstr "" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:804 +#: permissions.py:19 views.py:891 msgid "Download documents" msgstr "" @@ -477,12 +502,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -498,333 +521,290 @@ msgstr "" msgid "View documents" msgstr "" -#: permissions.py:52 +#: permissions.py:51 msgid "Documents setup" msgstr "" -#: permissions.py:56 +#: permissions.py:54 msgid "Create document types" msgstr "" -#: permissions.py:59 +#: permissions.py:57 msgid "Delete document types" msgstr "" -#: permissions.py:62 +#: permissions.py:60 msgid "Edit document types" msgstr "" -#: permissions.py:65 +#: permissions.py:63 msgid "View document types" msgstr "" -#: settings.py:36 +#: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" -#: settings.py:43 +#: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: settings.py:50 +#: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." msgstr "" -#: settings.py:57 +#: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." msgstr "" -#: settings.py:64 +#: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." msgstr "" -#: settings.py:73 +#: settings.py:74 msgid "Default documents language (in ISO639-2 format)." msgstr "" -#: settings.py:77 +#: settings.py:78 msgid "List of supported document languages." msgstr "" -#: views.py:88 -#| msgid "Documents in storage: %d" +#: views.py:67 +#, fuzzy +#| msgid "Error clearing document image cache; %s" +msgid "Clear the document image cache?" +msgstr "Error clearing document image cache; %s" + +#: views.py:74 +msgid "Document cache clearing queued successfully." +msgstr "" + +#: views.py:99 msgid "Documents in trash" msgstr "" -#: views.py:110 +#: views.py:121 msgid "Delete the selected document?" msgstr "" -#: views.py:133 +#: views.py:144 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:141 +#: views.py:152 msgid "Delete the selected documents?" msgstr "" -#: views.py:163 +#: views.py:174 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:179 +#: views.py:190 msgid "Restore the selected document?" msgstr "" -#: views.py:204 +#: views.py:215 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:212 +#: views.py:223 msgid "Restore the selected documents?" msgstr "" -#: views.py:244 +#: views.py:255 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:272 +#: views.py:283 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:318 +#: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:345 +#: views.py:360 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:358 +#: views.py:373 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:373 +#: views.py:388 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:395 +#: views.py:425 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:397 +#: views.py:427 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:413 +#: views.py:443 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:445 +#: views.py:473 #, python-format -msgid "Quick labels for document type: %s" +msgid "Create quick label for document type: %s" msgstr "" -#: views.py:466 +#: views.py:494 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:491 +#: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:529 +#: views.py:547 +#, python-format +msgid "Quick labels for document type: %s" +msgstr "" + +#: views.py:578 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:550 +#: views.py:592 +msgid "All later version after this one will be deleted too." +msgstr "" + +#: views.py:595 +msgid "Revert to this version?" +msgstr "" + +#: views.py:605 +msgid "Document version reverted successfully" +msgstr "" + +#: views.py:610 +#, python-format +msgid "Error reverting document version; %s" +msgstr "" + +#: views.py:628 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:558 -msgid "Date added" -msgstr "" - -#: views.py:563 -msgid "UUID" -msgstr "" - -#: views.py:568 -msgid "File mimetype" -msgstr "" - -#: views.py:569 views.py:574 -msgid "None" -msgstr "" - -#: views.py:572 -msgid "File encoding" -msgstr "" - -#: views.py:578 -msgid "File size" -msgstr "" - -#: views.py:583 -msgid "Exists in storage" -msgstr "" - -#: views.py:585 -msgid "File path in storage" -msgstr "" - -#: views.py:599 +#: views.py:634 msgid "Empty trash?" msgstr "" -#: views.py:610 -#| msgid "Document deleted successfully." +#: views.py:645 msgid "Trash emptied successfully" msgstr "" -#: views.py:632 views.py:885 +#: views.py:680 views.py:984 msgid "Must provide at least one document." msgstr "" -#: views.py:656 -msgid "Document type changed successfully." -msgstr "" +#: views.py:699 +#, fuzzy, python-format +#| msgid "Document type for document \"%s\" changed successfully." +msgid "Document type for \"%s\" changed successfully." +msgstr "Document type: %s deleted successfully." -#: views.py:663 views.py:1103 +#: views.py:711 views.py:1223 msgid "Submit" msgstr "" -#: views.py:667 +#: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" -#: views.py:737 +#: views.py:794 +msgid "Must provide at least one document or version." +msgstr "" + +#: views.py:814 msgid "Documents to be downloaded" msgstr "" -#: views.py:746 +#: views.py:823 msgid "Date and time" msgstr "" -#: views.py:831 +#: views.py:919 msgid "At least one document must be selected." msgstr "" -#: views.py:848 +#: views.py:942 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:849 +#: views.py:943 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:858 +#: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views.py:902 +#: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:905 +#: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:914 +#: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" -#: views.py:946 +#: views.py:1066 msgid "There are no more pages in this document" msgstr "" -#: views.py:964 +#: views.py:1084 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1093 views.py:1102 +#: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" msgstr "" -#: views.py:1122 -#| msgid "Document type filename created successfully" -msgid "Document type quick label created successfully" -msgstr "" - -#: views.py:1125 -#, python-format -#| msgid "Error creating document type filename; %(error)s" -msgid "Error creating document type quick label; %(error)s" -msgstr "" - -#: views.py:1134 -#, python-format -msgid "Create quick label for document type: %s" -msgstr "" - -#: views.py:1145 -msgid "Document cache clearing queued successfully." -msgstr "" - -#: views.py:1151 -#| msgid "Clear the document image cache" -msgid "Clear the document cache?" -msgstr "" - -#: views.py:1168 -msgid "Document version reverted successfully" -msgstr "" - -#: views.py:1170 -#, python-format -msgid "Error reverting document version; %s" -msgstr "" - -#: views.py:1177 -#| msgid "Revert documents to a previous version" -msgid "Revert to this version?" -msgstr "" - -#: views.py:1178 -msgid "All later version after this one will be deleted too." -msgstr "" - #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" @@ -901,11 +881,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1036,7 +1016,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1050,11 +1031,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1080,11 +1061,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1101,15 +1082,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1153,9 +1138,6 @@ msgstr "" #~ msgid "Document data" #~ msgstr "document data" -#~ msgid "Document type for document \"%s\" changed successfully." -#~ msgstr "Document type: %s deleted successfully." - #~ msgid "Change document type of: %s" #~ msgstr "Create document types" @@ -1169,11 +1151,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1197,14 +1179,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" - -#~ msgid "Error clearing document image cache; %s" -#~ msgstr "Error clearing document image cache; %s" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Comments" #~ msgstr "Comments" @@ -1222,9 +1201,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1254,11 +1235,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1315,15 +1296,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 7b4a13506f..a80c9fe07f 100644 --- a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,29 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "مصطلحات البحث" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "البحث" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -39,27 +41,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -88,7 +90,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 0a77096e3c..0bb1812815 100644 --- a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Търсене" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -39,27 +40,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -88,7 +89,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 cf2c8d474e..c27b2daf7f 100644 --- a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,29 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "Pojmovi pretrage" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Pretraga" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -39,27 +41,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -88,7 +90,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po index e6d54bdad4..612a3af920 100644 --- a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po @@ -1,36 +1,37 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -38,27 +39,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -87,7 +88,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 2a67cd2888..5f968e9a4e 100644 --- a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,29 +11,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-09-08 23:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "Dynamische Suche" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "Suchbegriffe" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Suche" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "Erweiterte Suche" @@ -41,27 +42,27 @@ msgstr "Erweiterte Suche" msgid "Search again" msgstr "Suche wiederholen" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "Benutzer" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "Abfrage" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "Erstellungszeitpunkt" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "Treffer" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "Letzte Suche" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "Letzte Suchen" @@ -71,7 +72,8 @@ msgstr "Maximale Anzahl an Treffern, die angezeigt werden soll" #: settings.py:18 msgid "Maximum number of search queries to remember per user." -msgstr "Maximale Anzahl an Suchabfragen, die pro Benutzer gespeichert werden sollen" +msgstr "" +"Maximale Anzahl an Suchabfragen, die pro Benutzer gespeichert werden sollen" #: views.py:25 msgid "Search results" @@ -90,7 +92,8 @@ msgstr "Typ" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 757c7d641b..456f7d676e 100644 --- a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/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: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,20 +18,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 +#: apps.py:16 #, fuzzy msgid "Dynamic search" msgstr "advanced search" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "Search terms" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Search" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 #, fuzzy msgid "Advanced search" msgstr "advanced search" @@ -41,30 +41,30 @@ msgstr "advanced search" msgid "Search again" msgstr "search again" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 #, fuzzy msgid "Query" msgstr "query" -#: models.py:26 +#: models.py:28 #, fuzzy msgid "Datetime created" msgstr "datetime created" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 #, fuzzy msgid "Recent search" msgstr "recent search" -#: models.py:71 +#: models.py:75 #, fuzzy msgid "Recent searches" msgstr "recent searches" 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 91a3ada133..b90da1d2d0 100644 --- a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,29 +12,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-24 04:35+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "Búsqueda dinámica " -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "Términos de búsqueda" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Búsqueda" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "Búsqueda avanzada" @@ -42,27 +43,27 @@ msgstr "Búsqueda avanzada" msgid "Search again" msgstr "Volver a buscar" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "Usuario" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "Consulta" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "fecha y hora creados" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "accesos" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "Búsqueda reciente" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "Búsquedas recientes." @@ -91,7 +92,8 @@ msgstr "Tipo" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 4982ab02ca..425819bfa3 100644 --- a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "عبارات جستجو" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "جستجو" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "جستجوی پیشرفته" @@ -39,27 +40,27 @@ msgstr "جستجوی پیشرفته" msgid "Search again" msgstr "جستجوی دوباره" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "کاربر" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "پرس و جو" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "تاریخ زمان ایجاد" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "برخورد" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "جستجوی اخیر" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "جستجوهای اخیر" @@ -88,7 +89,8 @@ msgstr "نوع" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 f2aab322f8..52293c3e46 100644 --- a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe kryskool , 2014 @@ -11,29 +11,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "Termes de recherche" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Recherche" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "Recherche avancée" @@ -41,27 +42,27 @@ msgstr "Recherche avancée" msgid "Search again" msgstr "Rechercher à nouveau" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "Utilisateur" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "Requête" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "Date et heure de création" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "Nombre de vues" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "Recherche récente" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "Recherches récentes" @@ -90,7 +91,8 @@ msgstr "Type" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 f182860b71..92e673d61c 100644 --- a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Dezső József , 2013 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "keresési feltételek" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Keresés" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -39,27 +40,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -88,7 +89,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 5f5f21adbf..feb30b0e23 100644 --- a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po @@ -1,36 +1,37 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -38,27 +39,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -87,7 +88,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 4f04c57a3b..33fe8d5091 100644 --- a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -11,29 +11,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "Cerca termini " -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Cerca" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -41,27 +42,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -90,7 +91,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 3eed2d5af5..83cd303c57 100644 --- a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "Zoektermen" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Zoek" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -39,27 +40,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -88,7 +89,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 18e5eecafe..96b114a31b 100644 --- a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -11,29 +11,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "Słowa do wyszukania" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Szukaj" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "Zaawansowane wyszukiwanie" @@ -41,27 +43,27 @@ msgstr "Zaawansowane wyszukiwanie" msgid "Search again" msgstr "Wyszukać ponownie" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "Użytkownik" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "Zapytanie" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "Data utworzenia" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "Trafienia" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "Ostatnie wyszukiwanie" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "Ostatnie wyszukiwania" @@ -90,7 +92,8 @@ msgstr "Typ" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po index 847994ec2c..ef103cdd86 100644 --- a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -10,29 +10,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Pesquisa" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -40,27 +41,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -89,7 +90,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 68de2d6193..581375f9a7 100644 --- a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -10,29 +10,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "Termos de pesquisa" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Pesquisa" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "pesquisa avançada" @@ -40,27 +41,27 @@ msgstr "pesquisa avançada" msgid "Search again" msgstr "pesquisar novamente" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "Usuário" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "pergunta" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "Hora e data criada" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "visitas" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "pesquisa recente" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "pesquisas recentes" @@ -89,7 +90,8 @@ msgstr "Tipo" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 2dd1ac8d7b..59e788248d 100644 --- a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,29 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "Caută termeni" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Căută" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -39,27 +41,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -88,7 +90,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 42bc4f0f3a..9032e1448e 100644 --- a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po @@ -1,36 +1,39 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "Условия поиска" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Поиск" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -38,27 +41,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -68,7 +71,9 @@ msgstr "Максимальное количество отображаемых #: settings.py:18 msgid "Maximum number of search queries to remember per user." -msgstr "Максимальное количество поисковых запросов запоминаемых для каждого пользователя." +msgstr "" +"Максимальное количество поисковых запросов запоминаемых для каждого " +"пользователя." #: views.py:25 msgid "Search results" @@ -87,7 +92,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 dcf432a38a..d57d65cc7f 100644 --- a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po @@ -1,36 +1,38 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -38,27 +40,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -87,7 +89,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 fd41c3ef83..9759fa07fa 100644 --- a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "Tìm kiếm" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -39,27 +40,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -88,7 +89,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po index 5cfb3af3d9..1a3f21c267 100644 --- a/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:15 +#: apps.py:16 msgid "Dynamic search" msgstr "" -#: forms.py:20 +#: forms.py:21 msgid "Search terms" msgstr "搜索项" -#: links.py:7 settings.py:8 views.py:54 views.py:68 +#: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" msgstr "搜索" -#: links.py:9 views.py:75 +#: links.py:9 views.py:77 msgid "Advanced search" msgstr "" @@ -39,27 +40,27 @@ msgstr "" msgid "Search again" msgstr "" -#: models.py:23 +#: models.py:24 msgid "User" msgstr "" -#: models.py:24 +#: models.py:26 msgid "Query" msgstr "" -#: models.py:26 +#: models.py:28 msgid "Datetime created" msgstr "" -#: models.py:28 +#: models.py:30 msgid "Hits" msgstr "" -#: models.py:70 +#: models.py:74 msgid "Recent search" msgstr "" -#: models.py:71 +#: models.py:75 msgid "Recent searches" msgstr "" @@ -88,7 +89,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po index 55ac6c04cc..4ddd68d4a5 100644 --- a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po index cd5d8d7961..681724587d 100644 --- a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" 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 4fe3116f8e..f2e06d2925 100644 --- a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" diff --git a/mayan/apps/events/locale/da/LC_MESSAGES/django.po b/mayan/apps/events/locale/da/LC_MESSAGES/django.po index c02bce494a..a1a43442b6 100644 --- a/mayan/apps/events/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/da/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" 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 41858c840d..0bdb1bd4fc 100644 --- a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "Ereignisse" diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.po b/mayan/apps/events/locale/en/LC_MESSAGES/django.po index c15a4b4456..45ab002232 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: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" diff --git a/mayan/apps/events/locale/es/LC_MESSAGES/django.po b/mayan/apps/events/locale/es/LC_MESSAGES/django.po index 3382f83f9c..fb23609f2c 100644 --- a/mayan/apps/events/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/es/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "Eventos" diff --git a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po index c8ba06abef..104ca22449 100644 --- a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "رویداد" diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po index 680c324b17..df0c3450e4 100644 --- a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe kryskool , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "Évènements" diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po index ecccf26a66..eada9e49ee 100644 --- a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" diff --git a/mayan/apps/events/locale/id/LC_MESSAGES/django.po b/mayan/apps/events/locale/id/LC_MESSAGES/django.po index 1669c8393c..7920995a77 100644 --- a/mayan/apps/events/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/id/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.po b/mayan/apps/events/locale/it/LC_MESSAGES/django.po index 28fa8d3e1b..ccc4357dcc 100644 --- a/mayan/apps/events/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/it/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" 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 20d58c464e..f612817407 100644 --- a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po index b9b60e1ced..b94fbcda60 100644 --- a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "Zdarzenia" diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po index e3374b9934..b54f1a6387 100644 --- a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" diff --git a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po index 2f5960ce1e..10a6010c2c 100644 --- a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 22:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "Eventos" 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 016f871740..2497998b98 100644 --- a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po index 8b15406b31..1aba619f35 100644 --- a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po @@ -1,23 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" 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 9cebc9cf20..845e97e7a3 100644 --- a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" 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 81a5dc3d1f..db39becb3e 100644 --- a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" diff --git a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po index f5a6f05698..0f9daff88d 100644 --- a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:18 links.py:27 links.py:30 permissions.py:7 views.py:38 +#: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" msgstr "" diff --git a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po index 985ffbcfbb..d0bedefb38 100644 --- a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,34 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "المجلدات" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "مجلد" @@ -48,7 +46,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -64,7 +62,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -72,11 +70,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -89,7 +87,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +95,6 @@ msgid "Remove documents from folders" msgstr "إزالة وثائق من المجلدات" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -106,56 +102,45 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "مجلد باسم: %s ، موجود مسبقا." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "تم مسح المجلد %s بنجاح" - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "خطأ بمسح المجلد %(folder)s : %(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:141 msgid "Must provide at least one document." msgstr "يجب أن توفر ما لا يقل عن وثيقة واحدة." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "الوثيقة %(document)s تم اضافتها للمجلد %(folder)s بنجاح" -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "الوثيقة %(document)s موجودة بالمجلد %(folder)s مسبقاً" -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" @@ -165,26 +150,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "يجب أن توفر ما لا يقل عن مجلد واحد." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "الوثيقة %s أزيلت بنجاح" -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "خطأ بمسح الوثيقة %(document)s : %(error)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" @@ -195,6 +175,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "مجلد باسم: %s ، موجود مسبقا." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "تم مسح المجلد %s بنجاح" + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "خطأ بمسح المجلد %(folder)s : %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -232,11 +221,11 @@ msgstr[5] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -269,12 +258,12 @@ msgstr[5] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po b/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po index 93e314f322..5b7430995b 100644 --- a/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -10,34 +10,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Папки" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Папка" @@ -49,7 +46,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -65,7 +62,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -73,11 +70,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -90,7 +87,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -99,7 +95,6 @@ msgid "Remove documents from folders" msgstr "Премахване на документи от папки" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,87 +102,80 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Името на папката: %s, вече съществува." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Папка: %s изтрита успешно." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Папка: %(folder)s грешка при изтриване: %(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:141 msgid "Must provide at least one document." msgstr "" -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "Документ: %(document)s е добавен в папка: %(folder)s успешно." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Документ: %(document)s е вече в папка: %(folder)s." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" msgstr[1] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Трябва да поставите поне един документ в папката." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Документ: %s премахнат успешно." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Документ: %(document)s грешка при изтриване: %(error)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" msgstr[1] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Името на папката: %s, вече съществува." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Папка: %s изтрита успешно." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Папка: %(folder)s грешка при изтриване: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -225,11 +213,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -262,12 +250,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po index e801d3dae6..1e4b6bf599 100644 --- a/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,34 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Folderi" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Folder" @@ -48,7 +46,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -64,7 +62,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -72,11 +70,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -89,7 +87,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +95,6 @@ msgid "Remove documents from folders" msgstr "Ukloniti dokumente iz foldera" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -106,82 +102,66 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Folder sa imenom: %s, već postoji." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Folder: %s uspješno obrisan." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Folder: %(folder)s greška brisanja: %(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:141 msgid "Must provide at least one document." msgstr "Mora biti barem jedan dokument." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "Dokument: %(document)s uspješno dodan u folder: %(folder)s ." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Dokument: %(document)s je već u folderu: %(folder)s." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Mora biti makar jedan folder dokumenata." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Dokument \"%s\" uspješno uklonjen." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Dokument: %(document)s greška brisanja: %(error)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" @@ -189,6 +169,15 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Folder sa imenom: %s, već postoji." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Folder: %s uspješno obrisan." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Folder: %(folder)s greška brisanja: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -226,11 +215,11 @@ msgstr[2] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -263,12 +252,12 @@ msgstr[2] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/da/LC_MESSAGES/django.po b/mayan/apps/folders/locale/da/LC_MESSAGES/django.po index 25812d097a..ed245b9f79 100644 --- a/mayan/apps/folders/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2012 @@ -9,34 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Mapper" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Mappe" @@ -48,7 +45,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -64,7 +61,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -72,11 +69,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -89,7 +86,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +94,6 @@ msgid "Remove documents from folders" msgstr "Fjern dokumenter fra mapper" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -106,87 +101,80 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "En navngiven mappe: %s, eksisterer allerede." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Mappe: %s slettet." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Mapper: %(folder)s slettefejl: %(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:141 msgid "Must provide at least one document." msgstr "Angiv mindst ét ​​dokument." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "Dokument: %(document)s føjet til mappen: %(folder)s med succes." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Dokument: %(document)s er allerede i mappen: %(folder)s." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" msgstr[1] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Skal give mindst ét mappe dokument." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Dokument: %s blev slettet." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Dokument: %(document)s slettefejl: %(error)s " -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" msgstr[1] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "En navngiven mappe: %s, eksisterer allerede." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Mappe: %s slettet." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Mapper: %(folder)s slettefejl: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -224,11 +212,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -261,12 +249,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po index 82a4eb8617..b876f2b09b 100644 --- a/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -13,34 +13,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-09-24 18:06+0000\n" "Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Ordner" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "Erstellt" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "Benutzer" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "Dokumente" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Ordner" @@ -52,7 +49,7 @@ msgstr "Zu Ordner hinzufügen" msgid "Add to folder" msgstr "Zu Ordner hinzufügen" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "Ordner erstellen" @@ -68,7 +65,7 @@ msgstr "Aus Ordner entfernen" msgid "Edit" msgstr "Bearbeiten" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "Bezeichner" @@ -76,11 +73,11 @@ msgstr "Bezeichner" msgid "Datetime created" msgstr "Erstellungsdatum" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "Dokumentenordner" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "Dokumentenordner" @@ -93,7 +90,6 @@ msgid "Edit folders" msgstr "Ordner bearbeiten" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Ordner löschen" @@ -102,7 +98,6 @@ msgid "Remove documents from folders" msgstr "Dokumente aus Ordnern entfernen" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "Ordner anzeigen" @@ -110,87 +105,83 @@ msgstr "Ordner anzeigen" msgid "Add documents to folders" msgstr "Dokumente zu Ordnern hinzufügen" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "Primärschlüssel des hinzuzufügenden Dokuments." -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "Ordner %s bearbeiten" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Ein Ordner \"%s\" existiert bereits." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Ordner \"%s\" erfolgreich gelöscht" - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Fehler beim Löschen von Ordner %(folder)s: %(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Ordner %s löschen?" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "Dokumente in Ordner %s" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "Ordner %s bearbeiten" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "Ordner mit Dokument %s" + +#: views.py:141 msgid "Must provide at least one document." msgstr "Es muss mindestens ein Dokument angegeben werden." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "Dokument %(document)s zu Ordner %(folder)s erfolgreich hinzugefügt" -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Dokument %(document)s ist bereits im Ordner %(folder)s" -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "Dokument zu Ordner hinzufügen" msgstr[1] "Dokumente zu Ordner hinzufügen" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "Ordner mit Dokument %s" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Es muss mindestens ein Ordnerdokument angegeben werden" -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Dokument \"%s\" erfolgreich entfernt" -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Fehler beim Löschen von Dokument %(document)s: %(error)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "Ausgewähltes Dokument aus Ordner %(folder)s entfernen?" msgstr[1] "Ausgewählte Dokumente aus Ordner %(folder)s entfernen?" +#~ msgid "User" +#~ msgstr "Benutzer" + +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Ein Ordner \"%s\" existiert bereits." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Ordner \"%s\" erfolgreich gelöscht" + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Fehler beim Löschen von Ordner %(folder)s: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -228,11 +219,11 @@ msgstr[1] "Ausgewählte Dokumente aus Ordner %(folder)s entfernen?" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -265,12 +256,12 @@ msgstr[1] "Ausgewählte Dokumente aus Ordner %(folder)s entfernen?" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/en/LC_MESSAGES/django.po b/mayan/apps/folders/locale/en/LC_MESSAGES/django.po index b5f49c14f9..2103a5ccd7 100644 --- a/mayan/apps/folders/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/folders/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: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,26 +18,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Folders" -#: apps.py:61 +#: apps.py:68 #, fuzzy msgid "Created" msgstr "created" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 #, fuzzy msgid "Documents" msgstr "documents" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Folder" @@ -51,7 +47,7 @@ msgstr "add to a folder" msgid "Add to folder" msgstr "add to folder" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 #, fuzzy msgid "Create folder" msgstr "create folder" @@ -70,7 +66,7 @@ msgstr "remove from folder" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -79,12 +75,12 @@ msgstr "" msgid "Datetime created" msgstr "datetime created" -#: models.py:57 +#: models.py:63 #, fuzzy msgid "Document folder" msgstr "documents in folder: %s" -#: models.py:58 +#: models.py:64 #, fuzzy msgid "Document folders" msgstr "documents in folder: %s" @@ -120,82 +116,67 @@ msgstr "Edit new folders" msgid "Add documents to folders" msgstr "Add document to a folder" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 -#, fuzzy, python-format -msgid "Edit folder: %s" -msgstr "edit folder: %s" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "A folder named: %s, already exists." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Folder: %s deleted successfully." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Folder: %(folder)s delete error: %(error)s" - -#: views.py:124 +#: views.py:54 #, fuzzy, python-format #| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Delete new folders" -#: views.py:151 +#: views.py:66 #, fuzzy, python-format msgid "Documents in folder: %s" msgstr "documents in folder: %s" -#: views.py:164 +#: views.py:93 +#, fuzzy, python-format +msgid "Edit folder: %s" +msgstr "edit folder: %s" + +#: views.py:127 +#, fuzzy, python-format +msgid "Folders containing document: %s" +msgstr "folders containing: %s" + +#: views.py:141 msgid "Must provide at least one document." msgstr "Must provide at least one document." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "Document: %(document)s added to folder: %(folder)s successfully." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Document: %(document)s is already in folder: %(folder)s." -#: views.py:206 +#: views.py:205 #, fuzzy msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "Add document to a folder" msgstr[1] "Add document to a folder" -#: views.py:237 -#, fuzzy, python-format -msgid "Folders containing document: %s" -msgstr "folders containing: %s" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Must provide at least one folder document." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Document: %s removed successfully." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Document: %(document)s delete error: %(error)s" -#: views.py:281 +#: views.py:267 #, fuzzy, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" @@ -206,6 +187,15 @@ msgstr[1] "" "Are you sure you wish to remove the document: %(document)s from the folder " "\"%(folder)s\"?" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "A folder named: %s, already exists." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Folder: %s deleted successfully." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" diff --git a/mayan/apps/folders/locale/es/LC_MESSAGES/django.po b/mayan/apps/folders/locale/es/LC_MESSAGES/django.po index a42bb59f04..67c594d9ae 100644 --- a/mayan/apps/folders/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,34 +12,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Carpetas" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "Creado" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "Usuario" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "Documentos" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Carpeta" @@ -51,7 +48,7 @@ msgstr "Añadir a una carpeta" msgid "Add to folder" msgstr "Añadir a carpeta" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "Crear carpetas" @@ -67,7 +64,7 @@ msgstr "Remover de la carpeta" msgid "Edit" msgstr "Editar" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "Etiqueta" @@ -75,11 +72,11 @@ msgstr "Etiqueta" msgid "Datetime created" msgstr "Fecha y hora que fue creado" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -92,7 +89,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -101,7 +97,6 @@ msgid "Remove documents from folders" msgstr "Eliminar documentos de las carpetas" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -109,87 +104,83 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "Llave primaria del documento a ser agregado." -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "Editar carpeta: %s" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Una carpeta con el nombre: %s, ya existe." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Carpeta: %s eliminada con éxito." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Carpeta: %(folder)s error de eliminación: %(error)s " - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "¿Eliminar la carpeta: %s?" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "Documentos en la carpeta: %s" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "Editar carpeta: %s" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "Las carpetas que contienen el documento: %s" + +#: views.py:141 msgid "Must provide at least one document." msgstr "Debe proporcionar al menos un documento." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "Documento: %(document)s agregado a la carpeta: %(folder)s con éxito." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Documento: %(document)s ya está en la carpeta: %(folder)s." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "Añadir documento a la carpeta" msgstr[1] "Añadir los documentos a la carpeta" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "Las carpetas que contienen el documento: %s" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Debe proveer al menos un documento de carpeta." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Documento: %s eliminado con éxito." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Documento: %(document)s error de eliminación: %(error)s " -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "¿Eliminar el documento seleccionado de la carpeta: %(folder)s?" msgstr[1] "¿Eliminar los documentos seleccionados de la carpeta: %(folder)s?" +#~ msgid "User" +#~ msgstr "Usuario" + +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Una carpeta con el nombre: %s, ya existe." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Carpeta: %s eliminada con éxito." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Carpeta: %(folder)s error de eliminación: %(error)s " + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -227,11 +218,11 @@ msgstr[1] "¿Eliminar los documentos seleccionados de la carpeta: %(folder)s?" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -264,12 +255,12 @@ msgstr[1] "¿Eliminar los documentos seleccionados de la carpeta: %(folder)s?" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po b/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po index eba22087dd..9f78b2bba2 100644 --- a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po @@ -1,41 +1,38 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "پرونده ها" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "ساخته‌شده" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "کاربر" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "اسناد" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "پرونده" @@ -47,7 +44,7 @@ msgstr "اضافه به پرونده" msgid "Add to folder" msgstr "اضافه به پرونده" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "ایجاد پرونده" @@ -63,7 +60,7 @@ msgstr "حذف از پرونده" msgid "Edit" msgstr "ویرایش" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -71,11 +68,11 @@ msgstr "" msgid "Datetime created" msgstr "تاریخ و زمان ایجاد" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -88,7 +85,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,7 +93,6 @@ msgid "Remove documents from folders" msgstr "حذف اسناد از پرونده ها" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -105,85 +100,81 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "ویرایش پرونده: %s" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "پرونده ای با نام %s موجود است." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "حذف موفق پرونده: %s" - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "پرونده: %(folder)s خطای حذف: %(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "اسناد داحل پرونده:%s" -#: views.py:164 -msgid "Must provide at least one document." -msgstr "حداقل یک سند باید ارایه شود." - -#: views.py:186 +#: views.py:93 #, python-format -msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "سند%(document)s با موفقیت به پرونده%(folder)s اضافه شد." +msgid "Edit folder: %s" +msgstr "ویرایش پرونده: %s" -#: views.py:189 -#, python-format -msgid "Document: %(document)s is already in folder: %(folder)s." -msgstr "سند%(document)s درون پرونده%(folder)s. میباشد." - -#: views.py:206 -msgid "Add document to folder" -msgid_plural "Add documents to folder" -msgstr[0] "اسناد را به پوشه اضافه کنید" - -#: views.py:237 +#: views.py:127 #, python-format msgid "Folders containing document: %s" msgstr "پوشه های شامل اسناد : %s" -#: views.py:251 +#: views.py:141 +msgid "Must provide at least one document." +msgstr "حداقل یک سند باید ارایه شود." + +#: views.py:175 +#, python-format +msgid "Document: %(document)s added to folder: %(folder)s successfully." +msgstr "سند%(document)s با موفقیت به پرونده%(folder)s اضافه شد." + +#: views.py:184 +#, python-format +msgid "Document: %(document)s is already in folder: %(folder)s." +msgstr "سند%(document)s درون پرونده%(folder)s. میباشد." + +#: views.py:205 +msgid "Add document to folder" +msgid_plural "Add documents to folder" +msgstr[0] "اسناد را به پوشه اضافه کنید" + +#: views.py:227 msgid "Must provide at least one folder document." msgstr "حداقل یک پرونده سند باید ارایه گردد." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "سند: %s با موفقیت حذف شد." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "سند%(document)s خطای حذف%(error)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" +#~ msgid "User" +#~ msgstr "کاربر" + +#~ msgid "A folder named: %s, already exists." +#~ msgstr "پرونده ای با نام %s موجود است." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "حذف موفق پرونده: %s" + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "پرونده: %(folder)s خطای حذف: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -221,11 +212,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -258,12 +249,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po b/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po index 3ac9c2b9a5..d7e64b0ec5 100644 --- a/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -10,34 +10,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Répertoires" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "Créé" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "Utilisateur" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "Documents" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Répertoire" @@ -49,7 +46,7 @@ msgstr "Ajouter à un dossier" msgid "Add to folder" msgstr "Ajouter au dossier" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "Créer un dossier" @@ -65,7 +62,7 @@ msgstr "Supprimer du dossier" msgid "Edit" msgstr "Modifier" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -73,11 +70,11 @@ msgstr "" msgid "Datetime created" msgstr "Date et heure de création" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -90,7 +87,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -99,7 +95,6 @@ msgid "Remove documents from folders" msgstr "Retirer des documents des répertoires" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,87 +102,84 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "Modifier le répertoire: %s" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Un répertoire portant le nom: %s existe déjà." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Répertoire: %s supprimé avec succès." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Erreur: %(error)s lors de la suppression du répertoire: %(folder)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "Documents du dossier: %s" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "Modifier le répertoire: %s" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "Dossiers contenant le document: %s" + +#: views.py:141 msgid "Must provide at least one document." msgstr "Il est nécessaire de fournir au moins un document." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "Document: %(document)s ajouté avec succès au répertoire: %(folder)s." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." -msgstr "Document: %(document)s est déjà présent dans le répertoire: %(folder)s." +msgstr "" +"Document: %(document)s est déjà présent dans le répertoire: %(folder)s." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "Ajouter un document au répertoire" msgstr[1] "Ajouter les documents au répertoire" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "Dossiers contenant le document: %s" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Vous devez fournir au moins un document pour le répertoire." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Document: %s supprimé avec succès." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Document: %(document)s erreur de suppression: %(error)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" msgstr[1] "" +#~ msgid "User" +#~ msgstr "Utilisateur" + +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Un répertoire portant le nom: %s existe déjà." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Répertoire: %s supprimé avec succès." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Erreur: %(error)s lors de la suppression du répertoire: %(folder)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -225,11 +217,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -262,12 +254,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po b/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po index 4e08232f8b..e2f944c64c 100644 --- a/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Dezső József , 2013 @@ -9,34 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Mappák" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Mappa" @@ -48,7 +45,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -64,7 +61,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -72,11 +69,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -89,7 +86,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +94,6 @@ msgid "Remove documents from folders" msgstr "Dokumentumok eltávolítása a mappákból" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -106,87 +101,80 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Már van %s nevű mappa." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "%s mappa sikeresen törölve" - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Hiba a %(folder)s mappa törlésekor: %(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:141 msgid "Must provide at least one document." msgstr "Adjon meg legalább egy dokumentumot." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "A %(document)s dokumentum elhelyezése a %(folder)s mappában sikerült." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "A %(document)s nevű dokumentum már van a %(folder)s. mappában." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" msgstr[1] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Legalább egy dokumentum mappa szükséges" -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "A %s dokumentum eltávolítása sikerült." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Hiba %(error)s a %(document)s dokumentum törlésekor." -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" msgstr[1] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Már van %s nevű mappa." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "%s mappa sikeresen törölve" + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Hiba a %(folder)s mappa törlésekor: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -224,11 +212,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -261,12 +249,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/id/LC_MESSAGES/django.po b/mayan/apps/folders/locale/id/LC_MESSAGES/django.po index e1aa2c9cdc..63a8dd987f 100644 --- a/mayan/apps/folders/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/id/LC_MESSAGES/django.po @@ -1,41 +1,38 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "" @@ -47,7 +44,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -63,7 +60,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -71,11 +68,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -88,7 +85,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,7 +93,6 @@ msgid "Remove documents from folders" msgstr "" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -105,80 +100,64 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "" - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "" - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 -msgid "Must provide at least one document." -msgstr "" - -#: views.py:186 +#: views.py:93 #, python-format -msgid "Document: %(document)s added to folder: %(folder)s successfully." +msgid "Edit folder: %s" msgstr "" -#: views.py:189 -#, python-format -msgid "Document: %(document)s is already in folder: %(folder)s." -msgstr "" - -#: views.py:206 -msgid "Add document to folder" -msgid_plural "Add documents to folder" -msgstr[0] "" - -#: views.py:237 +#: views.py:127 #, python-format msgid "Folders containing document: %s" msgstr "" -#: views.py:251 +#: views.py:141 +msgid "Must provide at least one document." +msgstr "" + +#: views.py:175 +#, python-format +msgid "Document: %(document)s added to folder: %(folder)s successfully." +msgstr "" + +#: views.py:184 +#, python-format +msgid "Document: %(document)s is already in folder: %(folder)s." +msgstr "" + +#: views.py:205 +msgid "Add document to folder" +msgid_plural "Add documents to folder" +msgstr[0] "" + +#: views.py:227 msgid "Must provide at least one folder document." msgstr "" -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "" -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" @@ -221,11 +200,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -258,12 +237,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/it/LC_MESSAGES/django.po b/mayan/apps/folders/locale/it/LC_MESSAGES/django.po index 687f637ebd..27eab3c627 100644 --- a/mayan/apps/folders/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -12,34 +12,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Cartelle" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Cartella" @@ -51,7 +48,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -67,7 +64,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -75,11 +72,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -92,7 +89,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -101,7 +97,6 @@ msgid "Remove documents from folders" msgstr "Rimuovere i documenti da cartelle" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -109,87 +104,81 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Il nome cartella: %s, già esiste." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Cartella : %s cancellata con successo." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Cartella: %(folder)s errore di cancellazione: %(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:141 msgid "Must provide at least one document." msgstr "Bisogna fornire almeno un documento." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "Documento: %(document)s aggiunto alla cartella: %(folder)s successfully." +msgstr "" +"Documento: %(document)s aggiunto alla cartella: %(folder)s successfully." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Documento: %(document)s è già nella cartella: %(folder)s." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" msgstr[1] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Devi almeno indicare una cartella documenti." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Documento: %s cancellato con successo." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Documento: %(document)s errore di cancellazione: %(error)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" msgstr[1] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Il nome cartella: %s, già esiste." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Cartella : %s cancellata con successo." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Cartella: %(folder)s errore di cancellazione: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -227,11 +216,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -264,12 +253,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po index 8cbaa46464..8d6a630a0d 100644 --- a/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po @@ -1,41 +1,38 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:44-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-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "" @@ -47,7 +44,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -63,7 +60,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -71,11 +68,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -88,7 +85,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,7 +93,6 @@ msgid "Remove documents from folders" msgstr "" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -105,81 +100,65 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "" - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "" - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:141 msgid "Must provide at least one document." msgstr "" -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "" -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "" -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" msgstr[1] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "" -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "" -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" @@ -223,11 +202,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -260,12 +239,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po index f2f3652191..866f4b2c23 100644 --- a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -10,34 +10,32 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-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/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Katalogi" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "utworzony" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "Użytkownik" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "Dokumenty" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Katalog" @@ -49,7 +47,7 @@ msgstr "Dodać do folderu" msgid "Add to folder" msgstr "Dodać do folderu" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "Stworzyć folder" @@ -65,7 +63,7 @@ msgstr "Usuń z folderu" msgid "Edit" msgstr "Edytuj" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -73,11 +71,11 @@ msgstr "" msgid "Datetime created" msgstr "Data utworzenia" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -90,7 +88,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -99,7 +96,6 @@ msgid "Remove documents from folders" msgstr "Usuń dokumenty z katalogów" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,82 +103,66 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "edytuj katalog: %s" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Katalog o nazwie:%s już istnieje." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Katalog: %s został usunięty." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Katalog: %(folder)s błąd usuwania: %(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "Dokumenty w katalogu: %s" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "edytuj katalog: %s" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "Katalogi zawierające dokument: %s" + +#: views.py:141 msgid "Must provide at least one document." msgstr "Musisz podać co najmniej jeden dokument." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "Dokument : %(document)s pomyślnie dodano do katalogu: %(folder)s." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Dokument: %(document)s jest już w katalogu: %(folder)s." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "Dodaj dokument do katalogu" msgstr[1] "Dodaj dokumenty do katalogu" msgstr[2] "Dodaj dokumenty do katalogu" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "Katalogi zawierające dokument: %s" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Musisz podać conajmiej jeden katalog dokumentów." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Pomyślnie usunięto dokument: %s. " -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Dokument: %(document)s błąd usuwania: %(error)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" @@ -190,6 +170,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#~ msgid "User" +#~ msgstr "Użytkownik" + +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Katalog o nazwie:%s już istnieje." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Katalog: %s został usunięty." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Katalog: %(folder)s błąd usuwania: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -227,11 +219,11 @@ msgstr[2] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -264,12 +256,12 @@ msgstr[2] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po index 84394280b9..386c5113f6 100644 --- a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/folders/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: # Translators: # Renata Oliveira , 2011 @@ -11,34 +11,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-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/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Pastas" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Pasta" @@ -50,7 +47,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -66,7 +63,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -74,11 +71,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -91,7 +88,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -100,7 +96,6 @@ msgid "Remove documents from folders" msgstr "Remover documentos das pastas" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,87 +103,80 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Já existe uma pasta com o nome %s." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Pasta: %s removida com sucesso." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Pasta: %(folder)s erro ao eliminar: %(error)s " - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:141 msgid "Must provide at least one document." msgstr "" -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "Documento: %(document)s adicionados à pasta: %(folder)s com sucesso." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Documento: %(document)s já está na pasta: %(folder)s ." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" msgstr[1] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Deve fornecer pelo menos um documento da pasta." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Documento: %s removido com sucesso." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Documento: %(document)s erro ao eliminar: %(error)s " -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" msgstr[1] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Já existe uma pasta com o nome %s." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Pasta: %s removida com sucesso." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Pasta: %(folder)s erro ao eliminar: %(error)s " + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -226,11 +214,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -263,12 +251,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po index c8b9753724..b2d5f695be 100644 --- a/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2012 @@ -12,34 +12,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-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-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Pastas" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "Criando" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "Usuário" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "Documentos" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Pasta" @@ -51,7 +48,7 @@ msgstr "Adicionar a uma pasta" msgid "Add to folder" msgstr "Adicione a pasta" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "Criar pasta" @@ -67,7 +64,7 @@ msgstr "Remover da pasta" msgid "Edit" msgstr "Editar" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -75,11 +72,11 @@ msgstr "" msgid "Datetime created" msgstr "Hora e data criada" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -92,7 +89,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -101,7 +97,6 @@ msgid "Remove documents from folders" msgstr "Remover documentos das pastas" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -109,87 +104,83 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "Editar pasta: %s" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "A pasta com o nome: %s, já existe." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Pasta: %s removido com sucesso." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Pasta: %(folder)s erro ao deletar: %(error)s " - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "Documentos na pasta: %s" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "Editar pasta: %s" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "Pastas contendo documento:%s" + +#: views.py:141 msgid "Must provide at least one document." msgstr "" -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "Documento: %(document)s adicionados à pasta: %(folder)s com sucesso." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Documento: %(document)s já está na pasta: %(folder)s ." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" msgstr[1] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "Pastas contendo documento:%s" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Deve fornecer pelo menos um documento da pasta." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Documento: %s removido com sucesso." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Documento: %(document)s erro ao deletar: %(error)s " -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" msgstr[1] "" +#~ msgid "User" +#~ msgstr "Usuário" + +#~ msgid "A folder named: %s, already exists." +#~ msgstr "A pasta com o nome: %s, já existe." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Pasta: %s removido com sucesso." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Pasta: %(folder)s erro ao deletar: %(error)s " + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -227,11 +218,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -264,12 +255,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po index f09784991c..371d2f4354 100644 --- a/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,34 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-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-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Directoare" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Director" @@ -48,7 +46,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -64,7 +62,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -72,11 +70,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -89,7 +87,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +95,6 @@ msgid "Remove documents from folders" msgstr "Scoateți documentele din directoare" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -106,82 +102,67 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Un director cu numele: %s, există deja." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Director %s eliminat cu succes." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Eroare %(error)s ştergere director %(folder)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:141 msgid "Must provide at least one document." msgstr "Trebuie selectat cel puțin un document." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "Documentul:%(document)s a fost adăugat la directorul :%(folder)s cu succes." +msgstr "" +"Documentul:%(document)s a fost adăugat la directorul :%(folder)s cu succes." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Documentul: %(document)s este deja în directorul : %(folder)s." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Trebuie selectat cel puțin un director." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Document: % s eliminat cu succes." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Eroare %(error)s ştergere document %(document)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" @@ -189,6 +170,15 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Un director cu numele: %s, există deja." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Director %s eliminat cu succes." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Eroare %(error)s ştergere director %(folder)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -226,11 +216,11 @@ msgstr[2] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -263,12 +253,12 @@ msgstr[2] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po index 91a298a3f0..eeda412c5e 100644 --- a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po @@ -1,41 +1,40 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-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/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Папки" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Папка" @@ -47,7 +46,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -63,7 +62,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -71,11 +70,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -88,7 +87,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,7 +95,6 @@ msgid "Remove documents from folders" msgstr "Удаление документов из папок" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -105,56 +102,45 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Папку с именем %s уже существует." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Папка %s успешно удалена." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "При удалении папки %(folder)s произошла ошибка: %(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:141 msgid "Must provide at least one document." msgstr "Необходимо указатьть хотя бы один документ." -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "Документ: %(document)s добавлен в папку: %(folder)s успешно." -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "Документ: %(document)s is already in folder: %(folder)s." -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" @@ -162,26 +148,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Должна быть хотя бы одна папка документов." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Документ: %s успешно удален." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Документ:%(document)s ошибка удаления: %(error)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" @@ -190,6 +171,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Папку с именем %s уже существует." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Папка %s успешно удалена." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "При удалении папки %(folder)s произошла ошибка: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -227,11 +217,11 @@ msgstr[3] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -264,12 +254,12 @@ msgstr[3] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po index 1ae8490250..1400740c02 100644 --- a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po @@ -1,41 +1,39 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-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-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "" @@ -47,7 +45,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -63,7 +61,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -71,11 +69,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -88,7 +86,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,7 +94,6 @@ msgid "Remove documents from folders" msgstr "" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -105,56 +101,45 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "" - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "" - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 +#: views.py:93 +#, python-format +msgid "Edit folder: %s" +msgstr "" + +#: views.py:127 +#, python-format +msgid "Folders containing document: %s" +msgstr "" + +#: views.py:141 msgid "Must provide at least one document." msgstr "" -#: views.py:186 +#: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." msgstr "" -#: views.py:189 +#: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." msgstr "" -#: views.py:206 +#: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" msgstr[0] "" @@ -162,26 +147,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:237 -#, python-format -msgid "Folders containing document: %s" -msgstr "" - -#: views.py:251 +#: views.py:227 msgid "Must provide at least one folder document." msgstr "" -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "" -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" @@ -227,11 +207,11 @@ msgstr[3] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -264,12 +244,12 @@ msgstr[3] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po index c0e19bc481..545c2e37be 100644 --- a/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,34 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-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/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "Các thư mục" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "Thư mục" @@ -48,7 +45,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -64,7 +61,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -72,11 +69,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -89,7 +86,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +94,6 @@ msgid "Remove documents from folders" msgstr "Xóa các tài liệu từ các thư mục" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -106,85 +101,78 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "Thư mục tên: %s, đã tồn tại." - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "Thư mục: %s đã xóa thành công." - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "Thư mục: %(folder)s lỗi xóa: %(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 -msgid "Must provide at least one document." -msgstr "Cần cung cấp ít nhất một tài liệu." - -#: views.py:186 +#: views.py:93 #, python-format -msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "Tài liệu: %(document)s được thêm vào thư mục: %(folder)s thành công." +msgid "Edit folder: %s" +msgstr "" -#: views.py:189 -#, python-format -msgid "Document: %(document)s is already in folder: %(folder)s." -msgstr "Tài liệu: %(document)s đã tồn tại trong thư mục: %(folder)s." - -#: views.py:206 -msgid "Add document to folder" -msgid_plural "Add documents to folder" -msgstr[0] "" - -#: views.py:237 +#: views.py:127 #, python-format msgid "Folders containing document: %s" msgstr "" -#: views.py:251 +#: views.py:141 +msgid "Must provide at least one document." +msgstr "Cần cung cấp ít nhất một tài liệu." + +#: views.py:175 +#, python-format +msgid "Document: %(document)s added to folder: %(folder)s successfully." +msgstr "Tài liệu: %(document)s được thêm vào thư mục: %(folder)s thành công." + +#: views.py:184 +#, python-format +msgid "Document: %(document)s is already in folder: %(folder)s." +msgstr "Tài liệu: %(document)s đã tồn tại trong thư mục: %(folder)s." + +#: views.py:205 +msgid "Add document to folder" +msgid_plural "Add documents to folder" +msgstr[0] "" + +#: views.py:227 msgid "Must provide at least one folder document." msgstr "Cần cung cấp ít nhất một thư mục tài liệu." -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "Tài liệu: %s đã xóa thành công." -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "Tài liệu: %(document)s lỗi xóa: %(error)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "Thư mục tên: %s, đã tồn tại." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Thư mục: %s đã xóa thành công." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Thư mục: %(folder)s lỗi xóa: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -222,11 +210,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -259,12 +247,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po index 66e379282d..b950420c7d 100644 --- a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,34 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:15 links.py:43 models.py:51 permissions.py:7 -#: views.py:53 +#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: views.py:104 msgid "Folders" msgstr "文件夹" -#: apps.py:61 +#: apps.py:68 msgid "Created" msgstr "" -#: apps.py:63 models.py:21 -msgid "User" -msgstr "" - -#: apps.py:65 links.py:46 models.py:26 +#: apps.py:71 links.py:46 models.py:26 msgid "Documents" msgstr "" -#: forms.py:34 models.py:50 +#: forms.py:34 models.py:44 msgid "Folder" msgstr "文件夹" @@ -48,7 +45,7 @@ msgstr "" msgid "Add to folder" msgstr "" -#: links.py:26 views.py:90 +#: links.py:26 views.py:42 msgid "Create folder" msgstr "" @@ -64,7 +61,7 @@ msgstr "" msgid "Edit" msgstr "" -#: models.py:19 +#: models.py:20 msgid "Label" msgstr "" @@ -72,11 +69,11 @@ msgstr "" msgid "Datetime created" msgstr "" -#: models.py:57 +#: models.py:63 msgid "Document folder" msgstr "" -#: models.py:58 +#: models.py:64 msgid "Document folders" msgstr "" @@ -89,7 +86,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -98,7 +94,6 @@ msgid "Remove documents from folders" msgstr "从文件夹中移除文档" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -106,85 +101,78 @@ msgstr "" msgid "Add documents to folders" msgstr "" -#: serializers.py:61 +#: serializers.py:58 msgid "Primary key of the document to be added." msgstr "" -#: views.py:43 +#: views.py:54 #, python-format -msgid "Edit folder: %s" -msgstr "" - -#: views.py:83 -#, python-format -msgid "A folder named: %s, already exists." -msgstr "文件夹:%s已经存在" - -#: views.py:112 -#, python-format -msgid "Folder: %s deleted successfully." -msgstr "文件夹:%s 删除成功" - -#: views.py:114 -#, python-format -msgid "Folder: %(folder)s delete error: %(error)s" -msgstr "删除文件夹:%(folder)s出错:%(error)s" - -#: views.py:124 -#, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" -#: views.py:151 +#: views.py:66 #, python-format msgid "Documents in folder: %s" msgstr "" -#: views.py:164 -msgid "Must provide at least one document." -msgstr "至少要有一个文档" - -#: views.py:186 +#: views.py:93 #, python-format -msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "文档 %(document)s 成功添加到文件夹: %(folder)s。" +msgid "Edit folder: %s" +msgstr "" -#: views.py:189 -#, python-format -msgid "Document: %(document)s is already in folder: %(folder)s." -msgstr "文档: %(document)s已经存在于文件夹: %(folder)s." - -#: views.py:206 -msgid "Add document to folder" -msgid_plural "Add documents to folder" -msgstr[0] "" - -#: views.py:237 +#: views.py:127 #, python-format msgid "Folders containing document: %s" msgstr "" -#: views.py:251 +#: views.py:141 +msgid "Must provide at least one document." +msgstr "至少要有一个文档" + +#: views.py:175 +#, python-format +msgid "Document: %(document)s added to folder: %(folder)s successfully." +msgstr "文档 %(document)s 成功添加到文件夹: %(folder)s。" + +#: views.py:184 +#, python-format +msgid "Document: %(document)s is already in folder: %(folder)s." +msgstr "文档: %(document)s已经存在于文件夹: %(folder)s." + +#: views.py:205 +msgid "Add document to folder" +msgid_plural "Add documents to folder" +msgstr[0] "" + +#: views.py:227 msgid "Must provide at least one folder document." msgstr "必须提供至少一个文件夹文档" -#: views.py:269 +#: views.py:248 #, python-format msgid "Document: %s removed successfully." msgstr "文档:%s移除成功" -#: views.py:271 +#: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" msgstr "文档: %(document)s 删除错误:%(error)s" -#: views.py:281 +#: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "文件夹:%s已经存在" + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "文件夹:%s 删除成功" + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "删除文件夹:%(folder)s出错:%(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -222,11 +210,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -259,12 +247,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po index 1349844c4c..3bf06d8e59 100644 --- a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po b/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po index a5a981e0b5..04e82fa0fa 100644 --- a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po index 6e26a5353d..042c53dd19 100644 --- a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/da/LC_MESSAGES/django.po b/mayan/apps/installation/locale/da/LC_MESSAGES/django.po index 42c82c0448..59554835a4 100644 --- a/mayan/apps/installation/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # René Rovsing Bach , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po index d0693c5fb0..3112ce8ca3 100644 --- a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/en/LC_MESSAGES/django.po b/mayan/apps/installation/locale/en/LC_MESSAGES/django.po index 6c46c74fff..7cee77f5de 100644 --- a/mayan/apps/installation/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/installation/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: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/installation/locale/es/LC_MESSAGES/django.po b/mayan/apps/installation/locale/es/LC_MESSAGES/django.po index 4a8a07850d..cbe5c84cba 100644 --- a/mayan/apps/installation/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Igor Támara , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po b/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po index 658697b2d7..f9c98fd26e 100644 --- a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po index e5c8b29afb..7e87d5d783 100644 --- a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe kryskool , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po b/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po index b0eb3206bf..2e1d8cd420 100644 --- a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/id/LC_MESSAGES/django.po b/mayan/apps/installation/locale/id/LC_MESSAGES/django.po index c99f026184..038eb84983 100644 --- a/mayan/apps/installation/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/it/LC_MESSAGES/django.po b/mayan/apps/installation/locale/it/LC_MESSAGES/django.po index 831a56f048..7ba1b49a06 100644 --- a/mayan/apps/installation/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po index f8ffa25498..1c2e9a678f 100644 --- a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po b/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po index 28e37aaac7..7338115eae 100644 --- a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -10,15 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/pt/LC_MESSAGES/django.po b/mayan/apps/installation/locale/pt/LC_MESSAGES/django.po index 336fe26069..a252faf7cf 100644 --- a/mayan/apps/installation/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/installation/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: # Translators: # Vítor Figueiró , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po index 14e8d8e1e6..144e63dd6a 100644 --- a/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Rogerio Falcone , 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po index 5493d65b38..cdd8879de8 100644 --- a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/ru/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ru/LC_MESSAGES/django.po index 7a6d14e1c0..74b33f6e05 100644 --- a/mayan/apps/installation/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po index e014d152d5..8b2cab1ec1 100644 --- a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po index 763bf19c71..715e2bf507 100644 --- a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po index 3251d2414f..a976df81f5 100644 --- a/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po index d20c6b0750..79dbf11e3a 100644 --- a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,29 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -55,7 +57,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "إنشاء ارتباط ذكي جديد" @@ -67,8 +69,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "الروابط الذكية" @@ -143,8 +145,8 @@ msgstr "is in regular expression (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -208,92 +210,78 @@ msgstr "حذف الروابط الذكية" msgid "Edit smart links" msgstr "تحرير الروابط الذكية" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "خطأ بالاستعلام عن الرابط الذكي: %s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "تحرير الرابط الذكي: %s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "تم انشاء شرط الرابط الذكي \"%s\" بنجاح." - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "أضف شرط جديد للرابط الذكي: \"%s\"" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "تم تعديل شرط الرابط الذكي \"%s\" بنجاح." - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "تحرير شرط الرابط الذكي" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "تم مسح شرط الرابط الذكي \"%s\" بنجاح." - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "تم انشاء شرط الرابط الذكي \"%s\" بنجاح." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "تم تعديل شرط الرابط الذكي \"%s\" بنجاح." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "تم مسح شرط الرابط الذكي \"%s\" بنجاح." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -383,14 +371,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po index 4eae11d999..03e4ae0a53 100644 --- a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -55,7 +56,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "" @@ -67,8 +68,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "" @@ -143,8 +144,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -208,89 +209,66 @@ msgstr "" msgid "Edit smart links" msgstr "" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "" - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "" - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -383,14 +361,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 e6eb2e9a3b..6d02b7adf6 100644 --- a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,29 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -55,7 +57,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "Kreiraj novi smart link" @@ -67,8 +69,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "Smart linkovi" @@ -143,8 +145,8 @@ msgstr "je u regularnom izrazu (nije bitno velika ili mala slova)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -208,92 +210,78 @@ msgstr "Obrisati smart linkove" msgid "Edit smart links" msgstr "Izmjeni smart linkove" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "Greška smart link upita: %s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "Izmjeni smart link: %s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "Uslovi smart linka: \"%s\" uspješno kreirani." - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "Dodati nove uslove za smart link: \"%s\"" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "Uslovi smart linka: \"%s\" uspješno izmjenjeni." - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "Izmjeniti uslove smart linka" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "Uslov smart linka: \"%s\" uspješno obrisan." - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Uslovi smart linka: \"%s\" uspješno kreirani." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Uslovi smart linka: \"%s\" uspješno izmjenjeni." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Uslov smart linka: \"%s\" uspješno obrisan." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -383,14 +371,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/da/LC_MESSAGES/django.po b/mayan/apps/linking/locale/da/LC_MESSAGES/django.po index d0d7622c12..97b7618b9b 100644 --- a/mayan/apps/linking/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/da/LC_MESSAGES/django.po @@ -1,36 +1,37 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -54,7 +55,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "" @@ -66,8 +67,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "" @@ -142,8 +143,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -207,89 +208,66 @@ msgstr "" msgid "Edit smart links" msgstr "" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "" - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "" - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -382,14 +360,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 89b19bd789..5b20f86020 100644 --- a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -12,29 +12,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-09-15 22:48+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 msgid "Linking" msgstr "Verknüpfungen" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "Bezeichnung" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "Dynamische Bezeichnung" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "Aktiviert" @@ -58,7 +59,7 @@ msgstr "Bearbeiten" msgid "Conditions" msgstr "Bedingungen" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "Smart Link erstellen" @@ -70,8 +71,8 @@ msgstr "Dokumententypen" msgid "Documents" msgstr "Dokumente" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "Ähnliche Dokumente" @@ -146,9 +147,12 @@ msgstr "ist in regulärem Ausdruck (ohne Groß/Kleinschreibung)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." -msgstr "Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die {{ document }} Kontextvariable ist verfügbar." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die " +"{{ document }} Kontextvariable ist verfügbar." #: models.py:43 #, python-format @@ -211,92 +215,85 @@ msgstr "Smart Links löschen" msgid "Edit smart links" msgstr "Smart Links bearbeiten" -#: views.py:36 -msgid "Available document types" -msgstr "Verfügbare Dokumententypen" - -#: views.py:37 -msgid "Document types enabled" -msgstr "Aktivierte Dokumententypen" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "Dokumententyp, für den Smart Link %s aktiviert werden soll" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "Abfragefehler für Smart Link %s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "Ähnliche Dokumente für %s" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "Verfügbare Dokumententypen" + +#: views.py:99 +msgid "Document types enabled" +msgstr "Aktivierte Dokumententypen" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "Dokumententyp, für den Smart Link %s aktiviert werden soll" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "Ähnliche Dokumente für Dokument %s" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "Smart Link %s bearbeiten" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Smart Link %s wirklich löschen?" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "Bedingungen für Smart Link %s" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "Bedingung für Smart Link \"%s\" erfolgreich erstellt" - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "Neue Bedingungen zu Smart Link \"%s\" hinzufügen" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "Bedingung für Smart Link: \"%s\" erfolgreich bearbeitet" - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "Bedingung für Smart Link bearbeiten" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "Bedingung für Smart Link: \"%s\" erfolgreich gelöscht" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "Fehler beim Löschen der Bedingung %(smart_link_condition)s: %(exception)s" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Bedingung für Smart Link \"%s\" wirklich löschen?" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Bedingung für Smart Link \"%s\" erfolgreich erstellt" + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Bedingung für Smart Link: \"%s\" erfolgreich bearbeitet" + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Bedingung für Smart Link: \"%s\" erfolgreich gelöscht" + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Fehler beim Löschen der Bedingung %(smart_link_condition)s: %(exception)s" + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -386,14 +383,14 @@ msgstr "Bedingung für Smart Link \"%s\" wirklich löschen?" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po b/mayan/apps/linking/locale/en/LC_MESSAGES/django.po index 70e8882bf6..4bce6930e8 100644 --- a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/linking/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: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -22,16 +22,16 @@ msgstr "" msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 #, fuzzy msgid "Dynamic label" msgstr "dynamic title" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 #, fuzzy msgid "Enabled" msgstr "enabled" @@ -60,7 +60,7 @@ msgstr "" msgid "Conditions" msgstr "conditions" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "Create new smart link" @@ -72,8 +72,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "Smart links" @@ -218,93 +218,87 @@ msgstr "Delete smart links" msgid "Edit smart links" msgstr "Edit smart links" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, fuzzy, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "Are you sure you wish to delete smart link: %s?" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "Smart link query error: %s" -#: views.py:117 +#: views.py:78 #, fuzzy, python-format msgid "Documents in smart link: %s" msgstr "documents in smart link: %(group)s" -#: views.py:120 +#: views.py:81 #, fuzzy, python-format msgid "" "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "Error deleting smart link: %(smart_link)s; %(error)s." -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, fuzzy, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "Are you sure you wish to delete smart link: %s?" + +#: views.py:173 #, fuzzy, python-format msgid "Smart links for document: %s" msgstr "smart links (%s)" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "Edit smart link: %s" -#: views.py:211 +#: views.py:210 #, fuzzy, python-format #| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Delete smart links" -#: views.py:223 +#: views.py:222 #, fuzzy, python-format msgid "Conditions for smart link: %s" msgstr "conditions for smart link: %s" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "Smart link condition: \"%s\" created successfully." - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "Add new conditions to smart link: \"%s\"" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "Smart link condition: \"%s\" edited successfully." - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "Edit smart link condition" -#: views.py:339 -#, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "Smart link condition: \"%s\" deleted successfully." - -#: views.py:345 -#, fuzzy, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; %(exception)s." -msgstr "" -"Error deleting smart link condition: %(smart_link_condition)s; %(error)s." - -#: views.py:361 +#: views.py:334 #, fuzzy, python-format #| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Edit smart link condition" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Smart link condition: \"%s\" created successfully." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Smart link condition: \"%s\" edited successfully." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#, fuzzy +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." diff --git a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po index a85a4c35a3..bee6bce111 100644 --- a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -10,29 +10,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "Habilitado" @@ -56,7 +57,7 @@ msgstr "Editar" msgid "Conditions" msgstr "Condiciones" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "Crear un enlace inteligente nuevo" @@ -68,8 +69,8 @@ msgstr "Tipos de documento" msgid "Documents" msgstr "Documentos" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "Enlaces inteligentes" @@ -144,8 +145,8 @@ msgstr "está en la expresión regular (no sensible a mayúsculas)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -155,7 +156,9 @@ msgstr "" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "Este enlace inteligente no está permitido para el tipo de documento seleccionado." +msgstr "" +"Este enlace inteligente no está permitido para el tipo de documento " +"seleccionado." #: models.py:88 models.py:100 msgid "Smart link" @@ -209,92 +212,85 @@ msgstr "Eliminar enlaces inteligentes" msgid "Edit smart links" msgstr "Editar enlaces inteligentes" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "Tipo de documento para el cual habilitar el enlace inteligente: %s" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "Error en consulta de enlace inteligente: %s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "Documentos en enlace inteligente: %s" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "Tipo de documento para el cual habilitar el enlace inteligente: %s" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "Enlaces inteligentes para el documento: %s" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "Editar enlace inteligente: %s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "Condiciones para enlace inteligente: %s" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "Condición del enlace inteligente: \"%s\" creada con éxito." - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "Añadir nuevas condiciones de enlace inteligente: \"%s\"" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "Condición de enlace inteligente: \"%s\", editada con éxito." - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "Editar condición de enlace inteligente" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "Condición de enlace inteligente: \"%s\" eliminada con éxito." - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "Error al borrar condición en enlace inteligente: %(smart_link_condition)s; %(exception)s." - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Condición del enlace inteligente: \"%s\" creada con éxito." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Condición de enlace inteligente: \"%s\", editada con éxito." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Condición de enlace inteligente: \"%s\" eliminada con éxito." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error al borrar condición en enlace inteligente: " +#~ "%(smart_link_condition)s; %(exception)s." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -384,14 +380,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po index f130ff7697..ffc60cc03b 100644 --- a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "فعال شده" @@ -55,7 +56,7 @@ msgstr "ویرایش" msgid "Conditions" msgstr "شرایط" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "ایجاد پیوند هوشمند جدید" @@ -67,8 +68,8 @@ msgstr "انواع مستندات" msgid "Documents" msgstr "مستندات" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "پیوند هوشمند" @@ -143,8 +144,8 @@ msgstr "موجود در عبارات منظم (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -208,92 +209,84 @@ msgstr "حذف پیوند هوشمند " msgid "Edit smart links" msgstr "ویرایش پیوند هوشمند " -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "نوع سند برای فعالسازی لینک هوشمند: %s" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "خطای پرسش query از پیوند هوشمند : %s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "اسناد در لینک هوشمند: %s" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "نوع سند برای فعالسازی لینک هوشمند: %s" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "ارتباطات هوشمند برای سند :%s" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "ویرایش پیوند هوشمند %s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "شرایط پیوند هوشمند : %s" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "ایجاد موفق پیوند هوشمند \"%s\"" - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "اضافه کردن شرط جدید به پیوند هوشمند \"%s\"" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "ویرایش موفق پیوند هوشمند \"%s\"" - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "ویرایش شرط پیوند هوشمند \"%s\"" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "حذف موفق شرط پیوند هوشمند \"%s\"" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "خطا در حذف شرط پیوند هوشمند : %(smart_link_condition)s; %(exception)s." - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "ایجاد موفق پیوند هوشمند \"%s\"" + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "ویرایش موفق پیوند هوشمند \"%s\"" + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "حذف موفق شرط پیوند هوشمند \"%s\"" + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "خطا در حذف شرط پیوند هوشمند : %(smart_link_condition)s; %(exception)s." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -383,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po index 125d6df1bf..314a9f8add 100644 --- a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "Activé" @@ -55,7 +56,7 @@ msgstr "Modifier" msgid "Conditions" msgstr "Conditions" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "Céer un nouveau lien intelligent" @@ -67,8 +68,8 @@ msgstr "Types de document" msgid "Documents" msgstr "Documents" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "Liens intelligents" @@ -143,8 +144,8 @@ msgstr "est une expression régulière (insensible à la casse)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -154,7 +155,8 @@ msgstr "" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "Un lien intelligent n'est pas autorisé pour le type de document sélectionné." +msgstr "" +"Un lien intelligent n'est pas autorisé pour le type de document sélectionné." #: models.py:88 models.py:100 msgid "Smart link" @@ -208,92 +210,85 @@ msgstr "Supprimer les liens intelligents" msgid "Edit smart links" msgstr "Modifier les liens intelligents" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "Type de document sur lesquels activer les liens intelligents: %s" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "Erreur de requête sur lien intelligent:%s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "Lien inetlligent du document: %s" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "Type de document sur lesquels activer les liens intelligents: %s" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "Liens intelligents pour le document: %s" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "Modifier le lien intelligent:%s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "Conditions sur le lien intelligent: %s" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "Condition sur le lien intelligent:\"%s\" créé avec succès." - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "Ajouter une nouvelle condition au lien intelligent:\"%s\"" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "Condition sur le lien intelligent:\"%s\" modifiée avec succès." - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "Modifier la condition sur le lien intelligent" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "Condition sur lien intelligent:\"%s\" supprimée avec succès." - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "Erreur lors de la suppression de l'état du lien intelligent: %(smart_link_condition)s; %(exception)s." - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Condition sur le lien intelligent:\"%s\" créé avec succès." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Condition sur le lien intelligent:\"%s\" modifiée avec succès." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Condition sur lien intelligent:\"%s\" supprimée avec succès." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Erreur lors de la suppression de l'état du lien intelligent: " +#~ "%(smart_link_condition)s; %(exception)s." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -383,14 +378,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po index a0e81fd345..471cbd525c 100644 --- a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po @@ -1,36 +1,37 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -54,7 +55,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "" @@ -66,8 +67,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "" @@ -142,8 +143,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -207,89 +208,66 @@ msgstr "" msgid "Edit smart links" msgstr "" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "" - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "" - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -382,14 +360,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po index 7bd06fa96f..d3eada6f78 100644 --- a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po @@ -1,36 +1,37 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -54,7 +55,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "" @@ -66,8 +67,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "" @@ -142,8 +143,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -207,89 +208,66 @@ msgstr "" msgid "Edit smart links" msgstr "" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "" - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "" - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -382,14 +360,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po index cfdabdd7f4..65b3807b0a 100644 --- a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -55,7 +56,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "Crea un nuovo link intelligente" @@ -67,8 +68,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "Link intelligenti" @@ -143,8 +144,8 @@ msgstr "è un'espressione regolare (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -208,92 +209,80 @@ msgstr "Cancella link intelligenti" msgid "Edit smart links" msgstr "Modifica link intelligenti" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "Interrogazione dei link intelligenti, errore: %s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "Modifica il link intelligente: %s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "Condizione per il link intelligente: \"%s\" creata con successo." - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "Aggiungi una nuova condizione al link intelligente: \"%s\"" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "Condizione per il link intelligente: \"%s\" modificato con successo." - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "Modifica condizioni per i link intelligenti" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "Condizioni per il link intelligente: \"%s\" cancellato con successo." - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Condizione per il link intelligente: \"%s\" creata con successo." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "" +#~ "Condizione per il link intelligente: \"%s\" modificato con successo." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "" +#~ "Condizioni per il link intelligente: \"%s\" cancellato con successo." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -383,14 +372,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 15d602b393..5b66e98e08 100644 --- a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -55,7 +56,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "Nieuwe 'smartlink' aanmaken" @@ -67,8 +68,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "'Smartlinks'" @@ -143,8 +144,8 @@ msgstr "komt overeen met 'reguliere expressie (hoofdletter ongevoelig)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -208,92 +209,78 @@ msgstr "Verwijderen 'smartlinks'" msgid "Edit smart links" msgstr "Verwijderen 'smartlinks'" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "'smartlink' zoek fout: %s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "'smartlink': %s bewerken." -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "'smartlink' conditie: \"%s\" aangemaakt." - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "Nieuwe condities aan 'smartlink': \"%s\" toevoegen." -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "'smartlink' conditie: \"%s\" aangepast." - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "Bewerk 'smartlink' conditie." -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "'smartlink' conditie: \"%s\" verwijdert" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "'smartlink' conditie: \"%s\" aangemaakt." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "'smartlink' conditie: \"%s\" aangepast." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "'smartlink' conditie: \"%s\" verwijdert" + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -383,14 +370,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po index a431bad33f..91cf9e7d95 100644 --- a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012,2015 @@ -9,29 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "Włączony" @@ -55,7 +57,7 @@ msgstr "Edytuj" msgid "Conditions" msgstr "Warunki" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "" @@ -67,8 +69,8 @@ msgstr "Typy dokumentu" msgid "Documents" msgstr "Dokumenty" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "" @@ -143,8 +145,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -208,89 +210,66 @@ msgstr "" msgid "Edit smart links" msgstr "" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "" - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "" - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -383,14 +362,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po index 48da41bb57..03cb624e51 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: # Translators: # Emerson Soares , 2011 @@ -11,29 +11,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -57,7 +58,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "Criar nova ligação inteligente" @@ -69,8 +70,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "Ligações inteligentes" @@ -145,8 +146,8 @@ msgstr "contido em expressão regular (insensível a minúsculas/maiúsculas)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -210,92 +211,78 @@ msgstr "Excluir ligações inteligentes" msgid "Edit smart links" msgstr "Editar ligações inteligentes" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "Erro na consulta de ligações inteligentes: %s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "Editar Ligação inteligente: %s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "Condição da ligação inteligente: \"%s\" criada com sucesso." - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "Adicionar novas condições à ligação inteligente: \"%s\"" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "Condição de ligação inteligente: \"%s\" editada com sucesso." - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "Editar condição de ligação inteligente" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "Condição de ligação inteligente: \"%s\" excluída com sucesso." - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Condição da ligação inteligente: \"%s\" criada com sucesso." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Condição de ligação inteligente: \"%s\" editada com sucesso." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Condição de ligação inteligente: \"%s\" excluída com sucesso." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -385,14 +372,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 a078149a69..ec2bceddfa 100644 --- a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,29 +11,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "habilitado" @@ -57,7 +58,7 @@ msgstr "Editar" msgid "Conditions" msgstr "condições" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "Criar novo link inteligente" @@ -69,8 +70,8 @@ msgstr "Tipo de Documento" msgid "Documents" msgstr "Documentos" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "Ligações inteligentes" @@ -145,8 +146,8 @@ msgstr "está em expressão regular (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -156,7 +157,8 @@ msgstr "" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "Este link inteligente não é permitido para o tipo de documento selecionado. " +msgstr "" +"Este link inteligente não é permitido para o tipo de documento selecionado. " #: models.py:88 models.py:100 msgid "Smart link" @@ -210,92 +212,72 @@ msgstr "Excluir ligações inteligentes" msgid "Edit smart links" msgstr "Editar ligações inteligentes" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "Tipo de documento para o qual a permitir ligação inteligente: %s" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "Erro Links Inteligentes para documento: %s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "Os documentos em referência inteligente: %s " -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "Tipo de documento para o qual a permitir ligação inteligente: %s" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "Links Inteligentes para documento: %s" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "Editar Ligação inteligente: %s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "Condições para a ligação inteligente: %s criado com sucesso." -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "" - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "Condição: %s de ligação Inteligente editada com sucesso." - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "Editar condição de ligação Inteligente" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Condição: %s de ligação Inteligente editada com sucesso." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -385,14 +367,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 3def0bd781..6e545c100f 100644 --- a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,29 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -55,7 +57,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "Creați un nou link inteligent" @@ -67,8 +69,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "Link-uri inteligente" @@ -143,8 +145,8 @@ msgstr "este în expresie regulată (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -208,92 +210,78 @@ msgstr "Ștergeți link-uri inteligente" msgid "Edit smart links" msgstr "Editați link-uri inteligente" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "Eroare interogare link-ul:% s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "Editare legătură inteligentă:% s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "Stare de legătură inteligentă: \"%s\" a fost creată cu succes." - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "Adauga la noile condiții de legătură inteligentă: \"%s\"" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "Stare de legătură inteligentă: \"%s\" editată cu succes." - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "Editați condiție legătură inteligentă" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "Stare de legătură inteligentă: \"%s\" a fost ștearsă cu succes." - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Stare de legătură inteligentă: \"%s\" a fost creată cu succes." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Stare de legătură inteligentă: \"%s\" editată cu succes." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Stare de legătură inteligentă: \"%s\" a fost ștearsă cu succes." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -383,14 +371,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po index f10a52ed3c..c40b2a7abb 100644 --- a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po @@ -1,36 +1,39 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -54,7 +57,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "Создать новое отношение" @@ -66,8 +69,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "Отношения" @@ -142,8 +145,8 @@ msgstr "В регулярном выражении (без учета регис #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -207,92 +210,78 @@ msgstr "Удалить отношения" msgid "Edit smart links" msgstr "Редактировать отношения" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "Ошибка запроса в отношении %s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "Редактировать отношение %s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "Условие для отношения \"%s\" успешно создано." - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "Добавить новые условия отношения \"%s\"" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "Условие отношения \"%s\" изменено." - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "Изменить условие отношения" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "Условие отношения \"%s\" удалено." - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Условие для отношения \"%s\" успешно создано." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Условие отношения \"%s\" изменено." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Условие отношения \"%s\" удалено." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -382,14 +371,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 c226a787b5..13180de544 100644 --- a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po @@ -1,36 +1,38 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -54,7 +56,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "" @@ -66,8 +68,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "" @@ -142,8 +144,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -207,89 +209,66 @@ msgstr "" msgid "Edit smart links" msgstr "" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "" - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "" - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -382,14 +361,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 c6bcfac69e..e81c69a95f 100644 --- a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -55,7 +56,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "" @@ -67,8 +68,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "Liên kết thông minh" @@ -143,8 +144,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -208,92 +209,72 @@ msgstr "Xóa liên kết thông minh" msgid "Edit smart links" msgstr "Sửa liên kết thông minh" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "Lỗi truy vấn liên kết thông minh: %s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "Sửa liên kết thông minh: %s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "điều kiện liên kết thông minh: %s tạo thành công." - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "" - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "" - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "điều kiện liên kết thông minh: %s tạo thành công." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -383,14 +364,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po index de5edf5683..d8a57afe5a 100644 --- a/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,29 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 msgid "Linking" msgstr "" -#: apps.py:47 models.py:18 +#: apps.py:55 models.py:18 msgid "Label" msgstr "" -#: apps.py:54 models.py:25 +#: apps.py:62 models.py:25 msgid "Dynamic label" msgstr "" -#: apps.py:57 apps.py:62 models.py:27 models.py:124 +#: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" msgstr "" @@ -55,7 +56,7 @@ msgstr "" msgid "Conditions" msgstr "" -#: links.py:32 views.py:184 +#: links.py:32 views.py:183 msgid "Create new smart link" msgstr "新建智能链接" @@ -67,8 +68,8 @@ msgstr "" msgid "Documents" msgstr "" -#: links.py:53 links.py:57 links.py:62 models.py:89 permissions.py:7 -#: views.py:147 +#: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 +#: views.py:139 msgid "Smart links" msgstr "智能链接" @@ -143,8 +144,8 @@ msgstr "正则表达式(大小写不敏感)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -208,92 +209,83 @@ msgstr "删除智能链接" msgid "Edit smart links" msgstr "编辑智能链接" -#: views.py:36 -msgid "Available document types" -msgstr "" - -#: views.py:37 -msgid "Document types enabled" -msgstr "" - -#: views.py:65 -#, python-format -msgid "Document type for which to enable smart link: %s" -msgstr "" - -#: views.py:109 +#: views.py:70 #, python-format msgid "Smart link query error: %s" msgstr "智能链接查询错误:%s" -#: views.py:117 +#: views.py:78 #, python-format msgid "Documents in smart link: %s" msgstr "" -#: views.py:120 +#: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" -#: views.py:179 +#: views.py:97 +msgid "Available document types" +msgstr "" + +#: views.py:99 +msgid "Document types enabled" +msgstr "" + +#: views.py:108 +#, python-format +msgid "Document type for which to enable smart link: %s" +msgstr "" + +#: views.py:173 #, python-format msgid "Smart links for document: %s" msgstr "" -#: views.py:199 +#: views.py:198 #, python-format msgid "Edit smart link: %s" msgstr "编辑智能链接: %s" -#: views.py:211 +#: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" -#: views.py:223 +#: views.py:222 #, python-format msgid "Conditions for smart link: %s" msgstr "" -#: views.py:254 -#, python-format -msgid "Smart link condition: \"%s\" created successfully." -msgstr "智能链接条件: \"%s\"创建成功。" - -#: views.py:267 +#: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" msgstr "新建条件到智能链接:\"%s\"" -#: views.py:298 -#, python-format -msgid "Smart link condition: \"%s\" edited successfully." -msgstr "智能链接条件: \"%s\"编辑成功。" - -#: views.py:312 +#: views.py:299 msgid "Edit smart link condition" msgstr "编辑智能链接条件" -#: views.py:339 +#: views.py:334 #, python-format -msgid "Smart link condition: \"%s\" deleted successfully." -msgstr "智能链接条件: \"%s\"删除成功。" - -#: views.py:345 -#, python-format -msgid "" -"Error deleting smart link condition: %(smart_link_condition)s; " -"%(exception)s." -msgstr "删除智能链接条件:%(smart_link_condition)s出错: %(exception)s." - -#: views.py:361 -#, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "智能链接条件: \"%s\"创建成功。" + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "智能链接条件: \"%s\"编辑成功。" + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "智能链接条件: \"%s\"删除成功。" + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "删除智能链接条件:%(smart_link_condition)s出错: %(exception)s." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -383,14 +375,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 5b480b2841..67430f4d08 100644 --- a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 e81c83edc9..d9d8775363 100644 --- a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 e0fb21f883..7864ebe163 100644 --- a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" diff --git a/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po index 4890357a51..c50828169f 100644 --- a/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 17c4267899..d513f240db 100644 --- a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-09-08 23:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "Sperrverwaltung" 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 6570bf7f5b..6cdf40411d 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: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 81b6fc35bc..e30563bba5 100644 --- a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-24 05:20+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "Gestor de bloqueos" 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 c2e7179067..3a7920ae4e 100644 --- a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 6946a34753..70136f8dd5 100644 --- a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 838887b4e4..a5094fdd65 100644 --- a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 1ba77d6512..168d5e1020 100644 --- a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 7fc6ad98e0..997ab6962d 100644 --- a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 abcb17066e..cfe935fdcf 100644 --- a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 5c2e838b61..eb0aaec063 100644 --- a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 59ed8a3b18..bf3d8d4559 100644 --- a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" 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 53746bba6a..2a687fd2c6 100644 --- a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 23c09d5c04..d2ae7cbe4d 100644 --- a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 fd3124144a..a3e195e952 100644 --- a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po @@ -1,23 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 9d7986c715..944ad36bdb 100644 --- a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" 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 2053fb27e7..22bb4f33d9 100644 --- a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" diff --git a/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po index aeb4a03b5a..6dbd53d131 100644 --- a/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:26-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:9 +#: apps.py:10 msgid "Lock manager" msgstr "" diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po index 44329e0254..72cbd6ba4e 100644 --- a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po @@ -1,43 +1,45 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +55,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +64,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +125,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po index d2fbe6b5a6..22ec070325 100644 --- a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po @@ -1,44 +1,45 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:04+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "Ел. поща адрес" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "Относно" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "Съдържание" @@ -54,7 +55,7 @@ msgstr "Пощ. връзка" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -63,7 +64,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -124,34 +125,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "Трябва да посочите поне един документ." -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "Успешно наредено за изпращане чрез ел.поща." -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "Изпрати" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" 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 eb57459d5e..bab8124b68 100644 --- a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po @@ -1,43 +1,45 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +55,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +64,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +125,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" diff --git a/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po index f9c64e3e65..5a243d3e6f 100644 --- a/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po @@ -1,43 +1,44 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +54,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +63,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +124,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" 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 abfab19f34..886094d8df 100644 --- a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po @@ -1,43 +1,44 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-09-24 18:10+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "Mailer" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "Zeit" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "Nachricht" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "E-Mailadresse" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "Betreff" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "Nachrichtenteil" @@ -53,23 +54,32 @@ msgstr "Link zum Dokument per E-Mail senden" msgid "Document mailing error log" msgstr "Fehlerprotokoll" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Anlagen: {{ document }}\n\n --------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "" +"Anlagen: {{ document }}\n" +"\n" +" --------\n" +" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: {{ link }}\n\n--------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "" +"Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: " +"{{ link }}\n" +"\n" +"--------\n" +" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" #: models.py:13 msgid "Date time" @@ -105,11 +115,14 @@ msgstr "Link für Dokument: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung" +msgstr "" +"Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung" #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "Vorlage für den Nachrichtenteil des Formulars für die Dokumentenlinkversendung" +msgstr "" +"Vorlage für den Nachrichtenteil des Formulars für die " +"Dokumentenlinkversendung" #: settings.py:24 msgid "Document: {{ document }}" @@ -117,40 +130,42 @@ msgstr "Dokument: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung" +msgstr "" +"Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung" #: settings.py:30 msgid "Template for the document email form body line." -msgstr "Vorlage für den Nachrichtenteil des Formulars für die Dokumentenversendung" +msgstr "" +"Vorlage für den Nachrichtenteil des Formulars für die Dokumentenversendung" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "Es muss mindestens ein Dokument angegeben werden." -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "Erfolgreich eingereiht in den E-Mailversand" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "Senden" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "E-Mail Dokument: %s" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "E-Mail Link für Dokument %s" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "E-Mail Dokumente: %s" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "Links für Dokumente %s" diff --git a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po index 725647bed5..448d742207 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,27 +17,27 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +53,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +62,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +123,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po index ef8964cfe1..0b804b5ad3 100644 --- a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2015 @@ -10,37 +10,38 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-09-24 20:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "Mensaje" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "Dirección de correo electrónico" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "Tema" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "Cuerpo" @@ -56,7 +57,7 @@ msgstr "Enviar enlace" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -65,7 +66,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -108,11 +109,15 @@ msgstr "Enlace para el documento: {{ documento }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Plantilla para la línea de asunto del correo electrónico para envío de enlace del documento." +msgstr "" +"Plantilla para la línea de asunto del correo electrónico para envío de " +"enlace del documento." #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "Plantilla para el cuerpo del correo electrónico de envío de enlace de documento." +msgstr "" +"Plantilla para el cuerpo del correo electrónico de envío de enlace de " +"documento." #: settings.py:24 msgid "Document: {{ document }}" @@ -120,40 +125,46 @@ msgstr "Documento: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "Plantilla para la línea de sujeto del correo electrónico de envio de documento." +msgstr "" +"Plantilla para la línea de sujeto del correo electrónico de envio de " +"documento." #: settings.py:30 msgid "Template for the document email form body line." -msgstr "Plantilla para la línea de cuerpo del correo electrónico para envío de documento." +msgstr "" +"Plantilla para la línea de cuerpo del correo electrónico para envío de " +"documento." -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "Debe proveer al menos un documento" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." -msgstr "Añadido de forma exitosa a la lista de espera para envío de correo electrónico" +msgstr "" +"Añadido de forma exitosa a la lista de espera para envío de correo " +"electrónico" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "Enviar" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "Enviar documento: %s" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "Enviar enlace para el documento: %s" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "Enviar documentos: %s" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "Enviar enlaces para documentos: %s" diff --git a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po index 2f19784b2d..ae628a7705 100644 --- a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po @@ -1,44 +1,45 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:04+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "پست الکترونیکی" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "موضوع" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "بدنه" @@ -54,7 +55,7 @@ msgstr "پیوند پلکترونیکی" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -63,7 +64,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -124,34 +125,34 @@ msgstr "الگوی ارسال سند بوسیله پیوند آن از داخل msgid "Template for the document email form body line." msgstr "الگوی ارسال سند از داخل بدنه" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "حداقل یک سند بایست ارایه گردد." -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "ورود موفق به صف ارسال از طریق ایمیل" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "ارسال" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "ایمیل سند: %s" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "پیوند ایمیل برای سند: %s" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "ایمیل اسناد: %s" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "پیوند ایمیل برای اسناد: %s" diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po index 6a646d8986..f35e5aa8d3 100644 --- a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po @@ -1,43 +1,44 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:04+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "Adresse du courriel" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "Sujet" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "Corps" @@ -53,7 +54,7 @@ msgstr "Lien du courriel" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +63,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +124,34 @@ msgstr "Modèle pour le sujet du courriel du document." msgid "Template for the document email form body line." msgstr "Modèle pour le corps du courriel du document." -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "Vous devez fournir au moins un document." -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "Ajouter à la file d'attente avec succès pour l'envoi via courriel." -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "Envoyé" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "Document du courriel: %s" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "Lien du courriel pour ce document: %s" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "Documents du courriel: %s" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "Liens de courriel pour le document: %s" diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po index 2a82df9324..120980335d 100644 --- a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po @@ -1,43 +1,44 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +54,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +63,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +124,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" diff --git a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po index d5727761fa..4df8dbbf7c 100644 --- a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po @@ -1,43 +1,44 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +54,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +63,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +124,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" diff --git a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po index 2fbe07ed46..2938cfb661 100644 --- a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po @@ -1,43 +1,44 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +54,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +63,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +124,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" 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 c4c4fb79b7..6f2589ea4e 100644 --- a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po @@ -1,43 +1,44 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +54,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +63,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +124,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" diff --git a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po index 9908995f14..e8b6657823 100644 --- a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po @@ -1,44 +1,46 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "Adres e-mail:" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "Temat" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "Treść" @@ -54,7 +56,7 @@ msgstr "Link e-mail" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -63,7 +65,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -124,34 +126,34 @@ msgstr "Szablon tematu wiadomości email" msgid "Template for the document email form body line." msgstr "Szablon treści e-mail" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "Musisz podać co najmniej jeden dokument." -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "Przekazanie do wysłania drogą e-mail zakończone powodzeniem. " -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "Wyślij" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "Dokument e-mail: %s" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "Link dokumetu: %s" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "Dokumenty e-mail: %s" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "Linki dla dokumentów: %s" diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po index 1605e2541a..a0049b6c2b 100644 --- a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po @@ -1,43 +1,44 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +54,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +63,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +124,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %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 4d51f22c76..8cba7e8d64 100644 --- a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po @@ -1,44 +1,45 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 22:04+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "Endereço de E-mail" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "Assunto" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "Corpo" @@ -54,7 +55,7 @@ msgstr "Email de ligação" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -63,7 +64,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -106,7 +107,8 @@ msgstr "Link para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Template para a linha de formulário electrónico Assunto link do documento." +msgstr "" +"Template para a linha de formulário electrónico Assunto link do documento." #: settings.py:20 msgid "Template for the document link email form body line." @@ -124,34 +126,34 @@ msgstr "Modelo para o documento, linha de assuntos e-mail." msgid "Template for the document email form body line." msgstr "Modelo para o documento, linha de corpo formulário de e-mail." -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "Deve fornecer, pelo menos, um documento." -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "Sucesso da Fila para a entrega via e-mail." -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "Enviar" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "E-mail de documentos: %s" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "link de E-mail para documento: %s " -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "E-mail de documentos: %s" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "link de E-mail para documento: %s " 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 c609df81ab..be32aea702 100644 --- a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po @@ -1,43 +1,45 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +55,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +64,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +125,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" diff --git a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po index 6bbd8b5229..baa3f42751 100644 --- a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po @@ -1,43 +1,46 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +56,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +65,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +126,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" 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 a173d33f26..64913bd39a 100644 --- a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po @@ -1,43 +1,45 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +55,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +64,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +125,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" 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 b65879ee81..80ce4919d0 100644 --- a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po @@ -1,43 +1,44 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +54,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +63,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +124,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" diff --git a/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po index eba59772fa..11a327220c 100644 --- a/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po @@ -1,43 +1,44 @@ # SOME DESCRIPTIVE 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:25 +#: apps.py:24 msgid "Mailer" msgstr "" -#: apps.py:31 +#: apps.py:36 msgid "Date and time" msgstr "" -#: apps.py:35 models.py:16 +#: apps.py:40 models.py:16 msgid "Message" msgstr "" -#: forms.py:23 +#: forms.py:29 msgid "Email address" msgstr "" -#: forms.py:24 +#: forms.py:30 msgid "Subject" msgstr "" -#: forms.py:26 +#: forms.py:32 msgid "Body" msgstr "" @@ -53,7 +54,7 @@ msgstr "" msgid "Document mailing error log" msgstr "" -#: literals.py:8 +#: literals.py:7 #, python-format msgid "" "Attached to this email is the document: {{ document }}\n" @@ -62,7 +63,7 @@ msgid "" " This email has been sent from %(project_title)s (%(project_website)s)" msgstr "" -#: literals.py:17 +#: literals.py:13 #, python-format msgid "" "To access this document click on the following link: {{ link }}\n" @@ -123,34 +124,34 @@ msgstr "" msgid "Template for the document email form body line." msgstr "" -#: views.py:54 +#: views.py:56 msgid "Must provide at least one document." msgstr "" -#: views.py:83 +#: views.py:105 msgid "Successfully queued for delivery via email." msgstr "" -#: views.py:91 +#: views.py:114 msgid "Send" msgstr "" -#: views.py:97 +#: views.py:120 #, python-format msgid "Email document: %s" msgstr "" -#: views.py:99 +#: views.py:122 #, python-format msgid "Email link for document: %s" msgstr "" -#: views.py:102 +#: views.py:125 #, python-format msgid "Email documents: %s" msgstr "" -#: views.py:104 +#: views.py:127 #, python-format msgid "Email links for documents: %s" msgstr "" diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po index 7dafcdcff6..2c4e4e5c21 100644 --- a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,63 +9,65 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "البيانات الوصفية" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "قيمة" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "نوع البيانات الوصفية" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -74,34 +76,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "'metadata' object has no attribute '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "اسم" + +#: forms.py:20 +msgid "Update" +msgstr "تحديث" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "اسم" - -#: forms.py:79 -msgid "Update" -msgstr "تحديث" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "إزالة" @@ -109,127 +110,125 @@ msgstr "إزالة" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "أنواع البيانات الوصفية" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -277,15 +276,15 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "يجب أن توفر ما لا يقل عن وثيقة واحدة." -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" @@ -295,17 +294,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "تم تعديل البيانات الوصفية للوثيقة %s بنجاح" -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" @@ -315,27 +314,26 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" @@ -345,21 +343,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" @@ -369,45 +367,43 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -584,47 +580,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po index 2f5199103a..f32a6c1671 100644 --- a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,63 +9,64 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Стойност" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -74,34 +75,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Име" + +#: forms.py:20 +msgid "Update" +msgstr "Актуализация" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Име" - -#: forms.py:79 -msgid "Update" -msgstr "Актуализация" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Премахване" @@ -109,127 +109,125 @@ msgstr "Премахване" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -277,121 +275,118 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "" -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" msgstr[1] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -556,47 +551,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 36c6778e26..a2de150297 100644 --- a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,63 +9,65 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "Metadata" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Vrijednost" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "Metadata tip" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -74,34 +76,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "'metadata' objekt nema atributa '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Ime" + +#: forms.py:20 +msgid "Update" +msgstr "Update" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Ime" - -#: forms.py:79 -msgid "Update" -msgstr "Update" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Ukloni" @@ -109,127 +110,125 @@ msgstr "Ukloni" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Metadata tip" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -277,125 +276,122 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "Mora se osigurati bar jedan dokument." -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadata za dokument %s uspješno izmjenjen." -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -563,47 +559,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po index a346c2c128..d98cd26b09 100644 --- a/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -9,63 +9,64 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -74,34 +75,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "" + +#: forms.py:20 +msgid "Update" +msgstr "" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "" - -#: forms.py:79 -msgid "Update" -msgstr "" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "" @@ -109,127 +109,125 @@ msgstr "" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -277,121 +275,118 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "" -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" msgstr[1] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -556,47 +551,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 cb62c4f9ed..69c2c76943 100644 --- a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -12,63 +12,66 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-08 23:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "Metadaten" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "Dokumente mit fehlenden erforderlichen Metadaten" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "Dokumente mit fehlenden optionalen Metadaten" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "Queryset enthaltend eine Referenz auf eine Metadatentyp Instanz und einen Wert für diesen Metadatentyp" +msgstr "" +"Queryset enthaltend eine Referenz auf eine Metadatentyp Instanz und einen " +"Wert für diesen Metadatentyp" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "Name Metadatentyp" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "Metadatentypwert" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "Metadatenwert" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "Gibt den Wert einer spezifischen Dokumentmetadatums zurück" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Wert" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "erforderlich" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "Metadatentyp" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "Metadatenwert" @@ -77,34 +80,33 @@ msgstr "Metadatenwert" msgid "'metadata' object has no attribute '%s'" msgstr "'metadata'-Objekt hat kein Attribut '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "ID" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Name" + +#: forms.py:20 +msgid "Update" +msgstr "Aktualisieren" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "Fehler für Suchwert: %s" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "Fehler für Standardwert: %s" -#: forms.py:71 -msgid "ID" -msgstr "ID" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Name" - -#: forms.py:79 -msgid "Update" -msgstr "Aktualisieren" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "Verfügbare Kontextvariablen:" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Entfernen" @@ -112,127 +114,137 @@ msgstr "Entfernen" msgid "Add metadata" msgstr "Metadaten hinzufügen" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "Metadaten bearbeiten" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "Metadaten entfernen" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "Optionale Metadaten" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "Erforderliche Metadaten" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "Erstellen" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "Löschen" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "Bearbeiten" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Metadatentypen" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." -msgstr "Name unter dem andere Apps diesen Wert referenzieren. Keine reservierten Worte aus Python oder Leerzeichen verwenden." +msgstr "" +"Name unter dem andere Apps diesen Wert referenzieren. Keine reservierten " +"Worte aus Python oder Leerzeichen verwenden." -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "Bezeichner" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-" +"Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/" +"builtins/)" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "Standard" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." -msgstr "Vorlage/Template zur Generierung eingeben. Muss eine komma-separierte Zeichenkette ausgeben (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." +msgstr "" +"Vorlage/Template zur Generierung eingeben. Muss eine komma-separierte " +"Zeichenkette ausgeben (https://docs.djangoproject.com/en/1.7/ref/templates/" +"builtins/)" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "Suche" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem geforderten Format nicht entspricht." +msgstr "" +"Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem " +"geforderten Format nicht entspricht." -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "Validierer" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "Der Parser wird den eingegebenen Wert so reformatieren, dass er dem geforderten Format entspricht." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"Der Parser wird den eingegebenen Wert so reformatieren, dass er dem " +"geforderten Format entspricht." -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "Parser" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "Metadatentyp ist erforderlich für diesen Dokumententyp" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "Der Wert entspricht keiner der vorgegebenen Optionen." -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "Dokument" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "Typ" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "Metadatentyp ist erforderlich für diesen Dokumententyp" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "Metadatentyp ist nicht gültig für diesen Dokumententyp" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "Dokument Metadaten" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "Dokumententyp" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "Metadatentyp Optionen" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "Metadatentyp Optionen" @@ -280,121 +292,129 @@ msgstr "Primärschlüssel des hinzuzufügenden Metadatentyps" msgid "Value of the corresponding metadata type instance." msgstr "Wert der entsprechenden Metadatentyp-Instanz" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "Es muss mindestens ein Dokument angegeben werden" -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "Es können nur Dokumente des gleichen Typs ausgewählt werden" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "Für das ausgewählte Dokument existieren keine Metadaten" msgstr[1] "Für die ausgewählten Dokumente existieren keine Metadaten" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Fehler bei der Bearbeitung der Metadaten für Dokument %(document)s: %(exception)s" +msgstr "" +"Fehler bei der Bearbeitung der Metadaten für Dokument %(document)s: " +"%(exception)s" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadaten des Dokuments %s erfolgreich bearbeitet." -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "Metadaten bearbeiten" msgstr[1] "Metadaten bearbeiten" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Fehler beim Hinzufügen von Metadatentyp \"%(metadata_type)s\" zu Dokument %(document)s: %(exception)s" +msgstr "" +"Fehler beim Hinzufügen von Metadatentyp \"%(metadata_type)s\" zu Dokument " +"%(document)s: %(exception)s" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." -msgstr "Metadatentyp %(metadata_type)s erfolgreich hinzugefügt zu Dokument %(document)s" +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Metadatentyp %(metadata_type)s erfolgreich hinzugefügt zu Dokument " +"%(document)s" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Metadatentyp %(metadata_type)s bereits vorhanden für Dokument %(document)s" +msgstr "" +"Metadatentyp %(metadata_type)s bereits vorhanden für Dokument %(document)s" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "Metadatentypen zu Dokument hinzufügen" msgstr[1] "Metadatentypen zu Dokumenten hinzufügen" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Metadatentyp \"%(metadata_type)s\" erfolgreich entfernt von Dokument %(document)s" +msgstr "" +"Metadatentyp \"%(metadata_type)s\" erfolgreich entfernt von Dokument " +"%(document)s" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Fehler bei der Entfernung von Metadatentyp \"%(metadata_type)s\" von Dokument %(document)s: %(exception)s" +msgstr "" +"Fehler bei der Entfernung von Metadatentyp \"%(metadata_type)s\" von " +"Dokument %(document)s: %(exception)s" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "Metadatentypen von Dokument entfernen" msgstr[1] "Metadatentypen von Dokumenten entfernen" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "Metadaten von Dokument %s" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "Metadatentyp erstellen" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "Metadatentyp %s löschen?" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "Metadatentyp %s bearbeiten" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "Interner Name" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "Verfügbare Metadatentypen" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "Zugewiesene Metadatentypen" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "Optionale Metadatentypen für Dokumententyp %s" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "Erforderliche Metadatentypen für Dokumententyp %s" @@ -559,47 +579,47 @@ msgstr "Erforderliche Metadatentypen für Dokumententyp %s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po index c49cd04ff8..6bfba82d11 100644 --- a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,59 +18,59 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "Metadata" -#: apps.py:64 +#: apps.py:76 #, fuzzy msgid "Documents missing required metadata" msgstr "document metadata" -#: apps.py:81 +#: apps.py:93 #, fuzzy msgid "Documents missing optional metadata" msgstr "document metadata" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 #, fuzzy msgid "Metadata type name" msgstr "Metadata type" -#: apps.py:109 +#: apps.py:121 #, fuzzy msgid "Metadata type value" msgstr "Metadata type" -#: apps.py:113 +#: apps.py:125 #, fuzzy msgid "Value of a metadata" msgstr "default metadata" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Value" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 #, fuzzy msgid "Required" msgstr "required" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "Metadata type" -#: apps.py:162 +#: apps.py:176 #, fuzzy msgid "Metadata value" msgstr "Metadata type" @@ -80,35 +80,35 @@ msgstr "Metadata type" msgid "'metadata' object has no attribute '%s'" msgstr "'metadata' object has no attribute '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Name" + +#: forms.py:20 +msgid "Update" +msgstr "Update" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Name" - -#: forms.py:79 -msgid "Update" -msgstr "Update" - -#: forms.py:105 +#: forms.py:116 #, fuzzy #| msgid " Available models: %s" msgid " Available template context variables: " msgstr " Available models: %s" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Remove" @@ -117,45 +117,45 @@ msgstr "Remove" msgid "Add metadata" msgstr "add metadata" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 #, fuzzy msgid "Edit metadata" msgstr "edit metadata" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 #, fuzzy msgid "Remove metadata" msgstr "remove metadata" -#: links.py:45 +#: links.py:42 #, fuzzy msgid "Optional metadata" msgstr "edit metadata" -#: links.py:49 +#: links.py:46 #, fuzzy msgid "Required metadata" msgstr "remove metadata" -#: links.py:54 +#: links.py:51 #, fuzzy msgid "Create new" msgstr "create new" -#: links.py:59 +#: links.py:56 #, fuzzy msgid "Delete" msgstr "delete" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Metadata types" -#: models.py:50 +#: models.py:42 #, fuzzy #| msgid "Do not use python reserved words, or spaces." msgid "" @@ -163,96 +163,96 @@ msgid "" "words, or spaces." msgstr "Do not use python reserved words, or spaces." -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 #, fuzzy msgid "Default" msgstr "default" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " "Django's default templating language (https://docs.djangoproject.com/en/1.7/" "ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 #, fuzzy msgid "Lookup" msgstr "lookup" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" "The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 #, fuzzy msgid "This metadata is required for this document type." msgstr "Add metadata type to document: %s" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 #, fuzzy msgid "Document" msgstr "document" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 #, fuzzy msgid "Metadata type is required for this document type." msgstr "Add metadata type to document: %s" -#: models.py:172 +#: models.py:175 #, fuzzy msgid "Metadata type is not valid for this document type." msgstr "Add metadata type to document: %s" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 #, fuzzy msgid "Document metadata" msgstr "document metadata" -#: models.py:200 +#: models.py:203 #, fuzzy msgid "Document type" msgstr "document type" -#: models.py:212 +#: models.py:215 #, fuzzy msgid "Document type metadata type options" msgstr "Delete metadata types" -#: models.py:213 +#: models.py:216 #, fuzzy msgid "Document type metadata types options" msgstr "Delete metadata types" @@ -301,40 +301,40 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "Must provide at least one document." -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 #, fuzzy msgid "Only select documents of the same type." msgstr "The selected document doesn't have any metadata." -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 #, fuzzy msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "The selected document doesn't have any metadata." msgstr[1] "The selected document doesn't have any metadata." -#: views.py:136 +#: views.py:139 #, fuzzy, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "Error editing metadata for document %(document)s; %(error)s." -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadata for document %s edited successfully." -#: views.py:163 +#: views.py:168 #, fuzzy msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "Edit a document's metadata" msgstr[1] "Edit a document's metadata" -#: views.py:249 +#: views.py:256 #, fuzzy, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " @@ -342,28 +342,28 @@ msgid "" msgstr "" "Error removing metadata type: %(metadata_type)s from document: %(document)s." -#: views.py:265 +#: views.py:272 #, python-format msgid "" "Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" "Metadata type: %(metadata_type)s successfully added to document %(document)s." -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" "Metadata type: %(metadata_type)s already present in document %(document)s." -#: views.py:306 +#: views.py:313 #, fuzzy msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "Add metadata type to documents: %s" msgstr[1] "Add metadata type to documents: %s" -#: views.py:416 +#: views.py:429 #, fuzzy, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " @@ -372,7 +372,7 @@ msgstr "" "Successfully remove metadata type: %(metadata_type)s from document: " "%(document)s." -#: views.py:426 +#: views.py:439 #, fuzzy, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " @@ -380,56 +380,56 @@ msgid "" msgstr "" "Error removing metadata type: %(metadata_type)s from document: %(document)s." -#: views.py:446 +#: views.py:461 #, fuzzy msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "Remove metadata types from documents: %s" msgstr[1] "Remove metadata types from documents: %s" -#: views.py:485 +#: views.py:504 #, fuzzy, python-format msgid "Metadata for document: %s" msgstr "Edit metadata for documents: %s" -#: views.py:494 +#: views.py:513 #, fuzzy msgid "Create metadata type" msgstr "create metadata type" -#: views.py:510 +#: views.py:529 #, fuzzy, python-format #| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "Delete metadata types" -#: views.py:523 +#: views.py:542 #, fuzzy, python-format msgid "Edit metadata type: %s" msgstr "edit metadata type: %s" -#: views.py:537 +#: views.py:556 #, fuzzy msgid "Internal name" msgstr "internal name" -#: views.py:549 +#: views.py:568 #, fuzzy #| msgid "View metadata types" msgid "Available metadata types" msgstr "View metadata types" -#: views.py:550 +#: views.py:569 #, fuzzy msgid "Metadata types assigned" msgstr "Metadata type" -#: views.py:581 +#: views.py:600 #, fuzzy, python-format msgid "Optional metadata types for document type: %s" msgstr "Remove metadata types from document: %s" -#: views.py:599 +#: views.py:618 #, fuzzy, python-format msgid "Required metadata types for document type: %s" msgstr "Remove metadata types from document: %s" diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po index bb9af128f7..af6121c85e 100644 --- a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,63 +11,66 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "Metadatos" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "Documentos que sin metadatos requeridos" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "QuerySet que contiene una referencia de instancia de tipo de meta datos y un valor para ese tipo de meta datos " +msgstr "" +"QuerySet que contiene una referencia de instancia de tipo de meta datos y un " +"valor para ese tipo de meta datos " -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "Nombre del tipo de metadatos" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "Valor del tipo de metadatos" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "Valor de un metadato" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "Retornar al valor de metadata de un documento específico" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Valor" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "Requerido" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "Tipo de metadato" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -76,34 +79,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "Objeto 'metadata' no tiene atributo '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "ID" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Nombre" + +#: forms.py:20 +msgid "Update" +msgstr "Actualizar" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "ID" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Nombre" - -#: forms.py:79 -msgid "Update" -msgstr "Actualizar" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Eliminar" @@ -111,127 +113,125 @@ msgstr "Eliminar" msgid "Add metadata" msgstr "Añadir metadatos" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "Editar metadatos" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "Remover metadatos" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "Metadatos opcionales" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "Metadatos requeridos" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "Crear nuevo" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "Borrar" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "Editar" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Tipos de metadatos" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "Por defecto" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "Lista de opciones" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "Documento" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "Tipo" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "El tipo de metadatos es requerido para este tipo de documento." -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "El tipo de metadato no es válido para este tipo de documento." -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "Metadatos de documentos" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "Tipo de documento" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "Opciones de tipo de meta datos de tipo de documento " -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "Opciones de tipos de meta datos de tipo de documento " @@ -279,121 +279,128 @@ msgstr "Llave principal del tipo de meta datos a ser agregada." msgid "Value of the corresponding metadata type instance." msgstr "Valor de la instancia de tipo meta datos correspondientes." -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "Debe proveer al menos un documento." -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "Sólo seleccionar documentos del mismo tipo." -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "El documento seleccionado no tiene metadatos." msgstr[1] "Los documentos seleccionados no tienen metadatos." -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadatos del documento %s editados con éxito." -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "Editar meta datos de documento" msgstr[1] "Editar meta datos de documentos" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Error al añadir tipo de metadatos \"%(metadata_type)s\" al documento: %(document)s; %(exception)s" +msgstr "" +"Error al añadir tipo de metadatos \"%(metadata_type)s\" al documento: " +"%(document)s; %(exception)s" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipo de metadatos: %(metadata_type)s añadido con éxito al documento " "%(document)s." -msgstr "Tipo de metadatos: %(metadata_type)s añadido con éxito al documento %(document)s." -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Tipo de metadatos: %(metadata_type)s ya presente en el documento %(document)s." +msgstr "" +"Tipo de metadatos: %(metadata_type)s ya presente en el documento " +"%(document)s." -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "Añadir tipos de meta datos al documento" msgstr[1] "Añadir tipos de meta datos a los documentos" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Remoción con éxito el tipo de meta datos \"%(metadata_type)s\" del documento: %(document)s." +msgstr "" +"Remoción con éxito el tipo de meta datos \"%(metadata_type)s\" del " +"documento: %(document)s." -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Error al eliminar el tipo de metadatos \"%(metadata_type)s\" del documento: %(document)s; %(exception)s" +msgstr "" +"Error al eliminar el tipo de metadatos \"%(metadata_type)s\" del documento: " +"%(document)s; %(exception)s" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "Remover tipos de meta datos del documento" msgstr[1] "Remover tipos de meta datos de los documentos" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "Meta datos para el documento: %s" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "Crear tipo de metadatos" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "Editar tipo de metadatos: %s" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "Nombre interno" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "Tipos de metadatos opcionales para tipo de documento: %s" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "Tipos de metadata requerida para tipo de documento: %s" @@ -558,47 +565,47 @@ msgstr "Tipos de metadata requerida para tipo de documento: %s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po index 3bf6361890..4a17777fe4 100644 --- a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -9,63 +9,66 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "متادیتا" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "اسناد متا داده مورد نیاز را ندارد" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "محتوای مجموعه درخواستها شامل یک نمونه مرجع و یک مقدار برای متا داده مورد نظر است" +msgstr "" +"محتوای مجموعه درخواستها شامل یک نمونه مرجع و یک مقدار برای متا داده مورد نظر " +"است" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "نام نوع متا داده" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "مقدار نوع متاداده" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "مقدار متا داده" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "مقدار خاص مستندات متا داده" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "مقدار" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "الزامی" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "نوع متادیتا" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -74,34 +77,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "متادیتا دارا هیچ خصوصیتی نیست: %s" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "شناسه" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "نام" + +#: forms.py:20 +msgid "Update" +msgstr "به‌روزرسانی" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "شناسه" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "نام" - -#: forms.py:79 -msgid "Update" -msgstr "به‌روزرسانی" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "حذف" @@ -109,127 +111,125 @@ msgstr "حذف" msgid "Add metadata" msgstr "اضافه کردن متادیتا" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "ویرایش متادیتا" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "حذف کردن متادیتا" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "متادیتای اختیاری" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "متادیتای الزامی" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "ایجاد" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "حذف" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "ویرایش" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "انواه متادیتا" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "پیش فرض" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "بررسی و یا پیدا کردن" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "سند" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "نوع" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "نوع متاداده برای این نوع سند مورد نیاز است" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "این نوع از متادیتا برای این نوع سند قابل قبول نیست." -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "متادیتای سند" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "نوع سند" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "متادیتای قابل قبول برای این نوع از سند." -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "متادیتاهای قابل قبول برای این نوع از سند" @@ -277,117 +277,118 @@ msgstr "کلید اولیه برای نوع متا داده اضافه گردد" msgid "Value of the corresponding metadata type instance." msgstr "مقدار مرتبط با نوع متا داده" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "حداقل یک سند باید ارایه شود." -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "فقط اسناد از نوع همسان را انتخاب کنید" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "اسناد انتخاب شده هیچ متا داده ای ندارند" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "متادیتای سند %s با موفقیت ویرایش شد." -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "اسناد متاداده را ویرایش کنید" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "نوع متا داده افزودن خطا \"%(metadata_type)s به سند %(document)s; %(exception)s" +msgstr "" +"نوع متا داده افزودن خطا \"%(metadata_type)s به سند %(document)s; " +"%(exception)s" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "جذف موفق متادیتای ندع : %(metadata_type)s برای سند : %(document)s." -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "متادیتای نوع : %(metadata_type)s در سند %(document)s. موجود است." -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "ًانواع متا داده را به اسناد اضافه کنید" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "حذف موفق متادیتای نوع \"%(metadata_type)s\" از سند %(document)s." -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "خطا در حذف متادیتای نوع\"%(metadata_type)s\" ازسند: %(document)s; %(exception)s" +msgstr "" +"خطا در حذف متادیتای نوع\"%(metadata_type)s\" ازسند: %(document)s; " +"%(exception)s" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "انواع متا داده را از اسناد حذف کنید" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "متا داده برای سند : %s" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "ایجاد نوع متا دیتا" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "ویرایش نوع متا دیتا : %s" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "نام داخلی" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "متادیتا نوع اختیاری برای نوع ستئ %s" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "متادیتای نوع الزامی برای نوع سند :%s" @@ -549,47 +550,47 @@ msgstr "متادیتای نوع الزامی برای نوع سند :%s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po index 9826df4f77..bb7373cd83 100644 --- a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # PatrickHetu , 2012 @@ -11,63 +11,66 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "Métadonnées" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "La métadonnée du document requise est manquante" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "Jeu de requête contenant une référence d'instance MetadataType et une valeur pour ce type de métadonnées" +msgstr "" +"Jeu de requête contenant une référence d'instance MetadataType et une valeur " +"pour ce type de métadonnées" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "Nom du type de métadonnée" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "Valeur du type de métadonnée" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "Valeur de la métadonnées" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "Retourne la valeur de la métadonnée du document spécifié" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Valeur" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "Requis" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "Type de métadonnées" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -76,34 +79,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "l'objet 'metadata' n'a pas d'attribut '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "ID" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Nom" + +#: forms.py:20 +msgid "Update" +msgstr "Mettre à jour" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "ID" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Nom" - -#: forms.py:79 -msgid "Update" -msgstr "Mettre à jour" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Supprimer" @@ -111,127 +113,125 @@ msgstr "Supprimer" msgid "Add metadata" msgstr "Ajouter une métadonnée" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "Modifier la métadonnée" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "Supprimer la métadonnée" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "Métadonnée optionnelle" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "Metadonnée requise" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "Créer une nouvelle" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "Supprimer" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "Modifier" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Types de métadonnées" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "Par défaut" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "Recherche" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "Document" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "Type" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "Le type de métadonnée est requis pour ce type de document." -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "Le type de métadonnée n'est pas valide pour ce type de document." -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "Métadonnée du document" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "Type de document" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "Options de type de document de type de métadonnées" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "Options de type de document des types de métadonnées" @@ -279,121 +279,128 @@ msgstr "Clé primaire du type de la métadonnée à ajouter." msgid "Value of the corresponding metadata type instance." msgstr "Valeur de l'instance de type de métadonnées correspondantes." -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "Vous devez fournir au moins un document." -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "Sélectionner seulement les documents avec le même type." -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "Le document sélectionné n'a pas de méta-données." msgstr[1] "Les documents sélectionnés n'ont pas de métadonnées." -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Métadonnées pour le document %s modifiées avec succès." -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "Modifier les méta-données du document" msgstr[1] "Modifier les métadonnées des documents" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Erreur lors de l'ajout d'un type de métadonnées \"%(metadata_type)s\" au document: %(document)s; %(exception)s" +msgstr "" +"Erreur lors de l'ajout d'un type de métadonnées \"%(metadata_type)s\" au " +"document: %(document)s; %(exception)s" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Le type de métadonnées: %(metadata_type)s ajouter avec succès au document " "%(document)s." -msgstr "Le type de métadonnées: %(metadata_type)s ajouter avec succès au document %(document)s." -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Le type de métadonnée: %(metadata_type)s est déjà présent dans le document %(document)s." +msgstr "" +"Le type de métadonnée: %(metadata_type)s est déjà présent dans le document " +"%(document)s." -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "Ajouter des types de méta-données au document" msgstr[1] "Ajouter des types de métadonnées aux documents" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Type de métadonnées supprimer avec succès \"%(metadata_type)s\" pour le document: %(document)s." +msgstr "" +"Type de métadonnées supprimer avec succès \"%(metadata_type)s\" pour le " +"document: %(document)s." -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Erreur lors de la suppression du type de métadonnée \"%(metadata_type)s\" pour le document: %(document)s; %(exception)s" +msgstr "" +"Erreur lors de la suppression du type de métadonnée \"%(metadata_type)s\" " +"pour le document: %(document)s; %(exception)s" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "Supprimer les types de métadonnées du document" msgstr[1] "Supprimer les types de métadonnées des documents" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "Métadonnées du document: %s" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "Créer un type de métadonnée" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "Modifier le type de métadonnée: %s" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "Nom interne" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "Types de métadonnées optionnelles pour le type de document: %s" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "Types de métadonnées requises pour le type de document: %s" @@ -558,47 +565,47 @@ msgstr "Types de métadonnées requises pour le type de document: %s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po index 63a1f6096a..b0058111a0 100644 --- a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po @@ -1,70 +1,71 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -73,34 +74,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "" + +#: forms.py:20 +msgid "Update" +msgstr "" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "" - -#: forms.py:79 -msgid "Update" -msgstr "" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "" @@ -108,127 +108,125 @@ msgstr "" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -276,121 +274,118 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "" -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" msgstr[1] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -555,47 +550,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po index 596ac179fe..2209414add 100644 --- a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po @@ -1,70 +1,71 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -73,34 +74,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "" + +#: forms.py:20 +msgid "Update" +msgstr "" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "" - -#: forms.py:79 -msgid "Update" -msgstr "" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "" @@ -108,127 +108,125 @@ msgstr "" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -276,117 +274,114 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "" -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -548,47 +543,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po index 8c08caa494..eb79b2afbd 100644 --- a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012 @@ -9,63 +9,64 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "Metadati" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Valore" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "Tipo di metadato" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -74,34 +75,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "'metadata' non ha gli attributi '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Nome" + +#: forms.py:20 +msgid "Update" +msgstr "Aggiurnato" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Nome" - -#: forms.py:79 -msgid "Update" -msgstr "Aggiurnato" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Revoca" @@ -109,127 +109,125 @@ msgstr "Revoca" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Tipi di Metadati" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -277,121 +275,118 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "Devi fornire almeno un documento." -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" msgstr[1] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadata per il documento %s modificato con successo." -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -556,47 +551,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 218ad19400..a8b240136d 100644 --- a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -1,70 +1,71 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -73,34 +74,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "" + +#: forms.py:20 +msgid "Update" +msgstr "" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "" - -#: forms.py:79 -msgid "Update" -msgstr "" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "" @@ -108,127 +108,125 @@ msgstr "" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -276,121 +274,118 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "" -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" msgstr[1] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -555,47 +550,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po index 90f4ff195a..eef6e560cb 100644 --- a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -10,63 +10,65 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Wartość" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "wymagane" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -75,34 +77,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "objekt 'metadata' nie posiada atrybutu '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "ID" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Nazwa" + +#: forms.py:20 +msgid "Update" +msgstr "Aktualizacja" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "ID" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Nazwa" - -#: forms.py:79 -msgid "Update" -msgstr "Aktualizacja" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Usuń" @@ -110,127 +111,125 @@ msgstr "Usuń" msgid "Add metadata" msgstr "Dodaj metadane" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "Edytuj metadane" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "Usuń metadane" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "Utwórz nowy" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "Usunąć" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "Edytuj" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "domyślny" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "Dokument" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "Typ" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -278,125 +277,122 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "" -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -564,47 +560,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po index ca88ea6867..32475e999c 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: # Translators: # Emerson Soares , 2011 @@ -11,63 +11,64 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "Metadados" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Valor" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "Tipo de metadados" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -76,34 +77,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "O objeto 'metadata' não tem nenhum atributo '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Nome" + +#: forms.py:20 +msgid "Update" +msgstr "Atualizar" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Nome" - -#: forms.py:79 -msgid "Update" -msgstr "Atualizar" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Remover" @@ -111,127 +111,125 @@ msgstr "Remover" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Tipos de metadados" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -279,121 +277,118 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "Deve fornecer pelo menos um documento." -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" msgstr[1] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadados do documento %s alterados com sucesso." -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -558,47 +553,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 dd28e3897c..5a50ab0b08 100644 --- a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2013 @@ -11,63 +11,66 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "Metadados" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "Documentos em falta metadados necessários" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "Contendo queryset para MetadataType, referência de instância e um valor para esse tipo de metadados" +msgstr "" +"Contendo queryset para MetadataType, referência de instância e um valor para " +"esse tipo de metadados" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "Metadados nome do tipo" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "Metadados valor do tipo" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "Valor do metadata" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "Devolver o valor de um documento específico de metadados" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Valor" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "exigido" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "Tipo de metadados" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -76,34 +79,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "Objeto 'metadados' tem nenhum atributo '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "ID" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Nome" + +#: forms.py:20 +msgid "Update" +msgstr "Atualizar" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "ID" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Nome" - -#: forms.py:79 -msgid "Update" -msgstr "Atualizar" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Remover" @@ -111,127 +113,125 @@ msgstr "Remover" msgid "Add metadata" msgstr "Adicionar metadados" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "Editar Metadata" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "Remover metadado" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "Metadados Opcional" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "Necessita do metadato" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "Criar novo" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "Excluir" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "Editar" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Tipos de metadados" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "Padrão" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "Tipo de metadados não é válido, para o tipo de documento" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "Documentos" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "Tipo" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "Faltando metadados necessários" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "Tipo de Metadados é necessário para o tipo de documento" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "Documento Metadado" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "Tipo de Documento" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "Tipo de Documento - Opções de tipo de metadados" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "Tipo de Documento - Opções de tipo de metadado" @@ -279,121 +279,127 @@ msgstr "Chave primária do tipo de metadados a ser adicionado." msgid "Value of the corresponding metadata type instance." msgstr "Valor da instância tipo de metadados correspondente." -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "Deve fornecer pelo menos um documento." -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "Apenas selecionar documentos do mesmo tipo." -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" msgstr[1] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadados para o documento %s alterados com sucesso." -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Erro ao adicionar metadados de tipo \"%(metadata_type)s\" para o documento: %(document)s; %(exception)s" +msgstr "" +"Erro ao adicionar metadados de tipo \"%(metadata_type)s\" para o documento: " +"%(document)s; %(exception)s" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipo Metadado %(metadata_type)s adicionado com sucesso para o documento " "%(document)s." -msgstr "Tipo Metadado %(metadata_type)s adicionado com sucesso para o documento %(document)s." -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Tipo Metadado: %(metadata_type)s já está presente no documento%(document)s." +msgstr "" +"Tipo Metadado: %(metadata_type)s já está presente no documento%(document)s." -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Removido com sucesso o Stipo de metadato \"%(metadata_type)s\" do documento: %(document)s." +msgstr "" +"Removido com sucesso o Stipo de metadato \"%(metadata_type)s\" do " +"documento: %(document)s." -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Erro para remover o tipo de metadado \"%(metadata_type)s\" do documento: %(document)s; %(exception)s" +msgstr "" +"Erro para remover o tipo de metadado \"%(metadata_type)s\" do documento: " +"%(document)s; %(exception)s" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "Metadados para documento: %s" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "Criar Tipo de documento" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "Editar o tipo de documento: %s" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "nome interno" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -558,47 +564,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 bf39eca526..4018f21a66 100644 --- a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,63 +9,65 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "Metadate" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Valoare" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "Metadate de tip" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -74,34 +76,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "obiectul 'metadata' nu are nici un atribut &'%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Nume" + +#: forms.py:20 +msgid "Update" +msgstr "Actualizați" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Nume" - -#: forms.py:79 -msgid "Update" -msgstr "Actualizați" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Scoate" @@ -109,127 +110,125 @@ msgstr "Scoate" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Metadate tipuri de" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -277,125 +276,122 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "Trebuie să furnizeze cel puțin un document." -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Metadate pentru documentul %s editat cu succes." -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -563,47 +559,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po index b260ebd194..735c01d6f3 100644 --- a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po @@ -1,70 +1,73 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "Метаданные" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Значение" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "Тип метаданных" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -73,34 +76,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "объект метаданных не имеет аттрибута '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Имя" + +#: forms.py:20 +msgid "Update" +msgstr "Обновить" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Имя" - -#: forms.py:79 -msgid "Update" -msgstr "Обновить" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Удалить" @@ -108,127 +110,125 @@ msgstr "Удалить" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Типы метаданных" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -276,15 +276,15 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "Необходимо предоставить хотя бы один документ." -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" @@ -292,17 +292,17 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "Метаданные для документов %s изменены." -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" @@ -310,27 +310,26 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" @@ -338,21 +337,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" @@ -360,45 +359,43 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -569,47 +566,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 a02ac7dda5..d5956de66f 100644 --- a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -1,70 +1,72 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -73,34 +75,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "" + +#: forms.py:20 +msgid "Update" +msgstr "" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "" - -#: forms.py:79 -msgid "Update" -msgstr "" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "" @@ -108,127 +109,125 @@ msgstr "" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -276,15 +275,15 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "" -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" @@ -292,17 +291,17 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" @@ -310,27 +309,26 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" @@ -338,21 +336,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" @@ -360,45 +358,43 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -569,47 +565,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 ee1ab9855c..3ef02c15aa 100644 --- a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,63 +9,64 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "Siêu dữ liệu" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "Giá trị" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "Loại siêu dữ liệu" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -74,34 +75,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "đối tượng 'siêu dữ liệu' không có thuộc tính: %s" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "Tên" + +#: forms.py:20 +msgid "Update" +msgstr "Cập nhật" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "Tên" - -#: forms.py:79 -msgid "Update" -msgstr "Cập nhật" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "Xóa" @@ -109,127 +109,125 @@ msgstr "Xóa" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -277,117 +275,114 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "" -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "" -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -549,47 +544,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.po index 5cff071451..987c0a5c7b 100644 --- a/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,63 +9,64 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:130 links.py:41 permissions.py:7 settings.py:10 +#: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" msgstr "元数据" -#: apps.py:64 +#: apps.py:76 msgid "Documents missing required metadata" msgstr "" -#: apps.py:81 +#: apps.py:93 msgid "Documents missing optional metadata" msgstr "" -#: apps.py:100 +#: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" msgstr "" -#: apps.py:106 +#: apps.py:118 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:121 msgid "Metadata type value" msgstr "" -#: apps.py:113 +#: apps.py:125 msgid "Value of a metadata" msgstr "" -#: apps.py:115 +#: apps.py:127 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:135 forms.py:77 models.py:155 +#: apps.py:147 forms.py:18 models.py:158 msgid "Value" msgstr "值" -#: apps.py:139 forms.py:24 models.py:205 +#: apps.py:151 forms.py:38 models.py:208 msgid "Required" msgstr "" -#: apps.py:159 forms.py:87 models.py:139 models.py:203 +#: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" msgstr "元数据类型" -#: apps.py:162 +#: apps.py:176 msgid "Metadata value" msgstr "" @@ -74,34 +75,33 @@ msgstr "" msgid "'metadata' object has no attribute '%s'" msgstr "元数据对象没有属性 '%s'" -#: forms.py:49 +#: forms.py:12 +msgid "ID" +msgstr "" + +#: forms.py:15 models.py:45 +msgid "Name" +msgstr "名称" + +#: forms.py:20 +msgid "Update" +msgstr "更新" + +#: forms.py:64 #, python-format msgid "Lookup value error: %s" msgstr "" -#: forms.py:62 +#: forms.py:77 #, python-format msgid "Default value error: %s" msgstr "" -#: forms.py:71 -msgid "ID" -msgstr "" - -#: forms.py:74 models.py:53 -msgid "Name" -msgstr "名称" - -#: forms.py:79 -msgid "Update" -msgstr "更新" - -#: forms.py:105 -#| msgid " Available models: %s" +#: forms.py:116 msgid " Available template context variables: " msgstr "" -#: forms.py:112 +#: forms.py:127 msgid "Remove" msgstr "移除" @@ -109,127 +109,125 @@ msgstr "移除" msgid "Add metadata" msgstr "" -#: links.py:20 links.py:28 +#: links.py:20 links.py:27 msgid "Edit metadata" msgstr "" -#: links.py:33 links.py:37 +#: links.py:30 links.py:34 msgid "Remove metadata" msgstr "" -#: links.py:45 +#: links.py:42 msgid "Optional metadata" msgstr "" -#: links.py:49 +#: links.py:46 msgid "Required metadata" msgstr "" -#: links.py:54 +#: links.py:51 msgid "Create new" msgstr "" -#: links.py:59 +#: links.py:56 msgid "Delete" msgstr "" -#: links.py:62 +#: links.py:59 msgid "Edit" msgstr "" -#: links.py:67 models.py:140 views.py:542 +#: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "元数据类型" -#: models.py:50 -#| msgid "Do not use python reserved words, or spaces." +#: models.py:42 msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." msgstr "" -#: models.py:55 +#: models.py:47 msgid "Label" msgstr "" -#: models.py:59 +#: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" msgstr "" -#: models.py:63 +#: models.py:55 msgid "Default" msgstr "" -#: models.py:68 +#: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" -#: models.py:73 +#: models.py:65 msgid "Lookup" msgstr "" -#: models.py:78 +#: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." msgstr "" -#: models.py:80 +#: models.py:72 msgid "Validator" msgstr "" -#: models.py:84 +#: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" -#: models.py:86 +#: models.py:78 msgid "Parser" msgstr "" -#: models.py:117 +#: models.py:124 msgid "This metadata is required for this document type." msgstr "" -#: models.py:124 +#: models.py:131 msgid "Value is not one of the provided options." msgstr "" -#: models.py:150 +#: models.py:153 msgid "Document" msgstr "" -#: models.py:152 +#: models.py:155 msgid "Type" msgstr "" -#: models.py:164 +#: models.py:167 msgid "Metadata type is required for this document type." msgstr "" -#: models.py:172 +#: models.py:175 msgid "Metadata type is not valid for this document type." msgstr "" -#: models.py:192 models.py:193 +#: models.py:189 models.py:190 msgid "Document metadata" msgstr "" -#: models.py:200 +#: models.py:203 msgid "Document type" msgstr "" -#: models.py:212 +#: models.py:215 msgid "Document type metadata type options" msgstr "" -#: models.py:213 +#: models.py:216 msgid "Document type metadata types options" msgstr "" @@ -277,117 +275,114 @@ msgstr "" msgid "Value of the corresponding metadata type instance." msgstr "" -#: views.py:58 views.py:210 views.py:342 +#: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." msgstr "必须至少提供一个文档" -#: views.py:66 views.py:192 views.py:350 +#: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." msgstr "" -#: views.py:75 views.py:359 +#: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." msgstr[0] "" -#: views.py:136 +#: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." msgstr "" -#: views.py:147 +#: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." msgstr "文档 %s 的元数据编辑成功。" -#: views.py:163 +#: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" msgstr[0] "" -#: views.py:249 +#: views.py:256 #, python-format msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" msgstr "" -#: views.py:265 +#: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" -#: views.py:275 +#: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." msgstr "" -#: views.py:306 +#: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" msgstr[0] "" -#: views.py:416 +#: views.py:429 #, python-format msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." msgstr "" -#: views.py:426 +#: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" msgstr "" -#: views.py:446 +#: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" msgstr[0] "" -#: views.py:485 +#: views.py:504 #, python-format msgid "Metadata for document: %s" msgstr "" -#: views.py:494 +#: views.py:513 msgid "Create metadata type" msgstr "" -#: views.py:510 +#: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" -#: views.py:523 +#: views.py:542 #, python-format msgid "Edit metadata type: %s" msgstr "" -#: views.py:537 +#: views.py:556 msgid "Internal name" msgstr "" -#: views.py:549 -#| msgid "View metadata types" +#: views.py:568 msgid "Available metadata types" msgstr "" -#: views.py:550 +#: views.py:569 msgid "Metadata types assigned" msgstr "" -#: views.py:581 +#: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" msgstr "" -#: views.py:599 +#: views.py:618 #, python-format msgid "Required metadata types for document type: %s" msgstr "" @@ -549,47 +544,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po index bb1d75d913..4d245022f9 100644 --- a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:9 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po index ca050b4a54..ec47469d15 100644 --- a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po index 380c30e3fb..8e37f328bd 100644 --- a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:9 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po index 98d1f0c832..7211a8b238 100644 --- a/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po index 82537655ed..0295d69123 100644 --- a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 17:28+0000\n" "Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 @@ -24,8 +25,12 @@ msgstr "Spiegelung" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden soll." +msgstr "" +"Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden " +"soll." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt zwischengespeichert werden soll." +msgstr "" +"Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt " +"zwischengespeichert werden soll." diff --git a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po index bc1e77f766..3d744eee0a 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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 451ceaf257..cf0e1a4754 100644 --- a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po index 01162107c8..261ed41198 100644 --- a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po index 6b01b428db..012172e913 100644 --- a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po index f3ece8288e..31dc7a09fd 100644 --- a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po index fab465e711..6468f4db8f 100644 --- a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po index e2bf2864de..2935c2e0c4 100644 --- a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 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 bf079ea224..1c47bee001 100644 --- a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po index ffb49c4cad..302f6451f0 100644 --- a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:9 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po index e1f9d5368f..c5d38e72f2 100644 --- a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po index bb462c9e4e..0d6000ca83 100644 --- a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:7 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 ebc04f3eb0..36f1c7866c 100644 --- a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:9 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po index 547f4b5452..3be55d26e2 100644 --- a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:9 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po index 75217e560f..5b21637df0 100644 --- a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:9 settings.py:7 msgid "Mirroring" 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 94fed269ec..3f06322625 100644 --- a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po index 7311c1df55..3a07b1148a 100644 --- a/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po new file mode 100644 index 0000000000..855ac3ac4d --- /dev/null +++ b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po @@ -0,0 +1,110 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po new file mode 100644 index 0000000000..27db30a110 --- /dev/null +++ b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po new file mode 100644 index 0000000000..2aa50fe002 --- /dev/null +++ b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/da/LC_MESSAGES/django.po b/mayan/apps/motd/locale/da/LC_MESSAGES/django.po new file mode 100644 index 0000000000..27db30a110 --- /dev/null +++ b/mayan/apps/motd/locale/da/LC_MESSAGES/django.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po new file mode 100644 index 0000000000..2aa50fe002 --- /dev/null +++ b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/en/LC_MESSAGES/django.po b/mayan/apps/motd/locale/en/LC_MESSAGES/django.po new file mode 100644 index 0000000000..2aa50fe002 --- /dev/null +++ b/mayan/apps/motd/locale/en/LC_MESSAGES/django.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po new file mode 100644 index 0000000000..27db30a110 --- /dev/null +++ b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po new file mode 100644 index 0000000000..f7c283e819 --- /dev/null +++ b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po new file mode 100644 index 0000000000..7582e0307f --- /dev/null +++ b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po new file mode 100644 index 0000000000..27db30a110 --- /dev/null +++ b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po new file mode 100644 index 0000000000..f7c283e819 --- /dev/null +++ b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po new file mode 100644 index 0000000000..27db30a110 --- /dev/null +++ b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po new file mode 100644 index 0000000000..2aa50fe002 --- /dev/null +++ b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po new file mode 100644 index 0000000000..a9c40b94ee --- /dev/null +++ b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po @@ -0,0 +1,110 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po new file mode 100644 index 0000000000..27db30a110 --- /dev/null +++ b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po new file mode 100644 index 0000000000..7582e0307f --- /dev/null +++ b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po new file mode 100644 index 0000000000..2aa50fe002 --- /dev/null +++ b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po new file mode 100644 index 0000000000..4193462ad5 --- /dev/null +++ b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po @@ -0,0 +1,110 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po new file mode 100644 index 0000000000..2aa50fe002 --- /dev/null +++ b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po new file mode 100644 index 0000000000..2aa50fe002 --- /dev/null +++ b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po new file mode 100644 index 0000000000..f7c283e819 --- /dev/null +++ b/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: apps.py:21 links.py:25 permissions.py:7 +msgid "Message of the day" +msgstr "" + +#: apps.py:29 models.py:20 +msgid "Enabled" +msgstr "" + +#: apps.py:32 models.py:24 +msgid "Start date time" +msgstr "" + +#: apps.py:33 apps.py:37 +msgid "None" +msgstr "" + +#: apps.py:36 models.py:29 +msgid "End date time" +msgstr "" + +#: links.py:13 views.py:29 +msgid "Create message" +msgstr "" + +#: links.py:18 +msgid "Delete" +msgstr "" + +#: links.py:21 +msgid "Edit" +msgstr "" + +#: models.py:13 +msgid "Short description of this message." +msgstr "" + +#: models.py:14 +msgid "Label" +msgstr "" + +#: models.py:17 +msgid "The actual message to be displayed." +msgstr "" + +#: models.py:18 models.py:35 +msgid "Message" +msgstr "" + +#: models.py:23 +msgid "Date and time after which this message will be displayed." +msgstr "" + +#: models.py:28 +msgid "Date and time until when this message is to be displayed." +msgstr "" + +#: models.py:36 views.py:66 +msgid "Messages" +msgstr "" + +#: permissions.py:10 +msgid "Create messages" +msgstr "" + +#: permissions.py:13 +msgid "Delete messages" +msgstr "" + +#: permissions.py:16 +msgid "Edit messages" +msgstr "" + +#: permissions.py:19 +msgid "View messages" +msgstr "" + +#: templates/motd/messages.html:8 +msgid "Messages of the day" +msgstr "" + +#: views.py:42 +#, python-format +msgid "Delete the message: %s?" +msgstr "" + +#: views.py:55 +#, python-format +msgid "Edit message: %s" +msgstr "" diff --git a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po index a64b0cc907..f06d845b93 100644 --- a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po index dc4da8b914..710451c882 100644 --- a/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" 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 049812e6c4..85cab50007 100644 --- a/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/navigation/locale/da/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/da/LC_MESSAGES/django.po index 57cf7260ff..db53043470 100644 --- a/mayan/apps/navigation/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/da/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" 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 99c797a524..0ea780eb43 100644 --- a/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "Navigation" diff --git a/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po index 071e025d87..7c22023bd1 100644 --- a/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po index 407a1f0f74..5af1c1e97a 100644 --- a/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "Navegación" diff --git a/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po index b23f444c72..a989590a1e 100644 --- a/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po index 528441ca5a..52dd2d9ed0 100644 --- a/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe kryskool , 2014 @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po index 5ee9b345f6..63af46bc89 100644 --- a/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po index ad89fbfd3f..90393c06ce 100644 --- a/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po index 7605839132..a02f0366c4 100644 --- a/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" 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 1c47c9203f..9647214a32 100644 --- a/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po index ce7b065d33..2fc51e08cf 100644 --- a/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -10,17 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po index a89d438d04..f5cecd51b0 100644 --- a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" 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 a611cafdea..9a1f92590b 100644 --- a/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" 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 1ba18aaf7c..5f4c2627f8 100644 --- a/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po index 40ee17fc01..2dd77d43f3 100644 --- a/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po @@ -1,24 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" 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 c671f056c5..ec0b71877d 100644 --- a/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" 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 c5222a1009..3425dc8b7a 100644 --- a/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/navigation/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/zh_CN/LC_MESSAGES/django.po index 643e422844..3f2078cf0f 100644 --- a/mayan/apps/navigation/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/zh_CN/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:9 +#: apps.py:11 msgid "Navigation" msgstr "" diff --git a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po index cf814f4273..7aa170e27a 100644 --- a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,63 +9,61 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -77,18 +75,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -125,21 +119,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -148,28 +145,23 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Submit documents for OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Delete documents from OCR queue" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"File path to poppler's pdftotext program used to extract text from PDF files." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -179,85 +171,54 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Submit documents for OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Delete documents from OCR queue" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -326,9 +287,6 @@ msgstr[5] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -393,11 +351,11 @@ msgstr[5] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -454,9 +412,11 @@ msgstr[5] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po index 5da31e79c3..20289635cf 100644 --- a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,63 +9,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -77,18 +74,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -125,21 +118,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -148,27 +144,21 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Подаване на документи за OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Изтриване на документи от OCR опашката" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -179,77 +169,54 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Подаване на документи за OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Изтриване на документи от OCR опашката" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -318,9 +285,6 @@ msgstr[1] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -385,11 +349,11 @@ msgstr[1] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -446,9 +410,11 @@ msgstr[1] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 93626d96f5..b09930d2b8 100644 --- a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,63 +9,61 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -77,18 +75,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -125,21 +119,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -148,28 +145,23 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Predati dokumente za OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Brisati dokumente iz OCR reda" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Staza do popplerovog programa pdftotext za vađenje teksta iz PDF datoteka." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Staza do popplerovog programa pdftotext za vađenje teksta iz PDF datoteka." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -179,79 +171,54 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Predati dokumente za OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Brisati dokumente iz OCR reda" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -320,9 +287,6 @@ msgstr[2] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -387,11 +351,11 @@ msgstr[2] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -448,9 +412,11 @@ msgstr[2] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po index efcbafece9..3bc816109c 100644 --- a/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -10,63 +10,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -78,18 +75,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -126,21 +119,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -149,28 +145,24 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Tilmeld dokumenter til OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Slet dokumenter fra OCR kø" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Fil sti til poppler's pdftotext program, brugt til at identificere tekst fra PDF filer." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Fil sti til poppler's pdftotext program, brugt til at identificere tekst fra " +"PDF filer." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -180,77 +172,54 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Tilmeld dokumenter til OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Slet dokumenter fra OCR kø" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -319,9 +288,6 @@ msgstr[1] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -386,11 +352,11 @@ msgstr[1] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -447,9 +413,11 @@ msgstr[1] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 603dfec838..09c474bde3 100644 --- a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -13,63 +13,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2015-09-24 23:14+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR-Schrifterkennung" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "Dokument" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "Hinzugefügt" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "Ergebnis" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "Inhalt" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "pdftotext Version" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "nicht gefunden" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "Fehler beim Auslesen der Version" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "Tesseract Version" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "Seite %(page_number)d" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "Inhalte" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "In die OCR-Verarbeitung einstellen" @@ -81,18 +78,16 @@ msgstr "Gesamt OCR" msgid "Setup OCR" msgstr "OCR Einrichtung" -#: links.py:32 links.py:36 -msgid "Delete" -msgstr "Löschen" +#: links.py:33 +#, fuzzy +#| msgid "Document type" +msgid "OCR documents per type" +msgstr "Dokumententyp" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "OCR Fehler" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "Erneut einstellen" - #: models.py:16 msgid "Document type" msgstr "Dokumententyp" @@ -129,21 +124,24 @@ msgstr "Dokumentenversion OCR Fehler" msgid "Document page" msgstr "Dokumentenseite" +#: models.py:56 +msgid "Content" +msgstr "Inhalt" + #: models.py:62 msgid "Document page content" msgstr "Seiteninhalt" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Seiteninhalt" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "Ausnahme bei der Verarbeitung einer Seite: %s" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "Programm pdftotext nicht gefunden in %s" @@ -152,108 +150,117 @@ msgstr "Programm pdftotext nicht gefunden in %s" msgid "Submit documents for OCR" msgstr "Dokumente in die OCR-Warteschlange einstellen" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Dokumente aus der OCR-Warteschlange entfernen" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "Verarbeiteten Text des Dokuments anzeigen" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "OCR-Einstellungen für Dokumententyp beabeiten" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "Pfad zum 'tesseract'-Programm" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Pfad zum \"pdftotext\"-Programm (bereitgestellt von poppler), das benutzt wird, um Text aus PDF-Dateien zu extrahieren." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Pfad zum \"pdftotext\"-Programm (bereitgestellt von poppler), das benutzt " +"wird, um Text aus PDF-Dateien zu extrahieren." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." -msgstr "Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet werden soll." +msgstr "" +"Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet " +"werden soll." #: settings.py:27 msgid "Set new document types to perform OCR automatically by default." -msgstr "Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch durchgeführt werden soll." +msgstr "" +"Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch " +"durchgeführt werden soll." -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "Dokumente in die OCR-Verarbeitung einstellen?" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "%d Dokumente in OCR-Warteschlange eingereiht" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "\"%s\" in die OCR-Warteschlange einreihen?" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Dokument %(document)s in OCR-Warteschlange eingereiht" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "Ausgewählte Dokumente in die OCR-Warteschlange einreihen?" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit all documents for OCR?" +msgid "Submit all documents of a type for OCR" +msgstr "Dokumente in die OCR-Verarbeitung einstellen?" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Dokument %(document)s in OCR-Warteschlange eingereiht" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "OCR-Einstellungen für Dokumententyp %s bearbeiten" -#: views.py:131 -#, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +#: views.py:154 +#, fuzzy, python-format +#| msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "Inhalt von Dokument %s" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "Es muss mindestens eine Auswahl getroffen werden" +#~ msgid "Delete" +#~ msgstr "Löschen" -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "Eintrag %(entry)s erfolgreich gelöscht" +#~ msgid "Re-queue" +#~ msgstr "Erneut einstellen" -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "Fehler bei Eintrag %(entry)s: %(error)s" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Dokumente aus der OCR-Warteschlange entfernen" -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "Ausgewählten Eintrag löschen?" -msgstr[1] "Ausgewählte Einträge löschen?" +#~ msgid "Make at least one selection." +#~ msgstr "Es muss mindestens eine Auswahl getroffen werden" -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "Eintrag %(entry)s wurde erneut in die Warteschlange eingereiht" +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Eintrag %(entry)s erfolgreich gelöscht" -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "Dokumentenversion ID: %d existiert nicht mehr" +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Fehler bei Eintrag %(entry)s: %(error)s" -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "Ausgewählten Eintrag wieder einstellen?" -msgstr[1] "Ausgewählte Einträge wieder einstellen?" +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "Ausgewählten Eintrag löschen?" +#~ msgstr[1] "Ausgewählte Einträge löschen?" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Eintrag %(entry)s wurde erneut in die Warteschlange eingereiht" + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Dokumentenversion ID: %d existiert nicht mehr" + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "Ausgewählten Eintrag wieder einstellen?" +#~ msgstr[1] "Ausgewählte Einträge wieder einstellen?" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -389,11 +396,11 @@ msgstr[1] "Ausgewählte Einträge wieder einstellen?" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -450,9 +457,11 @@ msgstr[1] "Ausgewählte Einträge wieder einstellen?" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po index 98ed3a61fe..e08001af48 100644 --- a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" "PO-Revision-Date: 2012-06-17 22:12+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,52 +18,49 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 #, fuzzy msgid "Document" msgstr "document" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 #, fuzzy msgid "Result" msgstr "result" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 #, fuzzy msgid "pdftotext version" msgstr "document queues" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 #, fuzzy msgid "tesseract version" msgstr "document queues" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" @@ -82,21 +79,16 @@ msgstr "queue documents" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 +#: links.py:33 #, fuzzy -msgid "Delete" -msgstr "delete" +msgid "OCR documents per type" +msgstr "document" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 #, fuzzy msgid "OCR errors" msgstr "error" -#: links.py:43 links.py:47 -#, fuzzy -msgid "Re-queue" -msgstr "re-queue" - #: models.py:16 #, fuzzy msgid "Document type" @@ -139,6 +131,10 @@ msgstr "" msgid "Document page" msgstr "document" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 #, fuzzy msgid "Document page content" @@ -150,12 +146,12 @@ msgstr "clean up pages content" msgid "Document pages contents" msgstr "Document pages content clean up error: %s" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -164,15 +160,11 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Submit documents for OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Delete documents from OCR queue" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" @@ -196,82 +188,98 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 +#: views.py:28 #, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "Submit documents for OCR" -#: views.py:41 +#: views.py:40 #, fuzzy, python-format msgid "%d documents added to the OCR queue." msgstr "Document: %(document)s was added to the OCR queue: %(queue)s." -#: views.py:49 +#: views.py:48 #, fuzzy, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "submit to OCR queue" -#: views.py:74 +#: views.py:73 #, fuzzy, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Document: %(document)s was added to the OCR queue: %(queue)s." -#: views.py:88 +#: views.py:87 #, fuzzy #| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "Submit documents for OCR" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Submit documents for OCR" + +#: views.py:109 +#, fuzzy, python-format +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was added to the OCR queue: %(queue)s." + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, fuzzy, python-format #| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "Queued documents: %d" -#: views.py:160 views.py:221 #, fuzzy -msgid "Make at least one selection." -msgstr "Must provide at least one queue document." +#~ msgid "Delete" +#~ msgstr "delete" -#: views.py:175 -#, fuzzy, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "Queue document: %(document)s deleted successfully." - -#: views.py:182 -#, fuzzy, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "Error deleting document: %(document)s; %(error)s" - -#: views.py:198 #, fuzzy -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "Are you sure you wish to delete queue document: %s?" -msgstr[1] "Are you sure you wish to delete queue document: %s?" +#~ msgid "Re-queue" +#~ msgstr "re-queue" -#: views.py:233 -#, fuzzy, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "Document: %(document)s is already queued." +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Delete documents from OCR queue" -#: views.py:240 -#, fuzzy, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "Document id#: %d, no longer exists." - -#: views.py:254 #, fuzzy -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "Are you sure you wish to re-queue document: %s?" -msgstr[1] "Are you sure you wish to re-queue document: %s?" +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#, fuzzy +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#, fuzzy +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#, fuzzy +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "Are you sure you wish to delete queue document: %s?" +#~ msgstr[1] "Are you sure you wish to delete queue document: %s?" + +#, fuzzy +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#, fuzzy +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#, fuzzy +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "Are you sure you wish to re-queue document: %s?" +#~ msgstr[1] "Are you sure you wish to re-queue document: %s?" #, fuzzy #~| msgid "Submit documents for OCR" diff --git a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po index d7a49eb1f0..7fe6224f66 100644 --- a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,63 +11,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "Documento" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "Añadido" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "Resultado" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "Contenido" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "No encontrado" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "Contenido" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Enviar para OCR" @@ -79,18 +76,16 @@ msgstr "Realizar OCR a todos los documentos" msgid "Setup OCR" msgstr "Configurar OCR" -#: links.py:32 links.py:36 -msgid "Delete" -msgstr "Borrar" +#: links.py:33 +#, fuzzy +#| msgid "Document type" +msgid "OCR documents per type" +msgstr "Tipo de documento" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "Errores de OCR" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "Someter de nuevo" - #: models.py:16 msgid "Document type" msgstr "Tipo de documento" @@ -127,21 +122,24 @@ msgstr "Errores de OCR en versiones de documentos" msgid "Document page" msgstr "Página de documento" +#: models.py:56 +msgid "Content" +msgstr "Contenido" + #: models.py:62 msgid "Document page content" msgstr "Contenido de página de documento" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Contenido de página de documento" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -150,28 +148,24 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Enviar documentos para OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Eliminar documentos de la cola de OCR" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Ruta de acceso al programa de poppler llamado pdftotext utilizado para extraer texto de archivos PDF." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Ruta de acceso al programa de poppler llamado pdftotext utilizado para " +"extraer texto de archivos PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -181,77 +175,76 @@ msgstr "Ruta completa a la aplicación que se usará para OCR." msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "%d documentos enviados para OCR." -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Documento: %(document)s fue añadido a la lista de espera de OCR" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Enviar documentos para OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Documento: %(document)s fue añadido a la lista de espera de OCR" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 -#, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +#: views.py:154 +#, fuzzy, python-format +#| msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "Contenido del documento: %s" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "Haga al menos una selección" +#~ msgid "Delete" +#~ msgstr "Borrar" -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "Entrada: %(entry)s ha eliminada correctamente." +#~ msgid "Re-queue" +#~ msgstr "Someter de nuevo" -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "Entrada de error: %(entry)s; %(error)s" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Eliminar documentos de la cola de OCR" -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" +#~ msgid "Make at least one selection." +#~ msgstr "Haga al menos una selección" -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "Entrada: %(entry)s fue sometido para OCR." +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Entrada: %(entry)s ha eliminada correctamente." -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "La versión de documento #: %d, ya no existe." +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Entrada de error: %(entry)s; %(error)s" -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Entrada: %(entry)s fue sometido para OCR." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "La versión de documento #: %d, ya no existe." #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -387,11 +380,11 @@ msgstr[1] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -448,9 +441,11 @@ msgstr[1] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po index 7ca285bb6b..b39e53950b 100644 --- a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po @@ -1,70 +1,67 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "سند" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "اضافه شده" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "جواب" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -76,18 +73,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" -msgstr "حذف" +#: links.py:33 +msgid "OCR documents per type" +msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "خطای OCR " -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "صف سازی دوباره" - #: models.py:16 msgid "Document type" msgstr "" @@ -124,21 +117,24 @@ msgstr "خطاهای OCR نسخه مستندات" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -147,27 +143,21 @@ msgstr "" msgid "Submit documents for OCR" msgstr "ارسال سند برای OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "حذف سند از صف OCR" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "محل فایل POPPLER جهت استخراج TEXT از PDF" #: settings.py:22 @@ -178,75 +168,75 @@ msgstr "محل اجرای نرم افزار OCR" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "سند : %(document)s جهت ocr وارد صف شد." -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "ارسال سند برای OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "سند : %(document)s جهت ocr وارد صف شد." + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "حداقل یک مجموعه انتخاب کنید" +#~ msgid "Delete" +#~ msgstr "حذف" -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "ورودی : %(entry)sبا موفقیت حذف شد." +#~ msgid "Re-queue" +#~ msgstr "صف سازی دوباره" -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "خطای ورود:: %(entry)s; %(error)s" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "حذف سند از صف OCR" -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" +#~ msgid "Make at least one selection." +#~ msgstr "حداقل یک مجموعه انتخاب کنید" -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "ورودی %(entry)s برای OCR مجددا در صف قرار گرفت" +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "ورودی : %(entry)sبا موفقیت حذف شد." -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "نسخه سند id#: %d, وجود ندارد" +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "خطای ورود:: %(entry)s; %(error)s" -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "ورودی %(entry)s برای OCR مجددا در صف قرار گرفت" + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "نسخه سند id#: %d, وجود ندارد" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -382,11 +372,11 @@ msgstr[0] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -443,9 +433,11 @@ msgstr[0] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po index ff194b7855..de86ccdb05 100644 --- a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -9,63 +9,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "Document" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "Ajouté" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "Résultat" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -77,18 +74,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" -msgstr "Supprimer" +#: links.py:33 +msgid "OCR documents per type" +msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "Erreurs de ROC" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "Re-ajouter à la file d'attente" - #: models.py:16 msgid "Document type" msgstr "" @@ -125,21 +118,24 @@ msgstr "Erreurs ROC sur la version du document" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -148,28 +144,24 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Soumettre les documents à l'OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Supprimer les documents de la file d'attente OCR" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à partir des fichiers PDF." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à " +"partir des fichiers PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -179,77 +171,75 @@ msgstr "Chemin complet pour l'interface utilisée pour faire de l'OCR" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Le document: %(document)s a été ajouté à la file d'attente OCR." -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Soumettre les documents à l'OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Le document: %(document)s a été ajouté à la file d'attente OCR." + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "Faite au moins une sélection." +#~ msgid "Delete" +#~ msgstr "Supprimer" -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "Entrée: %(entry)s supprimée avec succès." +#~ msgid "Re-queue" +#~ msgstr "Re-ajouter à la file d'attente" -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "Erreur entrée: %(entry)s; %(error)s" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Supprimer les documents de la file d'attente OCR" -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" +#~ msgid "Make at least one selection." +#~ msgstr "Faite au moins une sélection." -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "Entrée: %(entry)s remis en file pour la ROC" +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Entrée: %(entry)s supprimée avec succès." -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "L'identifiant #: %d de version du document, n'existe plus." +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Erreur entrée: %(entry)s; %(error)s" -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Entrée: %(entry)s remis en file pour la ROC" + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "L'identifiant #: %d de version du document, n'existe plus." #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -385,11 +375,11 @@ msgstr[1] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -446,9 +436,11 @@ msgstr[1] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po index 76da4e9a0b..dbc5708a01 100644 --- a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po @@ -1,70 +1,67 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -76,18 +73,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -124,21 +117,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -147,27 +143,21 @@ msgstr "" msgid "Submit documents for OCR" msgstr "" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -178,81 +168,52 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit the selected document for OCR?" +msgid "Submit all documents of a type for OCR" +msgstr "Submit documents for OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" - -#~ msgid "Submit the selected document for OCR?" -#~ msgstr "Submit documents for OCR" - #~ msgid "Text from OCR" #~ msgstr "Text from OCR" @@ -317,9 +278,6 @@ msgstr[1] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -384,11 +342,11 @@ msgstr[1] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -445,9 +403,11 @@ msgstr[1] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po index 13a6bee310..c734ed9aa6 100644 --- a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po @@ -1,70 +1,67 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:46-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/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -76,18 +73,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -124,21 +117,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -147,27 +143,21 @@ msgstr "" msgid "Submit documents for OCR" msgstr "" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -178,79 +168,52 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit the selected document for OCR?" +msgid "Submit all documents of a type for OCR" +msgstr "Submit documents for OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" - -#~ msgid "Submit the selected document for OCR?" -#~ msgstr "Submit documents for OCR" - #~ msgid "Text from OCR" #~ msgstr "Text from OCR" @@ -315,9 +278,6 @@ msgstr[0] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -382,11 +342,11 @@ msgstr[0] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -443,9 +403,11 @@ msgstr[0] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po index 9f0eda6a19..af8e10b6c3 100644 --- a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012 @@ -9,63 +9,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-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/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -77,18 +74,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -125,21 +118,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -148,27 +144,21 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Inviare documenti all OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Cancella documenti dalla coda OCR" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -179,77 +169,54 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Inviare documenti all OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Cancella documenti dalla coda OCR" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -318,9 +285,6 @@ msgstr[1] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -385,11 +349,11 @@ msgstr[1] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -446,9 +410,11 @@ msgstr[1] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 ddb4c74b86..df317f6639 100644 --- a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2012 @@ -9,63 +9,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-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-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -77,18 +74,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -125,21 +118,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -148,28 +144,24 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Bevestig documenten voor OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Verwijder documenten van de OCR wachtrij" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF " "files." -msgstr "Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF files." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -179,77 +171,54 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Bevestig documenten voor OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Verwijder documenten van de OCR wachtrij" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -318,9 +287,6 @@ msgstr[1] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -385,11 +351,11 @@ msgstr[1] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -446,9 +412,11 @@ msgstr[1] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po index 2fac5d5e42..244a7d195e 100644 --- a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -9,63 +9,61 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-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/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "Dokument" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "Dodano" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "Wynik" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -77,18 +75,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" -msgstr "Usunąć" +#: links.py:33 +msgid "OCR documents per type" +msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "Błędy OCR" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "Ponowne zakolejkowanie" - #: models.py:16 msgid "Document type" msgstr "" @@ -125,21 +119,24 @@ msgstr "Błędy OCR wersji dokumentu" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -148,27 +145,21 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Prześlij dokument do OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Usuń dokument z kolejki OCR" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -179,79 +170,75 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Dokument : %(document)s dodany do kolejki OCR" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Prześlij dokument do OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Dokument : %(document)s dodany do kolejki OCR" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "Zaznacz przynajmniej jedno." +#~ msgid "Delete" +#~ msgstr "Usunąć" -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "Wpis: %(entry)s pomyślnie usunięty." +#~ msgid "Re-queue" +#~ msgstr "Ponowne zakolejkowanie" -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "Błąd wpisu : %(entry)s; %(error)s" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Usuń dokument z kolejki OCR" -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#~ msgid "Make at least one selection." +#~ msgstr "Zaznacz przynajmniej jedno." -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "Wpis: %(entry)s został ponownie zakolejkowany do OCR." +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Wpis: %(entry)s pomyślnie usunięty." -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "Wersja dokumentu id#: %d, nie istnieje." +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Błąd wpisu : %(entry)s; %(error)s" -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Wpis: %(entry)s został ponownie zakolejkowany do OCR." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Wersja dokumentu id#: %d, nie istnieje." #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -387,11 +374,11 @@ msgstr[2] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -448,9 +435,11 @@ msgstr[2] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po index d9f7a4c151..2107da68ac 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: # Translators: # Emerson Soares , 2011 @@ -11,63 +11,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-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/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -79,18 +76,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -127,21 +120,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -150,28 +146,24 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Submeter documentos para OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Remover documentos da fila de OCR" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Caminho para o programa pdftotext de poppler, usado para extrair texto de ficheiros PDF." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Caminho para o programa pdftotext de poppler, usado para extrair texto de " +"ficheiros PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -181,77 +173,54 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Submeter documentos para OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Remover documentos da fila de OCR" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -320,9 +289,6 @@ msgstr[1] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -387,11 +353,11 @@ msgstr[1] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -448,9 +414,11 @@ msgstr[1] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 560aa53055..7edfd20b4a 100644 --- a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Renata Oliveira , 2011 @@ -10,63 +10,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-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-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "Enviar para a fila de OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "Documento" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "adicionado" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "resultado" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -78,18 +75,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" -msgstr "Excluir" +#: links.py:33 +msgid "OCR documents per type" +msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "Erros de OCR" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "re-enfileirar" - #: models.py:16 msgid "Document type" msgstr "" @@ -126,21 +119,24 @@ msgstr "OCR erros: Versão do documento" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -149,28 +145,24 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Submeter documentos para OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Excluir documentos da fila de OCR" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Caminho para o programa poppler pdftotext usado para extrair texto de arquivos PDF." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Caminho para o programa poppler pdftotext usado para extrair texto de " +"arquivos PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -180,77 +172,66 @@ msgstr "Caminho completo para o servidor a ser usado para fazer OCR." msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "Documento: %(document)s foi adicionado à fila de OCR." -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Submeter documentos para OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Documento: %(document)s foi adicionado à fila de OCR." + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" +#~ msgid "Delete" +#~ msgstr "Excluir" -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "Entrada: %(entry)s foi excluído com sucesso." +#~ msgid "Re-queue" +#~ msgstr "re-enfileirar" -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "Erro de entrada: %(entry)s; %(error)s" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Excluir documentos da fila de OCR" -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Entrada: %(entry)s foi excluído com sucesso." -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Erro de entrada: %(entry)s; %(error)s" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -386,11 +367,11 @@ msgstr[1] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -447,9 +428,11 @@ msgstr[1] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 99d368a335..06a1840ee6 100644 --- a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,63 +9,61 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-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-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -77,18 +75,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -125,21 +119,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -148,28 +145,24 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Trimiteti documentele pentru OCR" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Ștergeți documentele din coada OCR" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Calea de fișier pentru programul pdftotext folosit pentru a extrage textul din fișiere PDF." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Calea de fișier pentru programul pdftotext folosit pentru a extrage textul " +"din fișiere PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -179,79 +172,54 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Trimiteti documentele pentru OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Ștergeți documentele din coada OCR" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -320,9 +288,6 @@ msgstr[2] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -387,11 +352,11 @@ msgstr[2] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -448,9 +413,11 @@ msgstr[2] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po index d1436a7573..bafc7f0cfa 100644 --- a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po @@ -1,70 +1,69 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-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/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "Распознавание текста" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -76,18 +75,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -124,21 +119,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -147,28 +145,24 @@ msgstr "" msgid "Submit documents for OCR" msgstr "Отправить документы для распознавания текста" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "Удаление документов из очереди OCR" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Путь к файлу программы pdftotext Poppler, используемой для извлечения текста из PDF файлов." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Путь к файлу программы pdftotext Poppler, используемой для извлечения текста " +"из PDF файлов." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -178,81 +172,54 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "Отправить документы для распознавания текста" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Удаление документов из очереди OCR" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -321,9 +288,6 @@ msgstr[3] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -388,11 +352,11 @@ msgstr[3] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -449,9 +413,11 @@ msgstr[3] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 aff148f24d..56473ae251 100644 --- a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po @@ -1,70 +1,68 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-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-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -76,18 +74,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -124,21 +118,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -147,27 +144,21 @@ msgstr "" msgid "Submit documents for OCR" msgstr "" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -178,85 +169,52 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit the selected document for OCR?" +msgid "Submit all documents of a type for OCR" +msgstr "Submit documents for OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#~ msgid "Submit the selected document for OCR?" -#~ msgstr "Submit documents for OCR" - #~ msgid "Text from OCR" #~ msgstr "Text from OCR" @@ -321,9 +279,6 @@ msgstr[3] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -388,11 +343,11 @@ msgstr[3] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -449,9 +404,11 @@ msgstr[3] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 dd35cc3f90..e5ffb76a9f 100644 --- a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,63 +9,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-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/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -77,18 +74,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -125,21 +118,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -148,27 +144,21 @@ msgstr "" msgid "Submit documents for OCR" msgstr "" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -179,79 +169,52 @@ msgstr "" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit the selected document for OCR?" +msgid "Submit all documents of a type for OCR" +msgstr "Submit documents for OCR" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" - -#~ msgid "Submit the selected document for OCR?" -#~ msgstr "Submit documents for OCR" - #~ msgid "Text from OCR" #~ msgstr "Text from OCR" @@ -316,9 +279,6 @@ msgstr[0] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -383,11 +343,11 @@ msgstr[0] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -444,9 +404,11 @@ msgstr[0] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po index e872b42907..cbcb41da66 100644 --- a/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,63 +9,60 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:56 apps.py:143 permissions.py:7 settings.py:7 +#: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 +#: settings.py:7 msgid "OCR" msgstr "扫描输入" -#: apps.py:75 +#: apps.py:91 msgid "Document" msgstr "" -#: apps.py:79 +#: apps.py:95 msgid "Added" msgstr "" -#: apps.py:83 models.py:36 +#: apps.py:99 models.py:36 msgid "Result" msgstr "" -#: apps.py:100 links.py:13 models.py:56 -msgid "Content" -msgstr "" - -#: apps.py:149 apps.py:154 apps.py:159 +#: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" msgstr "" -#: apps.py:149 apps.py:167 +#: apps.py:160 apps.py:178 msgid "not found" msgstr "" -#: apps.py:155 apps.py:173 +#: apps.py:166 apps.py:184 msgid "error getting version" msgstr "" -#: apps.py:167 apps.py:172 apps.py:177 +#: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" msgstr "" -#: forms.py:39 +#: forms.py:40 #, python-format msgid "Page %(page_number)d" msgstr "" -#: forms.py:47 +#: forms.py:48 msgid "Contents" msgstr "" #: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -77,18 +74,14 @@ msgstr "" msgid "Setup OCR" msgstr "" -#: links.py:32 links.py:36 -msgid "Delete" +#: links.py:33 +msgid "OCR documents per type" msgstr "" -#: links.py:40 views.py:138 +#: links.py:37 views.py:161 msgid "OCR errors" msgstr "" -#: links.py:43 links.py:47 -msgid "Re-queue" -msgstr "" - #: models.py:16 msgid "Document type" msgstr "" @@ -125,21 +118,24 @@ msgstr "" msgid "Document page" msgstr "" +#: models.py:56 +msgid "Content" +msgstr "" + #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" -#: parsers.py:101 +#: parsers.py:103 #, python-format msgid "Exception parsing page; %s" msgstr "" -#: parsers.py:127 +#: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" msgstr "" @@ -148,27 +144,21 @@ msgstr "" msgid "Submit documents for OCR" msgstr "提交扫描输入的文档" -#: permissions.py:13 -msgid "Delete documents from OCR queue" -msgstr "从OCR队列中删除文档" - -#: permissions.py:17 +#: permissions.py:14 msgid "View the transcribed text from document" msgstr "" -#: permissions.py:21 +#: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "程序pdftotext文件路径,用以从PDF文件中提取文本。" #: settings.py:22 @@ -179,75 +169,54 @@ msgstr "用于执行OCR后台应用的全路径。" msgid "Set new document types to perform OCR automatically by default." msgstr "" -#: views.py:29 -#| msgid "Submit documents for OCR" +#: views.py:28 msgid "Submit all documents for OCR?" msgstr "" -#: views.py:41 +#: views.py:40 #, python-format msgid "%d documents added to the OCR queue." msgstr "" -#: views.py:49 +#: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" msgstr "" -#: views.py:74 +#: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." msgstr "" -#: views.py:88 -#| msgid "Submit documents for OCR" +#: views.py:87 msgid "Submit the selected documents to the OCR queue?" msgstr "" -#: views.py:104 +#: views.py:94 +#, fuzzy +#| msgid "Submit documents for OCR" +msgid "Submit all documents of a type for OCR" +msgstr "提交扫描输入的文档" + +#: views.py:109 +#, fuzzy, python-format +#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + +#: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" msgstr "" -#: views.py:131 +#: views.py:154 #, python-format -#| msgid "Queued documents: %d" -msgid "Content of document: %s" +msgid "OCR result for document: %s" msgstr "" -#: views.py:160 views.py:221 -msgid "Make at least one selection." -msgstr "" - -#: views.py:175 -#, python-format -msgid "Entry: %(entry)s deleted successfully." -msgstr "" - -#: views.py:182 -#, python-format -msgid "Error entry: %(entry)s; %(error)s" -msgstr "" - -#: views.py:198 -msgid "Delete the selected entry?" -msgid_plural "Delete the selected entries?" -msgstr[0] "" - -#: views.py:233 -#, python-format -msgid "Entry: %(entry)s was re-queued for OCR." -msgstr "" - -#: views.py:240 -#, python-format -msgid "Document version id#: %d, no longer exists." -msgstr "" - -#: views.py:254 -msgid "Re-queue the selected entry?" -msgid_plural "Re-queue the selected entries?" -msgstr[0] "" +#~ msgid "Delete documents from OCR queue" +#~ msgstr "从OCR队列中删除文档" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -316,9 +285,6 @@ msgstr[0] "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" -#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" - #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -383,11 +349,11 @@ msgstr[0] "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -444,9 +410,11 @@ msgstr[0] "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po index 4d6592de71..231cbdd567 100644 --- a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "الصلاحيات" @@ -47,7 +49,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -67,19 +69,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "مجموعات" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -125,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po index 7c06216df1..44597aa26d 100644 --- a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Разрешения" @@ -47,7 +48,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -67,19 +68,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Групи" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -125,7 +126,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +162,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +181,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 480a135e01..e60c6bdbd7 100644 --- a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Dozvole" @@ -47,7 +49,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -67,19 +69,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Grupe" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -125,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po index f15d7ede66..8893ad6f54 100644 --- a/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "" @@ -46,7 +47,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -66,19 +67,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -124,7 +125,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,8 +161,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -178,13 +180,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 05557a3653..b81a2891c7 100644 --- a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-08 23:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Berechtigungen" @@ -49,7 +50,7 @@ msgstr "Löschen" msgid "Edit" msgstr "Bearbeiten" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "Rollen" @@ -69,19 +70,19 @@ msgstr "Namensraum" msgid "Name" msgstr "Name" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "Berechtigung" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "Bezeichnung" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Gruppen" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "Rolle" @@ -127,7 +128,6 @@ msgid "Available permissions" msgstr "Verfügbare Berechtigungen" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Erteilte Berechtigungen" @@ -164,8 +164,10 @@ msgstr "Berechtigungen der Rolle %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,13 +183,17 @@ msgstr "Berechtigungen der Rolle %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po index 113bb8d533..a03a61666b 100644 --- a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2012-02-02 18:18+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Permissions" @@ -48,7 +48,7 @@ msgstr "delete" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 #, fuzzy msgid "Roles" msgstr "roles" @@ -72,21 +72,21 @@ msgstr "namespace" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 #, fuzzy msgid "Permission" msgstr "Permissions" -#: models.py:64 +#: models.py:67 #, fuzzy msgid "Label" msgstr "label" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Groups" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po index f3d77c9862..595c21c55d 100644 --- a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Permisos" @@ -49,7 +50,7 @@ msgstr "Borrar" msgid "Edit" msgstr "Editar" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "Roles" @@ -69,19 +70,19 @@ msgstr "Espacio nombrado" msgid "Name" msgstr "Nombre" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "Permiso" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "Etiqueta" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Grupos" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "Rol" @@ -127,7 +128,6 @@ msgid "Available permissions" msgstr "Permisos disponibles" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Permisos otorgados" @@ -164,8 +164,10 @@ msgstr "Permisos para el rol: %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,13 +183,17 @@ msgstr "Permisos para el rol: %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po index d2acdb1271..105b160574 100644 --- a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "مجوزها" @@ -48,7 +49,7 @@ msgstr "حذف" msgid "Edit" msgstr "ویرایش" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "نقش ها" @@ -68,19 +69,19 @@ msgstr "فضای نام" msgid "Name" msgstr "نام" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "مجوز" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "برچسب" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "گروه‌ها" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "نقش" @@ -126,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -180,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po index 51d3c22c13..eda4f2fd09 100644 --- a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe kryskool , 2014 @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Droits" @@ -48,7 +49,7 @@ msgstr "Supprimer" msgid "Edit" msgstr "Modifier" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "Rôles" @@ -68,19 +69,19 @@ msgstr "Espace de nommage" msgid "Name" msgstr "Nom" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "Autorisation" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "Étiquette" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Groupes" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "Rôle" @@ -126,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -180,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po index f952157404..32eba13042 100644 --- a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "" @@ -46,7 +47,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -66,19 +67,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -124,7 +125,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,8 +161,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -178,13 +180,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po index 7acbf2d22a..446255cc93 100644 --- a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "" @@ -46,7 +47,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -66,19 +67,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -124,7 +125,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,8 +161,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -178,13 +180,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po index 306576ea43..3b698aaada 100644 --- a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Permessi" @@ -47,7 +48,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -67,19 +68,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Gruppi" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -125,7 +126,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +162,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +181,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 afb7e6fd3b..ebdae352a4 100644 --- a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Permissies" @@ -47,7 +48,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -67,19 +68,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Groepen" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -125,7 +126,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +162,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +181,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po index b57c1dd839..f375b672f9 100644 --- a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012,2015 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Uprawnienia" @@ -47,7 +49,7 @@ msgstr "Usunąć" msgid "Edit" msgstr "Edytuj" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -67,19 +69,19 @@ msgstr "" msgid "Name" msgstr "Nazwa" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "Uprawnienia" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "Etykieta" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Grupy" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -125,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po index 70e8dcf0bf..235ab5f24d 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: # Translators: # Emerson Soares , 2011 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Permissões" @@ -49,7 +50,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -69,19 +70,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Grupos" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -127,7 +128,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -164,8 +164,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,13 +183,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 f1d9ff6255..8935b0fb44 100644 --- a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Permissões" @@ -49,7 +50,7 @@ msgstr "Excluir" msgid "Edit" msgstr "Editar" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "Regras" @@ -69,19 +70,19 @@ msgstr "namespace" msgid "Name" msgstr "Nome" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "permissão" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "Label" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Grupos" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "Regras" @@ -127,7 +128,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -164,8 +164,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,13 +183,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 2938b47c18..b9b97378fd 100644 --- a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Permisiuni" @@ -47,7 +49,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -67,19 +69,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Grupuri" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -125,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po index 29a503cfc7..a5ae61d81b 100644 --- a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po @@ -1,24 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "Разрешения" @@ -46,7 +49,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -66,19 +69,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "Группы" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -124,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -178,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 40a73dd2c6..9e723b684a 100644 --- a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "" @@ -46,7 +48,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -66,19 +68,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -124,7 +126,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,8 +162,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -178,13 +181,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 2822649a6a..bf122fe5bf 100644 --- a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "" @@ -47,7 +48,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -67,19 +68,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -125,7 +126,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +162,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +181,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po index 84057fc371..0e358f3647 100644 --- a/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:22 models.py:27 models.py:67 permissions.py:7 +#: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" msgstr "权限" @@ -47,7 +48,7 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:35 models.py:76 views.py:134 +#: links.py:35 models.py:91 views.py:134 msgid "Roles" msgstr "" @@ -67,19 +68,19 @@ msgstr "" msgid "Name" msgstr "" -#: models.py:26 +#: models.py:46 msgid "Permission" msgstr "" -#: models.py:64 +#: models.py:67 msgid "Label" msgstr "" -#: models.py:70 +#: models.py:73 msgid "Groups" msgstr "用户组" -#: models.py:75 +#: models.py:90 msgid "Role" msgstr "" @@ -125,7 +126,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +162,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +181,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 52b855f4c4..a7aa3bde06 100644 --- a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 4449135c9d..4ecc97158e 100644 --- a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 dab3eda1d1..ce0e3fc6a9 100644 --- a/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" diff --git a/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po index 38a08a32f4..802f92ed60 100644 --- a/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 27911508fb..2da02c8b3a 100644 --- a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-08 23:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "REST API" 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 690c3586ea..a65b0d73e2 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: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 8b0be81ec3..07f897299c 100644 --- a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2015 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-24 05:29+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "API REST" 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 ccbb9311dd..73e8b1637b 100644 --- a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 21:59+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "API را متوقف کنید" 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 44486cb84d..5b531ecbc8 100644 --- a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe kryskool , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 21:59+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "API REST" 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 7f33c7f3fb..9c5aeff52c 100644 --- a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 876a17c4b1..4044a7bc4a 100644 --- a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 af30881f1d..e2a4196a03 100644 --- a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 0ae18f01a9..844db1158b 100644 --- a/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 d27b20fa6b..d00d8d5345 100644 --- a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 22:00+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "REST API" diff --git a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po index 0b286ad7a9..f9ce936e5b 100644 --- a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 8b6b1143cf..c3356bb814 100644 --- a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 21:59+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "REST API" 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 93f1c7de48..917596186a 100644 --- a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 80cb37dcd4..0748699d58 100644 --- a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po @@ -1,23 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 512b9ff1a5..2f84f61dc0 100644 --- a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 76f6ec6f3a..8a852d0558 100644 --- a/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" diff --git a/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po index d937aec7ff..1537323524 100644 --- a/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po @@ -1,23 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:27-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:15 links.py:8 +#: apps.py:16 links.py:8 msgid "REST API" msgstr "" 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 ca91c913d7..cfdf4b62e6 100644 --- a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po index cbab51dc93..40c78bfee4 100644 --- a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 e9a40fe1d2..e69220df11 100644 --- a/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po index 2bdab640b9..ed1eee83eb 100644 --- a/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 07e12ca000..da436f4cf5 100644 --- a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-15 22:49+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 2b74be7868..3db04789d1 100644 --- a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/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: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" 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 8a7af4363d..97698f2716 100644 --- a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lory977 , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 205821bb05..0e9498791d 100644 --- a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 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 6be32b76ce..59b8269675 100644 --- a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe kryskool , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 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 983a8b3038..462e2674d3 100644 --- a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 9190c5b810..4d76d32bb1 100644 --- a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 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 701dc9781f..8fae00803b 100644 --- a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 78c25344fe..5ebe058ebd 100644 --- a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 d487ca56c1..ee8d5d4eec 100644 --- a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -11,15 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po index 77478f1358..f138dba81f 100644 --- a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 931d91b337..09fddf1ddf 100644 --- a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 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 ee69afd9a4..ad98d99337 100644 --- a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" 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 4c03d724f3..217c775bbb 100644 --- a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po index 985bbe33c5..3a00980636 100644 --- a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" 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 58e3c1894a..97642c8a63 100644 --- a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po index 36d488c8e4..95308ba791 100644 --- a/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po index 05328062fe..6a4cfddb13 100644 --- a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,45 +9,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -59,67 +60,63 @@ msgstr "" msgid "Expand compressed files" msgstr "فك الملفات المضغوطة" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "تحميل الملفات في ملف مضغوط كوثائق منفردة" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "ملف الاعداد" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "ملف" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "مصادر الوثائق" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -135,15 +132,15 @@ msgstr "لا" msgid "Ask user" msgstr "اسئل المستخدم" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -151,195 +148,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "مسار نظام الملفات على الخادم" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "قيمة العرض لتمريرها إلى نظام المعالجة" -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "قيمة الارتفاع لتمريرها إلى نظام المعالجة" -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "هل يتم فك الملفات المضغوطة أم لا." -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "حذف الملف بعد رفعه بنجاح." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "غير قادر على ايجاد قائمة بملفات الاعداد: %s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -363,100 +406,112 @@ msgstr "تحرير مصادر الوثائق" msgid "View existing document sources" msgstr "عرض مصادر الوثائق الحالية" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Staging file" +msgid "Delete staging files" +msgstr "ملف الاعداد" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "تم مسح ملف الاعداد بنجاح" - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "خطأ بمسح ملف الاعداد %s" - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "انشاء مصدر جديد من النوع: %s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "تم مسح ملف الاعداد بنجاح" + +#~ msgid "Staging file delete error; %s." +#~ msgstr "خطأ بمسح ملف الاعداد %s" + #~ msgid "Transformations" #~ msgstr "transformations" @@ -493,9 +548,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -536,9 +588,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -564,9 +618,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po index 63aeb0193e..1111b6a012 100644 --- a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -9,45 +9,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -59,67 +59,63 @@ msgstr "" msgid "Expand compressed files" msgstr "" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Файл" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Източници на документи" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -135,15 +131,15 @@ msgstr "Никога" msgid "Ask user" msgstr "Питане на потребителя" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -151,195 +147,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "" -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "" -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -363,97 +405,103 @@ msgstr "Редактиране на източници на документи" msgid "View existing document sources" msgstr "Преглед на съществуващи източници на документи" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Server staging folder" +msgid "Delete staging files" +msgstr "server staging folder" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "" - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "" - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" @@ -493,9 +541,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -536,9 +581,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -552,9 +599,6 @@ msgstr "" #~ msgid "Upload sources" #~ msgstr "Upload sources" -#~ msgid "Server staging folder" -#~ msgstr "server staging folder" - #~ msgid "Server watch folder" #~ msgstr "server watch folder" @@ -564,9 +608,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" 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 83273b50cc..c9a0f19ac0 100644 --- a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,45 +9,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -59,67 +60,63 @@ msgstr "" msgid "Expand compressed files" msgstr "Otpakuj kompresovane datoteke" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "Upload kompresovane datoteke koja sadrži individualne dokumente" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Osnovna datoteka" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Datoteka" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "izvori dokumenata" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -135,15 +132,15 @@ msgstr "Nikada" msgid "Ask user" msgstr "Pitaj korisnika" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -151,195 +148,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "Serverska putanja na filesystem-u" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "Vrijednost za širinu za konvertovanje na backend-u." -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "Vrijednost za visinu za konvertovanje na backend-u." -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Otpakuj ili ne kompresovane datoteke" -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Obriši datoteku nakon što bude uspješno upload-ana." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "Onemogući dobivanje liste osnovnih datoteka: %s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -363,100 +406,112 @@ msgstr "Izmijeni izvore dokumenta" msgid "View existing document sources" msgstr "Pregledaj postojeće izvore dokumenata" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Staging file" +msgid "Delete staging files" +msgstr "Osnovna datoteka" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "Osnovna datoteka uspješno obrisana." - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Greška brisanja osnovne datoteke; %s." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Kreiraj novi tip izvora: %s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Osnovna datoteka uspješno obrisana." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Greška brisanja osnovne datoteke; %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -493,9 +548,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -536,9 +588,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -564,9 +618,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/da/LC_MESSAGES/django.po b/mayan/apps/sources/locale/da/LC_MESSAGES/django.po index d21480a357..cb39bc0a43 100644 --- a/mayan/apps/sources/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -9,45 +9,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -59,67 +59,63 @@ msgstr "" msgid "Expand compressed files" msgstr "Udpak komprimerede filer" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "Upload individuelle filer fra komprimeret arkiv" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Staging fil" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Fil" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Document kilder" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -135,15 +131,15 @@ msgstr "Aldrig" msgid "Ask user" msgstr "Spørg bruger" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -151,195 +147,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "Serverside filsystem sti." -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "Bredde, der overføres til konverter backend." -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "Højde, der overføres til konverter backend." -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Hvorvidt et pakket arkiv skal udpakkes eller ikke" -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Slet filen, efter upload." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "Kan ikke danne en liste med staging filer: %s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -363,100 +405,112 @@ msgstr "Rediger dokument kilder" msgid "View existing document sources" msgstr "Se eksisterende dokument kilder" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Staging file" +msgid "Delete staging files" +msgstr "Staging fil" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "Midlertidig fil slettet" - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Fejl ved sletning af midlertidig fil; %s" - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Dan en ny kilde af typen: %s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Midlertidig fil slettet" + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Fejl ved sletning af midlertidig fil; %s" + #~ msgid "Transformations" #~ msgstr "transformations" @@ -493,9 +547,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -536,9 +587,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -564,9 +617,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" 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 d81bfb7ef6..16245ff8e6 100644 --- a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -14,45 +14,48 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 18:10+0000\n" "Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "Quellen" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "Quelle definieren" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist erforderlich." +msgstr "" +"Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung " +"in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist " +"erforderlich." -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "Erstellt" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "Bild" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "Zeit" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "Nachricht" @@ -64,67 +67,67 @@ msgstr "Kommentar" msgid "Expand compressed files" msgstr "Komprimierte Dateien entpacken" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "Ein komprimiertes Archiv hochladen, das einzelne Dokumente enthält" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Arbeitsdatei" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Datei" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "Standard" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "Neues Dokument" -#: links.py:25 -msgid "Clone" -msgstr "Duplizieren" - -#: links.py:34 -msgid "Add new imap email" +#: links.py:35 +#, fuzzy +#| msgid "Add new imap email" +msgid "Add new IMAP email" msgstr "Neue IMAP Quelle hinzufügen" -#: links.py:39 -msgid "Add new pop3 email" +#: links.py:40 +#, fuzzy +#| msgid "Add new pop3 email" +msgid "Add new POP3 email" msgstr "Neue POP3 Quelle hinzufügen" -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "Neuen Staging-Ordner hinzufügen" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "Neuen Beobachtungs-Ordner hinzufügen" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "Neue Quelle für Webformular hinzufügen" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "Löschen" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "Bearbeiten" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Dokumentenquelle" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "Neue Version hochladen" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "Protokolle" @@ -140,15 +143,15 @@ msgstr "Niemals" msgid "Ask user" msgstr "Benutzer fragen" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "Webformular" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "Staging-Ordner" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "Beobachtungs-Ordner" @@ -156,195 +159,248 @@ msgstr "Beobachtungs-Ordner" msgid "POP3 email" msgstr "POP3" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "IMAP" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "Bezeichner" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "Aktiviert" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "Quelle" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "Interaktive Quelle" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "Interaktive Quellen" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "Pfad auf dem Server" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "Ordnerpfad" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "Breite, die an den Konverter übergeben wird" -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "Vorschaubreite" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "Höhe, die an den Konverter übergeben wird" -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "Vorschauhöhe" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Sollen komprimierte Archive entpackt werden?" -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "Entpacken" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Datei nach erfolgreichem Hochladen löschen." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "Nach Hochladen löschen" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "Die Liste der Arbeitsdateien kann nicht ermittelt werden: %s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "Fehler beim Löschen von Staging-Datei: %s" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "Staging-Ordner" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "Webformular" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "Außer Kontrolle" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "Intervall in Sekunden zwischen den Überprüfungen auf neue Dokumente" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "Intervall" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "Ordnen Sie einen Dokumententyp für Dokumente aus dieser Quelle zu" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "Dokumententyp" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "Ob komprimierte Archive entpackt werden sollen" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "Intarvall Quelle" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "Intarvall Quellen" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "Host" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "SSL" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 für IMAP über SSL" +msgstr "" +"Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 " +"für IMAP über SSL" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "Port" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "Benutzer" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "Passwort" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste Anhang sein)." +msgstr "" +"Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für " +"die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste " +"Anhang sein)." -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "Name Metadatenattachment" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "Anhang-%i" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "E-Mail Quelle" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "E-Mail Quellen" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "Timeout" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "POP email" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +#, fuzzy +#| msgid "Mail from which to check for messages with attached documents." +msgid "IMAP Mailbox from which to check for messages." msgstr "Mailbox die auf Nachrichten mit Anhängen überprüft werden soll" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "Mailbox" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "Beobachtungs-Ordner" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "Protokolleintrag" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "Logeinträge" @@ -368,100 +424,126 @@ msgstr "Dokumentenquellen bearbeiten" msgid "View existing document sources" msgstr "Existierende Dokumentenquellen anzeigen" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Error deleting staging file; %s" +msgid "Delete staging files" +msgstr "Fehler beim Löschen von Staging-Datei: %s" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Fehler bei der Verarbeitung der Quelle %s" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "Logeinträge für Quelle %s" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen oder aktivieren Sie eine bevor Sie fortsetzen." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen " +"oder aktivieren Sie eine bevor Sie fortsetzen." -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "Dokumenteneigenschaften" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "Dateien im Staging Pfad" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." -msgstr "Neues Dokument in die Upload-Warteschlange eingereiht und demnächst verfügbar" +msgstr "" +"Neues Dokument in die Upload-Warteschlange eingereiht und demnächst verfügbar" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "Ein Dokument aus Quelle %s hochladen" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." -msgstr "Neue Dokumentenvrsion in die Upload-Warteschlange eingereiht und demnächst verfügbar" +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." +msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" +"Neue Dokumentenvrsion in die Upload-Warteschlange eingereiht und demnächst " +"verfügbar" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "Eine neue Version von Quelle %s hochladen" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "Arbeitsdatei erfolgreich gelöscht." - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Arbeitsdatei konnte nicht gelöscht werden: %s." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Quelle des Typs %s erstellen" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Quelle %s wirklich löschen?" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "Quelle %s bearbeiten" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "Typ" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "Seitenbild Stagingdatei" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +#, fuzzy +#| msgid "Step 1 of 2: Select document type" +msgid "Step 1 of 3: Select document type" msgstr "Schritt 1 von 2: Auswahl Dokumententyp" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +#, fuzzy +#| msgid "Step 2 of 2: Enter document metadata" +msgid "Step 2 of 3: Enter document metadata" msgstr "Schritt 2 von 2: Eingabe von Metadaten" -#: wizards.py:75 +#: wizards.py:40 +#, fuzzy +#| msgid "Step 1 of 2: Select document type" +msgid "Step 3 of 3: Select tags" +msgstr "Schritt 1 von 2: Auswahl Dokumententyp" + +#: wizards.py:66 msgid "Next step" msgstr "Nächster Schritt" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "Uploadassistent" +#~ msgid "Clone" +#~ msgstr "Duplizieren" + +#~ msgid "Staging file delete successfully." +#~ msgstr "Arbeitsdatei erfolgreich gelöscht." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Arbeitsdatei konnte nicht gelöscht werden: %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -498,9 +580,6 @@ msgstr "Uploadassistent" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -541,9 +620,11 @@ msgstr "Uploadassistent" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -569,9 +650,6 @@ msgstr "Uploadassistent" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po index 41eb39e727..5650b9666d 100644 --- a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2013-11-20 13:14+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,38 +18,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 #, fuzzy msgid "Sources" msgstr "sources" -#: apps.py:50 +#: apps.py:53 #, fuzzy #| msgid "Create new document sources" msgid "Create a document source" msgstr "Create new document sources" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 #, fuzzy msgid "Thumbnail" msgstr "thumbnail" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -61,73 +61,69 @@ msgstr "" msgid "Expand compressed files" msgstr "Expand compressed files" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "Upload a compressed file's contained files as individual documents" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Staging file" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "File" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 #, fuzzy msgid "New document" msgstr "upload new version" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 #, fuzzy msgid "Add new staging folder" msgstr "server staging folders" -#: links.py:49 +#: links.py:50 #, fuzzy msgid "Add new watch folder" msgstr "server watch folders" -#: links.py:54 +#: links.py:55 #, fuzzy msgid "Add new webform source" msgstr "add new source" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 #, fuzzy msgid "Delete" msgstr "delete" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Document sources" -#: links.py:78 +#: links.py:80 #, fuzzy msgid "Upload new version" msgstr "upload new version" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -143,17 +139,17 @@ msgstr "Never" msgid "Ask user" msgstr "Ask user" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 #, fuzzy msgid "Web form" msgstr "web form" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 #, fuzzy msgid "Staging folder" msgstr "staging folder" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 #, fuzzy msgid "Watch folder" msgstr "watch folder" @@ -162,215 +158,260 @@ msgstr "watch folder" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 #, fuzzy msgid "Enabled" msgstr "enabled" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 #, fuzzy msgid "Source" msgstr "source" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "Server side filesystem path." -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 #, fuzzy msgid "Folder path" msgstr "folder path" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "Width value to be passed to the converter backend." -#: models.py:154 +#: models.py:166 #, fuzzy msgid "Preview width" msgstr "preview width" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "Height value to be passed to the converter backend." -#: models.py:159 +#: models.py:171 #, fuzzy msgid "Preview height" msgstr "preview height" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Whether to expand or not compressed archives." -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 #, fuzzy msgid "Uncompress" msgstr "uncompress" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Delete the file after is has been successfully uploaded." -#: models.py:171 +#: models.py:183 #, fuzzy msgid "Delete after upload" msgstr "delete after upload" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "Unable get list of staging files: %s" -#: models.py:216 +#: models.py:228 #, fuzzy, python-format msgid "Error deleting staging file; %s" msgstr "Unable to delete staging file: %s" -#: models.py:221 +#: models.py:233 #, fuzzy msgid "Staging folders" msgstr "staging folders" -#: models.py:241 +#: models.py:253 #, fuzzy msgid "Web forms" msgstr "web forms" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 #, fuzzy msgid "Out of process" msgstr "out of process" -#: models.py:255 +#: models.py:267 #, fuzzy msgid "Interval in seconds between checks for new documents." msgstr "" "Inverval in seconds where the watch folder path is checked for new documents." -#: models.py:256 +#: models.py:268 #, fuzzy msgid "Interval" msgstr "interval" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 #, fuzzy msgid "Document type" msgstr "Current document type" -#: models.py:267 +#: models.py:279 #, fuzzy msgid "Whether to expand or not, compressed archives." msgstr "Whether to expand or not compressed archives." -#: models.py:317 +#: models.py:329 #, fuzzy msgid "Interval source" msgstr "interval" -#: models.py:318 +#: models.py:330 #, fuzzy msgid "Interval sources" msgstr "interval" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 #, fuzzy msgid "Email source" msgstr "edit source: %s" -#: models.py:384 +#: models.py:481 #, fuzzy msgid "Email sources" msgstr "edit source: %s" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 #, fuzzy msgid "Watch folders" msgstr "watch folders" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -394,18 +435,27 @@ msgstr "Edit document sources" msgid "View existing document sources" msgstr "View existing document sources" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +msgid "Delete staging files" +msgstr "Unable to delete staging file: %s" + +#: tasks.py:31 #, fuzzy, python-format #| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Error creating source; %s" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, fuzzy, python-format msgid "Log entries for source: %s" msgstr "upload a new version from source: %s" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 #, fuzzy msgid "" "No interactive document sources have been defined or none have been enabled, " @@ -413,86 +463,92 @@ msgid "" msgstr "" "No interactive document sources have been defined or none have been enabled." -#: views.py:171 views.py:189 +#: views.py:155 views.py:173 #, fuzzy #| msgid "Document sources" msgid "Document properties" msgstr "Document sources" -#: views.py:179 +#: views.py:163 #, fuzzy msgid "Files in staging path" msgstr "files in staging path" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, fuzzy, python-format msgid "Upload a local document from source: %s" msgstr "upload a local document from source: %s" -#: views.py:362 +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." +msgstr "" + +#: views.py:381 #, fuzzy msgid "New document version queued for uploaded and will be available shortly." msgstr "New document version uploaded successfully." -#: views.py:400 +#: views.py:419 #, fuzzy, python-format msgid "Upload a new version from source: %s" msgstr "upload a new version from source: %s" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "Staging file delete successfully." - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Staging file delete error; %s." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Create new source of type: %s" -#: views.py:482 +#: views.py:480 #, fuzzy, python-format #| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Delete document sources" -#: views.py:501 +#: views.py:499 #, fuzzy, python-format msgid "Edit source: %s" msgstr "edit source: %s" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 #, fuzzy msgid "Staging file page image" msgstr "Staging file" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Staging file delete successfully." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Staging file delete error; %s." + #, fuzzy #~ msgid "Transformations" #~ msgstr "transformations" @@ -537,9 +593,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #, fuzzy #~ msgid "No" #~ msgstr "None" @@ -614,10 +667,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#, fuzzy -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #, fuzzy #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po index b4b95648d1..a04d5782f5 100644 --- a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,45 +12,48 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 20:44+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "Fuentes" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "Crear una nueva fuente de documentos" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Las fuentes de documentos son la manera en la que se almacenan nuevos documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario web para poder cargar documentos desde un navegador." +msgstr "" +"Las fuentes de documentos son la manera en la que se almacenan nuevos " +"documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario " +"web para poder cargar documentos desde un navegador." -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "Foto miniatura" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "Fecha y hora" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "Mensaje" @@ -62,67 +65,68 @@ msgstr "Comentario" msgid "Expand compressed files" msgstr "Expandir archivos comprimidos" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Subir los archivos de un archivo comprimido como documentos individuales" +msgstr "" +"Subir los archivos de un archivo comprimido como documentos individuales" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Archivo provisional" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Archivo" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "Por defecto" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "Nuevo documento" -#: links.py:25 -msgid "Clone" -msgstr "Clon" - -#: links.py:34 -msgid "Add new imap email" +#: links.py:35 +#, fuzzy +#| msgid "Add new imap email" +msgid "Add new IMAP email" msgstr "Añadir nuevo correo electrónico IMAP" -#: links.py:39 -msgid "Add new pop3 email" +#: links.py:40 +#, fuzzy +#| msgid "Add new pop3 email" +msgid "Add new POP3 email" msgstr "Añadir nuevo correo electrónico POP3" -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "Añadir nueva carpeta de ensayo" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "Añadir nueva carpeta observada" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "Añadir nueva fuente en formato web" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "Borrar" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "Editar" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Fuentes de documentos" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "Subir versión nueva" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "Bitácoras" @@ -138,15 +142,15 @@ msgstr "Nunca" msgid "Ask user" msgstr "Preguntar al usuario" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "Formulario web" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "Archivos provisionales" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "Carpeta observada" @@ -154,195 +158,247 @@ msgstr "Carpeta observada" msgid "POP3 email" msgstr "Correo electrónico POP3" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "Correo electrónico IMAP" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "Etiqueta" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "Habilitado" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "Fuente" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "Fuente interactiva" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "Fuentes interactivas" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "Ruta a los archivos en el servidor." -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "Ruta de la carpeta" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "Valor de la anchura que se pasa al backend convertidor." -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "Ancho de muestra" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "Valor de la altura que se pasa al backend convertidor." -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "Alto de muestra" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Expandir o no archivos comprimidos." -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "Descomprimir" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Eliminar el archivo después de que se haya cargado correctamente." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "Borrar después de subir" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "No es posible obtener la lista de los archivos provisionales: %s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "Error al borrar archivo de ensayo; %s" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "Archivos provisionales" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "Formularios web" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "Fuera de proceso" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "Intérvalo en segundos para detectar documentos nuevos" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "Intérvalo" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "Asignar un tipo de documento a los documentos subidos desde esta fuente" +msgstr "" +"Asignar un tipo de documento a los documentos subidos desde esta fuente" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "Tipo de documento" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "Expandir o no archivos comprimidos." -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "Intervalo de fuente." -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "Intervalo de fuentes" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "Host" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "SSL" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." +msgstr "" +"Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para " +"IMAP, 993 para IMAP sobre SSL." -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "Puerto" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "Usuario" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "Contraseña" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "Anejo-%i" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "Fuente de correo electrónico" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "Fuentes de correo electrónico" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "Tiempo de espera" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "Correo electrónico POP" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." -msgstr "Correo del cual se va a comprobar si hay mensajes con documentos adjuntos." +#: models.py:534 +#, fuzzy +#| msgid "Mail from which to check for messages with attached documents." +msgid "IMAP Mailbox from which to check for messages." +msgstr "" +"Correo del cual se va a comprobar si hay mensajes con documentos adjuntos." -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "Buzón" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "Carpetas observadas" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "Entrada de bitácora" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "Entradas de bitácora" @@ -366,100 +422,125 @@ msgstr "Editar fuentes de documentos" msgid "View existing document sources" msgstr "Ver fuentes de documento existentes" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Error deleting staging file; %s" +msgid "Delete staging files" +msgstr "Error al borrar archivo de ensayo; %s" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Error procesando fuente: %s" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "Entradas de bitácora para fuente: %s" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "No se han definido fuentes de documentos interactivos o no hay ninguna habilitada, cree una antes de continuar." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"No se han definido fuentes de documentos interactivos o no hay ninguna " +"habilitada, cree una antes de continuar." -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "Propiedades de documento" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "Archivos en ruta de ensayo" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "Nuevo documento en cola para ser cargado, estará disponible en breve." -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "Subir documento local desde la fuente: %s" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." -msgstr "Nueva versión del documento en cola para ser cargado, estará disponible en breve." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." +msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" +"Nueva versión del documento en cola para ser cargado, estará disponible en " +"breve." + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "Subir una nueva versión de la fuente: %s" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "Archivo provisional borrado con éxito." - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Error al borrar archivo provisional; %s." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Crear nuevo tipo de fuente: %s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "¿Eliminar la fuente: %s?" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "Editar fuente: %s" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "Tipo" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "Imagen de página de archivo provisional" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +#, fuzzy +#| msgid "Step 1 of 2: Select document type" +msgid "Step 1 of 3: Select document type" msgstr "Paso 1 de 2: Seleccionar tipo de documento" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +#, fuzzy +#| msgid "Step 2 of 2: Enter document metadata" +msgid "Step 2 of 3: Enter document metadata" msgstr "Paso 2 de 2: Entrar la metadata del documento" -#: wizards.py:75 +#: wizards.py:40 +#, fuzzy +#| msgid "Step 1 of 2: Select document type" +msgid "Step 3 of 3: Select tags" +msgstr "Paso 1 de 2: Seleccionar tipo de documento" + +#: wizards.py:66 msgid "Next step" msgstr "Siguiente paso" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Clone" +#~ msgstr "Clon" + +#~ msgid "Staging file delete successfully." +#~ msgstr "Archivo provisional borrado con éxito." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Error al borrar archivo provisional; %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -496,9 +577,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -539,9 +617,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -567,9 +647,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po index 0aeabdf579..61711d452e 100644 --- a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -9,45 +9,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "سورس" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "اندازه کوچک" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -59,67 +59,67 @@ msgstr "توضیحات" msgid "Expand compressed files" msgstr "بازگشایی فایلهای فشرده" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "آپلود فایل فشرده شامل فایل اصلی سند." -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "پرونده مرحله ای" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "پرونده" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" -msgstr "کپی کامل Clone" +#: links.py:35 +#, fuzzy +#| msgid "IMAP email" +msgid "Add new IMAP email" +msgstr "ایمیل IMAP" -#: links.py:34 -msgid "Add new imap email" -msgstr "" +#: links.py:40 +#, fuzzy +#| msgid "POP3 email" +msgid "Add new POP3 email" +msgstr "ایمیل POP3" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "ایجتد پرونده مرحله ای" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "ایجاد پرونده تحت نظر" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "اضافه کردن سورس جدید یک وب فرم" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "حذف" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "ویرایش" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "سورسهای سند" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "آپلود نسخه دید" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -135,15 +135,17 @@ msgstr "هرگز" msgid "Ask user" msgstr "پرسیدن از کاربر" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" -msgstr "وب فرم ا " +msgstr "" +"وب فرم " +"ا " -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "پرونده مرحله ای" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "پرونده تحت نظر" @@ -151,195 +153,245 @@ msgstr "پرونده تحت نظر" msgid "POP3 email" msgstr "ایمیل POP3" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "ایمیل IMAP" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "فعال شده" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "سورس" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "سورس محاوره ای" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "سورس های محاوره ای" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "محل قرارگیری برروی سیستم فایل سمت سرور" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "محل پرونده" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "مقداری که به مبدل جهت عرض ارسال خواهد شد." -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "عرض پیش بینی" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "مقداری که به مبدل جهت ارتفاع ارسال خواهد شد." -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "ارتفاع پیش بینی" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "گسترش و یا آرشیوهای غیر فشرده" -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "فشرده نشده" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "حدف فایل پس از آپلود موفق آن." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "حذف پس ار آپ لود" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "قادر به گرفتن لیست فایلهای مرحله ای نیست. %s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "خطای حذف فایل مرحله ای : %s" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "پرونده های مرحله ای" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "فرمهای وب" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "خارج از پردازش" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "مدت زمان بین بررسی جهت سند جدید." -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "فاصله" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "این نوع را به اسناد آپلود شده از این آدرس تخصیص دهید." -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "نوع سند" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "غییر فشرده سازی آرشیوهای فشرده شده: بلی خیر" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "فاصله سورس" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "فاصله سورسها" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "هاست" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "SSL" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 for IMAP over SSL." +msgstr "" +"Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " +"for IMAP over SSL." -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "Port" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "نام کاربری" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "کلمه عبور" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "الضاقیات-%i" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "ایمیل کردن سورس" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "ایمیل کردن سورسها" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "اتمام وقت" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "POP ایمیل" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +#, fuzzy +#| msgid "Mail from which to check for messages with attached documents." +msgid "IMAP Mailbox from which to check for messages." msgstr "پیامی که میبایست جهت سند پیوستی بررسی گردد." -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "صندوق پستی" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "پرونده تحت نظر" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -363,100 +415,123 @@ msgstr "ویرایش سورس سند" msgid "View existing document sources" msgstr "دیدن سورس اسناد موجود" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Error deleting staging file; %s" +msgid "Delete staging files" +msgstr "خطای حذف فایل مرحله ای : %s" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع بسازید." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع " +"بسازید." -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "فایلهای درون راه مرحله ای" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "سند جدیدی که در صف آپلود است بزودی قابل دسترس خواهد بود." -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "آپلود کردن فایل محلی از اصل:%s" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." +msgstr "" + +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." msgstr "نسخه سند جدید که جهت آپلود وارد صف شد بزودی قابل دسترس خواهد بود." -#: views.py:400 +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "آپلود نسخه ای جدید از اصل : %s" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "حذف موفق فایل مرحله ای." - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "خطای %s در حذف فایل مرحله ای." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "ایجاد سورس جدید از نوع %s." -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "ویرایش اصل : %s" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "نوع" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "تصویر صفحه فایل مرحله ای" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +#, fuzzy +#| msgid "Step 1 of 2: Select document type" +msgid "Step 1 of 3: Select document type" msgstr "پله 1 از 2: انتخاب سند" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +#, fuzzy +#| msgid "Step 2 of 2: Enter document metadata" +msgid "Step 2 of 3: Enter document metadata" msgstr "پله 2 از 2: وارد کردن متادیتای سند." -#: wizards.py:75 +#: wizards.py:40 +#, fuzzy +#| msgid "Step 1 of 2: Select document type" +msgid "Step 3 of 3: Select tags" +msgstr "پله 1 از 2: انتخاب سند" + +#: wizards.py:66 msgid "Next step" msgstr "مرحله بعدی" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Clone" +#~ msgstr "کپی کامل Clone" + +#~ msgid "Staging file delete successfully." +#~ msgstr "حذف موفق فایل مرحله ای." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "خطای %s در حذف فایل مرحله ای." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -493,9 +568,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -536,9 +608,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -564,9 +638,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po index b4448b36d2..5641acd92e 100644 --- a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -9,45 +9,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "Sources" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "Vignette" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -59,67 +59,69 @@ msgstr "Commentaire" msgid "Expand compressed files" msgstr "Décompresser les fichiers" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Importer le contenu d'un ensemble de fichiers compressés comme fichiers individuels" +msgstr "" +"Importer le contenu d'un ensemble de fichiers compressés comme fichiers " +"individuels" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "fichier en cours de modification" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Fichier" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" -msgstr "Dupliquer" +#: links.py:35 +#, fuzzy +#| msgid "IMAP email" +msgid "Add new IMAP email" +msgstr "email IMAP" -#: links.py:34 -msgid "Add new imap email" -msgstr "" +#: links.py:40 +#, fuzzy +#| msgid "POP3 email" +msgid "Add new POP3 email" +msgstr "email POP3" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "Ajouter un nouveau répertoire d'indexation" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "Ajouter une nouvelle surveillance de dossier" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "Ajouter une nouvelle source de formulaire web" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "Supprimer" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "Modifier" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Sources du document" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "Importer une nouvelle version" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -135,15 +137,15 @@ msgstr "Jamais" msgid "Ask user" msgstr "Demander à l'utilisateur" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "Formulaire web" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "Répertoire dit d'index, modifications en cours" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "Surveiller le répertoire" @@ -151,195 +153,247 @@ msgstr "Surveiller le répertoire" msgid "POP3 email" msgstr "email POP3" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "email IMAP" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "Activé" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "Source" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "Source interactive" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "Sources interactives " -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "chemin de répertoire système sur le serveur." -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "Chemin du dossier" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "Valeur de largeur à passer au convertisseur en arrière plan" -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "Largeur de la prévisualisation" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "Valeur de hauteur à passer au convertisseur en arrière plan." -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "Hauteur de prévisualisation" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Indique s'il faut ou non décompresser les fichiers d'archive." -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "Décompresser" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "supprimer le fichier après importation avec succès." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "Supprimer après télé-versement" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "Impossible d'obtenir la liste des fichiers en cours de modification:%s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "Impossible de supprimer le fichier en cours de modification: %s" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "Répertoires dit d'index, modifications en cours" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "Formulaire Web" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "Process externe" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "Intervalle en secondes entre la vérification de nouveaux documents." -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "Intervalle" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "Assigner un type de document aux documents importés à partir de cette source." +msgstr "" +"Assigner un type de document aux documents importés à partir de cette source." -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "Type de document" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "Choisir de décompresser ou pas les archives compressées." -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "intervalle pour la source" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "intervalle pour les sources" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "Hote" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "SSL" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 pour l'IMAP, 993 pour l'IMAP over SSL." +msgstr "" +"Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 " +"pour l'IMAP, 993 pour l'IMAP over SSL." -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "Port" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "Identifiant" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "Mot de passe" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "Pièce jointe-%i" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "source du courriel" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "Sources du courriel" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "Délai d'attente dépassé" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "Compte POP" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." -msgstr "Compte de courriel dont il faut surveiller les messages avec pièces jointes." +#: models.py:534 +#, fuzzy +#| msgid "Mail from which to check for messages with attached documents." +msgid "IMAP Mailbox from which to check for messages." +msgstr "" +"Compte de courriel dont il faut surveiller les messages avec pièces jointes." -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "Boîte aux lettres" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "surveiller les répertoires" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -363,100 +417,127 @@ msgstr "Modifier les sources du document" msgid "View existing document sources" msgstr "Afficher les sources du document en cours" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Error deleting staging file; %s" +msgid "Delete staging files" +msgstr "Impossible de supprimer le fichier en cours de modification: %s" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Aucune source de document interactifs n'a été définie ou/ni activée, créer en une avant de continuer." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Aucune source de document interactifs n'a été définie ou/ni activée, créer " +"en une avant de continuer." -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "Fichiers dans l'index, en cours de modification" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." -msgstr "Nouveau document ajouter dans la file d'attente pour transfert et disponible dans les plus bref délai." +msgstr "" +"Nouveau document ajouter dans la file d'attente pour transfert et disponible " +"dans les plus bref délai." -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "importer un document local à partir de la source: %s" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." -msgstr "Une nouvelle version du document mis en fille d'attente pour importation qui sera disponible dans les plus brefs délai." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." +msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" +"Une nouvelle version du document mis en fille d'attente pour importation qui " +"sera disponible dans les plus brefs délai." + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "Importer une nouvelle version à partir de la source: %s" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "Fichier en cours de modification supprimé avec succès" - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Erreur de suppression du fichier en cours de modificiation;%s." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Créer une nouvelle source de type:%s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "Modifier la source: %s" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "Type" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "Affichage sous forme d'image de la page de fichier" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +#, fuzzy +#| msgid "Step 1 of 2: Select document type" +msgid "Step 1 of 3: Select document type" msgstr "Étape 1 sur 2: Sélectionner le type de document" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +#, fuzzy +#| msgid "Step 2 of 2: Enter document metadata" +msgid "Step 2 of 3: Enter document metadata" msgstr "Étape 2 sur 2: Saisir les méta-données du document" -#: wizards.py:75 +#: wizards.py:40 +#, fuzzy +#| msgid "Step 1 of 2: Select document type" +msgid "Step 3 of 3: Select tags" +msgstr "Étape 1 sur 2: Sélectionner le type de document" + +#: wizards.py:66 msgid "Next step" msgstr "Prochaine étape" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Clone" +#~ msgstr "Dupliquer" + +#~ msgid "Staging file delete successfully." +#~ msgstr "Fichier en cours de modification supprimé avec succès" + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Erreur de suppression du fichier en cours de modificiation;%s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -493,9 +574,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -536,9 +614,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -564,9 +644,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po index d60a68ee1d..9b726c4c14 100644 --- a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Dezső József , 2014 @@ -9,45 +9,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -59,67 +59,63 @@ msgstr "" msgid "Expand compressed files" msgstr "Tömörített fájlok kibontása" -#: forms.py:45 +#: forms.py:46 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:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Átmeneti fájl" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Dokumentum források" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -135,15 +131,15 @@ msgstr "Sohasem" msgid "Ask user" msgstr "Kérdezd meg a felhasználót" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -151,195 +147,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "" -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "" -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -363,97 +405,103 @@ msgstr "Dokumentum források szerkesztése" msgid "View existing document sources" msgstr "Létező dokumentum források megtekintése" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Staging file" +msgid "Delete staging files" +msgstr "Átmeneti fájl" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "" - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "" - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" @@ -493,9 +541,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -536,9 +581,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -564,9 +611,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po index 4c2aa1d89b..3adbd0c36b 100644 --- a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Sehat , 2013 @@ -9,45 +9,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -59,67 +59,65 @@ msgstr "" msgid "Expand compressed files" msgstr "Kembangkan berkas-berkas terkompresi" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-dokumen individual" +msgstr "" +"Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-" +"dokumen individual" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Sumber-sumber dokumen" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -135,15 +133,15 @@ msgstr "Tidak pernah" msgid "Ask user" msgstr "Tanya pengguna" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -151,195 +149,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Apakah mengembangkan atau tidak mengkompresi arsip-arsip." -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Hapus berkas setelah berhasil di unggah." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -363,97 +407,103 @@ msgstr "Sunting sumber-sumber dokumen" msgid "View existing document sources" msgstr "Lihat sumber-sumber dokumen yang telah ada" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Server staging folder" +msgid "Delete staging files" +msgstr "server staging folder" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "" - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "" - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Membuat sumber baru dengan jenis: %s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" @@ -493,9 +543,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -536,9 +583,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -552,9 +601,6 @@ msgstr "" #~ msgid "Upload sources" #~ msgstr "Upload sources" -#~ msgid "Server staging folder" -#~ msgstr "server staging folder" - #~ msgid "Server watch folder" #~ msgstr "server watch folder" @@ -564,9 +610,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po index e40de10fed..715952ff51 100644 --- a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Giovanni Tricarico , 2014 @@ -10,45 +10,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -60,67 +60,63 @@ msgstr "" msgid "Expand compressed files" msgstr "Espandi" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "Pubblicare un file compresso contenente singoli documenti" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Mostra file" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "File" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Sorgente del documento" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -136,15 +132,15 @@ msgstr "Mai" msgid "Ask user" msgstr "Chiedi all'utente" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -152,195 +148,243 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "Path del server di filesystem" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." -msgstr "valore della larghezza da passare per le operazioni di conversione in backend" +msgstr "" +"valore della larghezza da passare per le operazioni di conversione in backend" -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." -msgstr "valore dell'altezza da passare per le operazioni di conversione in backend" +msgstr "" +"valore dell'altezza da passare per le operazioni di conversione in backend" -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Se espandere o meno degli archivi compressi." -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Cancella il file dopo essere stato caricato" -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "Impossibile ottenere lista dei file di gestione temporanea: %s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -364,100 +408,112 @@ msgstr "Modifica sorgenti dei documenti" msgid "View existing document sources" msgstr "Visualizza sorgenti documento esistente" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Staging file" +msgid "Delete staging files" +msgstr "Mostra file" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "File in allestimento cancellato con successo." - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Errore nella cancellazione del file in allestimento;%s." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Crea nuovo tipo di sorgente:%s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "File in allestimento cancellato con successo." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Errore nella cancellazione del file in allestimento;%s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -494,9 +550,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -537,9 +590,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -565,9 +620,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" 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 2bdfdf6857..90fe0cf22f 100644 --- a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2012 @@ -9,45 +9,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -59,67 +59,64 @@ msgstr "" msgid "Expand compressed files" msgstr "Uitpakken gecomprimeerde bestanden" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Upload een gecomprimeerd archief van bestanden als individuele documenten" +msgstr "" +"Upload een gecomprimeerd archief van bestanden als individuele documenten" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Tijdelijk bestand" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Bestand" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Documentbronnen" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -135,15 +132,15 @@ msgstr "Nooit" msgid "Ask user" msgstr "Vraag gebruiker" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -151,195 +148,243 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "pad naar filesysteem server" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "Breedte waarde die moet worden doorgegeven aan de converter backend." -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "Hoogte waarde die moet worden doorgegeven aan de converter backend." -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Keuze om te expanderen of uitpakken van archief. (TODO: review this)" -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Verwijder het bestand nadat de 'upload' succesvol is voltooid." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" -msgstr "Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. Foutmelding: %s" +msgstr "" +"Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. " +"Foutmelding: %s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -363,100 +408,112 @@ msgstr "Bewerk documentbronnen" msgid "View existing document sources" msgstr "Bekijk bestaande documentbronnen" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Staging file" +msgid "Delete staging files" +msgstr "Tijdelijk bestand" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "Tijdelijk bestand succesvol verwijderd." - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Fout bij het verwijderen van tijdelijk bestand. Foutmelding: %s." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Aanmaken van nieuw documentbron van type: %s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Tijdelijk bestand succesvol verwijderd." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Fout bij het verwijderen van tijdelijk bestand. Foutmelding: %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -493,9 +550,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -536,9 +590,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -564,9 +620,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po index 4c51bef8eb..13c777897f 100644 --- a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012-2013 @@ -9,45 +9,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -59,67 +60,63 @@ msgstr "" msgid "Expand compressed files" msgstr "" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Plik" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -135,15 +132,15 @@ msgstr "Nigdy" msgid "Ask user" msgstr "Pytaj użytkownika" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -151,195 +148,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "" -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "" -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -363,97 +406,103 @@ msgstr "" msgid "View existing document sources" msgstr "" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Server staging folder" +msgid "Delete staging files" +msgstr "server staging folder" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "" - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "" - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Utwórz nowe typ źródło:%s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" @@ -493,9 +542,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -536,9 +582,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -552,9 +600,6 @@ msgstr "" #~ msgid "Upload sources" #~ msgstr "Upload sources" -#~ msgid "Server staging folder" -#~ msgstr "server staging folder" - #~ msgid "Server watch folder" #~ msgstr "server watch folder" @@ -564,9 +609,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po index df5cc03c0b..0e1890d804 100644 --- a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -10,45 +10,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -60,67 +60,65 @@ msgstr "" msgid "Expand compressed files" msgstr "Expandir ficheiros compactados" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Enviar os ficheiros contidos num ficheiro comprimido como documentos individuais" +msgstr "" +"Enviar os ficheiros contidos num ficheiro comprimido como documentos " +"individuais" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Ficheiro de preparação" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Ficheiro" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Fontes de documentos" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -136,15 +134,15 @@ msgstr "Nunca" msgid "Ask user" msgstr "Perguntar ao utilizador" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -152,195 +150,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "Caminho do sistema do servidor" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "Valor da largura a ser passado para o backend conversor." -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "Valor da altura a ser passado ao conversor." -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Se os ficheiros comprimidos devem ser descomprimidos ou não." -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Excluir o ficheiro depois de ter sido enviado com sucesso." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "Incapaz de obter a lista dos ficheiros em preparação: %s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -364,100 +408,112 @@ msgstr "Editar fontes de documentos" msgid "View existing document sources" msgstr "Ver fontes de documentos existentes" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Staging file" +msgid "Delete staging files" +msgstr "Ficheiro de preparação" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "Ficheiro em preparação eliminado com sucesso." - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Erro ao eliminar ficheiro em preparação; %s." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Criar nova fonte do tipo: %s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Ficheiro em preparação eliminado com sucesso." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Erro ao eliminar ficheiro em preparação; %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -494,9 +550,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -537,9 +590,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -565,9 +620,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" 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 308b081b26..e245bf0f4b 100644 --- a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -10,45 +10,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "Fontes" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "miniatura" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -60,67 +60,68 @@ msgstr "Comentário" msgid "Expand compressed files" msgstr "Expandir arquivos compactados" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Upload de um arquivo compactado contendo arquivos como documentos individuais" +msgstr "" +"Upload de um arquivo compactado contendo arquivos como documentos individuais" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Preparação de arquivo" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Arquivo" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" -msgstr "Clone" +#: links.py:35 +#, fuzzy +#| msgid "IMAP email" +msgid "Add new IMAP email" +msgstr "E-mail IMAP" -#: links.py:34 -msgid "Add new imap email" -msgstr "" +#: links.py:40 +#, fuzzy +#| msgid "POP3 email" +msgid "Add new POP3 email" +msgstr "E-mail POP3" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "Adicionar nova pasta de teste" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "Adicionar uma nova pasta temporária" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "Adicionar nova fonte webform" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "Excluir" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "Editar" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Fontes de documentos" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "Upload de uma nova versão" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -136,15 +137,15 @@ msgstr "Nunca" msgid "Ask user" msgstr "Pergunte ao usuário" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "formulário web" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "Pasta teste" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "Pasta Temporária" @@ -152,195 +153,244 @@ msgstr "Pasta Temporária" msgid "POP3 email" msgstr "E-mail POP3" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "E-mail IMAP" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "habilitado" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "fonte" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "Fonte interativa" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "Fontes interativa" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "Caminho do sistema do servidor" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "Caminho da Pasta" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "Valor da largura a ser passado para o backend conversor." -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "Largura de visualização" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "Valor de altura para ser passado para o backend conversor." -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "Altura de pré-visualização" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Se expandir ou não arquivos compactados." -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "descompactar" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Excluir o arquivo depois de ter sido carregado com sucesso." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "excluir depois do Upload" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "Unable get list of staging files: %s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "Formulários web" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "Saída do processo" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "Intervalo em segundos entre verificações para novos documentos." -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "intervalo" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "Atribuir um tipo de documento para documentos enviados a partir desta fonte." +msgstr "" +"Atribuir um tipo de documento para documentos enviados a partir desta fonte." -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "Tipos de Documentos" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "A possibilidade de expandir ou não, arquivos comprimido." -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "Fonte de intervalo" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "Fontes de intervalo" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "Host" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "SSL" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." +msgstr "" +"Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, " +"993 para IMAP sobre SSL." -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "Porta" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "Usuário" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "Senha" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "E-mail Fonte" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "E-mail Fontes" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "Timeout" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "E-mail POP3" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "Caixa de correio" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "Pastas Temporárias" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -364,100 +414,125 @@ msgstr "Editar fontes de documentos" msgid "View existing document sources" msgstr "Ver fontes de documentos existentes" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Staging file" +msgid "Delete staging files" +msgstr "Preparação de arquivo" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. Criar uma antes de prosseguir." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. " +"Criar uma antes de prosseguir." -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "Os arquivos no caminho de preparo" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "Novo documento na fila para carregados e estará disponível em breve." -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "Carregar um documento no local de origem:%s " -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." -msgstr "Nova versão do documento na fila para carregados e estará disponível em breve." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." +msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" +"Nova versão do documento na fila para carregados e estará disponível em " +"breve." + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "Carregar uma nova versão da Origem: %s" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "Staging file delete successfully." - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Staging file delete error; %s." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Criar nova fonte do tipo: %s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "Tipo" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "Imagem da página do arquivo temporário" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +#, fuzzy +#| msgid "Step 1 of 2: Select document type" +msgid "Step 1 of 3: Select document type" msgstr "Passo 1 de 2: Selecionar o Tipo de documento" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +#, fuzzy +#| msgid "Step 2 of 2: Enter document metadata" +msgid "Step 2 of 3: Enter document metadata" msgstr "Passo 2 de 2: Digite metadados de documentos" -#: wizards.py:75 +#: wizards.py:40 +#, fuzzy +#| msgid "Step 1 of 2: Select document type" +msgid "Step 3 of 3: Select tags" +msgstr "Passo 1 de 2: Selecionar o Tipo de documento" + +#: wizards.py:66 msgid "Next step" msgstr "Próximo passo" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Clone" +#~ msgstr "Clone" + +#~ msgid "Staging file delete successfully." +#~ msgstr "Staging file delete successfully." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Staging file delete error; %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -494,9 +569,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -537,9 +609,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -565,9 +639,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" 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 4627d2d9c7..d3b0654f2d 100644 --- a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Abalaru Paul , 2013 @@ -10,45 +10,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -60,67 +61,65 @@ msgstr "" msgid "Expand compressed files" msgstr "Dezarhivare fișiere comprimate" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Încărcați fișiere de fișier comprimat care sunt incluse ca documente individuale" +msgstr "" +"Încărcați fișiere de fișier comprimat care sunt incluse ca documente " +"individuale" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Structura fisier" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Fișier" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Sursa documentului" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -136,15 +135,15 @@ msgstr "niciodată" msgid "Ask user" msgstr "Întreabă utilizatorul" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -152,195 +151,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "Cale de fișiere server." -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "Valoarea lățime trecuta convertorului." -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "Valoare de înălțime trecuta convertorului." -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Dacă se extinde sau nu se arhivează." -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Ștergeți fișierul după ce este a fost încărcat cu succes." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "Imposibil obține lista de fișiere de așteptare:% s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -364,100 +409,112 @@ msgstr "Editare de documente din surse" msgid "View existing document sources" msgstr "Vezi sursele existente de documente" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Staging file" +msgid "Delete staging files" +msgstr "Structura fisier" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "Schema fișier ștearsă cu succes." - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Schema fișier erarare la ștergere; %s." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Creați o nouă sursă de tipul:% s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Schema fișier ștearsă cu succes." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Schema fișier erarare la ștergere; %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -494,9 +551,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -537,9 +591,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -565,9 +621,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po index 88c3784399..57aa59dd78 100644 --- a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po @@ -1,52 +1,54 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -58,67 +60,63 @@ msgstr "" msgid "Expand compressed files" msgstr "Извлекать из архивов?" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "Загрузить файлы, содержащиеся в архиве в качестве отдельных документов" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "Промежуточный файл" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "Файл" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Источники документов" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -134,15 +132,15 @@ msgstr "Никогда" msgid "Ask user" msgstr "Спросить пользователя" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -150,195 +148,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "Путь на сервере" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "Ширина после обработки." -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "Высота после обработки." -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "Независимо от того распакованы или нет архивы." -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "Удалить файл после загрузки." -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "Не удалось получить список промежуточных файлов: %s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -362,100 +406,112 @@ msgstr "Редактировать источник документов" msgid "View existing document sources" msgstr "Просмотр существующих источников документов" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Staging file" +msgid "Delete staging files" +msgstr "Промежуточный файл" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "Транспортный файл удалён." - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "Ошибка удаления транспортного файла %s." - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "Создать новый источник типа: %s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Транспортный файл удалён." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Ошибка удаления транспортного файла %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -492,9 +548,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -535,9 +588,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -563,9 +618,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" 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 a08be0458e..b55301c441 100644 --- a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po @@ -1,52 +1,53 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -58,67 +59,63 @@ msgstr "" msgid "Expand compressed files" msgstr "" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -134,15 +131,15 @@ msgstr "" msgid "Ask user" msgstr "" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -150,195 +147,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "" -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "" -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -362,97 +405,103 @@ msgstr "" msgid "View existing document sources" msgstr "" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Server staging folder" +msgid "Delete staging files" +msgstr "server staging folder" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "" - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "" - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" @@ -492,9 +541,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -535,9 +581,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -551,9 +599,6 @@ msgstr "" #~ msgid "Upload sources" #~ msgstr "Upload sources" -#~ msgid "Server staging folder" -#~ msgstr "server staging folder" - #~ msgid "Server watch folder" #~ msgstr "server watch folder" @@ -563,9 +608,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" 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 3ec11e4d60..5f0a8e1fc7 100644 --- a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,45 +9,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -59,67 +59,63 @@ msgstr "" msgid "Expand compressed files" msgstr "Giải nén" -#: forms.py:45 +#: forms.py:46 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:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "File" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "Các nguồn tài liệu" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -135,15 +131,15 @@ msgstr "Không bao giờ" msgid "Ask user" msgstr "Hỏi người dùng" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -151,195 +147,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "đường dẫn hệ thống phía Server" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "" -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "" -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "" -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "" -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -363,97 +405,103 @@ msgstr "Sửa các nguồn tài liệu" msgid "View existing document sources" msgstr "Xem các nguồn tài liệu đang tồn tại" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Server staging folder" +msgid "Delete staging files" +msgstr "server staging folder" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "" - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "" - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" @@ -493,9 +541,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -536,9 +581,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -552,9 +599,6 @@ msgstr "" #~ msgid "Upload sources" #~ msgstr "Upload sources" -#~ msgid "Server staging folder" -#~ msgstr "server staging folder" - #~ msgid "Server watch folder" #~ msgstr "server watch folder" @@ -564,9 +608,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po index cff28c6013..d53f8443ec 100644 --- a/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,45 +10,45 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:42 links.py:30 models.py:133 views.py:523 +#: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" -#: apps.py:50 -#| msgid "Create new document sources" +#: apps.py:53 msgid "Create a document source" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." msgstr "" -#: apps.py:62 +#: apps.py:65 msgid "Created" msgstr "" -#: apps.py:68 +#: apps.py:71 msgid "Thumbnail" msgstr "" -#: apps.py:78 models.py:510 +#: apps.py:81 models.py:606 msgid "Date time" msgstr "" -#: apps.py:83 models.py:513 +#: apps.py:86 models.py:609 msgid "Message" msgstr "" @@ -60,67 +60,63 @@ msgstr "" msgid "Expand compressed files" msgstr "展开压缩文件" -#: forms.py:45 +#: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" msgstr "上传一个压缩文件的包含文件作为单个文档" -#: forms.py:64 +#: forms.py:67 views.py:432 msgid "Staging file" msgstr "临时文件" -#: forms.py:68 +#: forms.py:71 forms.py:76 msgid "File" msgstr "文件" -#: handlers.py:13 +#: handlers.py:14 msgid "Default" msgstr "" -#: links.py:22 +#: links.py:26 msgid "New document" msgstr "" -#: links.py:25 -msgid "Clone" +#: links.py:35 +msgid "Add new IMAP email" msgstr "" -#: links.py:34 -msgid "Add new imap email" +#: links.py:40 +msgid "Add new POP3 email" msgstr "" -#: links.py:39 -msgid "Add new pop3 email" -msgstr "" - -#: links.py:44 +#: links.py:45 msgid "Add new staging folder" msgstr "" -#: links.py:49 +#: links.py:50 msgid "Add new watch folder" msgstr "" -#: links.py:54 +#: links.py:55 msgid "Add new webform source" msgstr "" -#: links.py:59 links.py:73 +#: links.py:60 links.py:74 msgid "Delete" msgstr "" -#: links.py:63 +#: links.py:64 msgid "Edit" msgstr "" -#: links.py:67 +#: links.py:68 msgid "Document sources" msgstr "文档数据源" -#: links.py:78 +#: links.py:80 msgid "Upload new version" msgstr "" -#: links.py:82 +#: links.py:84 msgid "Logs" msgstr "" @@ -136,15 +132,15 @@ msgstr "从不" msgid "Ask user" msgstr "询问用户" -#: literals.py:27 models.py:240 +#: literals.py:27 models.py:252 msgid "Web form" msgstr "" -#: literals.py:28 models.py:220 +#: literals.py:28 models.py:232 msgid "Staging folder" msgstr "" -#: literals.py:29 models.py:501 +#: literals.py:29 models.py:597 msgid "Watch folder" msgstr "" @@ -152,195 +148,241 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:31 models.py:474 models.py:475 +#: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" msgstr "" -#: models.py:43 +#: models.py:48 msgid "Label" msgstr "" -#: models.py:44 views.py:516 +#: models.py:49 views.py:514 msgid "Enabled" msgstr "" -#: models.py:132 models.py:507 +#: models.py:144 models.py:603 msgid "Source" msgstr "" -#: models.py:140 +#: models.py:152 msgid "Interactive source" msgstr "" -#: models.py:141 +#: models.py:153 msgid "Interactive sources" msgstr "" -#: models.py:149 models.py:482 +#: models.py:161 models.py:578 msgid "Server side filesystem path." msgstr "服务器端文件路径" -#: models.py:150 models.py:483 +#: models.py:162 models.py:579 msgid "Folder path" msgstr "" -#: models.py:153 +#: models.py:165 msgid "Width value to be passed to the converter backend." msgstr "宽度的值用于后台转换。" -#: models.py:154 +#: models.py:166 msgid "Preview width" msgstr "" -#: models.py:158 +#: models.py:170 msgid "Height value to be passed to the converter backend." msgstr "高度的值用于后台转换" -#: models.py:159 +#: models.py:171 msgid "Preview height" msgstr "" -#: models.py:163 models.py:231 +#: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." msgstr "是否要展开或者解压缩归档文件" -#: models.py:164 models.py:232 models.py:268 +#: models.py:176 models.py:244 models.py:280 msgid "Uncompress" msgstr "" -#: models.py:169 +#: models.py:181 msgid "Delete the file after is has been successfully uploaded." msgstr "在上传成功后,删除此文件。" -#: models.py:171 +#: models.py:183 msgid "Delete after upload" msgstr "" -#: models.py:195 +#: models.py:207 #, python-format msgid "Unable get list of staging files: %s" msgstr "未能获取暂存文件列表:%s" -#: models.py:216 +#: models.py:228 #, python-format msgid "Error deleting staging file; %s" msgstr "" -#: models.py:221 +#: models.py:233 msgid "Staging folders" msgstr "" -#: models.py:241 +#: models.py:253 msgid "Web forms" msgstr "" -#: models.py:248 models.py:249 +#: models.py:260 models.py:261 msgid "Out of process" msgstr "" -#: models.py:255 +#: models.py:267 msgid "Interval in seconds between checks for new documents." msgstr "" -#: models.py:256 +#: models.py:268 msgid "Interval" msgstr "" -#: models.py:261 +#: models.py:273 msgid "Assign a document type to documents uploaded from this source." msgstr "" -#: models.py:263 +#: models.py:275 msgid "Document type" msgstr "" -#: models.py:267 +#: models.py:279 msgid "Whether to expand or not, compressed archives." msgstr "" -#: models.py:317 +#: models.py:329 msgid "Interval source" msgstr "" -#: models.py:318 +#: models.py:330 msgid "Interval sources" msgstr "" -#: models.py:322 +#: models.py:334 msgid "Host" msgstr "" -#: models.py:323 +#: models.py:335 msgid "SSL" msgstr "" -#: models.py:325 +#: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models.py:326 +#: models.py:338 msgid "Port" msgstr "" -#: models.py:328 +#: models.py:340 msgid "Username" msgstr "" -#: models.py:329 +#: models.py:341 msgid "Password" msgstr "" -#: models.py:333 +#: models.py:345 msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." msgstr "" -#: models.py:336 +#: models.py:349 msgid "Metadata attachment name" msgstr "" +#: models.py:353 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's subject." +msgstr "" + +#: models.py:356 +#, fuzzy +#| msgid "Current metadata" +msgid "Subject metadata type" +msgstr "Current metadata" + #: models.py:360 +msgid "" +"Select a metadata type valid for the document type selected in which to " +"store the email's \"from\" value." +msgstr "" + +#: models.py:363 +#, fuzzy +#| msgid "Clone metadata" +msgid "From metadata type" +msgstr "Current metadata" + +#: models.py:367 +msgid "Store the body of the email as a text document." +msgstr "" + +#: models.py:368 +msgid "Store email body" +msgstr "" + +#: models.py:377 +#, python-format +msgid "" +"Subject metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:391 +#, python-format +msgid "" +"\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " +"type: %(document_type)s" +msgstr "" + +#: models.py:441 #, python-format msgid "attachment-%i" msgstr "" -#: models.py:383 +#: models.py:480 msgid "Email source" msgstr "" -#: models.py:384 +#: models.py:481 msgid "Email sources" msgstr "" -#: models.py:391 +#: models.py:488 msgid "Timeout" msgstr "" -#: models.py:428 models.py:429 +#: models.py:525 models.py:526 msgid "POP email" msgstr "" -#: models.py:438 -msgid "Mail from which to check for messages with attached documents." +#: models.py:534 +msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models.py:439 +#: models.py:535 msgid "Mailbox" msgstr "" -#: models.py:502 +#: models.py:598 msgid "Watch folders" msgstr "" -#: models.py:519 +#: models.py:615 msgid "Log entry" msgstr "" -#: models.py:520 +#: models.py:616 msgid "Log entries" msgstr "" @@ -364,100 +406,112 @@ msgstr "编辑文档数据源" msgid "View existing document sources" msgstr "查看存在数据源" -#: tasks.py:29 +#: permissions.py:21 +#, fuzzy +#| msgid "Staging file" +msgid "Delete staging files" +msgstr "临时文件" + +#: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" -#: views.py:65 +#: templates/sources/upload_multiform_subtemplate.html:35 +msgid "Clear" +msgstr "" + +#: views.py:64 #, python-format msgid "Log entries for source: %s" msgstr "" -#: views.py:145 wizards.py:37 +#: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" -#: views.py:171 views.py:189 -#| msgid "Document sources" +#: views.py:155 views.py:173 msgid "Document properties" msgstr "" -#: views.py:179 +#: views.py:163 msgid "Files in staging path" msgstr "" -#: views.py:272 +#: views.py:262 msgid "New document queued for uploaded and will be available shortly." msgstr "" -#: views.py:306 +#: views.py:302 #, python-format msgid "Upload a local document from source: %s" msgstr "" -#: views.py:362 -msgid "" -"New document version queued for uploaded and will be available shortly." +#: views.py:327 +#, python-format +msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" -#: views.py:400 +#: views.py:381 +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" + +#: views.py:419 #, python-format msgid "Upload a new version from source: %s" msgstr "" -#: views.py:427 -msgid "Staging file delete successfully." -msgstr "暂存文件删除成功。" - -#: views.py:430 -#, python-format -msgid "Staging file delete error; %s." -msgstr "暂存文件删除出错:%s" - -#: views.py:462 +#: views.py:460 #, python-format msgid "Create new source of type: %s" msgstr "新建数据源类型:%s" -#: views.py:482 +#: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" -#: views.py:501 +#: views.py:499 #, python-format msgid "Edit source: %s" msgstr "" -#: views.py:512 +#: views.py:510 msgid "Type" msgstr "" -#: widgets.py:25 +#: widgets.py:26 msgid "Staging file page image" msgstr "" -#: wizards.py:52 -msgid "Step 1 of 2: Select document type" +#: wizards.py:38 +msgid "Step 1 of 3: Select document type" msgstr "" -#: wizards.py:53 -msgid "Step 2 of 2: Enter document metadata" +#: wizards.py:39 +msgid "Step 2 of 3: Enter document metadata" msgstr "" -#: wizards.py:75 +#: wizards.py:40 +msgid "Step 3 of 3: Select tags" +msgstr "" + +#: wizards.py:66 msgid "Next step" msgstr "下一步" -#: wizards.py:77 +#: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "暂存文件删除成功。" + +#~ msgid "Staging file delete error; %s." +#~ msgstr "暂存文件删除出错:%s" + #~ msgid "Transformations" #~ msgstr "transformations" @@ -494,9 +548,6 @@ msgstr "" #~ msgid "None" #~ msgstr "None" -#~ msgid "Current metadata" -#~ msgstr "Current metadata" - #~ msgid "No" #~ msgstr "None" @@ -537,9 +588,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -565,9 +618,6 @@ msgstr "" #~ msgid "Unhandled exception: %s" #~ msgstr "Unhandled exception: %s" -#~ msgid "Clone metadata" -#~ msgstr "Current metadata" - #~ msgid "Whitelist" #~ msgstr "whitelist" diff --git a/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po index 443b62f82a..ef9c37af5f 100644 --- a/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po index 5ed6358625..f7f71e77a1 100644 --- a/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Iliya Georgiev , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po index 23de1c8083..fb9b5835f2 100644 --- a/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # www.ping.ba , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po index 6e7ecef433..184d95e579 100644 --- a/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mads L. Nielsen , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po index 7b0697f448..d7ceb71e7a 100644 --- a/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Mathias Behrle , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 23:18+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po index 5afdf5f50b..221189d6cb 100644 --- a/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/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: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-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/statistics/locale/es/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po index 0839f4ac1e..f4f47a7ecb 100644 --- a/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 20:46+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po index f8ffdbf3d7..7387fc6644 100644 --- a/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014 # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po index d258e7754a..59627d941d 100644 --- a/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pierre Lhoste , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po index b9db2e61af..497d7bdc3e 100644 --- a/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Dezső József , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po index e893e6fb55..2939aba39e 100644 --- a/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Sehat , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po index 9f507608aa..ad20d96c88 100644 --- a/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po index f1aefd4c9c..9051812871 100644 --- a/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lucas Weel , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po index 3c16f9c0d5..ed09131b26 100644 --- a/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po index 69cd84aa4c..44e509f2f1 100644 --- a/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po index b031fed8ec..2d37ec6fd6 100644 --- a/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po index df9bdb5926..b70f1e11ae 100644 --- a/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po index 00918b3b3b..ffdfa5a1eb 100644 --- a/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Sergey Glita , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/sl_SI/LC_MESSAGES/django.po index 403dc95291..b9218a3d4f 100644 --- a/mayan/apps/statistics/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po index 211abd6234..2d352224e5 100644 --- a/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po index b0fccd547d..a62db15399 100644 --- a/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ford Guo , 2014 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po index acfc7246d7..aea0b5751b 100644 --- a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:9 settings.py:10 msgid "Storage" diff --git a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po index dadcb8bd17..468b88de09 100644 --- a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 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 a295e2e598..959364f308 100644 --- a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:9 settings.py:10 msgid "Storage" diff --git a/mayan/apps/storage/locale/da/LC_MESSAGES/django.po b/mayan/apps/storage/locale/da/LC_MESSAGES/django.po index 7b70056f60..fc8969a807 100644 --- a/mayan/apps/storage/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/da/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 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 561ba51e5b..a4aed12ac6 100644 --- a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 21:29+0000\n" "Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po b/mayan/apps/storage/locale/en/LC_MESSAGES/django.po index d09af788f4..e0722b248c 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: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-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 2661d4d675..c53f4c8797 100644 --- a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 22:17+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po index d36785ba0d..87690b4aea 100644 --- a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po index ca475c2366..5279fe9f1a 100644 --- a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po index 1ce8fc48a4..d4dacdede2 100644 --- a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po index 3192f930bc..e05b49580c 100644 --- a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po index d9c4f86341..55ff5c0afe 100644 --- a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 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 656bfa4ccc..49921f8e73 100644 --- a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po index 75db55df73..2cde26f8ea 100644 --- a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:9 settings.py:10 msgid "Storage" diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po index b27daadd18..63f52a852b 100644 --- a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 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 d64cfd8f79..ac5f3b203a 100644 --- a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:10 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 3c8be65e39..ce1e56e454 100644 --- a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:9 settings.py:10 msgid "Storage" diff --git a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po index 06c5192f4f..2ffcec41ee 100644 --- a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:9 settings.py:10 msgid "Storage" diff --git a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po index c031488cf0..3817a569e6 100644 --- a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:9 settings.py:10 msgid "Storage" 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 6c0d520f52..645c5fcf2b 100644 --- a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po index c512309c7a..c86a7d348f 100644 --- a/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po index 6a91708086..e01d5ef442 100644 --- a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,29 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "الكلمات الاستدلالية" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -64,7 +72,7 @@ msgstr "" msgid "Color" msgstr "اللون" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -100,7 +108,7 @@ msgstr "إضافة كلمات استدلالية للوثائق" msgid "Remove tags from documents" msgstr "إزالة الكلمات الاستدلالية من الوثائق" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -108,21 +116,21 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "يجب توفير وثيقة واحدة عالاقل." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "الوثيقة \"%(document)s\" مربوطة مسبقاً بالكلمات الاستدلالية \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "تم ربط الكلمة الاستدلالية \"%(tag)s\" بالوثيقة \"%(document)s\" ." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" @@ -132,25 +140,25 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "يجب توفير كلمة استدلالية واحدة عالاقل" -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "الكلمة الاستدلالية \"%s\" مسحت بنجاح." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "خطأ أثناء مسح الكلمة الاستدلالية \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "ستتم الإزالة من جميع الوثائق." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" @@ -160,70 +168,65 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "يجب توفير وثيقة واحد عالاقل مربوطة بكلمات استدلالية" -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "ازالة الكلمة الاستدلالية من الوثيقة: %s" -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "ازالة الكلمة الاستدلالية من الوثائق: %s" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "الوثيقة \"%(document)s\" لم تربط مع: \"%(tag)s\"" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." +msgstr "" +"الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" @@ -276,9 +279,6 @@ msgstr "الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح م #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po index f1ff96e112..f8b1090eab 100644 --- a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,29 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Етикети" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -64,7 +71,7 @@ msgstr "" msgid "Color" msgstr "Цвят" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -100,7 +107,7 @@ msgstr "Закачане етикет към документи" msgid "Remove tags from documents" msgstr "Премахване на етикети от документи" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -108,111 +115,105 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "" -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "" -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" msgstr[1] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Трябва да се осигури най-малко един етикет." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Етикет \"%s\" е изтрит успешно." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Грешка при изтриване на етикет \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Ще бъде премахнат от всички документи." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" msgstr[1] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "" -#: views.py:328 -#, python-format -msgid "Remove tag from document: %s." -msgstr "" - #: views.py:332 #, python-format +msgid "Remove tag from document: %s." +msgstr "" + +#: views.py:336 +#, python-format msgid "Remove tag from documents: %s." msgstr "" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" @@ -268,9 +269,6 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." 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 db3c5c4f9f..b564cb999c 100644 --- a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,29 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Tagovi" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -64,7 +72,7 @@ msgstr "" msgid "Color" msgstr "Boja" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -100,7 +108,7 @@ msgstr "Prikači tagove na dokumente" msgid "Remove tags from documents" msgstr "Ukloni tagove iz dokumenta" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -108,113 +116,107 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "Mora biti obezbjeđen bar jedan dokument." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "Dokument \"%(document)s\" je već tagovan kao \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "Tag \"%(tag)s\" uspješno prikačen na dokument \"%(document)s\"." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Mora biti obezbjeđen bar jedan tag." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Tag \"%s\" uspješno izbrisan." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Greška brisanja taga \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Bit će uklonjen iz svih dokumenata." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "Mora biti obezbjeđen bar jedan tagovani dokument." -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Ukloni tag iz dokumenta: %s." -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Ukloni tag iz dokumenata: %s." -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "Dokument \"%(document)s\" nije tagovan kao \"%(tag)s\"" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Tag \"%(tag)s\" uspješno uklonjen iz dokumenta \"%(document)s\"." @@ -270,9 +272,6 @@ msgstr "Tag \"%(tag)s\" uspješno uklonjen iz dokumenta \"%(document)s\"." #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/da/LC_MESSAGES/django.po b/mayan/apps/tags/locale/da/LC_MESSAGES/django.po index 6c33490b48..8e73b046d1 100644 --- a/mayan/apps/tags/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -9,29 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Tags" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -64,7 +71,7 @@ msgstr "" msgid "Color" msgstr "Farve" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -100,7 +107,7 @@ msgstr "Vedhæft tags til dokumenter" msgid "Remove tags from documents" msgstr "Fjern tags fra dokumenter" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -108,111 +115,105 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "Skal angive mindst ét ​​dokument." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "Dokumentet \"%(document)s\" er allerede mærket som \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "Tag \"%(tag)s\" vedhæftet til at dokumentet \"%(document)s\"." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" msgstr[1] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Der skal angives mindst én tag." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Tag \"%s\" slettet." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Fejl ved sletning af tag \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Vil blive fjernet fra alle dokumenter." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" msgstr[1] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "Skal angive mindst ét tagget dokument." -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Fjern tag fra dokument: %s." -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Fjern tag fra dokumenter: %s." -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "Dokumentet \"%(document)s\" ikke blev kodet som \"%(tag)s\"" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Tag \"%(tag)s\" blev fjernet fra dokumentet \"%(document)s\"." @@ -268,9 +269,6 @@ msgstr "Tag \"%(tag)s\" blev fjernet fra dokumentet \"%(document)s\"." #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." 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 77e5fd0b57..db34328f27 100644 --- a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -9,29 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-08 23:27+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Tags" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "Vorschau" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "Dokumente" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document" +#| msgid_plural "Attach tag to documents" +msgid "Tags to attach to the document." +msgstr "Tag an Dokument anhängen" + #: links.py:14 msgid "Remove tag" msgstr "Tag entfernen" @@ -64,7 +72,7 @@ msgstr "Text" msgid "Color" msgstr "Farbe" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "Tag" @@ -100,7 +108,7 @@ msgstr "Tags zu Dokumenten hinzufügen" msgid "Remove tags from documents" msgstr "Tags von Dokumenten entfernen" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "Primärschlüssel des hinzuzufügenden Tags" @@ -108,111 +116,106 @@ msgstr "Primärschlüssel des hinzuzufügenden Tags" msgid "Create tag" msgstr "Tag erstellen" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "Es muss mindestens ein Dokument angegeben werden." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "Dokument \"%(document)s\" ist schon mit \"%(tag)s\" markiert" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "Tag \"%(tag)s\" erfolgreich an Dokument \"%(document)s\" angehängt" -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "Tag an Dokument anhängen" msgstr[1] "Tag an Dokumente anhängen" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Es muss Mindestens einen Tag angeben werden" -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Tag \"%s\" erfolgreich gelöscht" -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Fehler beim Löschen des Tags \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Wird von allen Dokumenten entfernt" -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "Den ausgwählten Tag löschen?" msgstr[1] "Die ausgwählten Tags löschen?" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "Tag %s bearbeiten" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "Dokumente mit Tag %s" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "Tags für Dokument %s" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "Es muss mindestens ein markiertes Dokument angegeben werden" -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Tag von Dokument %s entfernen" -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Tag von Dokumenten %s entfernen." -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" -msgstr "Wollen Sie den Tag %(tag)s wirklich vom Dokument %(document)s entfernen?" +msgstr "" +"Wollen Sie den Tag %(tag)s wirklich vom Dokument %(document)s entfernen?" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "Tag \"%(tag)s\" wirklich von den Dokumenten %(documents)s entfernen?" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "Wollen Sie die Tags %(tags)s vom Dokument %(document)s entfernen?" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "Tags \"%(tags)s\" wirklich von den Dokumenten %(documents)s entfernen?" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "Dokument \"%(document)s war nicht mit \"%(tag)s\" markiert" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Tag \"%(tag)s\" erfolgreich von Dokument \"%(document)s\" entfernt." diff --git a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po index df587ef12e..bfca70b577 100644 --- a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2012-12-12 06:07+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,21 +18,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Tags" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 #, fuzzy msgid "Preview" msgstr "preview" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 #, fuzzy msgid "Documents" msgstr "document" +#: forms.py:53 +#, fuzzy +msgid "Tags to attach to the document." +msgstr "Attach tags to documents" + #: links.py:14 #, fuzzy msgid "Remove tag" @@ -71,7 +76,7 @@ msgstr "" msgid "Color" msgstr "Color" -#: models.py:28 +#: models.py:34 #, fuzzy msgid "Tag" msgstr "Tags" @@ -110,7 +115,7 @@ msgstr "Attach tags to documents" msgid "Remove tags from documents" msgstr "Remove tags from documents" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -119,82 +124,82 @@ msgstr "" msgid "Create tag" msgstr "create tag" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "Must provide at least one document." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "Document \"%(document)s\" is already tagged as \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -#: views.py:104 +#: views.py:110 #, fuzzy msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "Attach tags to documents" msgstr[1] "Attach tags to documents" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Must provide at least one tag." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Tag \"%s\" deleted successfully." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Error deleting tag \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Will be removed from all documents." -#: views.py:192 +#: views.py:199 #, fuzzy msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "Are you sure you wish to delete the tag: %s?" msgstr[1] "Are you sure you wish to delete the tag: %s?" -#: views.py:222 +#: views.py:231 #, fuzzy, python-format msgid "Edit tag: %s" msgstr "edit tag: %s" -#: views.py:235 +#: views.py:244 #, fuzzy, python-format msgid "Documents with the tag: %s" msgstr "documents with the tag \"%s\"" -#: views.py:262 +#: views.py:271 #, fuzzy, python-format msgid "Tags for document: %s" msgstr "tags for: %s" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "Must provide at least one tagged document." -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Remove tag from document: %s." -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Remove tag from documents: %s." -#: views.py:340 +#: views.py:344 #, fuzzy, python-format #| msgid "" #| "Are you sure you wish to remove the tag \"%(tag)s\" from the document: " @@ -204,7 +209,7 @@ msgstr "" "Are you sure you wish to remove the tag \"%(tag)s\" from the document: " "%(document)s?" -#: views.py:347 +#: views.py:351 #, fuzzy, python-format #| msgid "" #| "Are you sure you wish to remove the tag \"%(tag)s\" from the documents: " @@ -214,7 +219,7 @@ msgstr "" "Are you sure you wish to remove the tag \"%(tag)s\" from the documents: " "%(documents)s?" -#: views.py:356 +#: views.py:360 #, fuzzy, python-format #| msgid "" #| "Are you sure you wish to remove the tags: %(tags)s from the document: " @@ -224,19 +229,19 @@ msgstr "" "Are you sure you wish to remove the tags: %(tags)s from the document: " "%(document)s?" -#: views.py:363 +#: views.py:367 #, fuzzy, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" "Are you sure you wish to remove the tags %(tag)s from the documents: " "%(documents)s?" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po index d95aafe395..e9fbb09aee 100644 --- a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,29 +11,37 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Etiquetas" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "Presentación preliminar" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "Documentos" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document" +#| msgid_plural "Attach tag to documents" +msgid "Tags to attach to the document." +msgstr "Adjuntar etiqueta al documento" + #: links.py:14 msgid "Remove tag" msgstr "Remover etiqueta" @@ -66,7 +74,7 @@ msgstr "Etiqueta" msgid "Color" msgstr "Color" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "Etiqueta" @@ -102,7 +110,7 @@ msgstr "Etiquetar documentos" msgid "Remove tags from documents" msgstr "Quitar etiquetas de los documentos" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "Llave primaria de la etiqueta a ser agregada." @@ -110,114 +118,109 @@ msgstr "Llave primaria de la etiqueta a ser agregada." msgid "Create tag" msgstr "Crear etiqueta" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "Debe proporcionar al menos un documento." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "Documento \"%(document)s \" ya está etiquetado como \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "Etiqueta \"%(tag)s\" puesta al documento \"%(document)s\"." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "Adjuntar etiqueta al documento" msgstr[1] "Adjuntar etiqueta a los documentos" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Debe indicar al menos una etiqueta." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Etiqueta \"%s\" borrada con éxito." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Error al eliminar la etiqueta \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Se eliminará de todos los documentos." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "¿Eliminar la etiqueta seleccionada?" msgstr[1] "¿Eliminar las etiquetas seleccionadas?" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "Editar etiqueta: %s" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "Documentos con la etiqueta: %s" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "Etiquetas del documento: %s" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "Debe proporcionar al menos un documento etiquetado." -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Quitar etiqueta del documento: %s." -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Quitar etiqueta de los documentos: %s." -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "Documento \"%(document)s\" no estaba etiquetado como \"%(tag)s \"" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." +msgstr "" +"Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po index 40f186de8d..bb18c12641 100644 --- a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -9,29 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "برچسبها" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "پیش دید ویا دیدن" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "اسناد" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document" +#| msgid_plural "Attach tag to documents" +msgid "Tags to attach to the document." +msgstr "اتصال برچسب به سند" + #: links.py:14 msgid "Remove tag" msgstr "برداشتن برچسب" @@ -64,7 +72,7 @@ msgstr "برچسب" msgid "Color" msgstr "رنگ" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "برچسب" @@ -100,7 +108,7 @@ msgstr "الصاق برچسبها به اسناد" msgid "Remove tags from documents" msgstr "حذف برچسبهای سند" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -108,109 +116,103 @@ msgstr "" msgid "Create tag" msgstr "ایجادبرچسب" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "حداقل یک سند باید ارایه شود" -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "سند \"%(document)s\" دارای برچسب \"%(tag)s\" میباشد." -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "برچسب \"%(tag)s\" با موفقیت به سند \"%(document)s\" متصل شد." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "اتصال برچسب به سند" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "حداقل یک برچسب باید ارایه شود." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "حذف موفق برچسب \"%s\" " -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "خطا در زمان حذف برچسب: \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "از کلیه اسناد حذف خواهد شد." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "ویرایش برچسب: %s" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "اسناد دارای برچسب : %s" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "برچسب سند : %s" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "باید حداقل یک سند برچسب دار ارایه شود." -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "حذف برچسب از سند: %s" -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "حذف برچسب از اسناد: %s" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "سند \"%(document)s\" دارای برچسب \"%(tag)s\" نمیباشد." -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "برچسب \"%(tag)s\" با موفقیت از سند \"%(document)s\" برداشته شد." diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po index a34f86839e..34a69ac019 100644 --- a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -10,29 +10,37 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Etiquettes" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "Prévisualiser" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "Documents" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document" +#| msgid_plural "Attach tag to documents" +msgid "Tags to attach to the document." +msgstr "Rattacher une étiquette au document" + #: links.py:14 msgid "Remove tag" msgstr "Supprimer une étiquette" @@ -65,7 +73,7 @@ msgstr "Étiquette" msgid "Color" msgstr "Couleur" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "Étiquette" @@ -101,7 +109,7 @@ msgstr "Rattacher des étiquettes aux documents" msgid "Remove tags from documents" msgstr "Retirer des étiquettes au document" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -109,114 +117,112 @@ msgstr "" msgid "Create tag" msgstr "Créer une étiquette" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "Il est nécessaire d'indiquer au moins un document." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "Le document \"%(document)s\" est déjà étiqueté comme \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s\"." +msgstr "" +"L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s" +"\"." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "Rattacher une étiquette au document" msgstr[1] "Rattacher une étiquette aux documents" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Vous devez fournir au moins une étiquette" -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Etiquette \"%s\" supprimée avec succès" -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Erreur lors de la suppression de l'étiquette \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Sera supprimée de tous les documents" -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" msgstr[1] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "Modifier l'étiquette:%s" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "Documents avec l'étiquette: %s" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "Étiquettes du document: %s" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "Il est nécessaire d'indiquer au moins un document étiqueté." -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Supprimer l'étiquette du document: %s" -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Supprimer l'étiquette des documents: %s" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "Le document \"%(document)s\" n'a pas été étiqueté avec \"%(tag)s\"" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "L'étiquette \"%(tag)s\" à été supprimée avec succès du document \"%(document)s\"." +msgstr "" +"L'étiquette \"%(tag)s\" à été supprimée avec succès du document " +"\"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po index 60c4651de8..6c0f44e761 100644 --- a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po @@ -1,36 +1,43 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -63,7 +70,7 @@ msgstr "" msgid "Color" msgstr "" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -99,7 +106,7 @@ msgstr "" msgid "Remove tags from documents" msgstr "" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -107,111 +114,105 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "" -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "" -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" msgstr[1] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "" -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "" -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "" -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" msgstr[1] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "" -#: views.py:328 -#, python-format -msgid "Remove tag from document: %s." -msgstr "" - #: views.py:332 #, python-format +msgid "Remove tag from document: %s." +msgstr "" + +#: views.py:336 +#, python-format msgid "Remove tag from documents: %s." msgstr "" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" @@ -267,9 +268,6 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po index 142e136602..03fbac266f 100644 --- a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po @@ -1,36 +1,43 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -63,7 +70,7 @@ msgstr "" msgid "Color" msgstr "" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -99,7 +106,7 @@ msgstr "" msgid "Remove tags from documents" msgstr "" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -107,109 +114,103 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "" -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "" -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "" -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "" -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "" -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "" -#: views.py:328 -#, python-format -msgid "Remove tag from document: %s." -msgstr "" - #: views.py:332 #, python-format +msgid "Remove tag from document: %s." +msgstr "" + +#: views.py:336 +#, python-format msgid "Remove tag from documents: %s." msgstr "" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" @@ -265,9 +266,6 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po index cce0083236..e756b0fd10 100644 --- a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012 @@ -10,29 +10,36 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Etichette" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -65,7 +72,7 @@ msgstr "" msgid "Color" msgstr "Colori" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -101,7 +108,7 @@ msgstr "Applicare i tag ai documenti" msgid "Remove tags from documents" msgstr "Rimuovi etichetta dal documento" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -109,111 +116,105 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "" -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "" -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" msgstr[1] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Devi fornire almeno un'etichetta" -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Etichetta \"%s\" cancellata con successo." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Errore nel cancellare l'etichetta \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Sarà rimossa da tutti i documenti" -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" msgstr[1] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "" -#: views.py:328 -#, python-format -msgid "Remove tag from document: %s." -msgstr "" - #: views.py:332 #, python-format +msgid "Remove tag from document: %s." +msgstr "" + +#: views.py:336 +#, python-format msgid "Remove tag from documents: %s." msgstr "" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" @@ -269,9 +270,6 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." 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 defec69045..54f830696d 100644 --- a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po @@ -1,36 +1,43 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Labels" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -63,7 +70,7 @@ msgstr "" msgid "Color" msgstr "Kleur" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -99,7 +106,7 @@ msgstr "Label documenten" msgid "Remove tags from documents" msgstr "Labels van documenten verwijderen" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -107,111 +114,106 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "U dient minstens 1 document aan te geven." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "Document \"%(document)s\" is al gelabeld met \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "Label \"%(tag)s\" is gekoppeld aan document \"%(document)s\"." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" msgstr[1] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "U moet minimaal een label aanbrengen." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Label \"%s\" verwijderd." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" -msgstr "Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" +msgstr "" +"Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Zal van alle documenten worden verwijderd." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" msgstr[1] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "U dient minstens 1 gelabeld document aan te brengen." -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Verwijder label van document: %s" -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Verwijder label van documenten: %s" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "Document \"%(document)s\" is niet gelabeld als: \"%(tag)s\"" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Label: \"%(tag)s\" is verwijdert van document \"%(document)s\"." @@ -267,9 +269,6 @@ msgstr "Label: \"%(tag)s\" is verwijdert van document \"%(document)s\"." #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po index f1cbde3c17..ccf269c78c 100644 --- a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -10,29 +10,38 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Tagi" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "Podgląd" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "Dokumenty" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document" +#| msgid_plural "Attach tag to documents" +msgid "Tags to attach to the document." +msgstr "Załącz tag do dokumentu" + #: links.py:14 msgid "Remove tag" msgstr "Usunąć tag" @@ -65,7 +74,7 @@ msgstr "Etykieta" msgid "Color" msgstr "Kolor" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "Tag" @@ -101,7 +110,7 @@ msgstr "Załącz tagi do dokumentów" msgid "Remove tags from documents" msgstr "Usuń tagi z dokumentów" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -109,113 +118,107 @@ msgstr "" msgid "Create tag" msgstr "Utwórz tag" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "Musisz podać co najmniej jeden dokument." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "Dokument \"%(document)s\" jest już otagowany jako \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "Dodanie taga \"%(tag)s\" do dokumentu \"%(document)s\" powiodło się." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "Załącz tag do dokumentu" msgstr[1] "Załącz tag do dokumentów" msgstr[2] "Załącz tag do dokumentów" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Musisz wprowadzić conajmniej jeden tag." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Usunięto tag \"%s\"." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Błąd podczas usuwania taga \"%(tag)s\":%(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Zostanie usunięty ze wszystkich dokumentów." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "Edytuj tag: %s" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "Dokumenty z tagiem: %s" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "Tagi dla dokumentu: %s" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "Musisz podać conajmniej jeden otagowany dokument." -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Usuń tag z dokumentu: %s." -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Usuń tagi z dokumentów: %s." -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "Dokument \"%(document)s\" nie był otagowany jako \"%(tag)s\"" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Tag \"%(tag)s\" usunięty z dokumentu \"%(document)s\"." diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po index 6a13136010..8e29d3eda0 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: # Translators: # Emerson Soares , 2011 @@ -11,29 +11,36 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Etiquetas" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -66,7 +73,7 @@ msgstr "" msgid "Color" msgstr "Cor" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -102,7 +109,7 @@ msgstr "Atribuir etiquetas aos documentos" msgid "Remove tags from documents" msgstr "Remover etiquetas de documentos" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -110,111 +117,105 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "" -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "" -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" msgstr[1] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Deve fornecer pelo menos uma etiqueta." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Etiqueta \"%s\" removida com sucesso." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Erro ao excluir etiqueta \" %(tag)s \": %(error)s " -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Será removida de todos os documentos." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" msgstr[1] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "" -#: views.py:328 -#, python-format -msgid "Remove tag from document: %s." -msgstr "" - #: views.py:332 #, python-format +msgid "Remove tag from document: %s." +msgstr "" + +#: views.py:336 +#, python-format msgid "Remove tag from documents: %s." msgstr "" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" @@ -270,9 +271,6 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." 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 25a1fb5487..9d1f2fb82e 100644 --- a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2012 @@ -10,29 +10,36 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Etiquetas" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "Visualizar" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "Documentos" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "Remover Etiqueta" @@ -65,7 +72,7 @@ msgstr "" msgid "Color" msgstr "Cor" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "Etiqueta" @@ -101,7 +108,7 @@ msgstr "Anexar etiquetas para documentos" msgid "Remove tags from documents" msgstr "Remover etiquetas de documentos" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -109,111 +116,106 @@ msgstr "" msgid "Create tag" msgstr "Criar Etiqueta" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "Deve fornecer, pelo menos, um documento." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "Documento \"%(document)s\" já está marcado como \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." +msgstr "" +"Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" msgstr[1] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Deve fornecer pelo menos uma etiqueta." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Etiqueta \"%s\" removida com sucesso." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Erro ao excluir etiqueta \" %(tag)s \": %(error)s " -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Será removido de todos os documentos." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" msgstr[1] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "Editar etiqueta:%s" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "Os documentos com a etiqueta: %s" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "Etiqueta para documento: %s" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "Deve fornecer pelo menos um documento marcado." -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Remove etiqueta do documento: %s." -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Remove etiqueta dos documentos: %s." -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" @@ -269,9 +271,6 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." 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 aa85e4a0b6..29fc3d4e7d 100644 --- a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Abalaru Paul , 2013 @@ -10,29 +10,37 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Etichete" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -65,7 +73,7 @@ msgstr "" msgid "Color" msgstr "Culoare" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -101,7 +109,7 @@ msgstr "Atașați etichete la documente" msgid "Remove tags from documents" msgstr "Îndepărtați etichetele de pe documente" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -109,116 +117,113 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "Trebuie să furnizeze cel puțin un document." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "Documentul \"%(document)s\" este deja etichetat cu \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." +msgstr "" +"Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Trebuie selectată cel puțin o etichetă." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Eticheta \"%s\" a fost ștersă cu succes." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Eroare la ștergerea etichetă \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Va fi eliminată din toate documentele." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "Trebuie să atribuiţi cel puțin o etichetă ." -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Eliminați eticheta documentului:% s." -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Eliminați eticheta de la documentele:% s." -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "Documentul \"%(document)s\" nu a fost etichetat cu \"%(tag)s\"" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s\"." +msgstr "" +"Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s" +"\"." #~ msgid "remove tags" #~ msgstr "remove tags" @@ -271,9 +276,6 @@ msgstr "Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(docu #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po index de782361e8..5bbad18b78 100644 --- a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po @@ -1,36 +1,45 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Метки" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -63,7 +72,7 @@ msgstr "" msgid "Color" msgstr "Цвет" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -99,7 +108,7 @@ msgstr "Прикрепить метки к документам" msgid "Remove tags from documents" msgstr "Удаление тегов из документов" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -107,21 +116,21 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "Должен быть хотя бы один документ." -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "\"%(document)s\" уже имеет метку \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "Метка \"%(tag)s\" присвоена \"%(document)s\"." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" @@ -129,25 +138,25 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Должна быть хотя бы одна метка." -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Метка \"%s\"удалён." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Ошибка при удалении метки \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Будет удален из всех документов." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" @@ -155,67 +164,61 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "Следует указать хотя бы один помеченный документ." -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Снять метку с документа %s." -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Снять метку с документов %s." -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "\"%(document)s\" не помечен как \"%(tag)s\"" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "Метка \"%(tag)s\" снята с документа \"%(document)s\"." @@ -271,9 +274,6 @@ msgstr "Метка \"%(tag)s\" снята с документа \"%(document)s\" #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." 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 33449d7c49..7ab7e826dd 100644 --- a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # kontrabant , 2013 @@ -9,29 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Oznake" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -64,7 +72,7 @@ msgstr "" msgid "Color" msgstr "Barva" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -100,7 +108,7 @@ msgstr "" msgid "Remove tags from documents" msgstr "Odstrani oznake iz dokumenta" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -108,21 +116,21 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "" -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "" -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" @@ -130,25 +138,25 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "" -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "" -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "" -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" @@ -156,67 +164,61 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "" -#: views.py:328 -#, python-format -msgid "Remove tag from document: %s." -msgstr "" - #: views.py:332 #, python-format +msgid "Remove tag from document: %s." +msgstr "" + +#: views.py:336 +#, python-format msgid "Remove tag from documents: %s." msgstr "" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "" @@ -272,9 +274,6 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." 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 837eb07139..4884e22973 100644 --- a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,29 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "Tags" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -64,7 +71,7 @@ msgstr "" msgid "Color" msgstr "Màu" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -100,7 +107,7 @@ msgstr "Gắn tag cho tài liệu" msgid "Remove tags from documents" msgstr "Xóa tag từ tài liệu" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -108,109 +115,103 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "Cần cung cấp ít nhất một tài liệu" -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "Tài liệu \"%(document)s\" đã được tag \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "Tag \"%(tag)s\" được gắn thành công cho tài liệu \"%(document)s\"." -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "Cần cung cấp ít nhất một tag" -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "Tag \"%s\" xóa thành công." -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "Lỗi xóa tag \"%(tag)s\": %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "Sẽ được xóa trong tất cả tài liệu." -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "Cần cung cấp ít nhất một tài liệu đã được tag" -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "Xóa tag từ tài liệu: %s" -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "Xóa tag từ các tài liệu: %s" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "Tài liệu \"%(document)s\" không thể được tag như là \"%(tag)s\"" -#: views.py:384 +#: views.py:388 #, python-format 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\"." @@ -266,9 +267,6 @@ msgstr "Tag \"%(tag)s\" đã được xóa thành công từ tài liệu \"%(doc #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po index 3eff1cf519..c34e0dad5c 100644 --- a/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,29 +10,36 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-08-27 05:25+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 apps.py:63 apps.py:78 forms.py:34 links.py:40 links.py:43 -#: models.py:29 permissions.py:7 views.py:131 +#: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 +#: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" msgstr "标签" -#: apps.py:58 apps.py:68 +#: apps.py:68 apps.py:80 msgid "Preview" msgstr "" -#: apps.py:72 models.py:24 +#: apps.py:84 models.py:24 msgid "Documents" msgstr "" +#: forms.py:53 +#, fuzzy +#| msgid "Attach tag to document: %s." +msgid "Tags to attach to the document." +msgstr "Attach tag to document: %s." + #: links.py:14 msgid "Remove tag" msgstr "" @@ -65,7 +72,7 @@ msgstr "" msgid "Color" msgstr "颜色" -#: models.py:28 +#: models.py:34 msgid "Tag" msgstr "" @@ -101,7 +108,7 @@ msgstr "给文档添加标签" msgid "Remove tags from documents" msgstr "从文档中删除标签" -#: serializers.py:33 +#: serializers.py:46 msgid "Primary key of the tag to be added." msgstr "" @@ -109,109 +116,103 @@ msgstr "" msgid "Create tag" msgstr "" -#: views.py:50 +#: views.py:59 msgid "Must provide at least one document." msgstr "必须提供至少一个文件。" -#: views.py:80 +#: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" msgstr "文档 \"%(document)s\"已经被标记为 \"%(tag)s\"" -#: views.py:90 +#: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." msgstr "文档\"%(document)s\"添加标签\"%(tag)s\"成功。" -#: views.py:104 +#: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" msgstr[0] "" -#: views.py:153 +#: views.py:160 msgid "Must provide at least one tag." msgstr "必须至少提供一个标签" -#: views.py:175 +#: views.py:182 #, python-format msgid "Tag \"%s\" deleted successfully." msgstr "标签 \"%s\" 删除成功" -#: views.py:179 +#: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" msgstr "删除标签\"%(tag)s\"失败: %(error)s" -#: views.py:189 +#: views.py:196 msgid "Will be removed from all documents." msgstr "将从所有文档中移除" -#: views.py:192 +#: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" msgstr[0] "" -#: views.py:222 +#: views.py:231 #, python-format msgid "Edit tag: %s" msgstr "" -#: views.py:235 +#: views.py:244 #, python-format msgid "Documents with the tag: %s" msgstr "" -#: views.py:262 +#: views.py:271 #, python-format msgid "Tags for document: %s" msgstr "" -#: views.py:278 +#: views.py:286 msgid "Must provide at least one tagged document." msgstr "必须至少提供一个标签文档" -#: views.py:328 +#: views.py:332 #, python-format msgid "Remove tag from document: %s." msgstr "从文档: %s移除标签" -#: views.py:332 +#: views.py:336 #, python-format msgid "Remove tag from documents: %s." msgstr "从文档: %s移除标签" -#: views.py:340 +#: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" -#: views.py:347 +#: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" -#: views.py:356 +#: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" -#: views.py:363 +#: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" msgstr "" -#: views.py:375 +#: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" msgstr "文档\"%(document)s\"无标签\"%(tag)s\"" -#: views.py:384 +#: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." msgstr "标签\"%(tag)s\"成功从文档\"%(document)s\"移除" @@ -267,9 +268,6 @@ msgstr "标签\"%(tag)s\"成功从文档\"%(document)s\"移除" #~ msgid "Document created" #~ msgstr "document" -#~ msgid "Attach tag to document: %s." -#~ msgstr "Attach tag to document: %s." - #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." 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 3b79180b66..d504af433a 100644 --- a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,45 +9,47 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "إدارة المستخدم" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -59,7 +61,7 @@ msgstr "كلمة مرور جديدة" msgid "Confirm password" msgstr "تأكيد كلمة المرور" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -71,15 +73,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -119,107 +121,112 @@ msgstr "تحرير المستخدمين الحاليين" msgid "View existing users" msgstr "عرض المستخدمين الحاليين" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "تم انشاء المستخدم \"%s\" بنجاح." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "يجب أن توفر ما لا يقل عن مستخدم واحد." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user deleting is not allowed, use the admin interface " +"for these cases." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "تم مسح المستخدم \"%s\" بنجاح." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "خطأ أثناء حذف المستخدم \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "لا تتطابق كلمات المرور، حاول مرة أخرى." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user password reseting is not allowed, use the admin " +"interface for these cases." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "نجحت إعادة تعيين كلمة المرور للمستخدم: %s" -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "خطأ أثناء إعادة تعيين كلمة المرور للمستخدم \"%(user)s\": %(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "إعادة كلمة السر للمستخدم: %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "إعادة كلمة السر للمستخدمين %s" 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 d901e727fb..309061d80f 100644 --- a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -9,45 +9,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Управление на потребители" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -59,7 +60,7 @@ msgstr "Нова парола" msgid "Confirm password" msgstr "Потвърждение на парола" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -71,15 +72,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -119,107 +120,112 @@ msgstr "Редактиране на нови потребители" msgid "View existing users" msgstr "Преглед на съществуващи потребители" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Потребител \"%s\" е създаден успешно." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Трябва да изберете поне един потребител." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Изтриване на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." +msgstr "" +"Изтриване на потребители от супер потребител и служител не е разрешено. " +"Използвайте администраторския модул за тези случаи." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Потребител \"%s\" е изтрит успешно." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Грешка при изтриването на потребител \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "Паролата не съвпада. Опитайте отново." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Промяна на парола на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." +msgstr "" +"Промяна на парола на потребители от супер потребител и служител не е " +"разрешено. Използвайте администраторския модул за тези случаи." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Успешна промяна на парола на потребител %s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "Грешка при промяна на парола на потребител \"%(user)s\": %(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Промяна на парола на потребител %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Промяна на парола на потребители %s" 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 bdd3de0361..d3cfac3e91 100644 --- a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,45 +9,47 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Upravljanje korisnicima" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -59,7 +61,7 @@ msgstr "Nova lozinka" msgid "Confirm password" msgstr "Potvrdite lozinku" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -71,15 +73,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -119,107 +121,112 @@ msgstr "Izmjeni postojeće korisnike" msgid "View existing users" msgstr "Pregledaj postojeće korisnike" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Korisnik \"%s\" uspješno kreiran." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Mora biti obebjeđen bar jedan korisnik." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user i staff user brisanja nisu dozvoljena, koristite administratorski interface za takve slučajeve" +msgstr "" +"Super user i staff user brisanja nisu dozvoljena, koristite administratorski " +"interface za takve slučajeve" -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Korisnik \"%s\" uspješno obrisan." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Greška brisanja korisnika \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "Lozinke se ne podudaraju, pokušajte ponovo." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user i staff user reset lozinke nije dozvoljen, koristite administratorski interface za takve slučajeve" +msgstr "" +"Super user i staff user reset lozinke nije dozvoljen, koristite " +"administratorski interface za takve slučajeve" -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Uspješno resetovana lozinka za korisnika: %s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "Greška resetovanja lozinke za korisnika \"%(user)s\": %(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Resetovanje lozinke za korisnika: %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Resetovanje lozinke za korisnike: %s" diff --git a/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po index eda2b42173..c3ab72d44d 100644 --- a/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # René Rovsing Bach , 2013 @@ -9,45 +9,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Brugerstyring" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -59,7 +60,7 @@ msgstr "Nyt password" msgid "Confirm password" msgstr "Bekræft password" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -71,15 +72,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -119,107 +120,112 @@ msgstr "Rediger eksisterende brugere" msgid "View existing users" msgstr "Se eksisterende brugere" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Bruger \"%s\" oprettet." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Der skal angives mindst én bruger." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Det er ikke tilladt at slette superbruger og personalebruger. Anvend administrator brugerfladen i disse tilfælde." +msgstr "" +"Det er ikke tilladt at slette superbruger og personalebruger. Anvend " +"administrator brugerfladen i disse tilfælde." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Bruger \"%s\" slettet." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Fejl ved sletning af bruger \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "De to password stemmer ikke overens, prøv igen." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Det er ikke tilladt at nulstille Superbruger og personale brugeradgangskode. Anvend administrator brugerflade istedet." +msgstr "" +"Det er ikke tilladt at nulstille Superbruger og personale brugeradgangskode. " +"Anvend administrator brugerflade istedet." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Password er blevet nulstillet for bruger: %s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "Fejl ved nulstilling af password for bruger \"%(user)s\": %(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Nulstiller password for bruger: %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Nulstiller password for brugerne: %s" 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 faefbdf754..2cadb8e3c1 100644 --- a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -13,45 +13,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Benutzerverwaltung" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "Alle Gruppen." -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "Alle Benutzer" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "Mitglieder" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "Kompletter Name" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "E-Mail" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "Aktiv" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "Verwendbares Passwort" @@ -63,7 +64,7 @@ msgstr "Neues Passwort" msgid "Confirm password" msgstr "Passwort bestätigen" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "Erstellen" @@ -75,15 +76,15 @@ msgstr "Löschen" msgid "Edit" msgstr "Bearbeiten" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "Gruppen" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "Erstellen" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "Benutzer" @@ -123,107 +124,116 @@ msgstr "Benutzer bearbeiten" msgid "View existing users" msgstr "Benutzer anzeigen" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "Gruppe %s bearbeiten" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Gruppe %s löschen?" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +#, fuzzy +#| msgid "Available groups" +msgid "Available users" msgstr "Verfügbare Gruppen" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "Gruppenmitglieder" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "Mitglieder von Gruppe %s" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "Benutzer %s bearbeiten" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "Verfügbare Gruppen" + +#: views.py:134 msgid "Groups joined" msgstr "Gruppen vereinigt" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "Gruppen von Benutzer %s" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Benutzer \"%s\" erfolgreich angelegt" -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Es muss mindestens ein Benutzer angegeben werden" -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die Administratoren-Oberfläche dafür." +msgstr "" +"Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die " +"Administratoren-Oberfläche dafür." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Benutzer \"%s\" erfolgreich gelöscht" -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Fehler beim Löschen des Benutzers \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "Benutzer %s löschen?" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "Die Benutzer %s löschen?" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "Passwörter stimmen nicht überein, bitte noch einmal versuchen" -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die Administratoren-Oberfläche dafür." +msgstr "" +"Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die " +"Administratoren-Oberfläche dafür." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Passwort erfolgreich zurückgesetzt für Benutzer %s" -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": %(error)s" +msgstr "" +"Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": " +"%(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Passwort zurücksetzen für Benutzer %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Passwort zurücksetzen für die Benutzer %s" 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 aeb803cd47..dcd9f5f161 100644 --- a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2012-12-12 06:07+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,39 +18,39 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "User management" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 #, fuzzy msgid "Members" msgstr "members" -#: apps.py:49 +#: apps.py:52 #, fuzzy msgid "Full name" msgstr "full name" -#: apps.py:52 +#: apps.py:55 #, fuzzy msgid "Email" msgstr "email" -#: apps.py:55 +#: apps.py:58 #, fuzzy msgid "Active" msgstr "active" -#: apps.py:61 +#: apps.py:64 #, fuzzy msgid "Has usable password?" msgstr "has usable password?" @@ -63,7 +63,7 @@ msgstr "New password" msgid "Confirm password" msgstr "Confirm password" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 #, fuzzy msgid "Create new group" msgstr "Create new groups" @@ -77,17 +77,17 @@ msgstr "delete" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 #, fuzzy msgid "Groups" msgstr "groups" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 #, fuzzy msgid "Create new user" msgstr "Create new users" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 #, fuzzy msgid "Users" msgstr "users" @@ -129,56 +129,60 @@ msgstr "Edit existing users" msgid "View existing users" msgstr "View existing users" -#: views.py:44 +#: views.py:45 #, fuzzy, python-format msgid "Edit group: %s" msgstr "edit group: %s" -#: views.py:65 +#: views.py:66 #, fuzzy, python-format #| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Delete existing groups" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 #, fuzzy msgid "Members of groups" msgstr "members of group: %s" -#: views.py:81 +#: views.py:94 #, fuzzy, python-format msgid "Members of group: %s" msgstr "members of group: %s" -#: views.py:114 +#: views.py:127 #, fuzzy, python-format msgid "Edit user: %s" msgstr "edit user: %s" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 #, fuzzy msgid "Groups joined" msgstr "groups" -#: views.py:130 +#: views.py:143 #, fuzzy, python-format msgid "Groups of user: %s" msgstr "groups of user: %s" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "User \"%s\" created successfully." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Must provide at least one user." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." @@ -186,33 +190,33 @@ msgstr "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "User \"%s\" deleted successfully." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Error deleting user \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, fuzzy, python-format #| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "Delete existing users" -#: views.py:247 +#: views.py:257 #, fuzzy, python-format #| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "Delete existing users" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "Passwords do not match, try again." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." @@ -220,22 +224,22 @@ msgstr "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Successfull password reset for user: %s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "Error reseting password for user \"%(user)s\": %(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Reseting password for user: %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Reseting password for users: %s" diff --git a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po index 2fbb5863d4..3a0f60016c 100644 --- a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,45 +12,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Administración de usuarios" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "Todos los grupos." -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "Todos los usuarios." -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "Miembros" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "Nombre completo" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "Correo electrónico" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "Activo" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "¿Tiene contraseña utilizable?" @@ -62,7 +63,7 @@ msgstr "Nueva contraseña" msgid "Confirm password" msgstr "Confirmar contraseña" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "Crear nuevo grupo" @@ -74,15 +75,15 @@ msgstr "Borrar" msgid "Edit" msgstr "Editar" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "Grupos" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "Crear nuevo usuario" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "Usuarios" @@ -122,107 +123,115 @@ msgstr "Editar usuarios existentes" msgid "View existing users" msgstr "Ver usuarios existentes" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "Editar grupo: %s" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "¿Borrar el grupo: %s?" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +#, fuzzy +#| msgid "Available groups" +msgid "Available users" msgstr "Grupos disponibles." -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "Miembros de grupos" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "Miembros del grupo: %s" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "Editar usuario: %s" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "Grupos disponibles." + +#: views.py:134 msgid "Groups joined" msgstr "Grupos participados" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "Grupos de usuario: %s" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Usuario \"%s\" creado con éxito." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Debe indicar al menos un usuario." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "No se permite eliminar el super usuario y usuario de personal. Use la interfaz de administración para estos casos." +msgstr "" +"No se permite eliminar el super usuario y usuario de personal. Use la " +"interfaz de administración para estos casos." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Usuario \"%s\" eliminado con éxito." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Error eliminando el usuario \"%(user)s\": %(error)s " -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "¿Borrar el usuario: %s?" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "¿Borrar los usuarios: %s?" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "Las contraseñas no coinciden. Vuelva a intentarlo." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "No se permite cambiar la contraseña del super usuario y del usuario de personal. Use la interfaz de administración para estos casos." +msgstr "" +"No se permite cambiar la contraseña del super usuario y del usuario de " +"personal. Use la interfaz de administración para estos casos." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Contraseña restablecida para el usuario: %s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " +msgstr "" +"Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Restaurando contraseña del usuario: %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Restaurando la contraseña de los usuarios: %s" diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po index b1bb57434a..da24bf533f 100644 --- a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -9,45 +9,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "مدیریت کاربران" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "عضو" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "نام کامل" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "پست الکترونیکی" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "فعال" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "دارای کلمه عبور قابل قبول؟" @@ -59,7 +60,7 @@ msgstr "کلمه عبور جدید" msgid "Confirm password" msgstr "تائید کلمه عبور" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "گروه جدید" @@ -71,15 +72,15 @@ msgstr "حذف" msgid "Edit" msgstr "ویرایش" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "گروه ها" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "کاربر جدید" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "کاربران" @@ -119,107 +120,108 @@ msgstr "ویرایش کاربران موجود" msgid "View existing users" msgstr "دیدن کاربران موجود" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "ویرایش گروه : %s" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr " اعضای گروه : %s" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "ویرایش کاربر : %s" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "گروه های کاربر : %s" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "کاربر \"%s\" با موفقیت ساخته شد." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "باید حداقل یک کاربر ارئه شود." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." msgstr "برای حذف از صفحه admin استفاده کنید." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "کاربر \"%s\" با موفقیت حذف شد." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "خطا در حذف کاربر \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "کلمه عبور یکسان نیست دوباره امتحان کنید." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." msgstr "از صفحه admin برای این موارد استفاده کنید." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "ریست موفق کلمه عبور برای کاربر : %s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "خطا در زمان ریست کلمه عبور کاربر: \"%(user)s\": %(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "ریست کلمه عبور کاربر: %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "ریست کلمه عبور کابران : %s" diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po index ab83f07102..0b0d0d0fa1 100644 --- a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe kryskool , 2014 @@ -11,45 +11,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Gestion des utilisateurs" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "Membres" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "Nom complet" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "Courriel" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "Actif" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "Possède un mot de passe utilisable?" @@ -61,7 +62,7 @@ msgstr "Nouveau mot de passe" msgid "Confirm password" msgstr "Confirmer le mot de passe" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "Créer un nouveau groupe" @@ -73,15 +74,15 @@ msgstr "Supprimer" msgid "Edit" msgstr "Modifier" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "Groupes" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "créer un nouvel utilisateur" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "Utilisateurs" @@ -121,107 +122,114 @@ msgstr "Modifier de nouveaux utilisateurs" msgid "View existing users" msgstr "Afficher les utilisateurs existant" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "Modification du groupe: %s" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "Membres du groupe: %s" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "Modifier l'utilisateur: %s" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "Membre des groupes: %s" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Utilisateur \"%s\" créé avec succès." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Vous devez fournir au moins un utilisateur." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "La suppression des comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'admin." +msgstr "" +"La suppression des comptes super utilisateur et staff n'est pas autorisée " +"ici, veuillez le faire via l'interface d'admin." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Utilisateur \"%s\" supprimé avec succès." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Erreur lors de la suppression de l'utilisateur \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "Les mots de passe ne correspondent pas, veuillez réessayer." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "La réinitialisation des mots de passe pour les comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'admin." +msgstr "" +"La réinitialisation des mots de passe pour les comptes super utilisateur et " +"staff n'est pas autorisée ici, veuillez le faire via l'interface d'admin." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Mot de passe ré-initialisé avec succès pour l'utilisateur: %s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur \"%(user)s\": %(error)s" +msgstr "" +"Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur " +"\"%(user)s\": %(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Ré-initialisation du mote de passe pour l'utilisateur: %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Ré-initialisation du mote de passe pour les utilisateur: %s" diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po index daa94fba4a..6bbd6ebb3c 100644 --- a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po @@ -1,52 +1,53 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -58,7 +59,7 @@ msgstr "" msgid "Confirm password" msgstr "" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -70,15 +71,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -118,107 +119,108 @@ msgstr "" msgid "View existing users" msgstr "" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "" -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "" -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." msgstr "" -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "" -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "" -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." msgstr "" -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "" diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po index 9af957f347..0c09ca4f15 100644 --- a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po @@ -1,52 +1,53 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -58,7 +59,7 @@ msgstr "" msgid "Confirm password" msgstr "" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -70,15 +71,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -118,107 +119,108 @@ msgstr "" msgid "View existing users" msgstr "" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "" -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "" -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." msgstr "" -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "" -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "" -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." msgstr "" -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "" diff --git a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po index 3e41b45a90..83cae68bf4 100644 --- a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011 @@ -10,45 +10,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Gestione utenti" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -60,7 +61,7 @@ msgstr "Nuova password" msgid "Confirm password" msgstr "Conferma password" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -72,15 +73,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -120,107 +121,114 @@ msgstr "Modifica utenti " msgid "View existing users" msgstr "Visualizza utenti" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Utente \"%s\" creato con successo." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Devi fornire almeno un utente." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Al super utente e utente non è consentito la cancellazione del personale, utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "" +"Al super utente e utente non è consentito la cancellazione del personale, " +"utilizzare l'interfaccia di amministrazione per questi casi." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Utente \"%s\" cancellato con successo." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Errore nella cancellazione dell'utente \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "La password non corrisponde, riprova." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Al super utente e utente non è consentito di reimpostare la password personale, utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "" +"Al super utente e utente non è consentito di reimpostare la password " +"personale, utilizzare l'interfaccia di amministrazione per questi casi." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Password reimpostata per l'utente: %s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Errore per il reimpostamento della password per l'utente \"%(user)s\": %(error)s" +msgstr "" +"Errore per il reimpostamento della password per l'utente \"%(user)s\": " +"%(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Reimposta la password per l'utente:%s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Reimposta la password per gli utenti:%s" 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 57b0884479..7199e649b3 100644 --- a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po @@ -1,52 +1,53 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -58,7 +59,7 @@ msgstr "" msgid "Confirm password" msgstr "" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -70,15 +71,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -118,107 +119,108 @@ msgstr "" msgid "View existing users" msgstr "" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "" -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "" -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." msgstr "" -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "" -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "" -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." msgstr "" -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "" 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 00388239d3..19adfdb3f8 100644 --- a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -10,45 +10,47 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Zarządzanie użytkownikami" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "Członkowie" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "Pełna nazwa" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "Email" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "Aktywny" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "Posiada hasło?" @@ -60,7 +62,7 @@ msgstr "Nowe hasło" msgid "Confirm password" msgstr "Potwierdź hasło" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "utwórz nową grupę" @@ -72,15 +74,15 @@ msgstr "Usunąć" msgid "Edit" msgstr "Edytuj" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "Grupy" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "Tworzenie nowego użytkownika" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "Użytkownicy" @@ -120,107 +122,112 @@ msgstr "Edycja istniejących użytkowników" msgid "View existing users" msgstr "Zobacz istniejących użytkowników" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "Edycja grupy: %s" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "Członkowie grupy: %s" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "Edytuj użytkownika: %s" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "Grupy użytkownika: %s" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Użytkownik \"%s\" został utworzony pomyślnie." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Musi podać co najmniej jednego użytkownika." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user oraz staff user usuwanie nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." +msgstr "" +"Super user oraz staff user usuwanie nie jest możliwa , należy użyć " +"interfejsu administratora w takich przypadkach." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Użytkownik \"%s\" został usunięta." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Błąd podczas usuwania użytkownika \" %(user)s \": %(error)s " -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "Hasła nie pasują, spróbuj ponownie." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." +msgstr "" +"Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu " +"administratora w takich przypadkach." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Pomyślne resetowania hasła użytkownika:%s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "Błąd podczas resetowania hasło użytkownika \" %(user)s \": %(error)s " -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Resetowanie hasła użytkownika:%s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Resetowanie hasła dla użytkowników:%s" 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 7ed0fa322d..6fdc7a8dd9 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: # Translators: # Renata Oliveira , 2011 @@ -11,45 +11,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Gerir utilizadores" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -61,7 +62,7 @@ msgstr "Nova senha" msgid "Confirm password" msgstr "Confirmar senha" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -73,15 +74,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -121,107 +122,112 @@ msgstr "Editar utilizadores existentes" msgid "View existing users" msgstr "Ver os utilizadores existentes" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Utilizador \"%s\" criado com sucesso." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Deve fornecer pelo menos um utilizador." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Não é permitida a exclusão de superutilizadores ou de membros da equipa; use a interface de administração para esses casos." +msgstr "" +"Não é permitida a exclusão de superutilizadores ou de membros da equipa; use " +"a interface de administração para esses casos." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Utilizador \"%s\" removido com sucesso." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Erro ao excluir o utilizador \"%(user)s\": %(error)s " -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "As senhas não coincidem, tente novamente." -#: views.py:294 +#: views.py:309 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 superutilizadores ou de membros da equipa; use a interface de administração para esses casos." +msgstr "" +"Não é permitido redefinir a senha de superutilizadores ou de membros da " +"equipa; use a interface de administração para esses casos." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Redefinição da senha bem-sucedida para o utilizador: %s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "Erro ao redefinir a senha do utilizador \"%(user)s\": %(error)s " -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "A redefinir a senha do utilizador: %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "A redefinir a senha dos utilizadores: %s" 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 994d3a1f6e..2903cd0223 100644 --- a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2013 @@ -12,45 +12,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Gerenciar usuários" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "Membros" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "Nome Completo" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "E-mail" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "Ativo" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "tem senha usável?" @@ -62,7 +63,7 @@ msgstr "Nova senha" msgid "Confirm password" msgstr "Confirmar senha" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "Criar novo Grupo" @@ -74,15 +75,15 @@ msgstr "excluir" msgid "Edit" msgstr "Editar" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "Grupos" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "Criar novo Usuário" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "Usuários" @@ -122,107 +123,112 @@ msgstr "Editar usuários existentes" msgid "View existing users" msgstr "Ver os usuários existentes" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "Editar grupo:%s" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "membros do grupo: %s" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "Editar usuário:%s" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "Grupos de usuário:%s" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Usuário \"%s\" criado com sucesso." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Deve fornecer pelo menos um usuário." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Excluir super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." +msgstr "" +"Excluir super usuário e usuário pessoal não é permitido, use a interface de " +"administração para esses casos." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Usuário \"%s\" removido com sucesso." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Erro ao excluir usuário \"%(user)s\": %(error)s " -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "Senhas não coincidem, tente novamente." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Redefinir senha de super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." +msgstr "" +"Redefinir senha de super usuário e usuário pessoal não é permitido, use a " +"interface de administração para esses casos." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Redefinição de senha do usuário bem-sucedida: %s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "Erro de redefinição de senha para o usuário \"%(user)s\": %(error)s " -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Redefinindo senha para o usuário: %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Redefinindo senha para os usuários: %s" 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 776c8a4574..9cf50a6c2c 100644 --- a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,45 +9,47 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Management utilizatori" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -59,7 +61,7 @@ msgstr "Parolă nouă" msgid "Confirm password" msgstr "Confirmați parola" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -71,15 +73,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -119,107 +121,112 @@ msgstr "Editați utilizatorii existenți" msgid "View existing users" msgstr "Vizualizați utilizatorii existenți" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Utilizator \"%s\" creat cu succes." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Trebuie să furnizeze cel puțin un utilizator." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super-utilizator și personalul ștergerea utilizator nu este permisă, utilizați interfata de administrare pentru aceste cazuri." +msgstr "" +"Super-utilizator și personalul ștergerea utilizator nu este permisă, " +"utilizați interfata de administrare pentru aceste cazuri." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Utilizatorul \"%s\" a fost șters cu succes." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Eroare la ștergerea utilizator \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "Parolele nu corespund, încercați din nou." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super utilizator și parola de utilizator personalul resetarea nu este permisă, utilizați interfata de administrare pentru aceste cazuri." +msgstr "" +"Super utilizator și parola de utilizator personalul resetarea nu este " +"permisă, utilizați interfata de administrare pentru aceste cazuri." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Resetarea parolei cu succes pentru utilizator:% s." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "Eroare resetarea parola pentru utilizatorul %(user)s\": %(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Resetarea parola pentru utilizator:% s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Resetarea parolei pentru utilizatori:% s" 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 17719c82a2..5154a9e65f 100644 --- a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po @@ -1,52 +1,55 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Управление пользователями" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -58,7 +61,7 @@ msgstr "Новый пароль" msgid "Confirm password" msgstr "Подтвердите пароль" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -70,15 +73,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -118,107 +121,112 @@ msgstr "Редактирование существующих пользоват msgid "View existing users" msgstr "Просмотр существующих пользователей" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Пользователь \"%s\" создан." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Должен быть хотя бы один пользователь." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Удаление суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." +msgstr "" +"Удаление суперпользователя и персонала не допускается, используйте " +"интерфейс администратора для этих случаев." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Пользователь \"%s\" удален." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Ошибка при удалении пользователя \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "Пароли не совпадают, попробуйте еще раз." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Сброс паролей суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." +msgstr "" +"Сброс паролей суперпользователя и персонала не допускается, используйте " +"интерфейс администратора для этих случаев." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Пароль пользователя %s сброшен." -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "Ошибка сброса пароля для пользователя \"%(user)s\": %(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Сброс пароля пользователя: %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Сброс пароля для пользователей: %s" 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 e3308e1ae5..fcfb33d2df 100644 --- a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po @@ -1,52 +1,54 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -58,7 +60,7 @@ msgstr "" msgid "Confirm password" msgstr "" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -70,15 +72,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -118,107 +120,108 @@ msgstr "" msgid "View existing users" msgstr "" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "" -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "" -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." msgstr "" -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "" -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "" -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." msgstr "" -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "" -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "" 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 633cb2317d..a9ba727fbc 100644 --- a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,45 +9,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "Quản lý người dùng" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -59,7 +60,7 @@ msgstr "Mật khẩu mới" msgid "Confirm password" msgstr "Xác nhận mật khẩu" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -71,15 +72,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -119,107 +120,112 @@ msgstr "Sửa người dùng" msgid "View existing users" msgstr "Xem người dùng" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "Người dùng \"%s\" được tạo thành công." -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "Cần cung cấp ít nhất một user." -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user deleting is not allowed, use the admin interface " +"for these cases." -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "Người dùng \"%s\" đã xóa thành công." -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "Lỗi xóa người dùng \"%(user)s\": %(error)s" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "Mật khẩu không khớp, thử lại." -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user password reseting is not allowed, use the admin " +"interface for these cases." -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "Reset mật khẩu thành công: %s" -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "Lỗi reset mật khẩu \"%(user)s\": %(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "Đang reset mật khẩu: %s" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "Đang reset mật khẩu: %s" diff --git a/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po index 1839f17da7..94682f4537 100644 --- a/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,45 +9,46 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-24 16:28-0400\n" +"POT-Creation-Date: 2016-03-21 16:48-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:28 permissions.py:7 +#: apps.py:29 permissions.py:7 msgid "User management" msgstr "用户管理" -#: apps.py:36 +#: apps.py:39 msgid "All the groups." msgstr "" -#: apps.py:40 +#: apps.py:43 msgid "All the users." msgstr "" -#: apps.py:45 links.py:30 +#: apps.py:48 links.py:30 msgid "Members" msgstr "" -#: apps.py:49 +#: apps.py:52 msgid "Full name" msgstr "" -#: apps.py:52 +#: apps.py:55 msgid "Email" msgstr "" -#: apps.py:55 +#: apps.py:58 msgid "Active" msgstr "" -#: apps.py:61 +#: apps.py:64 msgid "Has usable password?" msgstr "" @@ -59,7 +60,7 @@ msgstr "新密码" msgid "Confirm password" msgstr "确认密码" -#: links.py:14 views.py:28 +#: links.py:14 views.py:29 msgid "Create new group" msgstr "" @@ -71,15 +72,15 @@ msgstr "" msgid "Edit" msgstr "" -#: links.py:26 links.py:34 links.py:50 views.py:51 +#: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" msgstr "" -#: links.py:38 views.py:184 +#: links.py:38 views.py:197 msgid "Create new user" msgstr "" -#: links.py:54 links.py:70 views.py:156 +#: links.py:54 links.py:70 views.py:169 msgid "Users" msgstr "" @@ -119,107 +120,108 @@ msgstr "编辑现有用户" msgid "View existing users" msgstr "查看现有用户" -#: views.py:44 +#: views.py:45 #, python-format msgid "Edit group: %s" msgstr "" -#: views.py:65 +#: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" -#: views.py:71 views.py:120 -msgid "Available groups" +#: views.py:72 +msgid "Available users" msgstr "" -#: views.py:72 +#: views.py:73 msgid "Members of groups" msgstr "" -#: views.py:81 +#: views.py:94 #, python-format msgid "Members of group: %s" msgstr "" -#: views.py:114 +#: views.py:127 #, python-format msgid "Edit user: %s" msgstr "" -#: views.py:121 +#: views.py:133 +msgid "Available groups" +msgstr "" + +#: views.py:134 msgid "Groups joined" msgstr "" -#: views.py:130 +#: views.py:143 #, python-format msgid "Groups of user: %s" msgstr "" -#: views.py:175 +#: views.py:188 #, python-format msgid "User \"%s\" created successfully." msgstr "创建用户\"%s\"成功" -#: views.py:203 views.py:271 +#: views.py:213 views.py:284 msgid "Must provide at least one user." msgstr "必须提供至少一个用户" -#: views.py:220 +#: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." msgstr "不允许删除超级和管理用户,请使用管理接口来操作。" -#: views.py:227 +#: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." msgstr "删除用户\"%s\"成功" -#: views.py:231 +#: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" msgstr "删除用户: \"%(user)s\": %(error)s出错。" -#: views.py:245 +#: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" -#: views.py:247 +#: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" -#: views.py:286 +#: views.py:300 msgid "Passwords do not match, try again." msgstr "密码不匹配,请再试一次" -#: views.py:294 +#: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." msgstr "不允许重置超级和管理用户的密码,请使用管理接口来操作。" -#: views.py:304 +#: views.py:319 #, python-format msgid "Successfull password reset for user: %s." msgstr "重置用户:%s密码成功" -#: views.py:310 +#: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" msgstr "重置用户\"%(user)s\"密码出错:%(error)s" -#: views.py:327 +#: views.py:342 #, python-format msgid "Reseting password for user: %s" msgstr "重置用户%s的密码" -#: views.py:329 +#: views.py:344 #, python-format msgid "Reseting password for users: %s" msgstr "重置用户:%s的密码" From 3d970036b220963234b2274fdaae8f9e5a92382d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 17:38:15 -0400 Subject: [PATCH 118/205] Sync translations with Transifex --- .../apps/acls/locale/ar/LC_MESSAGES/django.mo | Bin 537 -> 863 bytes .../apps/acls/locale/ar/LC_MESSAGES/django.po | 35 +- .../apps/acls/locale/bg/LC_MESSAGES/django.mo | Bin 457 -> 759 bytes .../apps/acls/locale/bg/LC_MESSAGES/django.po | 28 +- .../acls/locale/bs_BA/LC_MESSAGES/django.mo | Bin 560 -> 891 bytes .../acls/locale/bs_BA/LC_MESSAGES/django.po | 35 +- .../apps/acls/locale/da/LC_MESSAGES/django.mo | Bin 454 -> 515 bytes .../apps/acls/locale/da/LC_MESSAGES/django.po | 22 +- .../acls/locale/de_DE/LC_MESSAGES/django.mo | Bin 1742 -> 1745 bytes .../acls/locale/de_DE/LC_MESSAGES/django.po | 23 +- .../apps/acls/locale/en/LC_MESSAGES/django.mo | Bin 703 -> 703 bytes .../apps/acls/locale/es/LC_MESSAGES/django.mo | Bin 1560 -> 1560 bytes .../apps/acls/locale/es/LC_MESSAGES/django.po | 18 +- .../apps/acls/locale/fa/LC_MESSAGES/django.mo | Bin 448 -> 1125 bytes .../apps/acls/locale/fa/LC_MESSAGES/django.po | 42 +- .../apps/acls/locale/fr/LC_MESSAGES/django.mo | Bin 453 -> 1710 bytes .../apps/acls/locale/fr/LC_MESSAGES/django.po | 59 +- .../apps/acls/locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 520 bytes .../apps/acls/locale/hu/LC_MESSAGES/django.po | 22 +- .../apps/acls/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../apps/acls/locale/it/LC_MESSAGES/django.mo | Bin 455 -> 1193 bytes .../apps/acls/locale/it/LC_MESSAGES/django.po | 46 +- .../acls/locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 1740 bytes .../acls/locale/nl_NL/LC_MESSAGES/django.po | 59 +- .../apps/acls/locale/pl/LC_MESSAGES/django.mo | Bin 512 -> 1700 bytes .../apps/acls/locale/pl/LC_MESSAGES/django.po | 62 +-- .../apps/acls/locale/pt/LC_MESSAGES/django.mo | Bin 458 -> 824 bytes .../apps/acls/locale/pt/LC_MESSAGES/django.po | 34 +- .../acls/locale/pt_BR/LC_MESSAGES/django.mo | Bin 472 -> 1062 bytes .../acls/locale/pt_BR/LC_MESSAGES/django.po | 42 +- .../acls/locale/ro_RO/LC_MESSAGES/django.mo | Bin 513 -> 844 bytes .../acls/locale/ro_RO/LC_MESSAGES/django.po | 35 +- .../apps/acls/locale/ru/LC_MESSAGES/django.mo | Bin 593 -> 1027 bytes .../apps/acls/locale/ru/LC_MESSAGES/django.po | 36 +- .../acls/locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 560 bytes .../acls/locale/sl_SI/LC_MESSAGES/django.po | 23 +- .../acls/locale/vi_VN/LC_MESSAGES/django.mo | Bin 468 -> 528 bytes .../acls/locale/vi_VN/LC_MESSAGES/django.po | 22 +- .../acls/locale/zh_CN/LC_MESSAGES/django.mo | Bin 462 -> 902 bytes .../acls/locale/zh_CN/LC_MESSAGES/django.po | 36 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 537 -> 2487 bytes .../locale/ar/LC_MESSAGES/django.po | 72 ++- .../locale/bg/LC_MESSAGES/django.mo | Bin 457 -> 2240 bytes .../locale/bg/LC_MESSAGES/django.po | 59 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 560 -> 2409 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 72 ++- .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 688 bytes .../locale/da/LC_MESSAGES/django.po | 25 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4501 -> 4501 bytes .../locale/de_DE/LC_MESSAGES/django.po | 33 +- .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 3866 -> 3866 bytes .../locale/es/LC_MESSAGES/django.po | 24 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 448 -> 2975 bytes .../locale/fa/LC_MESSAGES/django.po | 85 ++- .../locale/fr/LC_MESSAGES/django.mo | Bin 453 -> 4586 bytes .../locale/fr/LC_MESSAGES/django.po | 124 ++--- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 754 bytes .../locale/hu/LC_MESSAGES/django.po | 27 +- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 542 bytes .../locale/id/LC_MESSAGES/django.po | 17 +- .../locale/it/LC_MESSAGES/django.mo | Bin 455 -> 1600 bytes .../locale/it/LC_MESSAGES/django.po | 59 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 4451 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 124 ++--- .../locale/pl/LC_MESSAGES/django.mo | Bin 512 -> 4491 bytes .../locale/pl/LC_MESSAGES/django.po | 128 ++--- .../locale/pt/LC_MESSAGES/django.mo | Bin 458 -> 2104 bytes .../locale/pt/LC_MESSAGES/django.po | 69 ++- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 472 -> 2755 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 83 ++- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 513 -> 2388 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 72 ++- .../locale/ru/LC_MESSAGES/django.mo | Bin 593 -> 2900 bytes .../locale/ru/LC_MESSAGES/django.po | 73 ++- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 560 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 18 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 468 -> 1841 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 49 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 462 -> 2393 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 75 ++- .../locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 977 bytes .../locale/ar/LC_MESSAGES/django.po | 20 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 808 bytes .../locale/bg/LC_MESSAGES/django.po | 15 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 901 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 20 +- .../locale/da/LC_MESSAGES/django.mo | Bin 464 -> 502 bytes .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1418 -> 1421 bytes .../locale/de_DE/LC_MESSAGES/django.po | 19 +- .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1446 -> 1446 bytes .../locale/es/LC_MESSAGES/django.po | 17 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 458 -> 1201 bytes .../locale/fa/LC_MESSAGES/django.po | 23 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 463 -> 1434 bytes .../locale/fr/LC_MESSAGES/django.po | 32 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 513 bytes .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.mo | Bin 461 -> 879 bytes .../locale/id/LC_MESSAGES/django.po | 19 +- .../locale/it/LC_MESSAGES/django.mo | Bin 465 -> 1114 bytes .../locale/it/LC_MESSAGES/django.po | 23 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 1426 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 32 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 522 -> 1392 bytes .../locale/pl/LC_MESSAGES/django.po | 35 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 468 -> 919 bytes .../locale/pt/LC_MESSAGES/django.po | 26 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 482 -> 1132 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 23 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 875 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 22 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 998 bytes .../locale/ru/LC_MESSAGES/django.po | 23 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 754 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 17 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 1010 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 23 +- .../checkouts/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 2288 bytes .../checkouts/locale/ar/LC_MESSAGES/django.po | 112 ++-- .../checkouts/locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 2699 bytes .../checkouts/locale/bg/LC_MESSAGES/django.po | 109 ++-- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 2261 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 112 ++-- .../checkouts/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 490 bytes .../checkouts/locale/da/LC_MESSAGES/django.po | 67 ++- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3809 -> 3350 bytes .../locale/de_DE/LC_MESSAGES/django.po | 54 +- .../checkouts/locale/en/LC_MESSAGES/django.mo | Bin 2377 -> 2125 bytes .../checkouts/locale/es/LC_MESSAGES/django.mo | Bin 3965 -> 3499 bytes .../checkouts/locale/es/LC_MESSAGES/django.po | 52 +- .../checkouts/locale/fa/LC_MESSAGES/django.mo | Bin 458 -> 3462 bytes .../checkouts/locale/fa/LC_MESSAGES/django.po | 135 +++-- .../checkouts/locale/fr/LC_MESSAGES/django.mo | Bin 463 -> 3659 bytes .../checkouts/locale/fr/LC_MESSAGES/django.po | 144 ++--- .../checkouts/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 500 bytes .../checkouts/locale/hu/LC_MESSAGES/django.po | 67 ++- .../checkouts/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 489 bytes .../checkouts/locale/id/LC_MESSAGES/django.po | 67 ++- .../checkouts/locale/it/LC_MESSAGES/django.mo | Bin 465 -> 3019 bytes .../checkouts/locale/it/LC_MESSAGES/django.po | 135 +++-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 1626 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 102 ++-- .../checkouts/locale/pl/LC_MESSAGES/django.mo | Bin 522 -> 3494 bytes .../checkouts/locale/pl/LC_MESSAGES/django.po | 147 ++--- .../checkouts/locale/pt/LC_MESSAGES/django.mo | Bin 468 -> 546 bytes .../checkouts/locale/pt/LC_MESSAGES/django.po | 71 ++- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 482 -> 3070 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 135 +++-- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 2272 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 112 ++-- .../checkouts/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 2766 bytes .../checkouts/locale/ru/LC_MESSAGES/django.po | 113 ++-- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 526 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 64 ++- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 512 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 67 ++- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 1986 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 109 ++-- .../common/locale/ar/LC_MESSAGES/django.mo | Bin 912 -> 1240 bytes .../common/locale/ar/LC_MESSAGES/django.po | 56 +- .../common/locale/bg/LC_MESSAGES/django.mo | Bin 617 -> 1062 bytes .../common/locale/bg/LC_MESSAGES/django.po | 55 +- .../common/locale/bs_BA/LC_MESSAGES/django.mo | Bin 897 -> 1209 bytes .../common/locale/bs_BA/LC_MESSAGES/django.po | 56 +- .../common/locale/da/LC_MESSAGES/django.mo | Bin 454 -> 674 bytes .../common/locale/da/LC_MESSAGES/django.po | 49 +- .../common/locale/de_DE/LC_MESSAGES/django.mo | Bin 4703 -> 3771 bytes .../common/locale/de_DE/LC_MESSAGES/django.po | 98 ++-- .../common/locale/en/LC_MESSAGES/django.mo | Bin 771 -> 771 bytes .../common/locale/es/LC_MESSAGES/django.mo | Bin 3131 -> 3267 bytes .../common/locale/es/LC_MESSAGES/django.po | 131 ++--- .../common/locale/fa/LC_MESSAGES/django.mo | Bin 3434 -> 2702 bytes .../common/locale/fa/LC_MESSAGES/django.po | 96 ++-- .../common/locale/fr/LC_MESSAGES/django.mo | Bin 3317 -> 4022 bytes .../common/locale/fr/LC_MESSAGES/django.po | 126 ++--- .../common/locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 622 bytes .../common/locale/hu/LC_MESSAGES/django.po | 45 +- .../common/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 1394 bytes .../common/locale/id/LC_MESSAGES/django.po | 75 +-- .../common/locale/it/LC_MESSAGES/django.mo | Bin 3106 -> 2294 bytes .../common/locale/it/LC_MESSAGES/django.po | 94 ++-- .../common/locale/nl_NL/LC_MESSAGES/django.mo | Bin 1734 -> 1050 bytes .../common/locale/nl_NL/LC_MESSAGES/django.po | 94 ++-- .../common/locale/pl/LC_MESSAGES/django.mo | Bin 3123 -> 3748 bytes .../common/locale/pl/LC_MESSAGES/django.po | 148 ++--- .../common/locale/pt/LC_MESSAGES/django.mo | Bin 795 -> 1152 bytes .../common/locale/pt/LC_MESSAGES/django.po | 53 +- .../common/locale/pt_BR/LC_MESSAGES/django.mo | Bin 3098 -> 2497 bytes .../common/locale/pt_BR/LC_MESSAGES/django.po | 100 ++-- .../common/locale/ro_RO/LC_MESSAGES/django.mo | Bin 868 -> 1174 bytes .../common/locale/ro_RO/LC_MESSAGES/django.po | 56 +- .../common/locale/ru/LC_MESSAGES/django.mo | Bin 1024 -> 1940 bytes .../common/locale/ru/LC_MESSAGES/django.po | 63 ++- .../common/locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 598 bytes .../common/locale/sl_SI/LC_MESSAGES/django.po | 44 +- .../common/locale/vi_VN/LC_MESSAGES/django.mo | Bin 822 -> 1037 bytes .../common/locale/vi_VN/LC_MESSAGES/django.po | 47 +- .../common/locale/zh_CN/LC_MESSAGES/django.mo | Bin 1628 -> 1069 bytes .../common/locale/zh_CN/LC_MESSAGES/django.po | 98 ++-- .../converter/locale/ar/LC_MESSAGES/django.mo | Bin 759 -> 835 bytes .../converter/locale/ar/LC_MESSAGES/django.po | 40 +- .../converter/locale/bg/LC_MESSAGES/django.mo | Bin 605 -> 701 bytes .../converter/locale/bg/LC_MESSAGES/django.po | 37 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 758 -> 828 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 40 +- .../converter/locale/da/LC_MESSAGES/django.mo | Bin 454 -> 488 bytes .../converter/locale/da/LC_MESSAGES/django.po | 35 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 2949 -> 2949 bytes .../locale/de_DE/LC_MESSAGES/django.po | 48 +- .../converter/locale/en/LC_MESSAGES/django.mo | Bin 641 -> 641 bytes .../converter/locale/es/LC_MESSAGES/django.mo | Bin 1766 -> 1766 bytes .../converter/locale/es/LC_MESSAGES/django.po | 33 +- .../converter/locale/fa/LC_MESSAGES/django.mo | Bin 793 -> 1250 bytes .../converter/locale/fa/LC_MESSAGES/django.po | 51 +- .../converter/locale/fr/LC_MESSAGES/django.mo | Bin 761 -> 3092 bytes .../converter/locale/fr/LC_MESSAGES/django.po | 86 +-- .../converter/locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../converter/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../converter/locale/it/LC_MESSAGES/django.mo | Bin 754 -> 1117 bytes .../converter/locale/it/LC_MESSAGES/django.po | 49 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 686 -> 791 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 39 +- .../converter/locale/pl/LC_MESSAGES/django.mo | Bin 622 -> 3021 bytes .../converter/locale/pl/LC_MESSAGES/django.po | 97 ++-- .../converter/locale/pt/LC_MESSAGES/django.mo | Bin 651 -> 753 bytes .../converter/locale/pt/LC_MESSAGES/django.po | 39 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 769 -> 1237 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 53 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 707 -> 780 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 40 +- .../converter/locale/ru/LC_MESSAGES/django.mo | Bin 837 -> 974 bytes .../converter/locale/ru/LC_MESSAGES/django.po | 43 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 559 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 38 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 468 -> 529 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 37 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 642 -> 686 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 35 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 2277 -> 2359 bytes .../locale/ar/LC_MESSAGES/django.po | 23 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 2853 -> 2994 bytes .../locale/bg/LC_MESSAGES/django.po | 22 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2357 -> 2438 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 27 +- .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 454 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3858 -> 3858 bytes .../locale/de_DE/LC_MESSAGES/django.po | 29 +- .../locale/en/LC_MESSAGES/django.mo | Bin 2197 -> 2197 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 2874 -> 2972 bytes .../locale/es/LC_MESSAGES/django.po | 38 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 3140 -> 3255 bytes .../locale/fa/LC_MESSAGES/django.po | 22 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 2822 -> 3811 bytes .../locale/fr/LC_MESSAGES/django.po | 49 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 497 bytes .../locale/hu/LC_MESSAGES/django.po | 18 +- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 2776 -> 2874 bytes .../locale/it/LC_MESSAGES/django.po | 30 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 575 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 22 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 2773 -> 2833 bytes .../locale/pl/LC_MESSAGES/django.po | 30 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 2376 -> 2495 bytes .../locale/pt/LC_MESSAGES/django.po | 28 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1869 -> 1980 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 24 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2416 -> 2498 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 36 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 2860 -> 2997 bytes .../locale/ru/LC_MESSAGES/django.po | 32 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 2273 -> 2308 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 20 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2163 -> 2193 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 20 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 537 -> 995 bytes .../locale/ar/LC_MESSAGES/django.po | 32 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 457 -> 998 bytes .../locale/bg/LC_MESSAGES/django.po | 29 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 560 -> 958 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 32 +- .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 850 bytes .../locale/da/LC_MESSAGES/django.po | 29 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1434 -> 1434 bytes .../locale/de_DE/LC_MESSAGES/django.po | 13 +- .../locale/en/LC_MESSAGES/django.mo | Bin 743 -> 743 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1438 -> 1438 bytes .../locale/es/LC_MESSAGES/django.po | 13 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 448 -> 1181 bytes .../locale/fa/LC_MESSAGES/django.po | 39 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 453 -> 1528 bytes .../locale/fr/LC_MESSAGES/django.po | 50 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 855 bytes .../locale/hu/LC_MESSAGES/django.po | 27 +- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 840 bytes .../locale/id/LC_MESSAGES/django.po | 27 +- .../locale/it/LC_MESSAGES/django.mo | Bin 455 -> 1051 bytes .../locale/it/LC_MESSAGES/django.po | 37 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 930 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 31 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 512 -> 1527 bytes .../locale/pl/LC_MESSAGES/django.po | 53 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 458 -> 906 bytes .../locale/pt/LC_MESSAGES/django.po | 31 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 472 -> 1157 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 39 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 513 -> 922 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 32 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 593 -> 1141 bytes .../locale/ru/LC_MESSAGES/django.po | 33 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 860 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 28 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 468 -> 881 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 29 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 462 -> 829 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 29 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 2147 -> 2042 bytes .../locale/ar/LC_MESSAGES/django.po | 60 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 1076 -> 1487 bytes .../locale/bg/LC_MESSAGES/django.po | 67 ++- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2226 -> 2100 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 73 ++- .../locale/da/LC_MESSAGES/django.mo | Bin 508 -> 727 bytes .../locale/da/LC_MESSAGES/django.po | 59 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 5444 -> 4913 bytes .../locale/de_DE/LC_MESSAGES/django.po | 81 ++- .../locale/en/LC_MESSAGES/django.mo | Bin 2021 -> 1731 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 4209 -> 3700 bytes .../locale/es/LC_MESSAGES/django.po | 76 ++- .../locale/fa/LC_MESSAGES/django.mo | Bin 4551 -> 4050 bytes .../locale/fa/LC_MESSAGES/django.po | 69 +-- .../locale/fr/LC_MESSAGES/django.mo | Bin 4260 -> 5155 bytes .../locale/fr/LC_MESSAGES/django.po | 108 ++-- .../locale/hu/LC_MESSAGES/django.mo | Bin 511 -> 727 bytes .../locale/hu/LC_MESSAGES/django.po | 59 +- .../locale/id/LC_MESSAGES/django.mo | Bin 505 -> 714 bytes .../locale/id/LC_MESSAGES/django.po | 57 +- .../locale/it/LC_MESSAGES/django.mo | Bin 4115 -> 3718 bytes .../locale/it/LC_MESSAGES/django.po | 77 ++- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 2086 -> 2001 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 69 +-- .../locale/pl/LC_MESSAGES/django.mo | Bin 2468 -> 2785 bytes .../locale/pl/LC_MESSAGES/django.po | 79 +-- .../locale/pt/LC_MESSAGES/django.mo | Bin 2174 -> 2152 bytes .../locale/pt/LC_MESSAGES/django.po | 78 +-- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 4028 -> 3643 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 76 ++- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2261 -> 2142 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 76 ++- .../locale/ru/LC_MESSAGES/django.mo | Bin 2776 -> 2662 bytes .../locale/ru/LC_MESSAGES/django.po | 77 ++- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 580 -> 806 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 62 ++- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 522 -> 670 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 61 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1945 -> 1791 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 56 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 1233 -> 1266 bytes .../locale/ar/LC_MESSAGES/django.po | 14 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 1393 -> 1885 bytes .../locale/bg/LC_MESSAGES/django.po | 19 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1274 -> 1303 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 14 +- .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 489 bytes .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 2602 -> 2602 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.mo | Bin 1153 -> 1153 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 2423 -> 2423 bytes .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 2546 -> 2546 bytes .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 2487 -> 2637 bytes .../locale/fr/LC_MESSAGES/django.po | 14 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 492 bytes .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 2334 -> 2334 bytes .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 507 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 1208 -> 1292 bytes .../locale/pl/LC_MESSAGES/django.po | 16 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 1197 -> 1272 bytes .../locale/pt/LC_MESSAGES/django.po | 13 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 2438 -> 2438 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 1240 -> 1271 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 1449 -> 1897 bytes .../locale/ru/LC_MESSAGES/django.po | 23 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 560 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1196 -> 1222 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 11 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1415 -> 1415 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 537 -> 737 bytes .../locale/ar/LC_MESSAGES/django.po | 22 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 457 -> 686 bytes .../locale/bg/LC_MESSAGES/django.po | 19 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 560 -> 746 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 22 +- .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 551 bytes .../locale/da/LC_MESSAGES/django.po | 15 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4170 -> 4181 bytes .../locale/de_DE/LC_MESSAGES/django.po | 22 +- .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 3661 -> 3661 bytes .../locale/es/LC_MESSAGES/django.po | 13 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 3882 -> 3882 bytes .../locale/fa/LC_MESSAGES/django.po | 13 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 3682 -> 4591 bytes .../locale/fr/LC_MESSAGES/django.po | 35 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 563 bytes .../locale/hu/LC_MESSAGES/django.po | 15 +- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 522 bytes .../locale/id/LC_MESSAGES/django.po | 13 +- .../locale/it/LC_MESSAGES/django.mo | Bin 455 -> 855 bytes .../locale/it/LC_MESSAGES/django.po | 29 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 726 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 23 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 2415 -> 2483 bytes .../locale/pl/LC_MESSAGES/django.po | 14 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 458 -> 705 bytes .../locale/pt/LC_MESSAGES/django.po | 23 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3430 -> 3483 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 15 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 513 -> 708 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 22 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 593 -> 847 bytes .../locale/ru/LC_MESSAGES/django.po | 25 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 593 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 18 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 468 -> 609 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 19 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 462 -> 592 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 19 +- .../documents/locale/ar/LC_MESSAGES/django.mo | Bin 537 -> 5721 bytes .../documents/locale/ar/LC_MESSAGES/django.po | 276 ++++----- .../documents/locale/bg/LC_MESSAGES/django.mo | Bin 457 -> 6745 bytes .../documents/locale/bg/LC_MESSAGES/django.po | 271 ++++----- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 560 -> 5160 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 276 ++++----- .../documents/locale/da/LC_MESSAGES/django.mo | Bin 454 -> 4944 bytes .../documents/locale/da/LC_MESSAGES/django.po | 269 +++++---- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 15998 -> 15334 bytes .../locale/de_DE/LC_MESSAGES/django.po | 239 ++++---- .../documents/locale/en/LC_MESSAGES/django.mo | Bin 4825 -> 4825 bytes .../documents/locale/es/LC_MESSAGES/django.mo | Bin 9339 -> 13236 bytes .../documents/locale/es/LC_MESSAGES/django.po | 262 ++++----- .../documents/locale/fa/LC_MESSAGES/django.mo | Bin 448 -> 9226 bytes .../documents/locale/fa/LC_MESSAGES/django.po | 389 +++++++------ .../documents/locale/fr/LC_MESSAGES/django.mo | Bin 453 -> 16227 bytes .../documents/locale/fr/LC_MESSAGES/django.po | 522 +++++++++--------- .../documents/locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 5183 bytes .../documents/locale/hu/LC_MESSAGES/django.po | 265 +++++---- .../documents/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 4843 bytes .../documents/locale/id/LC_MESSAGES/django.po | 257 +++++---- .../documents/locale/it/LC_MESSAGES/django.mo | Bin 455 -> 8615 bytes .../documents/locale/it/LC_MESSAGES/django.po | 389 +++++++------ .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 5366 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 279 +++++----- .../documents/locale/pl/LC_MESSAGES/django.mo | Bin 512 -> 6102 bytes .../documents/locale/pl/LC_MESSAGES/django.po | 359 ++++++------ .../documents/locale/pt/LC_MESSAGES/django.mo | Bin 458 -> 5041 bytes .../documents/locale/pt/LC_MESSAGES/django.po | 273 ++++----- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 472 -> 8574 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 385 +++++++------ .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 513 -> 5203 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 276 ++++----- .../documents/locale/ru/LC_MESSAGES/django.mo | Bin 593 -> 6629 bytes .../documents/locale/ru/LC_MESSAGES/django.po | 279 +++++----- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 4983 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 266 +++++---- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 468 -> 2980 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 229 ++++---- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 462 -> 4579 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 271 ++++----- .../locale/ar/LC_MESSAGES/django.mo | Bin 1000 -> 1034 bytes .../locale/ar/LC_MESSAGES/django.po | 17 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 737 -> 1026 bytes .../locale/bg/LC_MESSAGES/django.po | 18 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 989 -> 1019 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 17 +- .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 490 bytes .../locale/da/LC_MESSAGES/django.po | 12 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1353 -> 1353 bytes .../locale/de_DE/LC_MESSAGES/django.po | 15 +- .../locale/en/LC_MESSAGES/django.mo | Bin 847 -> 847 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1374 -> 1374 bytes .../locale/es/LC_MESSAGES/django.po | 12 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 1385 -> 1385 bytes .../locale/fa/LC_MESSAGES/django.po | 12 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 1324 -> 1409 bytes .../locale/fr/LC_MESSAGES/django.po | 18 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 902 -> 937 bytes .../locale/hu/LC_MESSAGES/django.po | 14 +- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 489 bytes .../locale/id/LC_MESSAGES/django.po | 12 +- .../locale/it/LC_MESSAGES/django.mo | Bin 875 -> 929 bytes .../locale/it/LC_MESSAGES/django.po | 16 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 860 -> 891 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 14 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 1359 -> 1448 bytes .../locale/pl/LC_MESSAGES/django.po | 22 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 679 -> 948 bytes .../locale/pt/LC_MESSAGES/django.po | 20 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1320 -> 1320 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 12 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 926 -> 958 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 17 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 1206 -> 1252 bytes .../locale/ru/LC_MESSAGES/django.po | 22 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 703 -> 747 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 14 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 826 -> 854 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 14 +- .../events/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 621 bytes .../events/locale/ar/LC_MESSAGES/django.po | 14 +- .../events/locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 561 bytes .../events/locale/bg/LC_MESSAGES/django.po | 11 +- .../events/locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 644 bytes .../events/locale/bs_BA/LC_MESSAGES/django.po | 14 +- .../events/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 540 bytes .../events/locale/da/LC_MESSAGES/django.po | 11 +- .../events/locale/de_DE/LC_MESSAGES/django.mo | Bin 1078 -> 1096 bytes .../events/locale/de_DE/LC_MESSAGES/django.po | 11 +- .../events/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../events/locale/es/LC_MESSAGES/django.mo | Bin 1066 -> 1066 bytes .../events/locale/es/LC_MESSAGES/django.po | 9 +- .../events/locale/fa/LC_MESSAGES/django.mo | Bin 1112 -> 1112 bytes .../events/locale/fa/LC_MESSAGES/django.po | 9 +- .../events/locale/fr/LC_MESSAGES/django.mo | Bin 1082 -> 1117 bytes .../events/locale/fr/LC_MESSAGES/django.po | 16 +- .../events/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../events/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../events/locale/it/LC_MESSAGES/django.mo | Bin 465 -> 613 bytes .../events/locale/it/LC_MESSAGES/django.po | 15 +- .../events/locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 517 bytes .../events/locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../events/locale/pl/LC_MESSAGES/django.mo | Bin 1118 -> 1118 bytes .../events/locale/pl/LC_MESSAGES/django.po | 12 +- .../events/locale/pt/LC_MESSAGES/django.mo | Bin 468 -> 1031 bytes .../events/locale/pt/LC_MESSAGES/django.po | 29 +- .../events/locale/pt_BR/LC_MESSAGES/django.mo | Bin 1072 -> 1072 bytes .../events/locale/pt_BR/LC_MESSAGES/django.po | 10 +- .../events/locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 598 bytes .../events/locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../events/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 688 bytes .../events/locale/ru/LC_MESSAGES/django.po | 15 +- .../events/locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 569 bytes .../events/locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../events/locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 558 bytes .../events/locale/vi_VN/LC_MESSAGES/django.po | 11 +- .../events/locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 548 bytes .../events/locale/zh_CN/LC_MESSAGES/django.po | 11 +- .../folders/locale/ar/LC_MESSAGES/django.mo | Bin 1825 -> 1598 bytes .../folders/locale/ar/LC_MESSAGES/django.po | 49 +- .../folders/locale/bg/LC_MESSAGES/django.mo | Bin 1751 -> 1617 bytes .../folders/locale/bg/LC_MESSAGES/django.po | 48 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1680 -> 1472 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 49 +- .../folders/locale/da/LC_MESSAGES/django.mo | Bin 1554 -> 1326 bytes .../folders/locale/da/LC_MESSAGES/django.po | 44 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3346 -> 2994 bytes .../locale/de_DE/LC_MESSAGES/django.po | 47 +- .../folders/locale/en/LC_MESSAGES/django.mo | Bin 1585 -> 1297 bytes .../folders/locale/es/LC_MESSAGES/django.mo | Bin 2959 -> 2624 bytes .../folders/locale/es/LC_MESSAGES/django.po | 45 +- .../folders/locale/fa/LC_MESSAGES/django.mo | Bin 2601 -> 2305 bytes .../folders/locale/fa/LC_MESSAGES/django.po | 47 +- .../folders/locale/fr/LC_MESSAGES/django.mo | Bin 2569 -> 3146 bytes .../folders/locale/fr/LC_MESSAGES/django.po | 73 ++- .../folders/locale/hu/LC_MESSAGES/django.mo | Bin 1623 -> 1400 bytes .../folders/locale/hu/LC_MESSAGES/django.po | 44 +- .../folders/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 706 bytes .../folders/locale/id/LC_MESSAGES/django.po | 51 +- .../folders/locale/it/LC_MESSAGES/django.mo | Bin 1638 -> 1486 bytes .../folders/locale/it/LC_MESSAGES/django.po | 53 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 858 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 57 +- .../folders/locale/pl/LC_MESSAGES/django.mo | Bin 2496 -> 2955 bytes .../folders/locale/pl/LC_MESSAGES/django.po | 113 ++-- .../folders/locale/pt/LC_MESSAGES/django.mo | Bin 1518 -> 1466 bytes .../folders/locale/pt/LC_MESSAGES/django.po | 54 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 2205 -> 1998 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 51 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 1688 -> 1473 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 54 +- .../folders/locale/ru/LC_MESSAGES/django.mo | Bin 1985 -> 1725 bytes .../folders/locale/ru/LC_MESSAGES/django.po | 52 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 770 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 56 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1698 -> 1480 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 48 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1555 -> 1326 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 46 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 679 -> 759 bytes .../locale/ar/LC_MESSAGES/django.po | 16 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 664 -> 750 bytes .../locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 691 -> 764 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 16 +- .../locale/da/LC_MESSAGES/django.mo | Bin 591 -> 624 bytes .../locale/da/LC_MESSAGES/django.po | 11 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1117 -> 1135 bytes .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../locale/en/LC_MESSAGES/django.mo | Bin 599 -> 599 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1121 -> 1121 bytes .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 1101 -> 1101 bytes .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 1128 -> 1128 bytes .../locale/fr/LC_MESSAGES/django.po | 11 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 500 bytes .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 490 bytes .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.mo | Bin 455 -> 596 bytes .../locale/it/LC_MESSAGES/django.po | 15 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 514 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 871 -> 1202 bytes .../locale/pl/LC_MESSAGES/django.po | 21 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 603 -> 865 bytes .../locale/pt/LC_MESSAGES/django.po | 21 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1124 -> 1124 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 649 -> 719 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 16 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 756 -> 840 bytes .../locale/ru/LC_MESSAGES/django.po | 17 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 570 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 468 -> 544 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 11 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 684 -> 757 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 13 +- .../linking/locale/ar/LC_MESSAGES/django.mo | Bin 3004 -> 2695 bytes .../linking/locale/ar/LC_MESSAGES/django.po | 57 +- .../linking/locale/bg/LC_MESSAGES/django.mo | Bin 1579 -> 1692 bytes .../linking/locale/bg/LC_MESSAGES/django.po | 57 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2894 -> 2630 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 57 +- .../linking/locale/da/LC_MESSAGES/django.mo | Bin 454 -> 499 bytes .../linking/locale/da/LC_MESSAGES/django.po | 55 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 5487 -> 4921 bytes .../locale/de_DE/LC_MESSAGES/django.po | 56 +- .../linking/locale/en/LC_MESSAGES/django.mo | Bin 2735 -> 2371 bytes .../linking/locale/es/LC_MESSAGES/django.mo | Bin 4466 -> 3962 bytes .../linking/locale/es/LC_MESSAGES/django.po | 55 +- .../linking/locale/fa/LC_MESSAGES/django.mo | Bin 4682 -> 4174 bytes .../linking/locale/fa/LC_MESSAGES/django.po | 48 +- .../linking/locale/fr/LC_MESSAGES/django.mo | Bin 4516 -> 5080 bytes .../linking/locale/fr/LC_MESSAGES/django.po | 71 ++- .../linking/locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 504 bytes .../linking/locale/hu/LC_MESSAGES/django.po | 55 +- .../linking/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 493 bytes .../linking/locale/id/LC_MESSAGES/django.po | 55 +- .../linking/locale/it/LC_MESSAGES/django.mo | Bin 2909 -> 2755 bytes .../linking/locale/it/LC_MESSAGES/django.po | 62 ++- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 2841 -> 2727 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 60 +- .../linking/locale/pl/LC_MESSAGES/django.mo | Bin 1669 -> 4878 bytes .../linking/locale/pl/LC_MESSAGES/django.po | 157 +++--- .../linking/locale/pt/LC_MESSAGES/django.mo | Bin 3022 -> 2762 bytes .../linking/locale/pt/LC_MESSAGES/django.po | 58 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3890 -> 3925 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 59 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 3064 -> 2745 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 57 +- .../linking/locale/ru/LC_MESSAGES/django.mo | Bin 3412 -> 3207 bytes .../linking/locale/ru/LC_MESSAGES/django.po | 62 ++- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 570 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 58 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1979 -> 1916 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 56 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2766 -> 2299 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 49 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 583 bytes .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 503 bytes .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 603 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.mo | Bin 464 -> 498 bytes .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 732 -> 732 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 729 -> 729 bytes .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 458 -> 536 bytes .../locale/fa/LC_MESSAGES/django.po | 11 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 463 -> 767 bytes .../locale/fr/LC_MESSAGES/django.po | 24 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 465 -> 500 bytes .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 517 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 522 -> 557 bytes .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 468 -> 502 bytes .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 482 -> 548 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 11 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 557 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 639 bytes .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 569 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 512 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 508 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../mailer/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 673 bytes .../mailer/locale/ar/LC_MESSAGES/django.po | 12 +- .../mailer/locale/bg/LC_MESSAGES/django.mo | Bin 1492 -> 1492 bytes .../mailer/locale/bg/LC_MESSAGES/django.po | 9 +- .../mailer/locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 662 bytes .../mailer/locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../mailer/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 557 bytes .../mailer/locale/da/LC_MESSAGES/django.po | 9 +- .../mailer/locale/de_DE/LC_MESSAGES/django.mo | Bin 3231 -> 3231 bytes .../mailer/locale/de_DE/LC_MESSAGES/django.po | 35 +- .../mailer/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../mailer/locale/es/LC_MESSAGES/django.mo | Bin 2539 -> 2539 bytes .../mailer/locale/es/LC_MESSAGES/django.po | 29 +- .../mailer/locale/fa/LC_MESSAGES/django.mo | Bin 2307 -> 2490 bytes .../mailer/locale/fa/LC_MESSAGES/django.po | 15 +- .../mailer/locale/fr/LC_MESSAGES/django.mo | Bin 2163 -> 3296 bytes .../mailer/locale/fr/LC_MESSAGES/django.po | 32 +- .../mailer/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 565 bytes .../mailer/locale/hu/LC_MESSAGES/django.po | 9 +- .../mailer/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 603 bytes .../mailer/locale/id/LC_MESSAGES/django.po | 11 +- .../mailer/locale/it/LC_MESSAGES/django.mo | Bin 465 -> 635 bytes .../mailer/locale/it/LC_MESSAGES/django.po | 13 +- .../mailer/locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 625 bytes .../mailer/locale/nl_NL/LC_MESSAGES/django.po | 11 +- .../mailer/locale/pl/LC_MESSAGES/django.mo | Bin 2040 -> 2313 bytes .../mailer/locale/pl/LC_MESSAGES/django.po | 23 +- .../mailer/locale/pt/LC_MESSAGES/django.mo | Bin 468 -> 1400 bytes .../mailer/locale/pt/LC_MESSAGES/django.po | 31 +- .../mailer/locale/pt_BR/LC_MESSAGES/django.mo | Bin 2150 -> 2308 bytes .../mailer/locale/pt_BR/LC_MESSAGES/django.po | 18 +- .../mailer/locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 624 bytes .../mailer/locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../mailer/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 793 bytes .../mailer/locale/ru/LC_MESSAGES/django.po | 15 +- .../mailer/locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 632 bytes .../mailer/locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../mailer/locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 585 bytes .../mailer/locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../mailer/locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 557 bytes .../mailer/locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../metadata/locale/ar/LC_MESSAGES/django.mo | Bin 1979 -> 2824 bytes .../metadata/locale/ar/LC_MESSAGES/django.po | 102 ++-- .../metadata/locale/bg/LC_MESSAGES/django.mo | Bin 632 -> 1049 bytes .../metadata/locale/bg/LC_MESSAGES/django.po | 93 ++-- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1635 -> 2322 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 102 ++-- .../metadata/locale/da/LC_MESSAGES/django.mo | Bin 610 -> 1091 bytes .../metadata/locale/da/LC_MESSAGES/django.po | 95 ++-- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 8507 -> 8507 bytes .../locale/de_DE/LC_MESSAGES/django.po | 128 ++--- .../metadata/locale/en/LC_MESSAGES/django.mo | Bin 2011 -> 2011 bytes .../metadata/locale/es/LC_MESSAGES/django.mo | Bin 6190 -> 6270 bytes .../metadata/locale/es/LC_MESSAGES/django.po | 105 ++-- .../metadata/locale/fa/LC_MESSAGES/django.mo | Bin 6553 -> 6643 bytes .../metadata/locale/fa/LC_MESSAGES/django.po | 95 ++-- .../metadata/locale/fr/LC_MESSAGES/django.mo | Bin 6476 -> 9170 bytes .../metadata/locale/fr/LC_MESSAGES/django.po | 146 +++-- .../metadata/locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 705 bytes .../metadata/locale/hu/LC_MESSAGES/django.po | 87 +-- .../metadata/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 745 bytes .../metadata/locale/id/LC_MESSAGES/django.po | 89 +-- .../metadata/locale/it/LC_MESSAGES/django.mo | Bin 1583 -> 2435 bytes .../metadata/locale/it/LC_MESSAGES/django.po | 105 ++-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 952 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 99 ++-- .../metadata/locale/pl/LC_MESSAGES/django.mo | Bin 1730 -> 5693 bytes .../metadata/locale/pl/LC_MESSAGES/django.po | 167 +++--- .../metadata/locale/pt/LC_MESSAGES/django.mo | Bin 1594 -> 2391 bytes .../metadata/locale/pt/LC_MESSAGES/django.po | 101 ++-- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 5210 -> 5426 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 106 ++-- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 1662 -> 2393 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 100 ++-- .../metadata/locale/ru/LC_MESSAGES/django.mo | Bin 2067 -> 2949 bytes .../metadata/locale/ru/LC_MESSAGES/django.po | 101 ++-- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 815 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 92 +-- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1414 -> 1847 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 93 ++-- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1507 -> 2114 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 93 ++-- .../mirroring/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 547 bytes .../mirroring/locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../mirroring/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 464 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 858 -> 861 bytes .../locale/de_DE/LC_MESSAGES/django.po | 19 +- .../mirroring/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../mirroring/locale/es/LC_MESSAGES/django.mo | Bin 465 -> 872 bytes .../mirroring/locale/es/LC_MESSAGES/django.po | 18 +- .../mirroring/locale/fa/LC_MESSAGES/django.mo | Bin 458 -> 458 bytes .../mirroring/locale/fr/LC_MESSAGES/django.mo | Bin 463 -> 837 bytes .../mirroring/locale/fr/LC_MESSAGES/django.po | 18 +- .../mirroring/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../mirroring/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../mirroring/locale/it/LC_MESSAGES/django.mo | Bin 465 -> 528 bytes .../mirroring/locale/it/LC_MESSAGES/django.po | 14 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 483 bytes .../mirroring/locale/pl/LC_MESSAGES/django.mo | Bin 522 -> 522 bytes .../mirroring/locale/pt/LC_MESSAGES/django.mo | Bin 468 -> 468 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 482 -> 482 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 523 bytes .../mirroring/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 603 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 478 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 472 bytes .../apps/motd/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 620 bytes .../apps/motd/locale/ar/LC_MESSAGES/django.po | 20 +- .../apps/motd/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 549 bytes .../apps/motd/locale/bg/LC_MESSAGES/django.po | 17 +- .../motd/locale/bs_BA/LC_MESSAGES/django.mo | Bin 0 -> 636 bytes .../motd/locale/bs_BA/LC_MESSAGES/django.po | 18 +- .../apps/motd/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 499 bytes .../apps/motd/locale/da/LC_MESSAGES/django.po | 15 +- .../motd/locale/de_DE/LC_MESSAGES/django.mo | Bin 0 -> 704 bytes .../motd/locale/de_DE/LC_MESSAGES/django.po | 26 +- .../apps/motd/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 378 bytes .../apps/motd/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 1806 bytes .../apps/motd/locale/es/LC_MESSAGES/django.po | 60 +- .../apps/motd/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 664 bytes .../apps/motd/locale/fa/LC_MESSAGES/django.po | 23 +- .../apps/motd/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 680 bytes .../apps/motd/locale/fr/LC_MESSAGES/django.po | 25 +- .../apps/motd/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 502 bytes .../apps/motd/locale/hu/LC_MESSAGES/django.po | 15 +- .../apps/motd/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 461 bytes .../apps/motd/locale/id/LC_MESSAGES/django.po | 13 +- .../apps/motd/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 655 bytes .../apps/motd/locale/it/LC_MESSAGES/django.po | 23 +- .../motd/locale/nl_NL/LC_MESSAGES/django.mo | Bin 0 -> 625 bytes .../motd/locale/nl_NL/LC_MESSAGES/django.po | 22 +- .../apps/motd/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 703 bytes .../apps/motd/locale/pl/LC_MESSAGES/django.po | 26 +- .../apps/motd/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 599 bytes .../apps/motd/locale/pt/LC_MESSAGES/django.po | 21 +- .../motd/locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 664 bytes .../motd/locale/pt_BR/LC_MESSAGES/django.po | 23 +- .../motd/locale/ro_RO/LC_MESSAGES/django.mo | Bin 0 -> 593 bytes .../motd/locale/ro_RO/LC_MESSAGES/django.po | 18 +- .../apps/motd/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 735 bytes .../apps/motd/locale/ru/LC_MESSAGES/django.po | 22 +- .../motd/locale/sl_SI/LC_MESSAGES/django.mo | Bin 0 -> 570 bytes .../motd/locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../motd/locale/vi_VN/LC_MESSAGES/django.mo | Bin 0 -> 539 bytes .../motd/locale/vi_VN/LC_MESSAGES/django.po | 18 +- .../motd/locale/zh_CN/LC_MESSAGES/django.mo | Bin 0 -> 505 bytes .../motd/locale/zh_CN/LC_MESSAGES/django.po | 15 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 537 -> 537 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 560 -> 560 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 454 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 549 -> 549 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 535 -> 535 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 493 -> 493 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 493 -> 493 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 455 -> 455 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 473 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 550 -> 550 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 458 -> 458 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 512 -> 512 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 513 -> 513 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 593 -> 593 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 468 -> 468 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 462 -> 462 bytes .../apps/ocr/locale/ar/LC_MESSAGES/django.mo | Bin 1033 -> 1312 bytes .../apps/ocr/locale/ar/LC_MESSAGES/django.po | 105 ++-- .../apps/ocr/locale/bg/LC_MESSAGES/django.mo | Bin 827 -> 992 bytes .../apps/ocr/locale/bg/LC_MESSAGES/django.po | 89 ++- .../ocr/locale/bs_BA/LC_MESSAGES/django.mo | Bin 1052 -> 1324 bytes .../ocr/locale/bs_BA/LC_MESSAGES/django.po | 101 ++-- .../apps/ocr/locale/da/LC_MESSAGES/django.mo | Bin 958 -> 1218 bytes .../apps/ocr/locale/da/LC_MESSAGES/django.po | 97 ++-- .../ocr/locale/de_DE/LC_MESSAGES/django.mo | Bin 4898 -> 3800 bytes .../ocr/locale/de_DE/LC_MESSAGES/django.po | 92 ++- .../apps/ocr/locale/en/LC_MESSAGES/django.mo | Bin 953 -> 857 bytes .../apps/ocr/locale/es/LC_MESSAGES/django.mo | Bin 3016 -> 2891 bytes .../apps/ocr/locale/es/LC_MESSAGES/django.po | 98 ++-- .../apps/ocr/locale/fa/LC_MESSAGES/django.mo | Bin 2283 -> 2075 bytes .../apps/ocr/locale/fa/LC_MESSAGES/django.po | 85 +-- .../apps/ocr/locale/fr/LC_MESSAGES/django.mo | Bin 2333 -> 3888 bytes .../apps/ocr/locale/fr/LC_MESSAGES/django.po | 141 ++--- .../apps/ocr/locale/hu/LC_MESSAGES/django.mo | Bin 587 -> 710 bytes .../apps/ocr/locale/hu/LC_MESSAGES/django.po | 91 ++- .../apps/ocr/locale/id/LC_MESSAGES/django.mo | Bin 581 -> 690 bytes .../apps/ocr/locale/id/LC_MESSAGES/django.po | 89 ++- .../apps/ocr/locale/it/LC_MESSAGES/django.mo | Bin 766 -> 1069 bytes .../apps/ocr/locale/it/LC_MESSAGES/django.po | 97 ++-- .../ocr/locale/nl_NL/LC_MESSAGES/django.mo | Bin 988 -> 1048 bytes .../ocr/locale/nl_NL/LC_MESSAGES/django.po | 91 ++- .../apps/ocr/locale/pl/LC_MESSAGES/django.mo | Bin 1936 -> 1744 bytes .../apps/ocr/locale/pl/LC_MESSAGES/django.po | 95 ++-- .../apps/ocr/locale/pt/LC_MESSAGES/django.mo | Bin 971 -> 1182 bytes .../apps/ocr/locale/pt/LC_MESSAGES/django.po | 97 ++-- .../ocr/locale/pt_BR/LC_MESSAGES/django.mo | Bin 1985 -> 2124 bytes .../ocr/locale/pt_BR/LC_MESSAGES/django.po | 96 ++-- .../ocr/locale/ro_RO/LC_MESSAGES/django.mo | Bin 1038 -> 1306 bytes .../ocr/locale/ro_RO/LC_MESSAGES/django.po | 104 ++-- .../apps/ocr/locale/ru/LC_MESSAGES/django.mo | Bin 1287 -> 1593 bytes .../apps/ocr/locale/ru/LC_MESSAGES/django.po | 107 ++-- .../ocr/locale/sl_SI/LC_MESSAGES/django.mo | Bin 656 -> 773 bytes .../ocr/locale/sl_SI/LC_MESSAGES/django.po | 100 +++- .../ocr/locale/vi_VN/LC_MESSAGES/django.mo | Bin 622 -> 766 bytes .../ocr/locale/vi_VN/LC_MESSAGES/django.po | 91 ++- .../ocr/locale/zh_CN/LC_MESSAGES/django.mo | Bin 1061 -> 1308 bytes .../ocr/locale/zh_CN/LC_MESSAGES/django.po | 93 +++- .../locale/ar/LC_MESSAGES/django.mo | Bin 1142 -> 1254 bytes .../locale/ar/LC_MESSAGES/django.po | 37 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 1173 -> 1300 bytes .../locale/bg/LC_MESSAGES/django.po | 34 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1066 -> 1171 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 37 +- .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 488 bytes .../locale/da/LC_MESSAGES/django.po | 30 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1878 -> 1878 bytes .../locale/de_DE/LC_MESSAGES/django.po | 28 +- .../locale/en/LC_MESSAGES/django.mo | Bin 975 -> 975 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1679 -> 1679 bytes .../locale/es/LC_MESSAGES/django.po | 28 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 1487 -> 1487 bytes .../locale/fa/LC_MESSAGES/django.po | 28 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 1458 -> 1877 bytes .../locale/fr/LC_MESSAGES/django.po | 45 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 999 -> 1871 bytes .../locale/it/LC_MESSAGES/django.po | 65 +-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 1062 -> 1513 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 48 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 968 -> 1188 bytes .../locale/pl/LC_MESSAGES/django.po | 39 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 1002 -> 1280 bytes .../locale/pt/LC_MESSAGES/django.po | 42 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1453 -> 1453 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 28 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 1047 -> 1157 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 37 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 1285 -> 1416 bytes .../locale/ru/LC_MESSAGES/django.po | 38 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 559 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 33 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 641 -> 710 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 32 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 959 -> 1074 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 34 +- .../rest_api/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 547 bytes .../rest_api/locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../rest_api/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 464 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 582 -> 582 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../rest_api/locale/es/LC_MESSAGES/django.mo | Bin 556 -> 556 bytes .../rest_api/locale/es/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/fa/LC_MESSAGES/django.mo | Bin 510 -> 510 bytes .../rest_api/locale/fa/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/fr/LC_MESSAGES/django.mo | Bin 495 -> 586 bytes .../rest_api/locale/fr/LC_MESSAGES/django.po | 15 +- .../rest_api/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../rest_api/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../rest_api/locale/it/LC_MESSAGES/django.mo | Bin 465 -> 578 bytes .../rest_api/locale/it/LC_MESSAGES/django.po | 16 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 483 bytes .../rest_api/locale/pl/LC_MESSAGES/django.mo | Bin 554 -> 554 bytes .../rest_api/locale/pl/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/pt/LC_MESSAGES/django.mo | Bin 468 -> 520 bytes .../rest_api/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 514 -> 514 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 523 bytes .../rest_api/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 603 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 478 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 472 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 537 -> 604 bytes .../locale/ar/LC_MESSAGES/django.po | 16 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 457 -> 532 bytes .../locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 560 -> 626 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 16 +- .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 488 bytes .../locale/da/LC_MESSAGES/django.po | 11 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1054 -> 1054 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 968 -> 968 bytes .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 557 -> 557 bytes .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 552 -> 1095 bytes .../locale/fr/LC_MESSAGES/django.po | 30 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 455 -> 519 bytes .../locale/it/LC_MESSAGES/django.po | 13 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 507 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 11 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 615 -> 1141 bytes .../locale/pl/LC_MESSAGES/django.po | 31 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 458 -> 520 bytes .../locale/pt/LC_MESSAGES/django.po | 13 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 572 -> 572 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 513 -> 577 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 16 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 593 -> 668 bytes .../locale/ru/LC_MESSAGES/django.po | 17 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 559 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 468 -> 535 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 13 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 462 -> 524 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 13 +- .../sources/locale/ar/LC_MESSAGES/django.mo | Bin 2545 -> 2591 bytes .../sources/locale/ar/LC_MESSAGES/django.po | 54 +- .../sources/locale/bg/LC_MESSAGES/django.mo | Bin 1291 -> 1571 bytes .../sources/locale/bg/LC_MESSAGES/django.po | 56 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2344 -> 2375 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 54 +- .../sources/locale/da/LC_MESSAGES/django.mo | Bin 2136 -> 2148 bytes .../sources/locale/da/LC_MESSAGES/django.po | 49 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 8178 -> 7590 bytes .../locale/de_DE/LC_MESSAGES/django.po | 91 +-- .../sources/locale/en/LC_MESSAGES/django.mo | Bin 2189 -> 2019 bytes .../sources/locale/es/LC_MESSAGES/django.mo | Bin 7931 -> 7371 bytes .../sources/locale/es/LC_MESSAGES/django.po | 88 +-- .../sources/locale/fa/LC_MESSAGES/django.mo | Bin 7612 -> 7372 bytes .../sources/locale/fa/LC_MESSAGES/django.po | 90 ++- .../sources/locale/fr/LC_MESSAGES/django.mo | Bin 7125 -> 8366 bytes .../sources/locale/fr/LC_MESSAGES/django.po | 127 ++--- .../sources/locale/hu/LC_MESSAGES/django.mo | Bin 1318 -> 1472 bytes .../sources/locale/hu/LC_MESSAGES/django.po | 49 +- .../sources/locale/id/LC_MESSAGES/django.mo | Bin 1545 -> 1808 bytes .../sources/locale/id/LC_MESSAGES/django.po | 62 ++- .../sources/locale/it/LC_MESSAGES/django.mo | Bin 2309 -> 2591 bytes .../sources/locale/it/LC_MESSAGES/django.po | 71 ++- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 2421 -> 3127 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 82 ++- .../sources/locale/pl/LC_MESSAGES/django.mo | Bin 748 -> 1317 bytes .../sources/locale/pl/LC_MESSAGES/django.po | 78 +-- .../sources/locale/pt/LC_MESSAGES/django.mo | Bin 2347 -> 2494 bytes .../sources/locale/pt/LC_MESSAGES/django.po | 70 ++- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 6158 -> 6087 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 88 ++- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2345 -> 2378 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 58 +- .../sources/locale/ru/LC_MESSAGES/django.mo | Bin 2851 -> 3660 bytes .../sources/locale/ru/LC_MESSAGES/django.po | 75 ++- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 653 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 57 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1396 -> 1632 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 58 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2156 -> 2107 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 49 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 589 -> 589 bytes .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 513 -> 513 bytes .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 606 -> 606 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.mo | Bin 499 -> 499 bytes .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1503 -> 1503 bytes .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1235 -> 1544 bytes .../locale/es/LC_MESSAGES/django.po | 21 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 770 -> 842 bytes .../locale/fa/LC_MESSAGES/django.po | 13 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 790 -> 1608 bytes .../locale/fr/LC_MESSAGES/django.po | 40 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 504 -> 504 bytes .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.mo | Bin 506 -> 546 bytes .../locale/id/LC_MESSAGES/django.po | 11 +- .../locale/it/LC_MESSAGES/django.mo | Bin 455 -> 1500 bytes .../locale/it/LC_MESSAGES/django.po | 48 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 519 -> 559 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 11 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 512 -> 1585 bytes .../locale/pl/LC_MESSAGES/django.po | 51 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 458 -> 1089 bytes .../locale/pt/LC_MESSAGES/django.po | 36 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 786 -> 849 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 13 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 560 -> 560 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 649 -> 698 bytes .../locale/ru/LC_MESSAGES/django.po | 15 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 515 -> 515 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 504 -> 504 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../storage/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 547 bytes .../storage/locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../storage/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 464 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 531 -> 534 bytes .../locale/de_DE/LC_MESSAGES/django.po | 11 +- .../storage/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../storage/locale/es/LC_MESSAGES/django.mo | Bin 502 -> 502 bytes .../storage/locale/es/LC_MESSAGES/django.po | 9 +- .../storage/locale/fa/LC_MESSAGES/django.mo | Bin 458 -> 458 bytes .../storage/locale/fr/LC_MESSAGES/django.mo | Bin 463 -> 528 bytes .../storage/locale/fr/LC_MESSAGES/django.po | 14 +- .../storage/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../storage/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../storage/locale/it/LC_MESSAGES/django.mo | Bin 465 -> 526 bytes .../storage/locale/it/LC_MESSAGES/django.po | 14 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 483 bytes .../storage/locale/pl/LC_MESSAGES/django.mo | Bin 522 -> 522 bytes .../storage/locale/pt/LC_MESSAGES/django.mo | Bin 468 -> 533 bytes .../storage/locale/pt/LC_MESSAGES/django.po | 14 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 482 -> 482 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 523 bytes .../storage/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 603 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 478 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 472 bytes .../apps/tags/locale/ar/LC_MESSAGES/django.mo | Bin 2871 -> 2952 bytes .../apps/tags/locale/ar/LC_MESSAGES/django.po | 32 +- .../apps/tags/locale/bg/LC_MESSAGES/django.mo | Bin 1527 -> 1763 bytes .../apps/tags/locale/bg/LC_MESSAGES/django.po | 28 +- .../tags/locale/bs_BA/LC_MESSAGES/django.mo | Bin 2270 -> 2343 bytes .../tags/locale/bs_BA/LC_MESSAGES/django.po | 29 +- .../apps/tags/locale/da/LC_MESSAGES/django.mo | Bin 2122 -> 2159 bytes .../apps/tags/locale/da/LC_MESSAGES/django.po | 24 +- .../tags/locale/de_DE/LC_MESSAGES/django.mo | Bin 3924 -> 3906 bytes .../tags/locale/de_DE/LC_MESSAGES/django.po | 25 +- .../apps/tags/locale/en/LC_MESSAGES/django.mo | Bin 2129 -> 2129 bytes .../apps/tags/locale/es/LC_MESSAGES/django.mo | Bin 3312 -> 3999 bytes .../apps/tags/locale/es/LC_MESSAGES/django.po | 35 +- .../apps/tags/locale/fa/LC_MESSAGES/django.mo | Bin 3192 -> 3274 bytes .../apps/tags/locale/fa/LC_MESSAGES/django.po | 22 +- .../apps/tags/locale/fr/LC_MESSAGES/django.mo | Bin 3207 -> 4217 bytes .../apps/tags/locale/fr/LC_MESSAGES/django.po | 49 +- .../apps/tags/locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 624 bytes .../apps/tags/locale/hu/LC_MESSAGES/django.po | 28 +- .../apps/tags/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 587 bytes .../apps/tags/locale/id/LC_MESSAGES/django.po | 26 +- .../apps/tags/locale/it/LC_MESSAGES/django.mo | Bin 1270 -> 3742 bytes .../apps/tags/locale/it/LC_MESSAGES/django.po | 81 +-- .../tags/locale/nl_NL/LC_MESSAGES/django.mo | Bin 2225 -> 2357 bytes .../tags/locale/nl_NL/LC_MESSAGES/django.po | 31 +- .../apps/tags/locale/pl/LC_MESSAGES/django.mo | Bin 2965 -> 3022 bytes .../apps/tags/locale/pl/LC_MESSAGES/django.po | 30 +- .../apps/tags/locale/pt/LC_MESSAGES/django.mo | Bin 1269 -> 1532 bytes .../apps/tags/locale/pt/LC_MESSAGES/django.po | 32 +- .../tags/locale/pt_BR/LC_MESSAGES/django.mo | Bin 2561 -> 2659 bytes .../tags/locale/pt_BR/LC_MESSAGES/django.po | 29 +- .../tags/locale/ro_RO/LC_MESSAGES/django.mo | Bin 2357 -> 2432 bytes .../tags/locale/ro_RO/LC_MESSAGES/django.po | 36 +- .../apps/tags/locale/ru/LC_MESSAGES/django.mo | Bin 2606 -> 2707 bytes .../apps/tags/locale/ru/LC_MESSAGES/django.po | 30 +- .../tags/locale/sl_SI/LC_MESSAGES/django.mo | Bin 722 -> 862 bytes .../tags/locale/sl_SI/LC_MESSAGES/django.po | 29 +- .../tags/locale/vi_VN/LC_MESSAGES/django.mo | Bin 2233 -> 2306 bytes .../tags/locale/vi_VN/LC_MESSAGES/django.po | 26 +- .../tags/locale/zh_CN/LC_MESSAGES/django.mo | Bin 2063 -> 2096 bytes .../tags/locale/zh_CN/LC_MESSAGES/django.po | 24 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 2934 -> 3112 bytes .../locale/ar/LC_MESSAGES/django.po | 31 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 3380 -> 3579 bytes .../locale/bg/LC_MESSAGES/django.po | 28 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2623 -> 2765 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 31 +- .../locale/da/LC_MESSAGES/django.mo | Bin 2487 -> 2487 bytes .../locale/da/LC_MESSAGES/django.po | 20 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3785 -> 3785 bytes .../locale/de_DE/LC_MESSAGES/django.po | 28 +- .../locale/en/LC_MESSAGES/django.mo | Bin 2387 -> 2387 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 3872 -> 3872 bytes .../locale/es/LC_MESSAGES/django.po | 27 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 3524 -> 3524 bytes .../locale/fa/LC_MESSAGES/django.po | 12 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 3618 -> 4169 bytes .../locale/fr/LC_MESSAGES/django.po | 75 ++- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/hu/LC_MESSAGES/django.po | 12 +- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 487 bytes .../locale/id/LC_MESSAGES/django.po | 14 +- .../locale/it/LC_MESSAGES/django.mo | Bin 2539 -> 2813 bytes .../locale/it/LC_MESSAGES/django.po | 38 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 3909 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 105 ++-- .../locale/pl/LC_MESSAGES/django.mo | Bin 3453 -> 3453 bytes .../locale/pl/LC_MESSAGES/django.po | 23 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 2586 -> 3751 bytes .../locale/pt/LC_MESSAGES/django.po | 89 ++- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3306 -> 3306 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 20 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2684 -> 2833 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 31 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 3388 -> 3571 bytes .../locale/ru/LC_MESSAGES/django.po | 32 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 15 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 2435 -> 2514 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 24 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2270 -> 2391 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 18 +- 1231 files changed, 14544 insertions(+), 13765 deletions(-) create mode 100644 mayan/apps/motd/locale/ar/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/bg/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/da/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/en/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/es/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/fa/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/fr/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/hu/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/id/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/it/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/pl/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/pt/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/ru/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.mo create mode 100644 mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.mo diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.mo index d96ebef3d7145fc3a6d132bc2246bf9799b98a87..78981340026494ac262cdd781348ef0f0ce6cf60 100644 GIT binary patch delta 451 zcmbQqa-XgKo)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~}-~fcPX3ivaOCAm#+($58%TAPtgd zVua{p2ht#UVIX}Uh-HBoB>$HQqMwNwA}oNG{=cO_Pq!#6778hsc=M^)AWu}&cHB7YdH8s;U zFxE9PR4_ENGBMOOFflOT3h>trN-fI-Db{sKEJ?LeFfuTNsWURPGBDn_E1oflEEj=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "ACLs" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "الصلاحيات" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "" @@ -37,12 +36,13 @@ msgid "Delete" msgstr "" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "Insufficient access." #: models.py:44 msgid "Access entry" @@ -54,19 +54,19 @@ msgstr "" #: models.py:60 msgid "None" -msgstr "" +msgstr "لا شيء" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Access control lists" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "Edit ACLs" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "View ACLs" #: views.py:78 #, python-format @@ -75,6 +75,7 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -194,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.mo index 129665cdde5f12db46de82c3a4cb2a7fc1fb062b..131f8c772b002ac1d013a9d583841720bb351f4a 100644 GIT binary patch delta 448 zcmY+8u}cDB7{*^yBWehuvEin+lRGto+oTr3Od8tdI^n|Z;JzyeLertbMH*Uyps|*) zNR&z)n%drPtD%Or{({z?&vNL4-~HZuczD0>CHft&eaywq2xk&3fIOH12SA-G5Chj> z9^Cx-8CLl#Q2lq%iV%IlD&L7@anX%HQZln!ky11@yID4)t>8qvCv9zRNj(bVdGE%n> zvytlPNqo)&?#qTegde%jJx$hm$URw?O?iZ0?s8k>dmbQZ$R-boFSs)fxUE8YjHLgs Zl|W6l_=(%Zm)zzqZs^Dp)x+`@{Q$pekkbGF delta 123 zcmey)dXm}Vo)F7a1|VPrVi_P-0b*t#)&XJ=umIwIprj>`2C0F8i7$LjO?3?{b&X6E x49%>JOmq!Q3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEVd@M_tqe^!XEE|K0suBq6x#p* diff --git a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po index c13f1e1f89..a1ebbbe4f1 100644 --- a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,25 +9,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "ACLs" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "Разрешения" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "" @@ -36,12 +36,13 @@ msgid "Delete" msgstr "" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "Недостатъчен достъп." #: models.py:44 msgid "Access entry" @@ -53,11 +54,11 @@ msgstr "" #: models.py:60 msgid "None" -msgstr "" +msgstr "Няма" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Контролни списъци за достъп" #: permissions.py:10 msgid "Edit ACLs" @@ -74,6 +75,7 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -193,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.mo index 9d6ab1f897583b8f0449a986d60ec9fc6cc009a5..24ed42faa45495f441b48529a56327d92b3d9b75 100644 GIT binary patch delta 456 zcmXwzy-or_6om&|!JkAEp)pZ1r50;;`3s>VVhjl)v9Qr*vwI-}%M96BFrncYEbM#; zZG8f5d;}Y7TN@kC?7~UDoO|cqyL(=&zufZcz7_Cqjz9|4^RZ3U>kg| z`X9KNXEW(t9&Y9Z_%ApHW?tN2tOP%V@4*}J0%J>di6W1OyOsO!ee`2EZWEzQWcEzZ zO<+E1lml5)w9dPlwS1qn=Dw0~q(UAF9cy+Gh?pnij?}ZkK=^`W%suRuv_4}!C5iPZ znh33hlA7HLdPoi)8&|cu?Nsct%iVgj>e^1#ad!IG_6^O2S+?6=Oif;P-1T1BZ90|L zw|Qom{IZJ(#K&nM;?oHIZ0hk7Gd*RU#biWM#3BvYqd?77IFiHzwLnFPCq@)V#oFlu M>qj&UDe%@e|NG8fIsgCw delta 124 zcmey(wt>aso)F7a1|VPrVi_P-0b*t#)&XJ=umIw3KuJp=4N?OGlVuovO-*$TEOm`c y6b#L*j7)S5ObiUT0{nG@Qp+-nGxPIwT@p)DtrUz53}NaFOsxz}H_u}%V*~&u78L;i 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 7aea936815..df8a72ac58 100644 --- a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,26 +9,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "ACLs" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "Dozvole" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "" @@ -37,12 +36,13 @@ msgid "Delete" msgstr "" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "Nedovoljne dozvole." #: models.py:44 msgid "Access entry" @@ -54,19 +54,19 @@ msgstr "" #: models.py:60 msgid "None" -msgstr "" +msgstr "Nijedno" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Liste kontrole pristupa (ACLs)" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "Izmjeniti ACLs" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "Pregledati ACLs" #: views.py:78 #, python-format @@ -75,6 +75,7 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -194,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/da/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/da/LC_MESSAGES/django.mo index 9c315bdfda11146353818b6182fedc35f3bb4814..f48dcc69666016d4bacdc6a393ae6695e389ba62 100644 GIT binary patch delta 205 zcmX@c+{{vcPl#nI0}wC+u?!HK05K~N`v5TrBmglB5GO+EG$7r>$iR>d<^KS(LF)ek zX&?dvkXcMnHiM(HPcegEeqJg=Kv8~HYI2FLXNqoEYEf}!ex8-WL|+S2GhG8?T_ZyU zLo+KALtO(C0|TxAf8C(evP_T~U6;g?R4WA|14EcPBSR|#ImT>pPl#nI0}wC*u?!Ha05LNV>i{tbSO9SkP|^}egVeyl#4KM^Q(Xf~T_Y0( vLo+KQ6I}xn0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPm^uSfD?`(bZ+I91%SjYo diff --git a/mayan/apps/acls/locale/da/LC_MESSAGES/django.po b/mayan/apps/acls/locale/da/LC_MESSAGES/django.po index 0139604887..5073b4157a 100644 --- a/mayan/apps/acls/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,25 +9,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "ACLs" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "" @@ -36,6 +36,7 @@ msgid "Delete" msgstr "" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -53,7 +54,7 @@ msgstr "" #: models.py:60 msgid "None" -msgstr "" +msgstr "Ingen" #: permissions.py:7 msgid "Access control lists" @@ -74,6 +75,7 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -193,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.mo index 0d0b1d44a47cf7458e2fc678ede6dcfec8d18916..776125a3dcafca621c28ea2e9b64974d0b43a18a 100644 GIT binary patch delta 262 zcmX@ddy#j-p89o+3=GE13=Con3=EH0AoNclEeGTautNCyKw1RIcLUN=Ksp*oa{%cw zAT0=_>w&Zvke&#n6@l~}AT180{{d-HAT7oQQKti>LGpG$8Ysn(zy`F256DP^3X}qA zQy{+@NXrB1jhiDG)tGqAbPbGkjSLkG&8$oeC-*Q*yTC+@46O`|wGDuP%O|n8L^q@; vF|Rl$u_V99O2Id=BqKAiSivbZqbMg;!6p~NPjbk$EY?fPtlIp7`56-c-WDw6 delta 259 zcmcb}dyaR)p8C~{3=GE13=Con3=H>KAoMpNEeGWDvO@SeKw1RIcLvf@Kso|Qa{%dL zAT0=_Yk;&DknRK0ia`1%kQN8hzk#$UkQQcxsM7?}AbD#b4U}StWdmBn2V^8e1&V;Q zDUe?Qq~(G1y3LV{YD~PQx(1fIMkWe|W>!WflY5w@9pNJ8Rz?Qe20*~&lUQ7$8&Z^* qSDcerl3!${;FMaFSE*o=1fm>3WJY39if(RVQH5Sg>gLzX&zJx_$t&>y 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 fa92a0288c..9246094b79 100644 --- a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 17:20+0000\n" -"Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:03+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" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 @@ -29,6 +28,7 @@ msgid "Permissions" msgstr "Berechtigungen" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "Rolle" @@ -37,6 +37,7 @@ msgid "Delete" msgstr "Löschen" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "Neue Berechtigung" @@ -75,6 +76,7 @@ msgstr "Neue Zugriffsberechtigung für %s" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "ACL \"%s\" löschen" @@ -98,8 +100,7 @@ msgstr "Berechtigungen von Rolle \"%(role)s\" für \"%(object)s\"" #: views.py:242 msgid "Disabled permissions are inherited from a parent object." -msgstr "" -"Deaktivierte Berechtigungen sind von einem übergeordneten Objekt vererbt." +msgstr "Deaktivierte Berechtigungen sind von einem übergeordneten Objekt vererbt." #~ msgid "New holder" #~ msgstr "New holder" @@ -195,10 +196,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/en/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/en/LC_MESSAGES/django.mo index 6bb7f2dd6759e137bcf5c69ae3e030ce2933a208..4c839487465e363450e8a4e5e1e49047fab8a05f 100644 GIT binary patch delta 26 hcmdnbx}SA}1tYJSu7R>~4MgU$)25$fW delta 26 hcmdnbx}SA}1tYJiu7Rblk%@w#nU#^rW>>~4MgU&A26zAf diff --git a/mayan/apps/acls/locale/es/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/es/LC_MESSAGES/django.mo index 62e633e7bf091688e1855e2992dedc4f72689c46..32a893459552a8f7e7e5302304c95cfcacf62dca 100644 GIT binary patch delta 44 scmbQiGlOSC0yD3fu7R, 2015 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 @@ -31,6 +30,7 @@ msgid "Permissions" msgstr "Permisos" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "Rol" @@ -39,6 +39,7 @@ msgid "Delete" msgstr "Borrar" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "Nueva LCA" @@ -77,6 +78,7 @@ msgstr "Nueva lista de control de acceso para: %s" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -196,10 +198,8 @@ msgstr "Los permisos inactivos se heredan de un objeto precedente." #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.mo index 7323bd7d25b66a106a57fbf2116eb88be64f6c62..9a1b2ed6dd0911fcfbc0fa0a76a136c77f08c000 100644 GIT binary patch literal 1125 zcma))O-~a+7{^D&w~88#iP5N;3r1t6y9=ZtOE_RD2}-rr%6;8V%bM+Ovop1jc)^rH zVy}FL3egmVn-|X>JkQd^qbL0i{-I%{?FU){=7c4L135Rci;{9HTZA1 zHuDrAL!brT08^mWJq53Ti{LO=2hV{G@FMsD)cOrj=Wl_Rz|P?O71X+KU=#j*5Pxxo zkP*Zez%lS0co*CTZ-PHS-RBp05Bvk(0*BG$DtI5%^Q1tnOM|z;Cm>q%W3Kn>U6%_%-7t_*=u_Vl^5h^bg^^814lX$oJbvuB zOlG*xB`2ApCuy(zTp((tlIMDmQ>WJ}NuGrPCpjKfJR!U=5F{V^oGf^}-cQO!;T!Hs zHdkZ|Jkk=IW}RgxpqZKM%S4`6!$`8MD0@ZrxK{QKTGUF};}$c=O%p!6bDTok(yw^{Oz-CJuGFV~IyB6S!f~ z3(7W~c5Fk5lGkqW^!yjc!Zrsx7*|88_9I z+KC%fb#z4SsNHUh#%rog{!2yGN944T)BBI&brf4yoo-8)K=f!?a(H_@u0E^ncm>xO zt5;0z9TW8DIa-Qh?)LtsYR4cq_x G3jYPvSbOjQ delta 124 zcmaFLae&$4o)F7a1|VPrVi_P-0b*t#)&XJ=umIvVprj>`2C0F8$tM|oO-*$TEOm`c y6b#L*j7)S5ObiUT0{nG@Qp+-nGxPIwT@p)DtrUz53}NaFOsxz}H+wU&F#-T4_!M^l diff --git a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po index d47a33c7af..09fc0b522b 100644 --- a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,63 +9,64 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "ACLs" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "مجوزها" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" -msgstr "" +msgstr "نقش" #: links.py:26 msgid "Delete" -msgstr "" +msgstr "حذف" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "دسترسی ناکافی" #: models.py:44 msgid "Access entry" -msgstr "" +msgstr "ورودی دسترسی" #: models.py:45 msgid "Access entries" -msgstr "" +msgstr "ورودیهای دسترسی" #: models.py:60 msgid "None" -msgstr "" +msgstr "هیچکدام." #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "لیست کنترل دسترسی ها" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "ویرایش دسترسی ها" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "دیدن دسترسی ها" #: views.py:78 #, python-format @@ -74,13 +75,14 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" #: views.py:151 #, python-format msgid "Access control lists for: %s" -msgstr "" +msgstr "لیست کنترل دسترسی ها برای : %s" #: views.py:162 msgid "Available permissions" @@ -193,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.mo index 8f4728e77e5eef15cac5b13bfbe0f9df8d529c2f..b9623cca690899b11cd8afdde3f743924a06dbac 100644 GIT binary patch literal 1710 zcmZvc&u<$=6vqcBrI;Uu@}o#l>8T=0B3S=Osw&!$sK$06B5qCU<^+ey?${o*-dWAe zI?bN|SJb}&a^S|XH*?_z7cNLh9FPzkk+^W-`*vO1p^P;C?96-fe$71pa^=DUf$=Kl zTbK_quVH@j1b#4n055<)f~@ls$a;T*FM^kz6ykaCD)<`sHh2*XL6$ecEwBeZ3w{p1 z0)7dyy|2J$z=t4#-+}D!H}E;|kJ7G(1E+)7a;3@53=6R;G5uI;0xeoIAQuQDd#9MskbJfL_7cgn=~*sq?Nf);eb}>mZzdQkvfsbiK0x|v35?I)QPrA zlvgtl+!l7)+OcN5tV+@<(&ea2@}@sr=koOKF!H>)RF4wnpReAD}dfVpYD7>9@H0SUG-5)2|oOS<95- z)lx{A$;%$;pgE>zI2F%CVz#r`SbAg>YnPc+qZ^#Kn`fCtOX5b*N;uj@50G-6M$~o0<3cX&P@I!3io4u)DDSyeyCo(@ Mb8#MJGLKdK3wGwy{{R30 delta 139 zcmZ3-dz9JYo)F7a1|VPrVi_P-0b*t#)&XJ=umIw2prj>`2C0F8$wth+yr#MambykJ z3WjD@MkbScn5B(jA_k^bhNjvEK)~gbSX`nTQk0lioRe6RUu2~al%JGZRFV&*ixZ17 K^C$mdehL6UavRzJ diff --git a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po index b0ca6ab756..ac2971bd99 100644 --- a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po @@ -1,103 +1,106 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-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/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "Droits" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "Permissions" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" -msgstr "" +msgstr "Rôle" #: links.py:26 msgid "Delete" -msgstr "" +msgstr "Suppression" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" -msgstr "" +msgstr "Nouveau droit" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "droit d'accès insuffisant." #: models.py:44 msgid "Access entry" -msgstr "" +msgstr "Entrée d'accès" #: models.py:45 msgid "Access entries" -msgstr "" +msgstr "Entrées d'accès" #: models.py:60 msgid "None" -msgstr "" +msgstr "Aucun" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Liste de contrôle des accès" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "Editer les droits" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "voir les droits d'accès" #: views.py:78 #, python-format msgid "New access control lists for: %s" -msgstr "" +msgstr "Nouvelle liste de contrôle d'accès pour: %s" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" -msgstr "" +msgstr "Supprimer le droit: %s" #: views.py:151 #, python-format msgid "Access control lists for: %s" -msgstr "" +msgstr "Liste des contrôle d'accès pour: %s" #: views.py:162 msgid "Available permissions" -msgstr "" +msgstr "Permissions disponibles" #: views.py:163 msgid "Granted permissions" -msgstr "" +msgstr "Permissions autorisées" #: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" -msgstr "" +msgstr "Permission du rôle \"%(role)s\" pour \"%(object)s\"@" #: views.py:242 msgid "Disabled permissions are inherited from a parent object." -msgstr "" +msgstr "La désactivation de permission est hérité de l'objet parent" #~ msgid "New holder" #~ msgstr "New holder" @@ -193,10 +196,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.mo index 1337d1962eeceffc60d0503c13dde3eac9ef0404..e1e66ab867ad32dd544befee023e51e2ccc3ed3e 100644 GIT binary patch delta 207 zcmX@f+`&?RPl#nI0}wC+u?!HK05K~N`v5TrBmglB5GO+EG$7s2$iR>dq}hP@H;@fd z&&0&Q0Azvz$Sfci0vw%viW&U!^HLcCit@8klS_0xQ*^^pi;6Sz^Q;sm`dXNp=^7a8 z8W}1Wnpv3`>Kd3B7;pvn>jtHkWrEb`x+IpQS}7PA7{b&U8Cn?_Z`{St$O|-EH#M6f KI5jsnlK}uv`Xp=s delta 122 zcmeBRImv8sPl#nI0}wC*u?!Ha05LNV>i{tbSO9T9P|^}egVeyl#4KM^Q(Xf~T_Y0( vLo+KQ6I}xn0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPm^uSfD?`(bZ}=Gj&%_GjtcGS*MkW&{EuHMb7{%k0n3rCfn4W5-keM=hE~6R%8LthT diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/it/LC_MESSAGES/django.mo index 8f08ef04745f66bbb1b4424d543bd76c0dcdc521..54fe717b2b6aec6801e1b60aad21f85beef696b8 100644 GIT binary patch literal 1193 zcmZva%We}f6ow6yTPRfA#Z4Flq7^ukq*YZ-ltoBV6sds_Lif&$lNy|HH1;%Ym#{?a z%7zthz#bv-4(wpThKFDYzbDfhV9E2%vCldF?Q?#dn|enuW-zZ~Zew1?oIZpP#u_*U zO7H?0fzIzWcn16cPJ+g&+2)+jUCU^oYgHBH!yaGN2FM%(!{Z|>^fJd>u4Z3^0 z2XSnw9jVhjm&a*@l+*{<9jCKDgr&N3nSC5|`gVrXl#Xg`#gJ+c2xDlVBO7Z)l{EJM zi?pv}pWfZw6bO*wfVoMk>s%_{Q-Y2}Je0;r9T`#=N?1V}p|mtT^ij+sE5ZX#&B!GE zz6>N1Q=Y2IlgBy|q`fayM=L>Ar5H~VwPXE41eP^Jwkl$GnonDNlSi~sZ#~O(#7M`M zwah?<>|ru6tgC&RYd`6-S}eGQKdW;qd|E0L7g=GRm5Q{u=r0smVWCifBkPED>GJ;T zS1S62`TGTo+zL0Ab#W=9xOLCe(LE7c4H_Ox4Toru@PS}m!G}I=TCOBS&aPQI@;z@n z9_OtKmwmC35A@KBCxNjybhlw592!q$Njz!2xm>H+YV2LQm@njNs39JYbvH-2krf-( z8!0ZMG7Z*vY=o^m?=G{YJwJD1U&O2t1v-?`z^6++X?Ml?6h>PmF;{F^$3x@OXq1|! zQYzEQZ)G;3w<@$aSI&{Nwkzl$K|{IIQc7pll*Dau8VZ>f9&IOScyCf_?UvH^TGauT zWfr6f>@;2GN2&>4SZ;0cEmXyMni1HON>WneQ6QA!q=oySm$>Vaza!A`2C0F8$=Xc5rlz_EmbykJ y3WjD@MkcxjCI$vv0sgu{sb!hPnfZCTE{P?nRtiQ2hA?#ordEcgo7Xb&G6DeWeiRk} diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po index 9c3522ec1a..8dae7744a2 100644 --- a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,63 +9,64 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "ACLs" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "Permessi" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" -msgstr "" +msgstr "Ruolo" #: links.py:26 msgid "Delete" -msgstr "" +msgstr "Cancella" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "Accesso insufficiente." #: models.py:44 msgid "Access entry" -msgstr "" +msgstr "Voce di accesso" #: models.py:45 msgid "Access entries" -msgstr "" +msgstr "Voci di accesso" #: models.py:60 msgid "None" -msgstr "" +msgstr "Nessuna " #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Liste di controllo accessi" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "Modifica ACL" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "Visualizza ACL" #: views.py:78 #, python-format @@ -74,21 +75,22 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" #: views.py:151 #, python-format msgid "Access control lists for: %s" -msgstr "" +msgstr "Lista dei permessi d'accesso per: %s" #: views.py:162 msgid "Available permissions" -msgstr "" +msgstr "Autorizzazioni disponibili " #: views.py:163 msgid "Granted permissions" -msgstr "" +msgstr "Autorizzazioni concesse " #: views.py:222 #, python-format @@ -193,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.mo index 92622140fda798d9d3851bea0ce2c9409d7f8561..d592756dda08ab880041e68c43517738c3310560 100644 GIT binary patch literal 1740 zcma)*zjGT!6vq!pAc$Wf{0sxb63AeYIsLFR9?uzPkS!-;uoR6^QZbWR-94RFI_+w9 zS5izxLqW~Z(@{{-hYJ1xXegngfr^HLG<@GFmZjLtu%p%I?(N&}zV~k5uNTgI6=1xG z`8wu3%r`JUc?5qLKY?e!pF#Hd1!TWJ!Dqp9j|Rch;49!u;5*>sUo1^)5i{ckYD`+bmgijM`s_lRK)WWB$ziFx+yEWV2% z>#u`s{|I~;yaV$73HT=X8F&r+8hj1>4dguj0WX5*k<6>$d*IvP4#@GPU;)g)XTT|V z1^gUjo$o+|7a-i=IZTe_946Q5c}$Lh2WuUT^LXH#d2mg5T$mxRB|k!TK9G7I1Lwyv zAY>GLXWs?2I40*rY_zu~6Pa@Ubff4R8;Q&FMZyL}ORtAPZ6Z}BI~j=)*`aby8SR2P zW#s7r1dh#h>dLWavgj(LC82bWtnygtS~C<}j`w|Ll| zcH?eW#frDcJiAiRq$%&nIkPQiJWsA^GzG1N*bhub0so0hmse0BD!NMx=e_HAE3eI> z!)kC_%}#Sc%Nh_~Qk8_;t)>z?#mtwxo#D;12wzH~lpqgF1H zp1>9S~bSzT}+a!mPsE>Wz6Dv*f_)MA9 zi7Segp7*1uT%Jy+CC>+`F5NA~W>~hyNvn)44>|9UlA$YOQ!ZH6*`4NoxmalIHFl3H zR4r8sJGhVdfMNS^g!Db#_2p3}mEII_Pg+NQ>sI@ExN+>qhjz(^yE-r3dlqHKA z;#1YvLZtM=x3-&z39cWJez>c)X-al*QX5IP4W%?7y`(zt5;Uw6_*_Vg6nh0tMdK-* rl={yFL^Chg4a9b=jUK0t9YfbTbRT!(X^luO7g+AYZ5pWl=^6bCuQ1#O delta 139 zcmX@Zdz0DXo)F7a1|VPrVi_P-0b*t#)&XJ=umIxuKuJp=4N?OGlZ}{tc};Z, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-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-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"Last-Translator: Justin Albstbstmeijer \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "Authorisatielijsten" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "Permissies" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" -msgstr "" +msgstr "Gebruikersrol" #: links.py:26 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" -msgstr "" +msgstr "Nieuwe authorisatielijst" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "Permissie is ontoereikend" #: models.py:44 msgid "Access entry" -msgstr "" +msgstr "Authorisatie invoer" #: models.py:45 msgid "Access entries" -msgstr "" +msgstr "Authorisaties invoer" #: models.py:60 msgid "None" -msgstr "" +msgstr "Geen" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Authorisatielijsten" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "Bewerk authorisatielijsten" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "Bekijk authorisatielijsten" #: views.py:78 #, python-format msgid "New access control lists for: %s" -msgstr "" +msgstr "Nieuwe authorisatielijsten voor: %s" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" -msgstr "" +msgstr "Verwijder authorisatielijst: %s" #: views.py:151 #, python-format msgid "Access control lists for: %s" -msgstr "" +msgstr "Authorisatielijsten voor: %s" #: views.py:162 msgid "Available permissions" -msgstr "" +msgstr "Beschikbare permissies" #: views.py:163 msgid "Granted permissions" -msgstr "" +msgstr "Toegekende permissies" #: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" -msgstr "" +msgstr "Rol \"%(role)s\" permissies voor \"%(object)s\"" #: views.py:242 msgid "Disabled permissions are inherited from a parent object." -msgstr "" +msgstr "Uitgeschakelde permissies zijn geërfd van een parent object." #~ msgid "New holder" #~ msgstr "New holder" @@ -193,10 +196,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.mo index 5434e6d47c0aa1412d73b9dc07ae3a526f81bcae..2f02c67f35dac7114fa26fd5d3160a6e7d71d0a1 100644 GIT binary patch literal 1700 zcmZvb&u<$=6vu~BpqSs~mjqNARiuptYps%E`(m>GHMj}+NAP9vH<0xH2HyfNAQ{Tz3it;2K1lIxgB0J#6S)DdLjDva z`)@&n#}F=i36o;Egh{oc_$X!?cklx^H^E;_(k5-Cg4lcO$h@f7sLVEx+_#Hj$_GFX}ZcZPzM)Rs%7|B)AmPR@3G>z_Z!Beazj_czS8M*@7iIgKRmVIPILVELu?IyO@ zY^qR^iO8}muzlGli;Uy7#f+!P?dwFc`dsV>I+l!H{OZy&DkSsv>fCwPEt%5ZI6CaI zBQ-wFvbxa}vbP&~N77I+0$vjXk?@^r?RM@!rrJ2KW?L%qZuVN%Yv_RI>Yp^cZ6k$) zzE>4a2E6Q-Zg~ERS1$3=jbOFp`K!JUMejh~Rpj^odgW5!ue|4D_o+ZDnO0o3v9|PAZiW|A6}(+e;;Xvr^{Qu4SJal~wv&re%Ml-MLAonj&~Eud#Mrq1b0~p zc4&L&Uya{cpN`IEy`;N?^B>|x18zsBJQ^yA84hu=`4By%WXJV*A|f*!okfXkY3itf z>z!my$7$5fa4<~7qCd8ei#@O|yCWx~({S)8Vli{tbSOD=cprj>`2C0F8$wth+yr#MambykJ z3WjD@MkbScn5B(jA_k^bhNjvEK)~gbSX`nTQk0lioRe6RUu2~al%JGZRFV&*ixZ17 L^EdxyR$v4GNDmt# diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po index 001c5af918..b34c398837 100644 --- a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po @@ -1,104 +1,106 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-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/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"Last-Translator: Wojciech Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "Listy ACL" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "Uprawnienia" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" -msgstr "" +msgstr "Rola" #: links.py:26 msgid "Delete" -msgstr "" +msgstr "Usuń" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" -msgstr "" +msgstr "Nowa lista ACL" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "Niewystarczający dostęp." #: models.py:44 msgid "Access entry" -msgstr "" +msgstr "Zgłoszenie dostępu" #: models.py:45 msgid "Access entries" -msgstr "" +msgstr "Zgłoszenia dostępu" #: models.py:60 msgid "None" -msgstr "" +msgstr "Brak" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Listy ACL" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "Edytuj listy ACL" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "Przeglądaj listy ACL" #: views.py:78 #, python-format msgid "New access control lists for: %s" -msgstr "" +msgstr "Nowe listy ACL dla: %s" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" -msgstr "" +msgstr "Usuń listę ACL: %s" #: views.py:151 #, python-format msgid "Access control lists for: %s" -msgstr "" +msgstr "Listy ACL dla: %s" #: views.py:162 msgid "Available permissions" -msgstr "" +msgstr "Dostępne uprawnienia" #: views.py:163 msgid "Granted permissions" -msgstr "" +msgstr "Przyznane uprawnienia" #: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" -msgstr "" +msgstr "Uprawnienia roli \"%(role)s\" dla obiektu \"%(object)s\"" #: views.py:242 msgid "Disabled permissions are inherited from a parent object." -msgstr "" +msgstr "Domyślne uprawnienia są dziedziczone z obiektu nadrzędnego." #~ msgid "New holder" #~ msgstr "New holder" @@ -194,10 +196,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.mo index d5899be2043d2edd35d4dc94c060449616e1097f..4784ff7903f9133f7f9221f03163b9ec549da426 100644 GIT binary patch delta 491 zcmXwzy-UMT6vb~ptX~yG+;n(4=#-MATBPVuYzLugac~dmEj~;W$V+wXzo3Kvg^PnA zu5N;pyXfNVDlVS;LN5F`FS#G*yjGrS(~p(v9iisIIv9c_a1W$DK^1&~RqzdJ;19@7 zxs?B}LuGCQx(MBZO5caxfPFB7@3(U9^A4ROn$iy*bu@mVVoq%-sB_pi)Cog2Mukb7rAeeBZ8Ae$jt)3u>J4?K?ATFkCZmxK zHOH9>>`sGDl9*}0=~x@1li1L?=4(5DyLY_Xa@?lld&+CIcRa`4aovT%sdL6xT85o& zka1i2u2;U<3g7o)k#{ diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po index 9b0a20d238..cbc2cb007d 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: # Translators: msgid "" @@ -9,39 +9,40 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "ACL's" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "Permissões" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "" #: links.py:26 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "Acesso insuficiente." #: models.py:44 msgid "Access entry" @@ -53,19 +54,19 @@ msgstr "" #: models.py:60 msgid "None" -msgstr "" +msgstr "Nenhum" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Listas de controlo de acesso" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "Editar ACL's" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "Ver ACL's" #: views.py:78 #, python-format @@ -74,6 +75,7 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -193,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.mo index 8df31dd87b1483c59587ad7a9f8804cf97d202d5..5b9f5e3691a557818352832b4ec86419ed3873fb 100644 GIT binary patch literal 1062 zcmZ{iJ8#rL6om~5FY}0q5EaEVkrJU<+nXqg90e(ljTDiE)v}~T6Z`J&Ag{-o8M8_1 zbg9$w185Kh6%7(pw3JA+H2ee#&e)qo2pH+=o5#8L&e-Ss?DVOJaU1afag4Z&_=#{M zyySV)UzljATTc=)h9xSuT4gMg#{PSg^_7m<-1#9PLDC<~LvM>R zvgEZ=X<1c%CpTrkFB1tl6IHK<_eAC7bx4n-F;eBm>#B^rJxSv_siW0PN-W<=`5tK} ziCJ45ik!8!+Rywh6-ry)HUpXRjdEakPsPmdJnivKO~OLYw}hpbHN$9`hl{)!v1mD7 zig>sbh7j^Dy^^l(-@0ZLhl>wG41ZS`%X?bnCKJ{@zN_|0TLl`SrGg+Ilwv@qz_RTJgA`DCE%sS-e z!kI~V&PD$_WQEY8GExf;5^1fQB(7Ka%y|nZUh5#qN~tS930<3GB9YEmwXX<{qI_76 X&OG($J$%`vfffd?GNs7m(OLR$n*I`- delta 124 zcmZ3+af8|7o)F7a1|VPrVi_P-0b*t#)&XJ=umIwDKuJp=4N?OGlTR}GnwshwSn3*? yC>WYq8JXxBm>3vv1^DX*rIuwDXXfYWx+IpQS}7PA7{b&Um|7W{ZuVx9V*~&j+!TNS 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 6b41eefc1a..cb1ef9e505 100644 --- a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,63 +9,64 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "ACLs" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "Permissões" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" -msgstr "" +msgstr "Regras" #: links.py:26 msgid "Delete" -msgstr "" +msgstr "Excluir" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "Acesso insuficiente." #: models.py:44 msgid "Access entry" -msgstr "" +msgstr "Acesso entrada" #: models.py:45 msgid "Access entries" -msgstr "" +msgstr "Entradas de acesso" #: models.py:60 msgid "None" -msgstr "" +msgstr "Nenhum" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Listas de controle de acesso" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "Editar ACLs" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "Visualizar ACLs" #: views.py:78 #, python-format @@ -74,13 +75,14 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" #: views.py:151 #, python-format msgid "Access control lists for: %s" -msgstr "" +msgstr "listas de controle de acesso para: %s" #: views.py:162 msgid "Available permissions" @@ -193,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo index 1ecb6b2f8ba9280d05e29efef7422ea1a18f8fb8..cfd9bb8bf3f933df2c0b9a914fea7d8b2f41e7e8 100644 GIT binary patch delta 456 zcmYL@ze>YU6vj_$Y_&Rw|0b0?3z4Kvi*%8qB0|;T(8(pFw{jrfKyISoQhWplCw&Q5 zU%(3DBe;lT-@)(RR6X$HJBRb{yK~+vqt9jMfe>?G16+Uw@B~bZfdk&aD)<2N;A>h> zpr&6g6?;{v>90Uv!6vAp{w@=(LnqKBs54{ljc5&tS=ffwpaFCdx(CIs4Wu^AA!BqF zn5QNx05^#``&~_)D3V%>C{bCO#3E*$X*wKmCT#my>3lfkh^5Lzh}kWzcjz=xl6o?| zVy!t*n))nn?85!-Nwej84Y%$Kzts+W*9$za);n|0>zP$Zk`vDQk BUSR+L delta 124 zcmX@Z*2rRUPl#nI0}wC*u?!Ha05LNV>i{tbSOD>Hprj>`2C0F8$uf+-rlz_EmbykJ y3WjD@MkcxjCI$vv0sgu{sb!hPnfZCTE{P?nRtiQ2hA?#ordEcgo98jQGXenVLKH;+ 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 1d4d915f21..4d2b754a3f 100644 --- a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,26 +9,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "ACL-uri" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "Permisiuni" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "" @@ -37,12 +36,13 @@ msgid "Delete" msgstr "" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "Accesul insuficient." #: models.py:44 msgid "Access entry" @@ -54,19 +54,19 @@ msgstr "" #: models.py:60 msgid "None" -msgstr "" +msgstr "Nici unul" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Lista de control acces" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "Editați ACL-uri" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "Vezi ACL-uri" #: views.py:78 #, python-format @@ -75,6 +75,7 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -194,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.mo index d06538a77ba6754022142fbe682715315880c1e4..b75f9b77afff7102620354acd2bd3853d78a0019 100644 GIT binary patch delta 560 zcmYjNO)mpc6uqjnhz$}OInz}&p;pW z3UmM;Ki{8V)ep3M&xOFM-wW;!5DkJ=Kha7w22O!T!K>gAq7oh9(v61)unKqq4};&q znDq-+zd|_GqHTaORn-n4hbTQUBPpHDno^2v!FGy;yvSS9kui{tbSOBp&69a=KkOrxNfypwAzNV(S29~-; zCJKgTRz@be1||juTmk;NL8)b##hLkex-N+&sa6U`28J+o2Bubqrkm$6PG=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "ACLs" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "Разрешения" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "" @@ -38,12 +36,13 @@ msgid "Delete" msgstr "" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "Недостаточный доступ." #: models.py:44 msgid "Access entry" @@ -55,19 +54,19 @@ msgstr "" #: models.py:60 msgid "None" -msgstr "" +msgstr "Ни один" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Списки контроля доступа" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "Редактировать списки ACL" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "Просмотр списков ACL" #: views.py:78 #, python-format @@ -76,6 +75,7 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.mo index cb220d520b8db7692fc6560f072ee07a347761af..0cea19c18cb11a843931f1e29c6a9744032c5cfe 100644 GIT binary patch delta 157 zcmeBU*}xKdPl#nI0}wC)u?!IF05K~N+W;{L1OPD$5C;PB6-EYzFeqOer~$|Y1CU-g z@XOCjooL}}YNl&otZQVbU}$D#VyJ6iVqm}(;IA8$T9#RynV+ZYl30>zrC?-W2vcWd SXk}o$aaRZG6$1dPco>HO delta 99 zcmdnM(#K+PPl#nI0}wC*u?!Ha05LNV>i{tbSOD=Aprj>`2C0F8iJ`u{rn&}}x<)1n YhGteqCKK07!vzdXtqe^!UJqde06vlqOaK4? 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 3210ef081b..46ac50392d 100644 --- a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:14 links.py:30 msgid "ACLs" @@ -29,6 +27,7 @@ msgid "Permissions" msgstr "" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "" @@ -37,6 +36,7 @@ msgid "Delete" msgstr "" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -54,7 +54,7 @@ msgstr "" #: models.py:60 msgid "None" -msgstr "" +msgstr "Brez" #: permissions.py:7 msgid "Access control lists" @@ -75,6 +75,7 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -194,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.mo index 7936cd788bb72ca07e187e73d1a01aba8153aadd..f461476d62ad02d6ee8e914656320fe08aabdcdc 100644 GIT binary patch delta 204 zcmcb@Jb|VDo)F7a1|VPtVi_Pd0b*7l_5orLNC09MAWnqRX+U}wBLhP=l+VTlk>>`| zKw&TdnFZuRfTOcdF@s-zUMfRCQGQlxa*3{Iif&kHQE_H|o|VExUkg(+T?1oXBSQs4 wGb}#X1Fisn-JsO6OpqE~m&B4(D+MD1Lzp@vLn{O0jk}~6xe#Up0DG?@uK)l5 delta 122 zcmbQha)sIAo)F7a1|VPrVi_P-0b*t#)&XJ=umIv&KuJp=4N?OG6SI6xO?3?{b&X6E w49%>JOmq!Q3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEVd@M_tqe^!zL8=C0Nj-nl>h($ 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 558860da7c..8f7c88edc4 100644 --- a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,25 +9,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "ACLs" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" msgstr "" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "" @@ -36,6 +36,7 @@ msgid "Delete" msgstr "" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" @@ -53,7 +54,7 @@ msgstr "" #: models.py:60 msgid "None" -msgstr "" +msgstr "None" #: permissions.py:7 msgid "Access control lists" @@ -74,6 +75,7 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -193,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.mo index 2bdc156fc87cac31879dbba5a884442c47a8c21b..57f33f69bb28a70671eff200c970ab151d2389d2 100644 GIT binary patch delta 566 zcmX@d+{RviPl#nI0}yZlu?!IB05LBR?*U>E_yEK#K>QJiMS%Dl5c2^sHzNZB50I7u z(wsnA9Y}-Z4S_UBy&I6`2GZV8`EVdT1&9-YSO_TojR{QGGjK9P1Z03T$UuD{Ediu$ zp!`rE4MYq{K!OcOrvYh@d@hg%ngzBDNP*RWXpmz-fCGqGftVeLfp&rQf;`FK= z;Fz48T3oDJ$>e z2I(>Q<>#d`1f&+_W)>G`=I0eNgk`3dgVj&8@HI8lH89pSGE^`$vobN%H83$S;0o~9 z4N5J`1S!^aNi0dVQZOxJ!hw{>8feFQ>12*0=m=$F`>((_buH!GJ~R z>5^GbcC3O(JZ)Y2w0|*F6_oRQ&$Ji&CSuX}Y;N<*nG>Gu=zXzmGsCm#3m6~*4A15- NeLkoA#X3O@+X2+9ruYB= delta 102 zcmZo;KgVowPl#nI0}wC*u?!Ha05LNV>i{tbSOD=9prj>`2C0F8$q9_Uyr#MambykJ b3WjD@MkbSYF-pTl3{0&IO*cPc6k!AaSm6#1 diff --git a/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po index 19861c4fe6..576fc057db 100644 --- a/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,25 +9,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 links.py:30 msgid "ACLs" -msgstr "" +msgstr "访问控制列表" #: apps.py:22 links.py:38 models.py:36 msgid "Permissions" -msgstr "" +msgstr "权限" #: apps.py:26 models.py:38 +#| msgid "Roles" msgid "Role" msgstr "" @@ -36,36 +36,37 @@ msgid "Delete" msgstr "" #: links.py:34 +#| msgid "View ACLs" msgid "New ACL" msgstr "" #: managers.py:84 msgid "Insufficient access." -msgstr "" +msgstr "权限不足" #: models.py:44 msgid "Access entry" -msgstr "" +msgstr "访问入口" #: models.py:45 msgid "Access entries" -msgstr "" +msgstr "多个访问入口" #: models.py:60 msgid "None" -msgstr "" +msgstr "无" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "访问控制列表" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "编辑访问控制列表" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "查看访问控制列表" #: views.py:78 #, python-format @@ -74,6 +75,7 @@ msgstr "" #: views.py:109 #, python-format +#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -193,10 +195,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "" -#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.mo index f579864fdd6266076abbddb17532e485f0c5e291..5e162d5e8a417c7188c3e2d39e5170da02ded007 100644 GIT binary patch literal 2487 zcmb`H+iz4w9LGn&+j_%#LA)eGB9{iv?w$e-EG$a7Bn_-I-J-$h!`a>0-63aZ)|qoC zeQam}Q4@`k#Q0zcA%y}~QizrZ;}d^?FV0C6UyM)sVtg|(et&1TY@>-{!lbjG-)}Cz z>-5~}TmCV_coFjj%;onm)(`#y()i$B#vTAa1RnxF0Y|`d;Qiq5-Tgnn$Dl7;)>-cZ zS3+L}t^j>70}g@Df+g@iunw*TLl7p|N8obs3`q7q1=oSI-Suxl^7|d=gSWc+3S4>w z`bv=Oy#!L+`#~IGWpE4lI(QI#AAAt}0sIlU{tWg(zX{_MX97~5KXvsjFh=XIfKPz? zyZT!o)vXCqp3@-NJp*#^Gm!H92Bf%df^fxt1s?`~12=+yg6qHyxD1!943fV$z!E6B z`aDRz`WhsA--Bu0(Hy$h2M&R&K+5w?knCIrsijnV>dTXui{o(!bOs@$u~S?$R$)Gx zN}b+QeP}$5`8+1o;WM9gJ4eB4;RgI)pmhDnn zO|*1u*^uBiHiAc*SDS%qKxzu!4y+y5rbf$BRgDNN&WUPlWHiA8m2T9e4JsjBke0WE zwLwE<+3rA9MaXt*RhOodWQ@|b(1v0d}u1$fjS+6TcL^bNSY@akX;*o3# z9_ofvY`7*=B5zdW{5HPRI7It=wVX$U{H5`?zE zUe)+hf{h?pu5^SDVpW6MNw~mw*vM$r*tur?ViEf7j$C(WW)|xVNj5?1gWBemRRaJsN%LlL3)l~ z6Na*7hlOQ_b3DvdJ7L7s$)bnh5D?NWCMvd!IN!vuQQrRd7 zLn_o_>ZM>JP<-#6Qu((3jmSqeU@8t%b9ObOd?iZDMvSKRdBZiY8)bp_Ok_qyTbsx$ z*@monLvh1;W4gdIBL~O4^fe$jZx0?tfe+;UK`+0_8}PY5SlH})`OWz}4tk^FsHE)w zd2YZj1K`3#=v@W5n7!q^0% zw@;gvEpXLNRa+d~&O2gJ6^nWPGS74D7K=VazatJn93XLxpU>|sZsKd#cH|vJpKfgG z?fL$a&28JTxfz>Vwr7}|Nv7O+ciCNaGwv+rEK8={<>X{?Dw(?b9}ssQ?rxAP=4Rcw zNth3oJ%D10tMC-s!AeN90%F>P|mE zh<4I_)#=Fv+`PnKZ4zc@l6T#EJoS$WYq8JSGBXO#wtSm+v=D;SspMK-6i#xnu{czg~? diff --git a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po index bc1133a5f9..2b90b01a83 100644 --- a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:11 msgid "Appearance" @@ -25,19 +23,19 @@ msgstr "" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" -msgstr "" +msgstr "صلاحيات غير كافية" #: templates/403.html:11 msgid "You don't have enough permissions for this operation." -msgstr "" +msgstr "ليس لديك صلاحيات كافية لهذه العملية." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "لم يتم العثور على الصفحة" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "" +msgstr "عفواً، لا يمكن العثور على الصفحة المطلوبة." #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" @@ -45,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -61,7 +59,7 @@ msgstr "" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "الاصدار" #: templates/appearance/about.html:64 #, python-format @@ -82,11 +80,11 @@ msgstr "" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "مجهول" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "تفاصيل المستخدم" #: templates/appearance/base.html:87 msgid "Success" @@ -106,7 +104,7 @@ msgstr "" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "الإجراءات" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" @@ -115,7 +113,7 @@ msgstr "" #: templates/appearance/calculate_form_title.html:7 #, python-format msgid "Details for: %(object)s" -msgstr "" +msgstr "تفاصيل عن %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format @@ -124,16 +122,16 @@ msgstr "" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "انشاء" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "تأكيد" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "تأكيد حذف" #: templates/appearance/generic_confirm.html:27 #, python-format @@ -142,34 +140,34 @@ msgstr "" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "نعم" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "لا" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "" +msgstr "مطلوب" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "حفظ" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "ارسال" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "إلغاء" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 @@ -191,7 +189,7 @@ msgstr "" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "معرف" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" @@ -211,7 +209,7 @@ msgstr "" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "البحث" #: templates/appearance/home.html:60 msgid "Advanced" @@ -219,26 +217,26 @@ msgstr "" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "Login" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "First time login" #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" +msgstr "You have just finished installing Mayan EDMS, congratulations!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "Login using the following credentials:" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Username: %(account)s" #: templates/appearance/login.html:27 #, python-format @@ -248,13 +246,13 @@ msgstr "" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Password: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Be sure to change the password to increase security and to disable this message." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" @@ -262,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "لا شيء" diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.mo index a97fde86c62bd1fd65e7fc40c6cc16a3c0b84279..33863e878f06beaafd8551b9723be1f1de205b07 100644 GIT binary patch literal 2240 zcmaKs&u<$=6vv0s^27WtzY&LtM4(Z-u^pBII07VnS3&&Q0&Zu) zMQ|Q9+y_aAMsng6@O$tpkaP_q_#0pWq`WooAh-Z_g16K6KZ8$Tejhvy{sofmJ|rjm zNzeh`2M>cWNO6`xs%r(L{6B$jfxm+9fq#QkPalF%yb(}?r@?d!tQ{sBhhjcQ6I>|4 z?#at`){dV(T2Mb|Ur8VJ`W1{)==z}m)svlvwrlEA zC$g!LO^Azaqsp6_*! z=AGQpTn>)TxV-3*{Qvs(SAtFWWMLp80Z+-!Dwdb(Rv0Iwo1b(g|=Hfk@8vUTc&Bg=J__0urf$!fMM zQy47_@06YI&Sh|}G>(c>oS8yRT3*uGDPMTOaXP+{lDhv~al|>c<3|}QGIEB4Qdma& zU4CrR(+}jje6pGu^W#YP&PW*5mCJ)EJ5~KX$9em)|4_g?`gy+Vc!rrp(==MGxlWTaq zlYB-p;nnPB=3BhJhjpvW+_IULlWSP|11X|aaBS{e36au%Bj}Z})NOv;J%ok=Iub^*FBs32BZOhg{Qm}?q zEou?@uTX_;o$Z!4Xdl{oU1n}lRX3A)7#qwiSv%FxN*wTsl&;JJjg;4)zb%^<^sn delta 102 zcmX>gc#_%To)F7a1|VPrVi_P-0b*t#)&XJ=umIwIprj>`2C0F8$&Z`6%0&)BAZiL_!$9tG7Z)M diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po index 8f47883c05..3796e144b4 100644 --- a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -32,7 +31,7 @@ msgstr "" #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "Страницата не е намерена" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -60,7 +59,7 @@ msgstr "" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "Версия" #: templates/appearance/about.html:64 #, python-format @@ -81,11 +80,11 @@ msgstr "" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "Анонимен" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "Данни за потребител" #: templates/appearance/base.html:87 msgid "Success" @@ -105,7 +104,7 @@ msgstr "" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "Действия" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" @@ -123,16 +122,16 @@ msgstr "" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "Създаване" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "Потвърждаване" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "Потвърдете изтриване" #: templates/appearance/generic_confirm.html:27 #, python-format @@ -141,11 +140,11 @@ msgstr "" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "Да" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "Не" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 @@ -157,18 +156,18 @@ msgstr "" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "Запазване" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "Подаване" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "Отказ" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 @@ -190,7 +189,7 @@ msgstr "" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "Идентификатор" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" @@ -210,7 +209,7 @@ msgstr "" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "Търсене" #: templates/appearance/home.html:60 msgid "Advanced" @@ -218,26 +217,26 @@ msgstr "" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "Влез" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "Логване за първи път" #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" +msgstr "Вие приключихте инсталирането на Mayan EDMS, поздравления!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "Логване, използвайки следните параметри:" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Потребителско име: %(account)s" #: templates/appearance/login.html:27 #, python-format @@ -247,13 +246,13 @@ msgstr "" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Парола: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Моля променете паролата, за да повишите нивото на сигурност и да деактивирате това съобщение." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" @@ -261,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "Няма" diff --git a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.mo index b45c5fd36683ef7a95c9a94a52b309f3070a2f67..40b2d1f1bafcf781b938f316dcc0e4438fed3206 100644 GIT binary patch literal 2409 zcmaKs&u<$=6vv0Q{4&2vftK<^nhKi6YS;FrrK;SxC}~;|+O$^ef_kW6>>aPi-kmWs zvrZHB#(`5LDg;vDRKW@H2OuOkB}Xnuh*Qf2frQ|OxNv~)TiZzx6(f&7^JZt>y!YnK zySs1ChYamS^cT?g+{aiE{0*e`{w~HI1aE>5gSWss_$l}R_{aGBU*O}Ackdp}?*k7& zJ_zmwL$CnOgU^CX;Qe3+oB|UND%c0$9`GZO^nC&z0Y4wle+SaJKY$^4cP#J4rbi(k z07>7=AlZEZ#1hs3Ujg3)FN5pgL*O0oPx$&XNP6$!kLG^@JK*nQxd~xyXCSTr5+waUf~5Bs@F@5zxCritG7Q<o#$Sqk|!os znk`0Bd(~0WvPJE(PDiyBX81tbR5_PBb1`3;|MSc#9p^4|Op=%tl3;$WMI^4uE*bo^ zWOW$Jwec_^(-Fjx!&N@(yfr#Lb9j0Zgrb`*k0)6}3?*wwVcT8SFxIXfTU7^<=)SLY5f@>e0WtZofmU$7VjV=JqCTSZ}64vh7|l8aRo%xAF+ znx@JN^~=p5&juJ5EFdYWe5Mkf3@XQinUIGkt0%&sa-vef!eChr6?y;Pbu(eLa`I>e zt#DB|A2hAd4kl7wEt{6KNZ@7TgjEI$be!R8f~FK{mCqZe75tnY4f3phP1-dXo1xO8 z$fvvB531$z%F0T~lU~)4*Gp}amhDKREvFQzKt`!6Cu8m9mV0Y{u3RiEEiRqg4oFz4 z6!0cIk~e6s4&beq*L``A2>c)3Z+c+Lh+{;MDdyIPgd3{zQ!VAU9I5jB ztU^7>tVn|M#-^^y^&l5r?f7Xv8rG)u;jmJxg?ws?)39==7KZ#)Ug1~{`AltQ@@ckq zf`<8y%4}HSH*So!U`?fnJt6kY6i*k}T)(Y)GA|`6)rwt`d`+~B6+`7wL99vfSu3xo znhdF!M1l`YPi(B?wz*SrX0<^oDvk%4nmF5dk9I~P>Ct}G7i(%LGz5bzM-pXy)R)U1 z^TCJDTlcQLT50gAK znB&MAc)4|I2_cKflAQs{9m137XY2x8qtQ;Q?p>4C5EHf_;A%>jY9c%yVMQ;4s{^Eh zKu+NLGM*PABurLfSLlO*m6R|;yLnr|_)!@WwBrBk(8fB7tnwl?huFY)D_aQfKX?L; A82|tP delta 102 zcmaDUw1LIqo)F7a1|VPrVi_P-0b*t#)&XJ=umIw3KuJp=4N?OGlb^Eq@|x-zSn3*? fC>WYq8JSGBXO#wtSm+v=D;SspMK-6imN5bVny3!H diff --git a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po index df96b01c52..685774f374 100644 --- a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:11 msgid "Appearance" @@ -25,19 +23,19 @@ msgstr "" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" -msgstr "" +msgstr "Nedovoljno dozvola" #: templates/403.html:11 msgid "You don't have enough permissions for this operation." -msgstr "" +msgstr "Nemate odgovarajuca prava za ovu operaciju." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "Stranica nije pronađena" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "" +msgstr "Žao nam je, ali tražena stranica ne može biti pronađena." #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" @@ -45,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -61,7 +59,7 @@ msgstr "" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "Verzija" #: templates/appearance/about.html:64 #, python-format @@ -82,11 +80,11 @@ msgstr "" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "Anonimni" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "Detalji o korisniku" #: templates/appearance/base.html:87 msgid "Success" @@ -106,7 +104,7 @@ msgstr "" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "Akcije" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" @@ -115,7 +113,7 @@ msgstr "" #: templates/appearance/calculate_form_title.html:7 #, python-format msgid "Details for: %(object)s" -msgstr "" +msgstr "Detalji o: %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format @@ -124,16 +122,16 @@ msgstr "" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "Kreirati" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "Potvrditi" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "Potvrditi brisanje" #: templates/appearance/generic_confirm.html:27 #, python-format @@ -142,34 +140,34 @@ msgstr "" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "Da" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "Ne" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "" +msgstr "potrebno" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "Sačuvati" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "Podnijeti" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "Otkazati" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 @@ -191,7 +189,7 @@ msgstr "" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "Identifikator" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" @@ -211,7 +209,7 @@ msgstr "" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "Pretraga" #: templates/appearance/home.html:60 msgid "Advanced" @@ -219,26 +217,26 @@ msgstr "" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "Prijava" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "Prijava - prvi put" #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" +msgstr "Upravo ste završili instalaciju Mayan EDMS, čestitamo!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "Prijava korištenjem sljedećih podataka:" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Korisnik: %(account)s" #: templates/appearance/login.html:27 #, python-format @@ -248,13 +246,13 @@ msgstr "" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Pasvord: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Ne zaboravite promijeniti pasvord da pojačate sigurnost i onemogućite dalje prikazivanje ove poruke." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" @@ -262,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "Nijedno" diff --git a/mayan/apps/appearance/locale/da/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/da/LC_MESSAGES/django.mo index a55a1d6d389b7c991a98f680fb571a91855a20b6..4f7193e2df68877e8eab1be37eab4e2ede245b68 100644 GIT binary patch delta 378 zcmXwzF-rqM5QQfuQH%k>+T#Ae!tNOly)I&5AebO(f8>_1;oOD2i)fX?PSPj{{sc?y zjGc{*m5rs1rGLUV$K}DtV`tuD=cE4Ioc(My9tc_k+u#&zfH`2j0^TjaI(P?7@Ch2= z3$(#E;M^~m*NFb$EpW9$v^qIv9WaQtfsSE`ykatVzQjhwa*cyp?4EKDnu_8)hNE}@9#!J?ubwY zDvCQw$c~h);Xs_|OT#U3m=rn=LaCOyP{lHOd2849juM+@#*VeGuHX{_V^iv3Xz9RD Nu`BP$CI~GL`3JDQOU?iQ delta 123 zcmdnMdW_lPo)F7a1|VPrVi_P-0b*t#)&XJ=umIv7prj>`2C0F8iLZQ3O?3?{b&X6E z49%>JOmq!Q3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEf$A)Djm#AcOo8e)=P>dx0ss5B=? diff --git a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po index aab8bad518..43f151afde 100644 --- a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-09-08 23:04+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -45,19 +44,15 @@ msgstr "Serverfehler" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren " -"gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "" -"Wenn Sie Hilfe brauchen, können Sie den Fehler über folgende Kennung " -"referenzieren: " +msgstr "Wenn Sie Hilfe brauchen, können Sie den Fehler über folgende Kennung referenzieren: " #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" @@ -185,9 +180,7 @@ msgstr "Kein Ergebnis" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von " -"%(total_pages)s)" +msgstr "Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -235,9 +228,7 @@ msgstr "Erstanmeldung" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"Herzlichen Glückwunsch! Sie haben die Installation von Mayan EDMS erfolgreich abgeschlossen. " +msgstr "Herzlichen Glückwunsch! Sie haben die Installation von Mayan EDMS erfolgreich abgeschlossen. " #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -262,9 +253,7 @@ msgstr "Passwort: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Bitte ändern Sie das Passwort, um die Sicherheit zu erhöhen und diese " -"Nachricht zu deaktivieren." +msgstr "Bitte ändern Sie das Passwort, um die Sicherheit zu erhöhen und diese Nachricht zu deaktivieren." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.mo index 62428f8d50522dd63e7e0352f34671f5e5213879..9611ab493ccb4a58a77096e41fa6e3d5aae16dcd 100644 GIT binary patch delta 23 ecmeyx^owai7q6MFfw8WUp@N~Am5JfR>5l5l}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhR2 PIwM0X1GCKvoWEEBWS|kp delta 66 zcmbOwH%o5AYYtOWT?0#9BNGKfGb}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhRA TItyJRa|Huapt{WpoWEEBXA2SB diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po index ceb91347f1..635d7b2b27 100644 --- a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -45,8 +44,8 @@ msgstr "Error de servidor" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -181,9 +180,7 @@ msgstr "Ningún resultado" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de " -"%(total_pages)s)" +msgstr "Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -231,8 +228,7 @@ msgstr "Primer inicio de sesión" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"!Felicitaciones! Acaba de terminar de instalar Mayan EDMS" +msgstr "!Felicitaciones! Acaba de terminar de instalar Mayan EDMS" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -257,9 +253,7 @@ msgstr "Contraseña: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Asegúrese de cambiar su contraseña para aumentar la seguridad y para " -"desactivar este mensaje" +msgstr "Asegúrese de cambiar su contraseña para aumentar la seguridad y para desactivar este mensaje" #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.mo index fc2475b0fcbecf5948e738337ce6933dddc3846e..6a8f8eec53d2fce72b31214beede74f8cf9bdfe2 100644 GIT binary patch literal 2975 zcmb`HU2GIp6vwX$eyrc%H-ZsuVYQyhk{JQUB>=5YPj{(;k4=}bF>;fMGPl1nsXTSmQ9QYtO+kC$WK7sjl za6kBM^Zjq&^O*k$J_T;w#Mn-7H%Rkd5I1`lLjrssd;u(i6FZctv1N^K(}_nLdVB&xCUa4rQ4DlJ7IRS# zY-v8PgU)ShP7t2SgM*aE`bD*&i+n$Bo)~)$q@3W=X!#1b3qOQpu4gcAZ$4A4s1DRq zl;`?Inxn*~cW8~YC!MJ$sn53JM>?>soQy)&<%F*E73=b)KU$WNVkZPwQ6P9Ixl^+J zBA!ZuS8Sz5WRRz2*LMP8E7%Dq3fyp%+rD{`ca@#Vz7E2-Dhx&>DRtj||bq2M|$R(M4OWmhR9*lA;KMjk2GFB+K&((~j9%^;CE#r9N|y(Mw; zK&Z$I6&`)T2A~c1Wr!>yKaXic-_~f?HE#`g5UN4?JjW&x7@u7g+d+jol4*Y0b%d`3 z8?rBA5O&~{*pLi@(E~geAy1eE;zA@;h!ZLlfg>X?Z{o;_Mkq-(gafI#6+3|3s4UV} zY$(c=-H@GCaGP&bz)XC*ELx+s9h~W-9vdpZBLWhQofC?klM&BLe{aZ32$Bn5M#WOA zvQ*Ya2TAB{Q+p=OE@OW_LcI#E@2V0abA1)so=1AG7rEaawSC^x-9L2O{{dv_7jabN znd8(>Mk=_d5E}?2b&u7Tx0+FA`Nk26K~a%GX!Wb2o3~CxMP&`kEKdxa8MaI_A~>rX zB4w#<4_oQitd0!N9L^rhSm}f5Gz_glanYsh|83Wi$)*qQPvc6QwpC~i2ez*eBDM8h zy$=Jw7@=U+u&~QnK0t~h&wZsZtYlNEk&%&PNZZ|lxRi8cITbYiG(oCNf>JJ>8Q*ogrz3T)5nm1v?Y_bXli0KlB% z-Ho+rSS@m0k0j7p8xzZA<{7jF-fUT#p4_S*H-Im({YtEy@16kl!_;i z`GWoeW-Z?=tj;0(B~GfXUV-h{+B9X{JiurgPaqj&K(a3)OC;AS-x7u1l&_|j^(>-6 zx^M&uNO)wvKsKleX+#cddWMd{Dl~6hWhDA)75?f}xFkcwV|pHkk-)S_p|0q9@}9qg zsMb7{gxX}8)X>X(<3q^w)kbvGO>-1J1xRvHy_YE$(vRPc!}K4ujLDVcxH~X?9YT>@ zRA-!tph*chCQ)$Wm%4_&fB}UwerI27D1EP=OiBnnjPPeDM+)84G@hh>GToq;P(!Mo kSuq-*C20*7ah13JjT)7tU@1h>{Qv)^Qrh@0AOghu58KlLt^fc4 delta 102 zcmbO)et_BHo)F7a1|VPrVi_P-0b*t#)&XJ=umIvVprj>`2C0F8$!=`Eyr#MambykJ f3WjD@MkbRNut|eNEOd>`6%0&)BAZXJu`vPwTG|cJ diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po index b5a5bb8406..ce904d9b5a 100644 --- a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:11 @@ -24,19 +23,19 @@ msgstr "" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" -msgstr "" +msgstr "مجوز ناکافی" #: templates/403.html:11 msgid "You don't have enough permissions for this operation." -msgstr "" +msgstr "مجوزهای لازم برای انجام این عملیات را ندارید." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "صفحه پیدا نشد." #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "" +msgstr "متاسفانه صفحه درخواستی پیدا نشد." #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -56,11 +55,11 @@ msgstr "" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" -msgstr "" +msgstr "درباره" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "نسخه" #: templates/appearance/about.html:64 #, python-format @@ -69,11 +68,11 @@ msgstr "" #: templates/appearance/about.html:88 msgid "Released under the Apache 2.0 License" -msgstr "" +msgstr "تحت لیسانس Apache 2.0" #: templates/appearance/about.html:100 msgid "Copyright © 2011-2015 Roberto Rosario." -msgstr "" +msgstr "کپی رایت و کپی" #: templates/appearance/base.html:43 msgid "Toggle navigation" @@ -81,11 +80,11 @@ msgstr "" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "ناشناس" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "جزئیات کاربر" #: templates/appearance/base.html:87 msgid "Success" @@ -105,7 +104,7 @@ msgstr "" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "عملیات" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" @@ -114,25 +113,25 @@ msgstr "" #: templates/appearance/calculate_form_title.html:7 #, python-format msgid "Details for: %(object)s" -msgstr "" +msgstr "جزئیات : %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format msgid "Edit: %(object)s" -msgstr "" +msgstr "ویرایش : %(object)s" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "ایجاد" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "تائید" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "تائید حذف" #: templates/appearance/generic_confirm.html:27 #, python-format @@ -141,39 +140,39 @@ msgstr "" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "بلی" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "خیر" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "" +msgstr "الزامی" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "ذخیره" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "ارسال" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "لغو" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 msgid "No results" -msgstr "" +msgstr "بی جواب و یا بی جواب" #: templates/appearance/generic_list_subtemplate.html:12 #, python-format @@ -190,11 +189,11 @@ msgstr "" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "مشخصه Identifier" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" -msgstr "" +msgstr "خانه" #: templates/appearance/home.html:21 msgid "Getting started" @@ -206,11 +205,11 @@ msgstr "" #: templates/appearance/home.html:57 msgid "Space separated terms" -msgstr "" +msgstr "عبارات جداکننده فضا" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "جستجو" #: templates/appearance/home.html:60 msgid "Advanced" @@ -218,42 +217,42 @@ msgstr "" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "لاگین" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "دفعه اول لاگین " #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" +msgstr "You have just finished installing Mayan EDMS, congratulations!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "نام کاربری و پسورد زیر را استفاده کنید" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Username: %(account)s" #: templates/appearance/login.html:27 #, python-format msgid "Email: %(email)s" -msgstr "" +msgstr "Email: %(email)s" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Password: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "برای امنیت بیشتر پسورد خود را تغییر دهید" #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" @@ -261,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "هیچکدام." diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.mo index 396658b91c4bdbeece08fcf49a0b090a89709606..b32fefbc5ce34866c2cbe0d565d1ca1460a8a830 100644 GIT binary patch literal 4586 zcmb7`ON<;x8GtJgLRcU`ATP|LLa=uiduAVY>}1vt*7lk#^2V#(wNXx{x2I;N?Cz>b zRrlDN3m1Y!WQiaWDMAV$P(qf72#_L9D2KUl0tq-E6u2NH#KAW%NRjydo|&C7SSYln z=j*Dj$6x=m|8no0FDkBM+@Iq9!yQVk!W-}9kLzc5D)m12bNGJvOL#YY3w{9p8cxCA z!FBj&xCHA=`V71R?}FciGXHsa4}1w8gg+j>|2_OT?LWZ>;7#~Zco&l&h7Ulx)ZvNcoV({-iJ^!??EW*JOV|&88{7(!TsYx051HJ=A?ysZ7kHHtDC1s-qQ^JkLHHXe=ld5Fd)@J2r5=J0K{@|nD0*9kGR{M>Zx4#T zpM$dgi;%6=%kXKqJ8bX62r_;e%Kl4m6|O)z|F@v%?>kWJ`pU5VIy^-CSMam&A5hkx zLg}*3{ZQuVVS5oS(moC~^uzw=p`7cx@cZx=P~u|)Bgy$Z6uUhOWxcndoc|`Ahj-H{ z=X)H=`In){{RBJ(&qJAiWBC5B5VKW21S(&fkq0iZtL!QA$R+0!-N^O%0V-b>`^Z(} z{sgz|H_I(?D6&W#i7w<4S@&^^kBJ}M%YBqvY$n&?0n{g<*jp~qAIGcoEp4$Q=CAZ7 zI+RO%2NT|MVS-8rpN68tI`o2QP^-6Y0qJ~XAKzF&mH14SUo|2tKHDHpD^~Ha9x+ZR^yROi^%L9g8Fs z*yRbI8@1XruCOg@f?92j6@(ou<2d)Bsxwb^bTBOw3|#}w8`(woY;vnMwcT5>p;jHo z$rEu1o@3c++0?S3?wXKW_7F!oUrAT}V=$5M7V~J_pjtA?VnaRY`5{Uyvm)~7j9SP3 z+W7+2m99y1;6sxt8u`_vmNqZ~?$y*xGNIaYxtpYT#$tV5pSP)T(WuR&#~)ssc0lMc zvO2ihv~7ovs!bol&LO>BqHE>`^K@w<>cy84EA^##7Q$_d$FWsiZL*7ab(c_(fd#sV zYO~zVZ2{60msVRHbUhuJW*m+`*tD)!i&0-NT`y*oP?3$JEsRc@xpf$hg?)&XaZF9z zql%r_siYA}>~&_+4n?+8*IPv3)ynn6*a6WCtdtT}TfW^U)XoOqZTf3&)OJbFwg+b2 z@x^L@m*qudBpWeB{C+rB zU5u!{IS7)f;gZ};+Biv3wj-9tfpEzLaWVCkBsly^J!PVLiUiU0Zo1GNOskFaWxF%! zj}n1sl-%O+(&~`)YF0J=N=Z<)M9CdAXdS1{GV$3_JdV@No*aj81J`D$GOL!04=ZsK zi(jkt;3WgpR-3h7HAh6047AlDC4?Ql znRa|p=;LRTaFyG9k(3%@-H~g%xK7&^opQUL`urqoxOR#CYFj4B8~U8&ijJP?6h*f& zH+SvYwK{(3qHUS$GGQ(ZvSOGcxg@S;nt7bdhHK2V!rbiC+UnZMSS<_n`6+U6LH?+1 z?Q}VFVXhZ*-7K+gNvcSQrZ{nN>s;-z@i^I$v{hSisc&MZhJI|@7JITbbSq4)XJtsT z+Bs5HY-rc5n(@Tqk{&#sm~r}~UYK2)Qp>taD0oWQsLDx^>+cSWoRJcTmWUm-9HqcL zQ|nRra9o|UzvNln^96+}CnwM=nTdaiIvhCo{u}Z#OLXk-R%Nfhs}1>51~>+0ESB`V z4VoOXSNxWdg5{>m!e&+irJEV+OfIQ*?2w0aW}@!zX8m1x6RE&fCh~w5h<1Z z-9fEHw8_$_)!IPE`qmP92IU27G6s*L^!8QLl!1UWx$VD(5eQmmu1o%4!#oKA-^T7~ zX>7JvH&Gv@0Gn2JG0%{&qqh!QOqS5lAA3iBo#?{jbcx+$58a@DJ@2RNHH1sh^!~xV8<02FWuWN ztrFE}N5)Czby8c!9}r&ZZ^BN?Wm-yqRf3)7o22YvJS;Kc-jjO2T`68Kw=;{QN6}&? zm6zj>i?Ld9!L+5U;S?K&5=}KW@|h#rYL?Ve3NyAF9~+BBkDuf6$)FN9`Al+6MAL4X zu2T1ZB9S%{m{La>=AgtK5zKU^Nx_NQL@C%*XkX@-Deyf&k?y}%sUn;9UFkx|&N>XSa-OKnxpEphxm%KkE`iGy7zt-2(hh2bRt z@xaRUC%!?e&o&Y#Mwdi8h{myD>x20{`2C0F8$xk?ac};Z, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" +"Last-Translator: Thierry Schott \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:11 msgid "Appearance" -msgstr "" +msgstr "Apparence" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" -msgstr "" +msgstr "Droits insuffisants" #: templates/403.html:11 msgid "You don't have enough permissions for this operation." -msgstr "" +msgstr "Vous n'avez pas les permissions requises pour cette opération." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "Page non trouvée" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "" +msgstr "Désolé, la page demandée n'a pu être trouvée." #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" -msgstr "" +msgstr "Erreur du serveur" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Une erreur vient de se produire. Elle a été signalée aux administrateurs du site par courriel et devrait être résolue rapidement. Merci de votre patience." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "" +msgstr "Si vous avez besoin d'assistance, vous pouvez faire référence à cette erreur grâce à l'identifiant suivant :" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" -msgstr "" +msgstr "A propos" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "Version" #: templates/appearance/about.html:64 #, python-format msgid "Build number: %(build_number)s" -msgstr "" +msgstr "Numéro de build : %(build_number)s" #: templates/appearance/about.html:88 msgid "Released under the Apache 2.0 License" -msgstr "" +msgstr "Publié sous licence Apache 2.0" #: templates/appearance/about.html:100 msgid "Copyright © 2011-2015 Roberto Rosario." -msgstr "" +msgstr "Copyright © 2011-2015 Roberto Rosario." #: templates/appearance/base.html:43 msgid "Toggle navigation" -msgstr "" +msgstr "Activer la navigation" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "Anonyme" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "Détails de l'utilisateur" #: templates/appearance/base.html:87 msgid "Success" -msgstr "" +msgstr "Succès de l'opération" #: templates/appearance/base.html:87 msgid "Information" -msgstr "" +msgstr "Information" #: templates/appearance/base.html:87 msgid "Warning" -msgstr "" +msgstr "Alerte" #: templates/appearance/base.html:87 msgid "Error" -msgstr "" +msgstr "Erreur" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "Actions" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" -msgstr "" +msgstr "Activer la liste déroulante" #: templates/appearance/calculate_form_title.html:7 #, python-format msgid "Details for: %(object)s" -msgstr "" +msgstr "Détails de : %(object)s " #: templates/appearance/calculate_form_title.html:10 #, python-format msgid "Edit: %(object)s" -msgstr "" +msgstr "Modifie r: %(object)s" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "Créer" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "Confirmer" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "Confirmer la suppression" #: templates/appearance/generic_confirm.html:27 #, python-format msgid "Delete: %(object)s?" -msgstr "" +msgstr "Supprimer : %(object)s?" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "Oui" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "Non" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "" +msgstr "Requis" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "Enregistrer" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "Soumettre" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "Annuler" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 msgid "No results" -msgstr "" +msgstr "Pas de résultats" #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" +msgstr "Total (%(start)s - %(end)s surof %(total)s) (Page %(page_number)s sur %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 #, python-format msgid "Total: %(total)s" -msgstr "" +msgstr "Total : %(total)s" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "Identifiant" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" -msgstr "" +msgstr "Accueil" #: templates/appearance/home.html:21 msgid "Getting started" -msgstr "" +msgstr "Démarrage" #: templates/appearance/home.html:24 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" +msgstr "Avant d'utiliser pleinement Mayan EDMS, les éléments suivants sont nécessaires :" #: templates/appearance/home.html:57 msgid "Space separated terms" -msgstr "" +msgstr "Termes séparés par des espaces" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "Recherche" #: templates/appearance/home.html:60 msgid "Advanced" -msgstr "" +msgstr "Avancé" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "Connexion" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "Première connexion" #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" +msgstr "Vous venez de finaliser l'installation de Mayan EDMS, félicitations!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "Connectez-vous en utilisant les informations d'identification suivantes :" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Nom d'utilisateur : %(account)s" #: templates/appearance/login.html:27 #, python-format msgid "Email: %(email)s" -msgstr "" +msgstr "Courriel : %(email)s" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Mot de passe : %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Assurez-vous de modifier votre mot de passe pour accroître la sécurité et pour ne plus avoir ce message." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" -msgstr "" +msgstr "Connexion" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "Aucun" diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.mo index 7e67eec0474dc89d3369bda55a08f76dfaf7d764..243230861f2151e0b919dc86927435c8d5f7d479 100644 GIT binary patch delta 422 zcmY+8Jxjw-6oyZm){iO*4!Stx4+N4}gLJF7X;l=R91QKz#wItA8w+;nPY?w+9UMCr zadC};brVNHaB&b^9G!em!NCI$?>YCLk9S~v7rSpWg$qKAfqAe8Ccq_-cm$(h0LH;H zD1ui|0PkP~e1J*t1*HE6oaTt~poIK9Pc#R;f=)qiq1e-H?STSw0pVXVQqd74focckiX_pgi zVB~D6w&+>*g5^4<<5kLzWtVNcw7FqzaXZlHuvYw(E2e8Ze|@e~vAzD?bZ)=)&~J0d zDYr;vy>^ORnFky;ece&nb(r1IG9Srn+Tu>u)9?~S0j+YvTFUDGZqsl0@F(s%0fv78 D@FHKj delta 102 zcmeywdXm}Vo)F7a1|VPrVi_P-0b*t#)&XJ=umIwIprj>`2C0F8$&8G?yr#MambykJ e3WjD@MkbS^8KprY7P>~}3I?V?kS)7@lr|Xhfl4_-3WMBwWXJlw)V774=C!<10 gYF`2C0F8iN(IWrn&}}x<)1n chGteqCKJy}g9I#ejm#AcOo0L$zj87H06^IeGynhq diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po index cecc39ce12..dfa9876348 100644 --- a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:11 @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -56,7 +55,7 @@ msgstr "" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" -msgstr "" +msgstr "Tentang" #: templates/appearance/about.html:62 msgid "Version" @@ -85,7 +84,7 @@ msgstr "" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "Profil lengkap pengguna" #: templates/appearance/base.html:87 msgid "Success" diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.mo index 941ec96a7e678ce4d4d66028fcedd727cb98b48e..0c5d5ca0769a8101f094c2333ff66f5fcd81ef5c 100644 GIT binary patch literal 1600 zcmZvbzi%8x6vro!KsdrLhhGsCFNK9I*!$r)CR)ov#&)EWa&Yop5E0ef?z_7|yEDhk ztevAlqM$((6m*D+0;NKtNuPp-jt(I@{sAN;D#Z8gons>y?d)ggZr;4_d;8trR?dH= zFkZ%d74uijRm`u?;fB$EM5zm42YeiS6MO=E3w#XhE`RTXPh3`~j5s`^)u@pq&2`*a3fDt}i^Q)FrGhfuiRMh)Z3??K-#$UIae? zzd#K+DEa@tDUV&(kb7hE*=jx}$4I%#; zPo7!HnNo)g$%8hi7civ;c`s*&^!X`F$@@H}=oF38uV*o3NY5|J!|upcQSD~YI2+Wi zb#`95DyTheGcMGgvt#4S6H?9vM^<~DHL%Z7n*s_N57-PIb#oj8*SAT$WW|PnfKWII6O_8t5Zd1J*v9s)6%<{sxVzNO8*K z`J;+M&Ou=f}3hkjY<>M?Z6&_Yl-ST_L5iK;h^rgigIUPi!?(Mj7|ueUK8 zw{(cf&}$nC9pwcax)J;6z@WWx*kC6WdXx-Vmnn6lE(}DjO=Fy;t=94JaWhJ|8S~v{ z=E{~|1o~Df)g+vkp;asoX_?qsZ}hsogVUlr&2|F@iFmcia6Ustk?+RVtkA}8Q#RE; zaNM~)yqVlM-6t8x?2`kVx!l-EN;gI(J`|f07X6~~x=3z1Uxt+ItX_tljcr;y?yOn5 zx`2C0F8$;r&Vyr#MambykJ f3WjD@MkbT@GE0L*EOd>`6%0&)BAcHw^D+VeZrct? diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po index 05448bd8ea..b08742ea44 100644 --- a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -24,19 +23,19 @@ msgstr "" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" -msgstr "" +msgstr "Permessi insufficienti" #: templates/403.html:11 msgid "You don't have enough permissions for this operation." -msgstr "" +msgstr "Non hai i permessi per effettuare questa operazione." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "Pagina non trovata" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "" +msgstr "Scusa ma la pagina richiesta non è disponibile" #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -56,11 +55,11 @@ msgstr "" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" -msgstr "" +msgstr "About" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "Versione" #: templates/appearance/about.html:64 #, python-format @@ -81,11 +80,11 @@ msgstr "" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "Anonimo" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "Dettagli utente" #: templates/appearance/base.html:87 msgid "Success" @@ -105,7 +104,7 @@ msgstr "" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "Azioni " #: templates/appearance/base.html:117 msgid "Toggle Dropdown" @@ -114,7 +113,7 @@ msgstr "" #: templates/appearance/calculate_form_title.html:7 #, python-format msgid "Details for: %(object)s" -msgstr "" +msgstr "Detaglio per: %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format @@ -123,16 +122,16 @@ msgstr "" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "Crea" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "Conferma" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "Conferma la cancellazione" #: templates/appearance/generic_confirm.html:27 #, python-format @@ -141,34 +140,34 @@ msgstr "" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "Si" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "No" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "" +msgstr "richiesto" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "Salva" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "Presentare" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "Annullare" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 @@ -190,7 +189,7 @@ msgstr "" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "Identificatore" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" @@ -210,7 +209,7 @@ msgstr "" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "Cerca" #: templates/appearance/home.html:60 msgid "Advanced" @@ -218,7 +217,7 @@ msgstr "" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "Login" #: templates/appearance/login.html:21 msgid "First time login" @@ -261,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "Nessuna " 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 80bce6197bcbca401230cc631e4d63ff31a0b699..97ad5f2a51e2f9bc520730ceb0e8cf4f11355015 100644 GIT binary patch literal 4451 zcmb7`Uu+yl8Ndf9EtpcEB{Wb96N(d?_|AWtrsa~f*s)z4#ffD*u0kKe-rd~Z*n6|b z%&Z+pLP7{Cf$~5lDi9LzfK((N5C|cj5Q4rC@c^O-0V=#9kdX3Lcq-!e?Vjy3q^elm z?C*AV{(S%D`}QyQ-}QpxdYtw_+V9?^)Dpb;7H(WWxJ#+G!XLtW;7{P&;LqUO;V?K$`w6uG~E5#Iy93OC@3Q1p5Y z%DVSq+~e>eDD&qAya2^DtMD!p>&q100Z7A!04~kwtf+yjvLI11peLVjgik*+Vvl>^2;uAgZe0K-u>dcn)Bz54Ke z_<1-1Uw|_I7ZB5^TTtTd_izUO5nhD%GFkMy3UON*L!gvZ@Qc1Cbkeei7mvRVgvDq=q}g$X%EpP#w3nJ_R}aiZeHkC;&i9TvRz#;eL30Xd0~Ee zt$gW>VHNi3+b?Rvo zBkJl96Cd%*C-a_BOKsz#?O5a0Qs=-x_`xy`y(h}fUb3sb=@@V5sw{707rkwh!`9Sx zf5nDca;VcwBp~=7icZJ2EF0>+@jc5P5-1l->B>6}6A2HwM-v9+l1UaC>Qc@RQ9_Z$ zz+Y$73jWtFkC?7-Z62!_8aB~hTn$@k6(tz;83MR9vmu)Dfdw)=R_k4CeIhW;I0C=gw62%pUY|GpT-+!}MK%sL8lALz*5No7 z&V4AIV`>r}<=F|{QW}xOUS}rHK4!ahz0L{TDnn14?GZiVr52}ZJx^1P+Pu&E?R>}W zJ-cMvrj=XQ^O$6MY;>#)tMQ;~gtc*P{*euI-r+IInDH>K$4Xy~j)`sd&)3kHYw{v6 zl8u-maX*-=t^`cqt`150;F6vh_Hoj}*p9Pwa1b_(mk?9WB;FBM>Z%FqDhZ;UyAx4& zajiBkFVgOCJjw~gqU4sGC@qz&m$S<8n+1oeBS!9GLF>>u%Oqy^&f`J4*_UI2FmNeL z6l=m!Ms3 zo+xTa);V39dbBn(t*1{nPEFUQPEAcQu(oQptytlI$IVPPrcR%n;u^V_gjicAH3vkL z40HiKt<$qvGemwpV>hw?SyA7*PbAV^_0?VWB-345;JVtnNqP-EU&K~dk6khZrq4** z;`(lk{l?_v&dyGq_;kT`%=LOJ?@jtDJNikIOyX*$-3yaUDi@q|*|kd-C&x#YmzEa} zEHqu88X+A=Qb}!nw~zYKT#u9eEV1s46cis!Ja=V%vG&BlIN6j8R$Fkbyp78m`iZ8E z`?5E5x!1@_R`?{VEt0qbef{z=oSQkLtH0;QoIZ9=PmiA&ImmCOEPI64(8^=-hddK^a;bC)hdb{P*&Ow4V>3&tCIcExs%cVR$hZV)HROh& z-en@YE-d+mQ;)7&Br;c58?syyb)mPZY^H5fotmaE?3Ui*T<9JHokqB!_(B-dktre+ z(^3wuon5>b6w372Rf7ms}iN@^D@rq-(f*fOcHA>3O^{Wd>;+sUQAPZiNuk_ zu)nIF=X6m3Qu2SlEVCTvs+v~C6mbx)X*fRYAeFZ4!RcigX4xB*ncz$&C!w2XeY$!% z$Jyyhg}R+<@|x-zSn3*? zC>WYq8JSGB, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" +"Last-Translator: Justin Albstbstmeijer \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 msgid "Appearance" -msgstr "" +msgstr "Uiterlijk" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" -msgstr "" +msgstr "Permissies zijn ontoereikend" #: templates/403.html:11 msgid "You don't have enough permissions for this operation." -msgstr "" +msgstr "U heeft niet genoeg permissies voor deze operatie." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "Pagina niet gevonden" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "" +msgstr "Excuses, maar de opgevraagde pagina kan niet worden gevonden." #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" -msgstr "" +msgstr "Server fout" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Er heeft een fout plaatsgevonden. Dit is gerapporteerd via email aan de beheerders van deze site en zou snel verholpen moeten worden. Bedankt voor uw geduld." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "" +msgstr "Als u hulp nodig heeft, kunt u naar deze fout refereren via de volgende identifier:" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" -msgstr "" +msgstr "Informatie" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "Versie" #: templates/appearance/about.html:64 #, python-format msgid "Build number: %(build_number)s" -msgstr "" +msgstr "Build nummer: %(build_number)s" #: templates/appearance/about.html:88 msgid "Released under the Apache 2.0 License" -msgstr "" +msgstr "Vrijgegeven onder de Apache 2.0 licentie" #: templates/appearance/about.html:100 msgid "Copyright © 2011-2015 Roberto Rosario." -msgstr "" +msgstr "Copyright © 2011-2015 Roberto Rosario." #: templates/appearance/base.html:43 msgid "Toggle navigation" -msgstr "" +msgstr "Toggle navigatie" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "Anoniem" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "gebruiker gegevens" #: templates/appearance/base.html:87 msgid "Success" -msgstr "" +msgstr "Succes" #: templates/appearance/base.html:87 msgid "Information" -msgstr "" +msgstr "Informatie" #: templates/appearance/base.html:87 msgid "Warning" -msgstr "" +msgstr "Waarschuwing" #: templates/appearance/base.html:87 msgid "Error" -msgstr "" +msgstr "Fout" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "Acties" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" -msgstr "" +msgstr "Toggle Dropdown" #: templates/appearance/calculate_form_title.html:7 #, python-format msgid "Details for: %(object)s" -msgstr "" +msgstr "Details voor: %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format msgid "Edit: %(object)s" -msgstr "" +msgstr "Aanpassen: %(object)s" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "Maak aan" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "Bevestig" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "Bevestig verwijdering" #: templates/appearance/generic_confirm.html:27 #, python-format msgid "Delete: %(object)s?" -msgstr "" +msgstr "Verwijder: %(object)s?" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "Ja" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "Nee" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "" +msgstr "Verplicht" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "Opslaan" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "Verstuur" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "Onderbreek" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 msgid "No results" -msgstr "" +msgstr "Geen resultaten" #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" +msgstr "Totaal (%(start)s - %(end)s van %(total)s) (Pagina %(page_number)s van %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 #, python-format msgid "Total: %(total)s" -msgstr "" +msgstr "Totaal: %(total)s" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "Identifier" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" -msgstr "" +msgstr "Thuis" #: templates/appearance/home.html:21 msgid "Getting started" -msgstr "" +msgstr "Beginnen" #: templates/appearance/home.html:24 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" +msgstr "Voordat u volledig gebruik kunt maken van Mayan EDMS heeft u het volgende nodig:" #: templates/appearance/home.html:57 msgid "Space separated terms" -msgstr "" +msgstr "Door spatie onderbroken voorwaarden" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "Zoek" #: templates/appearance/home.html:60 msgid "Advanced" -msgstr "" +msgstr "Geavanceerd" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "Aanmelden" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "Eerste aanmelding" #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" +msgstr "U heeft de installatie volbracht Mayan EDMS, gefeliciteerd!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "Meld u aan met de volgende gegevens:" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Gebruikersnaam: %(account)s" #: templates/appearance/login.html:27 #, python-format msgid "Email: %(email)s" -msgstr "" +msgstr "Email: %(email)s" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Wachtwoord: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Pas het wachtwoord aan om de beveiliging te verbeteren en om deze melding uit te schakelen." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" -msgstr "" +msgstr "Meld u aan" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "Geen" diff --git a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.mo index ec8489608a8acfc3b46d965aad7afab7cadf4e73..b79764e73ca2505b9cc3a87ef471d4ed37c2a65c 100644 GIT binary patch literal 4491 zcmai$UyNK;8Nd&UD662N2nxtSXuB(&+1aHOoOUT&+QO2yY<9P7;H93ub9VO3+ARp4KjE!-EEmkVc;jyctcSM$^QHb`oCc{7-p^vx$j@b}%B-JMDkZ|2MVPrb#h4Sxw`zx!~)eQ*+ryeFXOy9h=9SD?(h0L3q_Ly_;tQ2cdi#J@n< z|AP^4VN)K}ZBXRD7dGKTP~<;5>i;H`dEbJs!3$94eHkZ-el;j@_9PU)y~a)a`BT_{ zzk)LVJt+EKgCh5Tpy=@dJP99VlK5>C;0>t z=W^9(pQp)wQ#A3X=qmoe&DHfq?xOErn#dzM9i)lv80llpIs1P17Xa8npXqU!jd(l8?Sh+egFnm2JNO)%=<-ay1|1 z&c~UWZ=Ex7U|VWF_HjS*1zkyEO)9O;$AW-XKnF4K|CGSjwo7F_qN*Y|}EOsv<7FzoAs>8DJe_v6P-Emt37 zYgvW8)_oZIo{QT}b+m9{OUFgDX49tLGr1=3XNT`onR-ej4%JgWUUzA93~Q8=N?TMR7;vLYpT*E#VGNC%XgjXPt+a#_2(OlAl1-~U=MxhU8MF0S~!? zB&rjRf(*>DMW&XEwaDcl2ncDlvVpDlWlXa%fj``|t{3v{zSJgO+$cvyHqKmbwP{5z z#&Im{)2woitx0%PXD8dJq!CHnOU&dw&BK0OuW$mpRp^PcQ$)}4QoyNN@$EK8?O5uQ zmhZ*e@3A@O+C#Ul_}qkga?fNHR#Ta-5!No=LII&iNV} zb5=fNjASFGNZgO+sxuj;Zw(Jg^%9%Nj{DdI7(3=H?H+{ZZ7LzAR!tfcSLy|usTW8P zEg$d8^#-ohHugn(V>}+^1Y%KgiziAeCF|9!YJ8{QP_2uRH?W|K(K-wzX1CAdZo1i# zV?SXKw^^zPtL3r>l!S>RuGM1dB?HtJTD6h1&9RI%u~d1vb}DPTR_$of&T1>ZsV5en zTd7sK1np|ah@z%sorAT;BemHXJ#(;mV5ZhM&}cBQwq(yavBHPP&CWC%2On;5O`J4Y zURxnGXNV{nXw`Q(slkTEc0p;nzL#~KKHRJK#@?T7OKjBxA3ebeal62KwH0fkre5?R zCeo7|d7d<7O4qqCrDITQ^!g5n$10Oh>!ARZZe*mo6$#fL-TphOyh~US-p2}^>}#hfILo0 zcjNF(L%;lT)h}ZjQ_PuR&g|5oiS0}nbgY{1%Kb%SdPwKF(M5@Lk?-}@YQG&`-J)o& z^>yNt)b!ldZ<7Ve1aFjfa6Zd>)J76z5ntWn69&;;9~H6dntZ>GozKlX-k&eRJ6q1>`NcsP(<(a&98oX_ zyGFMMn^!LNVl%9u{dF-vRrgstxEMNIm#3v&D>`Cayx{|CMC1pT<=wY>9(Q2v4BL>6 zaAMo*HTHj_Ra9;-ZK-3<4_BK0}HRu?1+Sy)TvM=XU##&uS+#q=D zj8xZ=7CTQmNlX44;qt&0*KfmtPyFCw&zV*gZFnF3kEW)pdwoI-m8&=D)@5u$TasEl z|0ys^Up*snMuOT-hLY)r)p$HDul8GpIT$gNDjRg1zCq=E(IkW)ZZ5i}qlV6*YNiCD zA&^7gmZ-zZD4UgdX1_)pJ-Cb$4Qp2-nc;!(mgwaL|=`tm2->@>5yM>jaJc{W5Ez3KDcB^u=q#Ud5s(g&>RYg)xg^(1aPMZ>| zN^os=jfcYxiu9@^7NefSU*xyT1g%vordvf=gl7r7vEc3#q1)k&_SMdG)X(Yc%Jc1m?!KRv9|r054!uOFGV, 2016 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" +"Last-Translator: Wojciech Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:11 msgid "Appearance" -msgstr "" +msgstr "Wygląd" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" -msgstr "" +msgstr "Niewystarczające uprawnienia" #: templates/403.html:11 msgid "You don't have enough permissions for this operation." -msgstr "" +msgstr "Nie masz wystarczających uprawnień do tej operacji." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "Nie znaleziono strony" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "" +msgstr "Przepraszamy, ale żądana strona nie została znaleziona." #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" -msgstr "" +msgstr "Błąd serwera" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Wystąpił błąd. Wiadomość o tym została przekazana do administratorów i wkrótce problem zostanie rozwiązany. Dziękujemy za cierpliwość." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "" +msgstr "Jeśli potrzebujesz pomocy, możesz odwołać się do tego błędu poprzez następujący identyfikator:" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" -msgstr "" +msgstr "Informacje" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "Wersja" #: templates/appearance/about.html:64 #, python-format msgid "Build number: %(build_number)s" -msgstr "" +msgstr "Numer wersji: %(build_number)s" #: templates/appearance/about.html:88 msgid "Released under the Apache 2.0 License" -msgstr "" +msgstr "Wydano na licencji Apache 2.0 License" #: templates/appearance/about.html:100 msgid "Copyright © 2011-2015 Roberto Rosario." -msgstr "" +msgstr "Prawa autorskie © 2011-2015 Roberto Rosario." #: templates/appearance/base.html:43 msgid "Toggle navigation" -msgstr "" +msgstr "Rozwiń nawigację" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "Anonimowy" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "Dane użytkownika" #: templates/appearance/base.html:87 msgid "Success" -msgstr "" +msgstr "Sukces" #: templates/appearance/base.html:87 msgid "Information" -msgstr "" +msgstr "Informacja" #: templates/appearance/base.html:87 msgid "Warning" -msgstr "" +msgstr "Ostrzeżenie" #: templates/appearance/base.html:87 msgid "Error" -msgstr "" +msgstr "Błąd" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "Akcje" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" -msgstr "" +msgstr "Rozwiń listę" #: templates/appearance/calculate_form_title.html:7 #, python-format msgid "Details for: %(object)s" -msgstr "" +msgstr "Szczegóły dla: %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format msgid "Edit: %(object)s" -msgstr "" +msgstr "Edytuj: %(object)s" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "Utwórz" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "Potwierdź" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "Potwierdź usunięcie" #: templates/appearance/generic_confirm.html:27 #, python-format msgid "Delete: %(object)s?" -msgstr "" +msgstr "Usunąć: %(object)s?" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "Tak" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "Nie" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "" +msgstr "wymagane" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "Zapisz" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "Wykonaj" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "Anuluj" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 msgid "No results" -msgstr "" +msgstr "Brak wyników" #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" +msgstr "Razem (%(start)s - %(end)s z %(total)s) (Strona %(page_number)s z %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 #, python-format msgid "Total: %(total)s" -msgstr "" +msgstr "Razem: %(total)s" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "Identyfikator" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" -msgstr "" +msgstr "Strona główna" #: templates/appearance/home.html:21 msgid "Getting started" -msgstr "" +msgstr "Rozpoczynamy" #: templates/appearance/home.html:24 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" +msgstr "Zanim w pełni zaczniesz używać Mayan EDMS musisz:" #: templates/appearance/home.html:57 msgid "Space separated terms" -msgstr "" +msgstr "Słowa rozdzielone spacjami" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "Szukaj" #: templates/appearance/home.html:60 msgid "Advanced" -msgstr "" +msgstr "Zaawansowane" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "Logowanie" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "Pierwsze logowanie" #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" +msgstr "Właśnie ukończyłeś instalację Mayan EDMS. Gratulacje!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "Logowanie przy użyciu następujących poświadczeń:" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Nazwa użytkownika: %(account)s" #: templates/appearance/login.html:27 #, python-format msgid "Email: %(email)s" -msgstr "" +msgstr "Email: %(email)s" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Hasło: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Aby poprawić bezpieczeństwo i usunąć ten komunikat, nie zapomnij zmienić hasła." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" -msgstr "" +msgstr "Zaloguj" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "Brak" diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.mo index 749ba8734acdc909c9608943922759311c80c1a8..3ef914acae9769069554f29802931ee918855cd0 100644 GIT binary patch literal 2104 zcmai!$!{D*6vm6hY!kMaHEb%Rgm_4L788u=#2~L=DK;a|1c=0en(msJLfuuJs%kri zoDdw53{oUGq9EnO$>J{_yE|h zxCBmN+y!gkTi|101l|r_0bz=LP_2Ii(*8Y=>|X^>f?rni-+|=E4`3Vou^QL#(mfa- z14i!h9~c|*6Emj&u8e%$vDH}lTPD_&b)I{bN}iaZ z((E;pO12(L?bSd@%ht8a2Llx;%=%jUK*yVrCM4-JNSzldLPYCF@FIqY>*GYj;oceh$}=Eh{hO(s>ypZ?GMi zJc)}F`m#Kv!Mb@rRi0gN(jpZ_@azp~$yIhyI(E_IJU05I=OdiMr8fC+bTA%DRhemn zCzzPhr}t!>H7SRZV-p^Ag0eCUFn33;vadM_vn z0%O4n>JswVR(mdJJs-@rd3!EA(+*l^S}kl0w&b=VZ~wb*wjH+SPPNc#=Y{h@&kF4l z;ie~r2>>hZo-sbR~=18yuXN`Po%$uFo zJ-#k@xj&W;mEXqDc>&33l3Y5`oUjwM9qe(Ls8neIhpxd5tFTD&OGeTaCmz%rFBB+l z6=lale#+99VEk3240-P$cd}Pa-B4sCVq;mS)FEX6FF~NCK9P@gjcyfOXqkVJ%{S`iEEMz;P>udn99#)uWtz-Oxn+C_Pi$&_(b$-{7Y(7>nzhn3RBr|Ur0V#9N<67^mYED5fNL8Xj>;hAwRR}=9TNjQ*#vdTpP U3ndqIX)x2bYAF18A2MP80?+L%i~s-t delta 124 zcmdlXaEjUDo)F7a1|VPrVi_P-0b*t#)&XJ=umIu-KuJp=4N?OGlQUR+O-*$TEOm`c z6b#L*j7)S5ObiUT0{nG@Qp+-nGxPIwT@p)DtrUz541ww_bdAgv3`~LQHosyKU<3dN C>lC#B diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po index 73629a65dc..9e5d4060a7 100644 --- a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -24,19 +23,19 @@ msgstr "" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" -msgstr "" +msgstr "Permissões insuficientes" #: templates/403.html:11 msgid "You don't have enough permissions for this operation." -msgstr "" +msgstr "Não possui permissões suficientes para esta operação." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "Página não encontrada" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "" +msgstr "Desculpe, mas a página solicitada não foi encontrada." #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -60,7 +59,7 @@ msgstr "" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "Versão" #: templates/appearance/about.html:64 #, python-format @@ -81,11 +80,11 @@ msgstr "" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "Anónimo" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "Detalhes do utilizador" #: templates/appearance/base.html:87 msgid "Success" @@ -105,7 +104,7 @@ msgstr "" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "Ações" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" @@ -114,25 +113,25 @@ msgstr "" #: templates/appearance/calculate_form_title.html:7 #, python-format msgid "Details for: %(object)s" -msgstr "" +msgstr "Detalhes para: %(object)s " #: templates/appearance/calculate_form_title.html:10 #, python-format msgid "Edit: %(object)s" -msgstr "" +msgstr "Editar: %(object)s" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "Criar" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "Confirmar" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "Confirmar eliminação" #: templates/appearance/generic_confirm.html:27 #, python-format @@ -141,39 +140,39 @@ msgstr "" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "Sim" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "Não" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "" +msgstr "obrigatório" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "Guardar" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "Submeter" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 msgid "No results" -msgstr "" +msgstr "Sem resultados" #: templates/appearance/generic_list_subtemplate.html:12 #, python-format @@ -190,11 +189,11 @@ msgstr "" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "Identificador" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" -msgstr "" +msgstr "início" #: templates/appearance/home.html:21 msgid "Getting started" @@ -210,7 +209,7 @@ msgstr "" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "Procurar" #: templates/appearance/home.html:60 msgid "Advanced" @@ -218,11 +217,11 @@ msgstr "" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "Iniciar a sessão" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "Primeiro início de sessão" #: templates/appearance/login.html:24 msgid "" @@ -247,13 +246,13 @@ msgstr "" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Senha: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Certifique-se de que altera a senha para aumentar a segurança e que desativa esta mensagem." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" @@ -261,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "Nenhum" 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 4617e29619fb3f5cd201ecf458eef334774cb441..276023fcc5ce2e47ed4753abdaee55c8831d4cc8 100644 GIT binary patch literal 2755 zcma)-+lw4U6vittMxA&|yhRgDMYCp?Y|mv)Vwmhk_7+^pnqhYmhzL^CT{BamyJ}LG zy#zr7pL`V`^g#%Dh{=m05duL(=EZ+Nd=LZ?#0UK!{7z5L?nDJGru)}j-Boq!JEy<- zdEc&&8QKvX2XRdAVC)3=_D-D8s`oK=KUf1F0AB?k0$&3g;1akS{Iqy}4SW>$H;eu| z;4`@Y7JMB15j+h3Ufh>^+=ly$`^n z;78yXco)Qv{elz4_ZwIP{{)``4`FiZKLI`rPJ^`05=i^(fe4XpfTYK};Cb*X@Ii1V z27d;v_JHVOw=jsteTfr2zXQGneplQdL?`Js20j5+KpHm>J_{~^`@k4{5nKalU!Q;! z=jY%f;1?k2`3*?pe*nk8pFrC04lF|Y>;`GvUhrvfKX?SJfb@Q|czzYcQ1(7J1AYiT z2Yz4l{|Y{d`#(U6YX>H$eI5ZxpGj~Utb)s6Ry@B8LY}-Gz?pJNjmA=YY=C>t6bHpf zZ7&X5?+^~sVc2L*YP2`X8#T)3^Ej|%uH_3L)fhs~8|h88O>GYjsza)!mv9Ul#|7z0 z8d4(-Xy2qY=}x&J9ocNl1kYw;uZ(tVRvW#Unc&!*&7P3 zt#oXqaClF~!79JWh0Y%&%86D=1C-;LbWU_+nav9w%aqL<-Bvamk|#2iUb1;i1uRG} zRO)!!*g78@H?7Mu_7jdRCd%L2k>R~MpLX6F-8nNhE~#U}O;?H@c2-&ExmTIwsp%-q zUN@O!ONrE8wUxANNxRT)t5~6j_oU5~bGZoT^4Ie-4^HV$zV)_AQ?pKY*mgdPNL`)1 zY4GD#x{!K@OD$Og`{mkr>>}s{w*$>aqaErv8t@8~fSd`(AZhb8XL}-s>Qm(^Kc`}; zon)(G4JRpV+-0lA+RaJc3fL!Jv+_!i&SQoiMG%{iCV3n!IS8f9Rxu$ZtS2nwMz*kR z$5ultQ=VOLST-4CAivQflcQ0K7;|dmV_W5m(voQGl635n2|O|SsOMb-$)z@-(;Zco z(mJRL1HA>6Tsa?=zkfL(Uu~t8>mo9xofm0JdJmJlEH;Jaiwn!ETkB6^m%4+gLYhzK z4l`0gAw#TT4OLIHlte|8b-q1CX+`#o_0h8Hs3e*T9TzoCotGNtn^9hj2rgQHNOe9{ zt(}ajuS8QdUOQPoUW=;7t5v)ht;jV+yZ`5VQ?+{a6~yrYFeQkLZq@@F)eBF z{j3-#tTK2(cLEX?HKoYvyn(1f2Z@w?e9nrisA@jm^}biHRMywm%buoEZMjj7O;)jk zNo*w}aUz*yu96lLR(k%Oxs}R9X?baRaa)60xmvt?1-^TFlJ zxaMbgZQ^tZ#oMxy&Gv8fzeerM>i%u5GQ;Mf4ZcrQas&ku$wi7H6_yK>t?mlcwiR52 z4B;2O9jvMQHv}ht!ox&56vG;x;%g9aAWaSg%gG%`*rE4~Uh&0^I1R3U9T8ZCC*(wF zSGs)4d#wjvB>rYk(SO=e!@`M_HH8_W%wuJ?>?jtAv8*vLAp}9?9|~`hY+y)>+QW~7 zgUcE&9OUQ(g*3XtkYXj2W16-wup`U~M}lY}BTrIVaC(Xl6CVxAC=oCcNILq7|C=$P zK%p)cb*6DKzNRB-?e1A?rKo^I!CntG^V3D`}wLAo8FaZ=yifDTM z+sHCm&sJQf%$ktGILg0tJ<-2`#dFh2Ozu|r%NR)!LJKbRui?R5k>7%XDZqN2;q6e5#{7WRefp?Sf2l*rAC YPgi*HCpDQ@SF3+h!?@&zf)yF|7h09xvH$=8 delta 124 zcmX>sdV|^Go)F7a1|VPrVi_P-0b*t#)&XJ=umIwDKuJp=4N?OGleyS@O-*$TEOm`c z6b#L*j7)S5ObiUT0{nG@Qp+-nGxPIwT@p)DtrUz541ww_bdAgv3`~LQHutc}F#-St CJQOzo 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 1259a30002..1894ef15f3 100644 --- a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:11 @@ -24,19 +23,19 @@ msgstr "" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" -msgstr "" +msgstr "Permissão insuficiente" #: templates/403.html:11 msgid "You don't have enough permissions for this operation." -msgstr "" +msgstr "Você não tem permissões suficientes para essa operação." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "Pagina não encontrada" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "" +msgstr "Desculpe, mas a página solicitada não pôde ser encontrado." #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -56,11 +55,11 @@ msgstr "" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" -msgstr "" +msgstr "Sobre" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "Versão" #: templates/appearance/about.html:64 #, python-format @@ -69,7 +68,7 @@ msgstr "" #: templates/appearance/about.html:88 msgid "Released under the Apache 2.0 License" -msgstr "" +msgstr "Lançado sob a licença Apache 2.0 14" #: templates/appearance/about.html:100 msgid "Copyright © 2011-2015 Roberto Rosario." @@ -81,11 +80,11 @@ msgstr "" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "Anônimo" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "Detalhes do usuário" #: templates/appearance/base.html:87 msgid "Success" @@ -105,7 +104,7 @@ msgstr "" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "Ações" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" @@ -114,25 +113,25 @@ msgstr "" #: templates/appearance/calculate_form_title.html:7 #, python-format msgid "Details for: %(object)s" -msgstr "" +msgstr "Detalhes para: %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format msgid "Edit: %(object)s" -msgstr "" +msgstr "Editar: %(object)s" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "Criar" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "Confirmar" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "Confirmar Exclusão" #: templates/appearance/generic_confirm.html:27 #, python-format @@ -141,39 +140,39 @@ msgstr "" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "Sim" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "não" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "" +msgstr "exigido" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "Salvar" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "Submeter" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 msgid "No results" -msgstr "" +msgstr "resultados" #: templates/appearance/generic_list_subtemplate.html:12 #, python-format @@ -190,11 +189,11 @@ msgstr "" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "Identificador" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" -msgstr "" +msgstr "inicio" #: templates/appearance/home.html:21 msgid "Getting started" @@ -206,11 +205,11 @@ msgstr "" #: templates/appearance/home.html:57 msgid "Space separated terms" -msgstr "" +msgstr "Termos de espaço separado" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "Pesquisa" #: templates/appearance/home.html:60 msgid "Advanced" @@ -218,42 +217,42 @@ msgstr "" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "Login" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "Primeiro login" #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" +msgstr "Você acaba de terminar de instalar Maia EDMS , parabéns!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "Entre usando as seguintes credenciais" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Nome: %(account)s" #: templates/appearance/login.html:27 #, python-format msgid "Email: %(email)s" -msgstr "" +msgstr "E-mail: %(email)s" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Senha: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Certifique-se de alterar a senha para aumentar a segurança e para desativar esta mensagem" #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" @@ -261,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "Nenhum" 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 a39c0053ca04407a5ee8304c24a4e20adfa70ca5..d910e44789cb43e179cd3d62f77c3fb9f3f940be 100644 GIT binary patch literal 2388 zcmZ{lONG$EXnn+WbZb32>hy?{~4rxe*s(IgL1qVA3cfjevs_F z4wB#RfLOv-!8gIn;6?Cb@GcF9SLgcK<#23q8D=guO**BS|#Zv3va6fL_V9lK%z?;Cx{ z^C8^fQk#$tccz5$IxdSrq6F2vUVK%ozZ#I^fzrwi;jGfmi!7r=O+sH58$$DQ3(Kq9 z`_CaBox)Ve3Ulrtqj(ik%R1Ij`J$zMRC*cnsfo&p92x7QWtXacbS9)O>YA8WIv2Z9 zaT?%Uw17hq^Z91$Xw*C$&9`{#Xndpr;oR7Lz zXa^VRT&Xw!kT(K(%%K57#4V?E`!U5|OOSEZ8$E3#;}uAs8FD;4T@eyeDwft;vAxdDL1>lmbN+{N61!echMW1te%q zaFO7ykZOplb;wc3q`1DdIgyKJwHfHU3#7ns#$r6j`@)i>&=$^Q z*wqUx8gDlW9`Z9#Jl)#Fo^{qm0+g4iBqN2PG>t=|JHaj$(T%Uii{tbSOD>Hprj>`2C0F8$xm5)c};Z`6%0&)BAe4$-5CLNT@D=p 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 366b8371f2..8f28b1c415 100644 --- a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:11 msgid "Appearance" @@ -25,19 +23,19 @@ msgstr "" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" -msgstr "" +msgstr "permisiuni insuficiente" #: templates/403.html:11 msgid "You don't have enough permissions for this operation." -msgstr "" +msgstr "Nu aveți permisiuni suficiente pentru această operație." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "Pagina nu a fost gasită" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "" +msgstr "Ne pare rău, dar pagina solicitată nu a putut fi găsit." #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" @@ -45,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -61,7 +59,7 @@ msgstr "" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "Versiune" #: templates/appearance/about.html:64 #, python-format @@ -82,11 +80,11 @@ msgstr "" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "anonim" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "detalii utilizator" #: templates/appearance/base.html:87 msgid "Success" @@ -106,7 +104,7 @@ msgstr "" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "Acţiuni" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" @@ -115,7 +113,7 @@ msgstr "" #: templates/appearance/calculate_form_title.html:7 #, python-format msgid "Details for: %(object)s" -msgstr "" +msgstr "Detalii pentru: %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format @@ -124,16 +122,16 @@ msgstr "" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "Creati" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "Confirmă" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "Confirmă stergerea" #: templates/appearance/generic_confirm.html:27 #, python-format @@ -142,34 +140,34 @@ msgstr "" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "Da" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "Nu" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "" +msgstr "necesar" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "salvează" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "Trimiteţi" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "Anulează" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 @@ -191,7 +189,7 @@ msgstr "" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "ID" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" @@ -211,7 +209,7 @@ msgstr "" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "Căută" #: templates/appearance/home.html:60 msgid "Advanced" @@ -219,26 +217,26 @@ msgstr "" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "Conectare" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "Prima autentificare" #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" +msgstr "Tocmai ați terminat de instalat Mayan EDMS, felicitări!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "Intrare utilizând acreditările următoarele:" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Utilizator: %(account)s" #: templates/appearance/login.html:27 #, python-format @@ -248,13 +246,13 @@ msgstr "" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Parola: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Asigurați-vă că pentru a schimba parola pentru a spori securitatea și pentru a dezactiva acest mesaj." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" @@ -262,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "Nici unul" diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.mo index 11959fe3bcfef6bf6bc6a7afe2729c783889f7b6..a60757c426f5c71f43e9c89332a58df3682c7112 100644 GIT binary patch literal 2900 zcmai#+iw(A9LJA>xAnqB1@V%c8ZK?Yn`4UKZYj7L*8%X)B zgOj&G4t9aP;OpRNum!vcQr#8s2>1g?`LBVPFM=Du&ERHmJJ<)V2P2TqT>_7TH^B|y z?_fLlBsMc(5~RAzAWC2#fLZWEP=P;!tnowRSMk1qcO71;mFj6cribbix?j?s?v?tB@^3t(=_~aK=|~UN!S>}s*O!Xz zlfE1)`;lV%1y@lZcva=j_WC2@Pjnp(&`VN6uGcXu|sa4 zLLRzh!9Bm|O4gSbGIR^B2w0y~QK8`GT&(aB5tLn}OfiRzrTNJt<;tQdq2PO-KT0#C zZ@f63O0y$A{!797kt~;fh!i53$Fx>(ns=)(@MW=QOKU@fHr1W1FS0@BlwgCx334Si z=m)`AJ0FgaF*FOr`;kzg$U{B&&iRp-HxY(KEl39&jE2i@$c`xyKoBE=nMkKBRz`Mm zI4vQ_a^UwwK-IDnLa`Hm#Phz~7V;9(;X?XRv9wYW(zSLiK7?}U&O6L0V}CM&#sycp zs)S@+sY1u|NT^2XS!c|V{NRD?U^9L@>XAjbiag^^wJ@sJg|w_c@ag)jzPwe>GR>D= zBnHHYAB0v`72UkGKPoC~$WQY`|Is1KbOVyJ4xlO0yfbC*vQj&&PMh1i(p|Qd>Pn?x zXbp%{E>-`iU8kK+?b@EglQ`_C&>9LHsgNS|)qp=N0yOY|ubja3VIYeUuErV?P8r(~ z`UiEkmcno(olK67j&_7}+%1UH9XY?83~C31WSIo9M82$&UfoGDh>~rIY+v@^a?y52 zDuKQa(V*7Q*a#{L#py6P;yJF|L!VcmM3^}?bjaGhY)26bBCrn1oS(-nr1|b)H*6-G z=0TL`_oBe@tV4cKR%tFr%v5E%_VC&;(<-;vsZ7S^Teor=rdl$#&G+&YhdJgwna;*m zcczPm=0vL7?&N3A)QzE2~j@93#`LeJ_+*i`hr_zEp^?9alYLYB0_ z^%5-3;wUV*o&hFkZBb9hm*Y!yLo7{UIE!U6KS!=i@G2Z~jL++NoV*raY#xZOVsTM_ zhnTQm#J{Qdlg4fb(!+K$kN67HU&CYui_^M-e7;92$o$cb8Oj@}#^Yq6@6}xD3e(@f z!R)_}QDsxh=|1!u5g{qmG)$nwG=>#@pUR((FHkai5<|+qYHFp;ai(u$1M(r$YWxx8 zoHq(D#%G!S3L7(ZWk~i#=wU=(g6~N^&GZfUoui{GhV9T0K}d7DrP+8KIbeZGo5AE7 zbgLpm3?VNLFT|HAVJd&2Hc6Y<@p%H>2llFZ0g^x}icFXNF_p7G2N$q1SF1u#lJLz2 zSow?calfKTj@C~5uTIU)SAp#;nE%ZKh$L-qHHdS7^A5W|-{4swaaBt`o1T>%8EmG|+ zdISE?8BLKy?R$9Ktv9}^`WG=r_p@X=ZxWYM)m2n@BfiY3VN3_i(>HUGrW}G!qQmfE w=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:11 msgid "Appearance" @@ -26,19 +23,19 @@ msgstr "" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" -msgstr "" +msgstr "Недостаточно прав" #: templates/403.html:11 msgid "You don't have enough permissions for this operation." -msgstr "" +msgstr "У вас недостаточно прав для этой операции." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "" +msgstr "Страница не найдена" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "" +msgstr "Извините, но запрашиваемая страница не найдена." #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" @@ -46,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -62,7 +59,7 @@ msgstr "" #: templates/appearance/about.html:62 msgid "Version" -msgstr "" +msgstr "Версия" #: templates/appearance/about.html:64 #, python-format @@ -83,11 +80,11 @@ msgstr "" #: templates/appearance/base.html:72 msgid "Anonymous" -msgstr "" +msgstr "Анонимно" #: templates/appearance/base.html:74 msgid "User details" -msgstr "" +msgstr "сведения о пользователе" #: templates/appearance/base.html:87 msgid "Success" @@ -107,7 +104,7 @@ msgstr "" #: templates/appearance/base.html:116 msgid "Actions" -msgstr "" +msgstr "Действия" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" @@ -116,7 +113,7 @@ msgstr "" #: templates/appearance/calculate_form_title.html:7 #, python-format msgid "Details for: %(object)s" -msgstr "" +msgstr "Подробности: %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format @@ -125,16 +122,16 @@ msgstr "" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "" +msgstr "Создать" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 msgid "Confirm" -msgstr "" +msgstr "Подтверждать" #: templates/appearance/generic_confirm.html:11 msgid "Confirm delete" -msgstr "" +msgstr "Подтвердить удаление" #: templates/appearance/generic_confirm.html:27 #, python-format @@ -143,34 +140,34 @@ msgstr "" #: templates/appearance/generic_confirm.html:47 msgid "Yes" -msgstr "" +msgstr "Да" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "" +msgstr "Нет" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "" +msgstr "требуется" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Save" -msgstr "" +msgstr "Сохранить" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "" +msgstr "Подтвердить" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 msgid "Cancel" -msgstr "" +msgstr "Отменить" #: templates/appearance/generic_list_horizontal.html:20 #: templates/appearance/generic_list_subtemplate.html:108 @@ -192,7 +189,7 @@ msgstr "" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" -msgstr "" +msgstr "Идентификатор" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" @@ -212,7 +209,7 @@ msgstr "" #: templates/appearance/home.html:59 msgid "Search" -msgstr "" +msgstr "Поиск" #: templates/appearance/home.html:60 msgid "Advanced" @@ -220,26 +217,26 @@ msgstr "" #: templates/appearance/login.html:10 msgid "Login" -msgstr "" +msgstr "Войти" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "Первое время входа в систему" #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" +msgstr "Вы только что закончили установку Mayan EDMS, поздравляем!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "Войти, используя следующие учетные данные:" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Имя пользователя: %(account)s" #: templates/appearance/login.html:27 #, python-format @@ -249,13 +246,13 @@ msgstr "" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Пароль: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Обязательно измените пароль для повышения безопасности и отключения этого сообщения." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" @@ -263,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +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 c406208a9133f84475e78565c0d7160e3655f380..e6241ea8465debb39e9aadd10c48c4bb53c610aa 100644 GIT binary patch delta 157 zcmeBU*}xKdPl#nI0}wC)u?!IF05K~N+W;{L1OPD$5C;PB6-EYzFeqOer~$|Y1CU-g z@XOCjooL}}YNl&otZQVbU}$D#VyJ6iVqm}(;IA8$T9#RynV+ZYl30>zrC?-W2vcWd SXk}owaaRZG6$1dPnHY)y delta 99 zcmdnM(#K+PPl#nI0}wC*u?!Ha05LNV>i{tbSOD=Aprj>`2C0F8iJ`u{rn&}}x<)1n chGteqCKK07g9I#ejm#AcOo0L$uZJ)K06wM;P5=M^ diff --git a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po index d61ab6732d..6691d3e3a5 100644 --- a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:11 msgid "Appearance" @@ -45,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -262,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "Brez" diff --git a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.mo index ca915f8579a4052640c760e3330bccc7312f026a..94035f8c8c53cd84d98e93a474e8f45340be21e9 100644 GIT binary patch literal 1841 zcmZvc-)me&6vxL}f35XbeW{`_1+59q-5;@pa?=RSFDz!0CE14bNhWt^_fB%}%ywpO zl6_N3@zsDu5QM}k)!Iy^fsccu;Pc=(_!zhV zo&m3b$HDhNXMY`h1N;bd>%Iq1fGOzge*<0Izri{10r(_1_b4HsAoddI{QL!{PS-I6 z+W=31PlMM%r(+Yuk9>yL%ix#bGhhl1fWL!I*FWGX@Bw%hJOxqC&m{N~SOJH?70~JY z7q2)Fhfyt7s51*+4Jkw8@NFSGwk=g$y)j26jA1w6HD8WcHyZ z3|o%e0%2&(jbRO*ClgB6g^u@0YdqqXlL`0$riC_^S`l*^sfLhb=I~7uBV;3sUsqA2 z*4+rPYg}5vBIA=;B{``e43)~#x=LgX!#$}!yNWM!e#i-f)SQM*MRnuXwIlgrPUj*M!UA|8~PAzc_NX zh?bjS#(GuFq=7`GeLAm}xyBKgSB7b!U?3X_%I{SbWeeiFX%g3xm1xrSjBa6-xPH4kyau z2zb?26DeB0VGGTO2|4OctTx<^U9L`h=MU{%&^p)Nlnhi2+v3yn%fcS0_h}X@SBVnM zB5zvh*!Wa7v!NL)jncjDSaCE*CerNyN0KRO(d)lB-S)PmGQBO`=N8@F>~?Ml8h6_} zmac}~_E$+Zca7TJYwlR5J2Irp-S$n@Gg?cxdKRl;dJiTtOz${v-S!tP8g)CL3QTp| zcLRjkYEjwk++}&PO)V`G*{d9ChYw3M= zpuVM*`iy|X9Nrg!3fm2QI@q}-Qu|6O|6J*>LbtD@Wf5&sdPz<&X{mdeI2 z-((qQBFOBKVZYCZ+|NoV+%~w{N;019%kE}+6Pav@Ebs3u-N5BLxSnr!J0G|VI-8ih znz(f|N`Jr}VL>GD)$N@lwxiqG>AQ>v_c>3OP@Eu4+X42o^EEs{z_vV1TIubC23fWL E1(T0MBme*a delta 102 zcmdnUcZJ#Fo)F7a1|VPrVi_P-0b*t#)&XJ=umIv&KuJp=4N?OGlf#*Pc};ZMayan EDMS, " "congratulations!" -msgstr "" +msgstr "Bạn đã cài đặt xong Hệ thống quản lý tài liệu điện tử Mayan EDMS. Xin chúc mừng bạn!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "Đăng nhập dùng các thông tin sau:" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Người dùng: %(account)s" #: templates/appearance/login.html:27 #, python-format @@ -247,13 +246,13 @@ msgstr "" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Mật khẩu: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Bạn nên thay đổi mật khẩu để tăng tính bảo mật và để không nhìn thấy lời nhắc này nữa." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" @@ -261,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "None" diff --git a/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.mo index ab44ac3f95a75545888ea8f2d24c621dfa7b24e6..348bd93d22ac82a491fab22ec901a575ef4d9f88 100644 GIT binary patch literal 2393 zcmaKs+fNi%9LJB=-nRCl*4}H6ZB&R3yNlMCMVcyNLL*86o7k6Tm_55YX7T;C491i1o~^PhmPgP(%0 zfI7GlJQ>LSU~avtH2c)r2c2XE#P`^6Ico2AsPm0Hw8vP zGmx|3YRDs?)O!n*@%#ZoHOYY=f(7spxB*T)2Xe3%xo8HZ-qkoH^{fN;f)teVTEL^h z`msR%3Vajm?ch3a0Q>;F3BC+I0Ok2SDE0mo$bW-xLtY6dq<OE7;cn12XL{Vuo#oCiM!*PzH!UpFat7kU5W9YYHI_7+BY2V~vf z^Jj{8CV2HBbBWRsvPZLZlMAwko4h4$I)dzFR5%u+wn?>=%9D6YF`7|@Xg005oYuK! zF;!q6(;Q2;Td2zYg}5%%CPN<31x+&{)Fdk-RVvq*L8?ri(5>_WX`C6%W~2(LfPKtX zbwkjEX~pQK60_+j)9g|~s^hx7d?Jl~F}hpWmdTSJZ7N}MqEze-2Qy^9ZV8*(dYVzg zOzND}#2L5sgw8Bd!-bPb=$eihnqgL27s8MKfWOlpsUvir^rKFghG8~K2@(5RR71qb zK@$&Wqz>^>ZrbqL;cCBB66#q~NU1g{>NfOy@%RYSk8%)9QV-4Ug?_Lp(eQRgU4S6B~()S4ROzon^{< zq142cz{?n2R1vCY8Pl?rT9MS_%3dcaltwc~Lv@E575|#SIb|PiTa1=RqC1tycBMQ@ zqdQ|eqDo{(B!Z1fJv*+;=>NN~JQ|Da+!{d(9Z-d>G+HVba8X{^db5dH_%iBEp<23$ z4Ls?fG)f~=(=l3=(mBKTQX*f}Qd*L-?My5jZfy?5P-)A_;H-1N_0chCH_K6kv+Z6EPYU41lj z&b@m(H`$vXZuQ2lczyTsLsQ<^P;M^kwNCtbs*Ska7romZB%d8Gj1L8HI|k=34H38F zM|XM(Muzj#r;8^Z&HS+BuaTd*Sh)Ay^11o8@%;F8%q`r#C;U3{qocXWQ{HGce`(sC zy+FLdGlhxM#Jl|U{H31UWLM$#O%g2SX6F#AJKUC={Kh>qR+wllF2DeBdxnYk{UDjo z-ohbwtk3NqA;nBAv;U-@gF7&loBDR~e^3~obh{^@p5*2(LlyCQ`t!eBA>P^R-dHEn zh*W#m+m@P=*+aT>Q%IX%j$(=e0YzHo#1sAi`OXfnf0THA6C^h~=-tSA{hbKi9U3TR z!t1*EaHKrWK=m=SF_I+w16Y&kmsGg`e90@00h-J=gAL HuaSQNi!}gG delta 102 zcmca9bdK5Lo)F7a1|VPrVi_P-0b*t#)&XJ=umIvIKuJp=4N?OGlgn6rc};ZMayan EDMS, " "congratulations!" -msgstr "" +msgstr "恭喜您!您已经成功安装 Mayan EDMS。" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "使用如下凭证登录:" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "用户名:%(account)s" #: templates/appearance/login.html:27 #, python-format msgid "Email: %(email)s" -msgstr "" +msgstr "邮箱:%(email)s" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "密码:%(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "请修改密码以提高安全性,并且禁止显示此信息。" #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" @@ -261,4 +260,4 @@ msgstr "" #: templatetags/appearance_tags.py:16 msgid "None" -msgstr "" +msgstr "无" diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.mo index da3d130a61054c2ebad1918c532b165a90afd27e..2f8a49cd222fad7ddabcfe50491282ab37483929 100644 GIT binary patch delta 516 zcmZ{eyGjE=6ox0dUO;T@ycDCgS&T}MG#0@wTG?2xn>AU9yOPN&f{-E?C14T3ClJXd z8g6n3iOdWcb4cVZ8 z%ZjYZ8nrpKWR-@hQVlCZnEEu3wdkj({$+!OHlG4C52Bwt)GIIt@>157qpwoxGI>Gw w)cS27Qj2`9_R@0o)F7a1|VPrVi_P-0b*t#)&XJ=umIwhKuJp=4N?OGlO-8_c};ZtQUCw| diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po index bcfbf4af6c..38fe7d892f 100644 --- a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:17 settings.py:7 msgid "Authentication" @@ -25,7 +23,7 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "البريد الإلكتروني" #: forms.py:20 msgid "Password" @@ -39,11 +37,11 @@ msgstr "" #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "هذا الحساب غير نشط." #: links.py:13 msgid "Logout" -msgstr "" +msgstr "خروج" #: links.py:16 msgid "Change password" @@ -57,8 +55,8 @@ msgstr "" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "تغيير كلمة السر للمستخدم الحالي" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "تم تغيير كلمة المرور الخاصة بك بنجاح." diff --git a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.mo index 71aafc83e8b9526a6f7580282c86daf031db25f5..5e4361e5db27c00b386588254fd9b2f5c67a124c 100644 GIT binary patch delta 426 zcmYj~K}!Nr6os#820@$F1@8x>Wrakoq5>E71KKr>lLnI$^Bkf!mJ;Yn5`9!V4ega^AV;eI_5%wXfM!moSrH4s3%dU;{l(p#2umnFo*t zPhbH&gS!OLH?#mQCWz*tAJA#&4|D_i3q_0|lmdFtcRjY`R)ofG5Ord_AxcvaeWys<>tkmAs?DnfduX-RqH+4gySSIpk5?akyfODmb> zoXF+ZS9AT&W}?RT>XJhqsx}AQ6FlNxWDKBnZD<#p&+n?CTKuNkIuxopVm|j_=*IzZ zmj_WwKZH1o>p~p$h;R8-UBiDN?x4CE*DsELDA*V3iifBPBJgtq#)y3!1RQ4R4;7%Q ABme*a delta 83 zcmZ3%cA44Yo)F7a1|VPrVi_P-0b*t#)&XJ=umIwjKuJp=4N?OG6Yu--n(7)@>Kd6S P7@AobnQXRXbYuhol6DF} diff --git a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po index 9f47641250..b20cfb19e8 100644 --- a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -24,7 +23,7 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "Електронна поща" #: forms.py:20 msgid "Password" @@ -42,7 +41,7 @@ msgstr "" #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Изход" #: links.py:16 msgid "Change password" @@ -56,8 +55,8 @@ msgstr "" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "Промяна паролата на текущия потребител" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "Вашата парола е сменена успешно." diff --git a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.mo index 184fb535559925cca57d51b50b82e448fc8e5f43..b108d318e5b24562fab34d3a0be9ebde412a8c3f 100644 GIT binary patch delta 416 zcmY+9F-rq69L4|DQwMQzv*(b-%^p^zir}Pf6&*xyl9+pT}3j7?7XrJH|fgsFJ6o!Jrqu<)|Whu2|-pY~{ z+}dkXc9=-H?n*l7ag|fsbd7g(k}Au%5XK{prP5qDRmp_TjQ=y6avQS?DK)cR2x;x5 z&-0s~D?7>k_TfUSv9{4zZ?a}i{tbSbzv71_nzY1yTb8lO-8_c};ZOaK4? 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 c22153c52b..06b8c32305 100644 --- a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:17 settings.py:7 msgid "Authentication" @@ -25,7 +23,7 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "Email" #: forms.py:20 msgid "Password" @@ -39,11 +37,11 @@ msgstr "" #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "Ovaj account nije aktivan." #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Logout" #: links.py:16 msgid "Change password" @@ -57,8 +55,8 @@ msgstr "" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "Promjeniti trenutni pasvord" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "Vaš password je uspješno promjenjen" diff --git a/mayan/apps/authentication/locale/da/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/da/LC_MESSAGES/django.mo index 058ab164a6a0484d7ed374118d95b2c04ed732da..1a0f78b5b578ecf1b1cc15316f0b8c2fd2c64a4d 100644 GIT binary patch delta 121 zcmcb>{Ea#Mo)F7a1|VPpVi_RT0b*7lwgF-g2moR>APxlLX^adE5m5enARCBK0LTmm mpZxUv(vpc5zPx6-2FAKZh6;veRwjlUC)qKw1LYJ-Qy2hF;}C=Z delta 82 zcmeyye1X~Go)F7a1|VPrVi_P-0b*t#)&XJ=umIv|KuJp=4N?OG6T^LZO?3?{b&X6E O49%>JOg3(`V*~(|&I)e; diff --git a/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po index cee8894edc..62a8580a8d 100644 --- a/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -42,7 +41,7 @@ msgstr "" #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Log ud" #: links.py:16 msgid "Change password" diff --git a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.mo index 2d6065277b68df3c6dd0e420a0890179e7712992..21e1a58a1ed0eaeb45e5f2ef83bffc5764e1ccaf 100644 GIT binary patch delta 188 zcmeC;?&Y3P61t9&fgzNMfkBXgfq{jEfk6OBivj5fAgvChHGy;kkY)qYtAI2IklqNT zcLC{EApbCsmITtCtPu6d8&BR~;PN^A1IjIUZxe$JmL#}19UQ%Y&W-jIiCIG3c BCXN6A delta 185 zcmeC>?&6+M61tj^fgzNMfkBXgfq{{Qfk6OB3j^s0AguzVHGy<3kY)qY%YifpkX{F+ zw*%=`ApZc6mITsntPu4H8&BR~&WT0SVWMyKg zZ2$yZK8eL8x*, 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-20 22:41+0000\n" -"Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:10+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" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -35,9 +34,7 @@ msgstr "Passwort" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass " -"das Passwortfeld Groß- und Kleinschreibung unterscheidet." +msgstr "Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass das Passwortfeld Groß- und Kleinschreibung unterscheidet." #: forms.py:26 msgid "This account is inactive." @@ -55,9 +52,7 @@ msgstr "Passwort ändern" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-" -"Mail-Adresse" +msgstr "Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-Mail-Adresse" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.mo index 62428f8d50522dd63e7e0352f34671f5e5213879..9611ab493ccb4a58a77096e41fa6e3d5aae16dcd 100644 GIT binary patch delta 23 ecmeyx^owai7q6MFfw8WUp@N~Am5JfR>5l5lbL86rDn$UfNw5(p5C{Txb_zL1KLI8r3LScwawyXkvl`=RGI*37)7 zS)o)(8mV5eVS&UxZ4?m&B)%3%Z1@9gW@-t+Pv9SL#!X{T5LY^L=FQxD?zvcKY$m2KY?)n7w{DD{29ic244U_1HK5p0e%(y68JOl+u$$3p98-F zq5k718G9XU!56__fkXWd;1|KafPT*FUObaJh~J`NaU;XRu*)p zdGGRQmd`{~zY<4R-ii>FrZARwv?xq2tkN+pUvD<)+Cr;A?=@NrE6w*8mX=l)dr!gD{og5HK=K2gwB+%4Z>VprUO&Uk40)- zQG2t}T4^<=XZEM3^WW`)~Ic=n!zusBqv(voLu`4xi6p2c+ zq8HQb&CH&djj1at?Yz_?=gUeDOiaaa@@eMlbM$CCAI(*m+jl>WN8^z@qK6Osmf!Yw z$^Gc=`(1bRzn4gNd+x~HN1p%Lee3qg?fEU7?zvzVZhY!Xh=DrS}?tq<^_gn6J zzv=c+=)S=+9{Fuxi~R0sGvv47Yd`cOci``$U+@SVhI;f5QtlA`(Fxt%VU^q=9DawP qcK$=~-+%FAkt%b0VKToH2Ex;z#U>hKv}wll%^WYq8JTRBXR=@f0F}TB0RR91 diff --git a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po index 3d4dd53bbe..52fc7045aa 100644 --- a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 @@ -24,29 +23,29 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "پست الکترونیکی" #: forms.py:20 msgid "Password" -msgstr "" +msgstr "کلمه عبور" #: forms.py:24 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" +msgstr "لطفا از ایمیل و کلمه عبور معتبر جهت ورود استفاده کنید. درضمن کلمه عبور case-sensitive است." #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "اکانت غیرفعال است." #: links.py:13 msgid "Logout" -msgstr "" +msgstr "خروج" #: links.py:16 msgid "Change password" -msgstr "" +msgstr "تغییر کلمه عبور" #: settings.py:11 msgid "" @@ -56,8 +55,8 @@ msgstr "" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "تغییر کلمه عبور کاربر" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "تغییر موفق کلمه عبور" diff --git a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.mo index d534f79eaeb93014b2ec074ad06456c9288521e4..b26b34e89623cea57caff9fab32cb04879d5f80d 100644 GIT binary patch literal 1434 zcmZXT&2Ah;5XT1+z7`ZnqzEB#s2dJ=c4ti#MPnQh)@xxYi&x3oQnxNpcIk4ZaT&cmQT#wEqEo1N<3$6Z{o?8~h#o7W@=2Hyk!UGXJY;r~DIF8B=2Gf;w%ZSw%y5zoU-8{ZA^ zEzB6>)$tB~I+&1Kj>o~zSbJFrFO5zHGodS{MmTq3Y?%y<_SPszu%em^Y)e;Da9ol% zBrZ>50jsu42TfFRBrNCck`^^@64yeiWDu-{yLNr;g`#Z5$*?tfVk#4SGQJ35tXMcE zoMKCY3Im10FZD?1axK%PZ;WR|DtsI6MG`cXtV)uO3J9f+wUb`XxtmO8SQJHJ0z$&4 z)S_7KJU79vg=r=n9W!fkp(xn7X;A8H6?NH7#@4(*Na=o=9x zM%`EKw)%NL`z*ugJQ2>P6Dzb+!W)~@U}mNBroqz%Uhm}Or0b);obqWr(6hz~D~;{dG2N8Q+V#{* zqc^p^d!5n#Xn1)m{chHYC56XKCua>(_I&DljS^CC#|yQN{m$WJFMW7v7d=kdrbAtr zQtB$FhsV;dW6f!5J7X2BQ0bnrwaZC2?XTO}+NR~_&W5H()W5ggN%qTF@6+oQZ%LuP zji+*1{JgCE#a~!11J#T3qOE+U;H8poaZXJv5xEjWX{t|_TX@NUHc;%ytXjb#Wkh9a zDz6%CqL|SSsLoa2y%I$X=bA36)rV+*ac~!r8Ljy=cJJtF0!JLAQv7}F9E@Ou3^h@GdlbB?jI_=OZY5gm#q8ZdP02AvmemMt_*jtrb$cOqzU U?s0K#w}WENMcYw}-&{BOANHH98~^|S delta 148 zcmbQmeV*Cko)F7a1|VPrVi_P-0b*t#)&XJ=umIwzKuJp=4N?OGlS7z%c};Z, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-20 19:09+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 settings.py:7 msgid "Authentication" -msgstr "" +msgstr "Identification" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "Courriel" #: forms.py:20 msgid "Password" -msgstr "" +msgstr "Mot de passe" #: forms.py:24 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" +msgstr "Veuillez entrer un courriel et mot de passe valide. Noter que le mot de passe est sensible à la casse." #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "Ce compte est inactif" #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Déconnexion" #: links.py:16 msgid "Change password" -msgstr "" +msgstr "Changer le mot de passe" #: settings.py:11 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" +msgstr "Contrôle du mécanisme utilisé pour identifier l'utilisateur. les options sont: nom d'utilisateur, courriel" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "Changer le mot de passe de l'utilisateur actuel" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "Votre mot de passe a été changé avec succès." diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.mo index 30bc6f3d55c7ee573f146d333321ceabf18766ec..2f3f0ed8237c322a1511c807470d9e8c197185d2 100644 GIT binary patch delta 129 zcmcc2+{hAsPl#nI0}wC)u?!IF05K~N+W;{L1OPD`5C;PBOhyKV2q4V|#Gim{AVL8k yGZ=jG)ALJ9CR+INn&}!C>lzs<7@Ap`7;c>8$jI-VnU$K8npcvYT6K73F#`a%Y7}q) delta 82 zcmZoFPl#nI0}wC*u?!Ha05LNV>i{tbSOD=%prj>`2C0F8iQ&Gyrn&}}x<)1n OhGteqCL1?8G6Dc{777Fa diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po index 7f821dd5d8..a827f10030 100644 --- a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -42,7 +41,7 @@ msgstr "" #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Kijelentkezés" #: links.py:16 msgid "Change password" diff --git a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.mo index 07777052afc40da7f88aa4dc461bd2814cc4be19..4ba514e714b057ca2bd81b3bad3f5dac31aac5da 100644 GIT binary patch delta 504 zcmYL^u}T9$6h$W{#(;+8t-}3mYT6z-D3fKmHunO*g*9%w&uV5Lxfin02 z74QiL;2Ug#RzZkI&<9og|13>?f2iJ9C{BG9)Dt1bVgrj!GzO^f2ozBQUhquhjb1*0 z4?0mhViQWb;w-zd=};Ueth6|@q0OD>&UU+6awbU{CsSeyY?{izk@Sa&&Bbs&pibx3 zNpcZ8d=`Ugq@*5_$|%63S|&}VoVu2E(T}jnL11&^d|w$3CY}3(&RVm!vsc?~P@~z} zZ#+L77RDWE!jO$q^D9L!Po);8QsLH1#dsO_$PeTBq1* do6zjF)b\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 @@ -24,29 +23,29 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "Surel" #: forms.py:20 msgid "Password" -msgstr "" +msgstr "Password" #: forms.py:24 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" +msgstr "Silahkan tuliskan alamat email yang benar. kolom Password Case-Sensitive" #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "Akun ini belum aktif" #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Keluar" #: links.py:16 msgid "Change password" -msgstr "" +msgstr "Mengganti password" #: settings.py:11 msgid "" diff --git a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.mo index 33bcb2e550c3912dd55a9ce87c5775e617ff9a52..e117489a9198b4c70b0d70930eada6599d0657df 100644 GIT binary patch literal 1114 zcmZ`%U279T6kWA`1^htz;>W`k1Y7DPn^;S`HDXOt2qZN&sZbw;>Fy*M+02BQ*`|H+ zSBUuLllY*o{sFi2cAjNq##~6duC?uJ#+8w`FUgEU4Xa@+yN5c3h)K+@e8;H z{098{Kfrn5>X{(80A2)N0^bI|0^bAQ1iuA80Dl0#2YvvH*uOqEIk#Z1^AYTIK7qZ? zSMWag8~7IZ`a%%o!7E@$j04MYoW&Dq<2tW#5`LD8fY%QyeXe?fhTPhbHc3#)j1kIF zW`&uZQasKIY6C9QprLy@b3yB*q?HP81)&NhoMH`y*pcwb#8onr$G8Dd zBpeqFn2FhgFQ=4*9Ig zortIu7S~w#kd=y5T#HtVEL;skB(hy`D824H?-2{vSt+FAMig$Wgos>&TgN(vE1Pns zO+?#!jRx&(HEZ;^*4(N$o^DmEyR~-v2~t%r<2}JTf)669JDy6kyVQ4X7!?Ym(J1e{ zknD=1e5?lrqb)a5o5H})#Y8f&g>))Xkgl+tYu1~!`S`_rn5$^~GKH3ohnUTYBUc!v zT&hj~<%|`syw}-g>+?K+V^P57EAlCSqN;`>p1;MN_9}M-Z6Z-!7A49&#gmrpmNo2s14wlqGgOkhVbNFiO QIIe{%rt}LvGpG*!0u)I>y8r+H delta 84 zcmcb`ago{Lo)F7a1|VPrVi_P-0b*t#)&XJ=umIxeKuJp=4N?OGlaDg`@|x-zSn3*? QC>WYq8JTRBXR>Dm0H#_BJ^%m! diff --git a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po index 16a1341b4b..0160a94dfc 100644 --- a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -24,29 +23,29 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "Email" #: forms.py:20 msgid "Password" -msgstr "" +msgstr "Password" #: forms.py:24 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" +msgstr "Inserisci una corretta email e password. Si noti che il campo password è case-sensitive." #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "Questo account è inattivo" #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Logout" #: links.py:16 msgid "Change password" -msgstr "" +msgstr "Cambiare la password" #: settings.py:11 msgid "" @@ -56,8 +55,8 @@ msgstr "" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "Modifica della password dell'utente corrente" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "La tua password è stata cambiata con successo" diff --git a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.mo index 641c4d8a060bd74851d299b1d63c27933a86b8f3..2db440737648cc3efa3b4821d758e81b719a8a32 100644 GIT binary patch literal 1426 zcmZXTL2nyH6vqcB6pSdeoRB!Y9*`W7S=(t;RSrRMygTmfj5RZB zH$CwsdgR27D`z-yggYlb3;$U+wxy0d`gz~JdGF2J_y6zCjh6!Jee6%MBld0Vzp>N$ z=nWxmfw#dAK?2XfKA8M}2HysM0p9_C1>XgK1AhR22R{LCy(z>t*aiQ9?E?G&&mZ3q z;tqHh{0ZCzyWmSO#r+dZ@%{ok;6LCT{1;65&*1bKXh4K*?*X(cokN;7&RgJ3>{R3C zdJhjNF2XI>K@%&sQRgaZXT@QqY{@iJAuOCP#G$j%I}-?ARCA8kI@HtzE+{%u>(em6 z>N7fwXd>J3R|)`Ze31X>6$3cuS+;LtO65Gu_r~j zLxemo{fTk}^cnU}WAnlEwOmW?V| zj#<@1I%;BGQTLSb<-I|l!xnX`7-z#?Z?RZpF(uLyexBv7?s*rK*UtCqbZ^N;9eOy_ z2JBh$vq$wU1$cXOEVD_q&$v?$cmvuOl`Uz-jDg zq4Fv&9Oj>tvf?3YJ2wskUO)p70GhZ^%DWkreCZqg3?H46TreReuQb8zi=`Ym&pn*P{om^jSkR2D>hPvM`jeY zaUpFp`r0)G;S!#ou|*RhY^DOLNfFk*64!3bJZYzLZc-SIkYLGk$3~aXOD2x^#YTNg d3CW}(o@C-;u@Nl2TdHU7OloV%&}ZBh{{sgLrdI#} delta 148 zcmbQl{g~O}o)F7a1|VPrVi_P-0b*t#)&XJ=umIwfKuJp=4N?OGlS7z%c};Z, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-20 19:09+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"Last-Translator: Justin Albstbstmeijer \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 msgid "Authentication" -msgstr "" +msgstr "Authenticatie" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "Email" #: forms.py:20 msgid "Password" -msgstr "" +msgstr "Wachtwoord" #: forms.py:24 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" +msgstr "Vul het juiste email adres en wachtwoord in. Houd er rekening mee dat het wachtwoord-invulveld hoofdlettergevoelig is." #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "Deze gebruiker is in-actief." #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Afmelden" #: links.py:16 msgid "Change password" -msgstr "" +msgstr "Pas wachtwoord aan" #: settings.py:11 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" +msgstr "Beinvloed de manier waarop gebruikers worden geauthenticeerd. Opties zijn: gebruikersnaam, email" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "Pas wachtwoord aan van huidige gebruiker" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "Uw wachtwoord is succesvol aangepast," diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.mo index 135df8587c76a8ea8988b9811c0bae35d719fdc8..d6da9d9021fd5ce0d1201d7b1ef54c53d472f5a3 100644 GIT binary patch literal 1392 zcmZXTL2nyH6vr1R6pScsZ$%v5g({(4d)JMsY7>{1Bo!5PV-<&ps+ZT@i9Po2%xY$~ zTU$LKgv2M{RB__Q4RPg&Z$0q=dP95-{82kgg0$zAK2(E)0;J@%4 zf)_FGoeP4Gz=z-vd;)#~{tkNGSD?@BZ_w+%2KT^!K(G5bg06vkAY_|Zpcy_79MkB$ z1D=O@jW@>!n6zM!TaLSx8w=%R%1&w(?2cKD1eI)UtxXo}YUPa1Eg^~ukz!fef+{OA za+>&bHyrSqHXW2+$r2lpG%m%3xK5&AnFqU-F*vUAuTLQ_I}*Wu6Y@ZhbmfASGHrUOoj|7SnsiStLB~?$8A(eighDHnl}gF&ah2z@Rn}QM7#KZ4O5y!1{8ku?+b7iL87tb~ z>wnXFBuZ^u*ta8@g&8hOU5hYU57@eJXjs{toi+&_=}9W_&*+FvI_Igb?NriE-LBu5-x>L; zw^Lo*hJqSZJQCqhaFNhJ=hBX8W9(d+bUJlix1E=l$Ktu)&@tMwk=k?$f7?)Gh3(`k zjZT?&He3Ds{r%IT#Om3g7g||-Q{E5fHg!?Mh znN*{MZatN5oohm6-WueU;XJ&jO<@yKWiz$C8{1g)E4>ZX>&5g1MTF(g;^=m-OINQp zpF6!R|GDAa(M}xEix-XG$3&ah6Jt+zbGsEB)>4@H%!yn{^nnN-7g8*K^v`4QgATr4 z_DVHbcgh@{a&`|>wfJ-9@GF#@vTv4jf-)$c*Jqbb8U{zO;^h%%BUbHlG|SO2b(7Cm z%R~k`;|Z0zG+e9Ms#D}D%{CpO9j1Em@~@vLm%gc*{Fw@-IT~Ota5eOXrYSC@X(Fs6 lxOnPjwel-9p8HCT=Gr>O?QvW&Tf9VN1kF(vh1ZJM{{Yt+ntlKP delta 149 zcmeys)x~0QPl#nI0}wC*u?!Ha05LNV>i{tbSOD<_prj>`2C0F8$stU>yr#MambykJ z3WjD@MkbTjF-hA1MJ#lU3=|A4tqd%+4S;~lC$YFhH>4;ruQ(^MB)`Z?!7bFsN5Rk0 a*HyvB)z{I}$HCFXCCD{6c(V+%A|n7}(HoHf diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po index 96ae6f52ef..de2d944d18 100644 --- a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po @@ -1,64 +1,63 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-20 19:09+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"Last-Translator: Wojciech Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:17 settings.py:7 msgid "Authentication" -msgstr "" +msgstr "Uwierzytelnianie" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "Email" #: forms.py:20 msgid "Password" -msgstr "" +msgstr "Hasło" #: forms.py:24 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" +msgstr "Podaj poprawny email i hasło. Wielkość liter hasła ma znaczenie." #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "To konto jest nieaktywne." #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Wylogowanie" #: links.py:16 msgid "Change password" -msgstr "" +msgstr "Zmień hasło" #: settings.py:11 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" +msgstr "Kontroluje mechanizm uwierzytelniania użytkownika. Opcje: nazwa użytkownika, email" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "Zmiana hasła użytkownika" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "Twoje hasło zostało pomyślnie zmienione." diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.mo index 03bbc7d72ee22f07de1370b409a40f5d3020cbb4..a023098294a48edb745f429fb353eba10559cb3b 100644 GIT binary patch literal 919 zcmZWn&2AGh5O!(#Q26W$Q65Pr^mQZ^9+QA414oTwv@L@ipQH#P^855_*K|v|m_cY=wB4_$KiN@e=VKanO5C z9P(cg-z9!WOsUhDa31W!j2InFYlixl=RVdNqACPbXzf^=oVC0$LOJkOm@_YA(+F0^;7dz#W8N(-1}+EX4arNYd~BT;9swf{$Ch!zfoP+)zQ32O(wEKlard7X8Q zek(G^cXR$y7%R0(p@S!=puOGc)%HcDjpH3#$ecg*h2?#nLaqC(&s#>Iqji)a@md^HAm0~9GU)yv*GSSNz8{m-_Ru=sH>hlhPMdHCT#{5m7{Os{gaAb?8LE)suHEz4E;1# zxaN!g4&OMB3l#^#@V3fyE>)4j#-Vg)_f4U4wQlJRmV8H>kxfBW)2(ebHet4Gt|++E zgk*KI#vUP4ROAke3^XKkmJk=xd!iKDc@tR4WRQ_vX-Xtk{U!QoSA%6GSjSw u(y-oCr)?cVMsGt9)=fTzS)x(GI@_YDITapg2{^4!wWxz(plF_So&5#(djo&~ delta 148 zcmbQveudfMo)F7a1|VPrVi_P-0b*t#)&XJ=umIv&KuJp=4N?OGlY, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:41-0400\n" -"PO-Revision-Date: 2015-08-20 19:09+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"Last-Translator: Manuela Silva \n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -24,11 +24,11 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "Correio eletrónico" #: forms.py:20 msgid "Password" -msgstr "" +msgstr "Senha" #: forms.py:24 msgid "" @@ -38,15 +38,15 @@ msgstr "" #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "Esta conta está inativa." #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Sair" #: links.py:16 msgid "Change password" -msgstr "" +msgstr "Alterar senha" #: settings.py:11 msgid "" @@ -56,8 +56,8 @@ msgstr "" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "Alteração da senha do utilizador atual" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "A sua senha foi alterada com sucesso." diff --git a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.mo index d9295e7ea7ec1281b6f872ae35d16bb3001f6814..348fc2a8c91622381934dbdb39d9965e06ee3b1c 100644 GIT binary patch delta 737 zcmYjOJ&P1U5Uul0J%dva6Vad$F}fXHl|#(rSWr+|SQE|4o}QbAndx)7d&R{04GIQ^ zhoA-;Xe6cs{tQuL6aRs)=59_4-n{;(dR_JA*Xr-}?)&MrSA;kLoCk7X1NZ=F`~Xe? zKLNe}0~`fTt`Hpqp8>Cf&w(F-FM`j4JMbp>HTXU74Nx7wN_0u@!Km-(Ef#Ay_y|_v z&)_Ba3s{9Nn0O=fBGL-maB`)E0q67l)>Di_XH zIlI6HLX%*d;G$dF+ZjD5aVp06gr=}`jTpVk=%G*Tp)!{e__4JOhh&Tmp-5Hr?4a#D zdvW95#@6J@waL{fPq%JfpMH8dU+HdDXjrsmyjTkD@B4TC8_&7jKjhrQi`4J6&a=cM z70o7t3kz{AEr!CmZ@G}AZ#U6j?w%yesb)Lm@hCLd5~Ws~1|y#9q^!vvbJx57Kk5pL z-(Z|D-s-;wlPU~|rfS!W+l*!*s@)B~HpG5U-GMoh(IOoT#f5h)!=Sn5)@l&^@$?s6 CY{^yt delta 84 zcmaFE@rc>to)F7a1|VPrVi_P-0b*t#)&XJ=umIu}KuJp=4N?OGlaDg`@|x-zSn3*? QC>WYq8JTRBX9{2h0JO0Rg8%>k 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 bfac521791..6b1e1ab9a2 100644 --- a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 settings.py:7 @@ -24,29 +23,29 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "E-mail" #: forms.py:20 msgid "Password" -msgstr "" +msgstr "Senha" #: forms.py:24 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" +msgstr "Por favor, indique um e-mail e senha corretamente. Note-se que o campo de senha diferencia maiúsculas de minúsculas." #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "Esta conta está inativa." #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Sair" #: links.py:16 msgid "Change password" -msgstr "" +msgstr "Alterar a senha" #: settings.py:11 msgid "" @@ -56,8 +55,8 @@ msgstr "" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "Alteração de senha do usuário atual" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "Sua senha foi alterada com sucesso" diff --git a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo index db4f6c265dec01fc0fc5b41de45dba002621fa94..6a82ad1768bbe92123b9ca8cb5b6b57613dc3ea0 100644 GIT binary patch delta 437 zcmYk0yGjE=7=hMG&;HoXk$L1Dl;NmqfgsHMDI5t3M<;4~V`SmTTWM&> zt-a7DC6V!>FWJ$6tDJRoUwg;SGG&Pip*`ABs)7rrMlxpS+W(u)xLu*Hlm%HYgtWHj z^L#vAnZ~#K#|y3I_HJ`0p`>-Nmpt8#YvrlP)S%0aLCQdz#E?Zr4&)3*DjmUlg05WSp delta 84 zcmaFO*3DvZPl#nI0}wC*u?!Ha05LNV>i{tbSOD=wprj>`2C0F8$&!q|yr#MambykJ P3WjD@Mkbq!87mn9k>m;^ 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 babc6dfa8e..400f4afbda 100644 --- a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:17 settings.py:7 msgid "Authentication" @@ -25,7 +23,7 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "email" #: forms.py:20 msgid "Password" @@ -39,11 +37,11 @@ msgstr "" #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "Acest cont este inactiv." #: links.py:13 msgid "Logout" -msgstr "" +msgstr "deconectare" #: links.py:16 msgid "Change password" @@ -57,8 +55,8 @@ msgstr "" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "Schimbare parola pentru utilizatorul curent" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "Parola dvs. a fost schimbată cu succes" diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.mo index fc4802b3e0df8e0eb9c272e66f4d9e1be5880289..490c6154f658edba864e801ef2a920c38d8470ce 100644 GIT binary patch delta 481 zcmZ9GJ4*vW6on@m6%-pgAH~?JS&T{$u@k%4*;uZdF~|O^n(eI1VdmS=(qy<{~Gjx zXP~{WU=+N88Sn)rdl(ywFqS~R+}rU>=pf#CsQy2KPC-K`tOW*TQJ@3;zoD1t&`aB~ z;(MNOa@?1~<2$C5d#;z_R>pMFf~{_wc9tdGwCm^Cdd8OAv@F+$9jWb@R?glP2HSA` zKfM`Kj`K|+94>v!5>jsY*=)W$GG&}Et_>$*v-7dJIFBcm7UH$)OQb-TbWe{|rzSO2 zQJrymqCg!`i^9&MoxszgTNH|LhN{v%kgBSzj#0W}bc0&JRY{#t9cdHh3P)dnfem%2 ihc(e0&;zOs41>d9(^Q4=^xxK+DpSbe`Z*2f8SEQGldl^9 delta 84 zcmaFHew)SOo)F7a1|VPrVi_P-0b*t#)&XJ=umEC3CI$veAPrIj1Cu2geR)lF4J>ty ROcV^wtc*-H7c-t@1OSa~3J?GQ diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po index eb6efc6b06..67a5c2268f 100644 --- a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po @@ -1,24 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:17 settings.py:7 msgid "Authentication" @@ -26,7 +23,7 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "Email" #: forms.py:20 msgid "Password" @@ -40,11 +37,11 @@ msgstr "" #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "Эта учетная запись неактивна." #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Выход" #: links.py:16 msgid "Change password" @@ -58,8 +55,8 @@ msgstr "" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "Изменить пароль пользователя" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "Ваш пароль был изменен." diff --git a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.mo index c02d503e000ad8d9311c091f697ac3d7fd5707f0..f4ca24227a1996a35bc8c47da69e150624a17e3b 100644 GIT binary patch delta 47 zcmbQiGJ|D8E3cWZfw8WUp@N~Am5I^BNqhKx67$ka6Vp?z6pC}=gFPqvGDc6{!I%I5 DQqvCx delta 47 zcmbQiGJ|D8E3c`pfu*jIiGrb-m66HBNqZ*8F-GzGB<7`;CZ?xaDHP|#2YXK5&X@=Q DQ-Kd2 diff --git a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.mo index dcd120d7819209e935fcafc20043328f0f8fc3f6..5bb54815cc0921dd75995f59a2bfacb631791210 100644 GIT binary patch delta 360 zcmXYqF-yZh7>2L5)v1e{;PCC*XjF(*{A4i4uv=0fA8^m1w@L68#Dxfq3JIg9 zxCp&#$6{xJ8Bm{VeG?42B)O&w$5Et>5RTTD#`hxP-w~h|% z&zE+k|92>V&L5OZx28znaW9KK>dBx;6GbYEBRsM%?DNrLR?HJYy=*EZm5tZXVx1zL dhUgUOhe0PxD3mKd6S P7@AobnQS&=^kD=5uQm## 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 a7ea7ccc08..17c6b9fe2e 100644 --- a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 @@ -24,7 +23,7 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "Email" #: forms.py:20 msgid "Password" @@ -38,11 +37,11 @@ msgstr "" #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "Tài khoản này không được kích hoạt." #: links.py:13 msgid "Logout" -msgstr "" +msgstr "Đăng xuất" #: links.py:16 msgid "Change password" @@ -60,4 +59,4 @@ msgstr "" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "Mật khẩu đã thay đổi thành công." diff --git a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.mo index b194fd729184c0c8c479c573b9a8f75c66e80cfe..45298e5fa7b6d08a22a0f922d587371b4bd8a4bf 100644 GIT binary patch delta 625 zcmX|*!D|yi6o+4JwSs!-NukL60VWugAc7~+la?MtQM`<^(`IGe)y%HqDch3PD9Bcu zib}B+s}>=N)oRdK>ru~MJb5uQn}Q(dwFiIeh75fB?Y?=xx9@xZpTW|Pp@BKV*$#%m z1+W9mgXDYxN&PF>3Jll=et{(O7n}#1U=KLkN3;*V3P0|$8{bF!iFU$g;3O|nm*^5+ zMv?$L1b>G2!rx%z38DdzoGq#T4@iEVEHv1y(XpUdl&;SLC5!9|SL(V~w3sMxcU;o( z%iMP8q&MybK81N!udULXD#PcQd3*5&;_UdfRmX5`2 z#RLXrlysHt+t*~4P8U$*LU;jo!mI6ak=~s1g5HA6Vg;_)MJZjT0wJVQV}aw`=v^p*75tiE+8t}dHOQ#YpL#fkQM-BjOGTz#u+GaHlj zcIzE&grUCqfzk%*G@6}HvwG^8sXdLK)Z<5Gw8ixmQ@P&>r_!dM;iP%9Y|7E^j}vLd zJZR{p7y4DCryrWR$dnfl%%hJ?ZK<>RTt`ha|I)07X0=7_wME>fLEU^Ex1w|{Q<>4X G7w8{n|KTM7 delta 84 zcmeyweuLTKo)F7a1|VPrVi_P-0b*t#)&XJ=umIwDKuJp=4N?OGljkz}@|x-zSn3*? QC>WYq8JTSU&gjMn0I^LA82|tP diff --git a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po index 1fa3348130..bc398fe795 100644 --- a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-03-21 16:41-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 @@ -24,25 +23,25 @@ msgstr "" #: forms.py:17 msgid "Email" -msgstr "" +msgstr "电子邮件" #: forms.py:20 msgid "Password" -msgstr "" +msgstr "密码" #: forms.py:24 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" +msgstr "请输入正确的邮箱或者密码。注意!密码是大小写敏感的。" #: forms.py:26 msgid "This account is inactive." -msgstr "" +msgstr "此账号未激活" #: links.py:13 msgid "Logout" -msgstr "" +msgstr "退出" #: links.py:16 msgid "Change password" @@ -56,8 +55,8 @@ msgstr "" #: views.py:39 msgid "Current user password change" -msgstr "" +msgstr "当前用户密码修改" #: views.py:55 msgid "Your password has been successfully changed." -msgstr "" +msgstr "你的密码已经修改成功" diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.mo index ed6afc289f26743795144e373efbd4453895c75c..eab74d7074bf03e15f0101aa5f1ae9e58a6cbc1f 100644 GIT binary patch literal 2288 zcmeH|O>Y}T7{>=vpfxXr@_OK9h!g`wYwtQ~l&o1$Nn9xsrjcJ@l%It4;=9%aDKhLZu zf1Wz_Ekk=2{dx4?&|gCT<~}^oj^EE%6FdQ)0$boJ_yPC~_&N9_cx5(!72L-AuV58i zSz+uI@HF@W*a2S#M_{oJdwlAn)2gkYb6_+ww- z0aNxR_!qQa21$4S!BY2kAo=?lB;8Yx;{Q9FUwNq1T?MO{{}?3QUxO6y8c4ctfW3HQGaY zBYe>w!1M9h_{59^^7$zG!{~5b#5@U7jp-bz29KdrE|dp5o2opsT=lt)Q^~F3LzP6_ z4keFNn5Pnp;ZTO3%80An@;KvZoaI)U8rz|Hnz?0ZW>aJsNh{*S@V?UXb)T=@W-<$K z#PqVMJQ&4V*jOQ$u#$@m8X=hNDxN9JMUtp7&*Ye2l-iIPWi*Vfg-x6-RXapb(6 z4~)}QKCkSb?>alEF?|irF1`kzH(YPiao3%O$GuH|qv5z4t_wq_BQM7EIsDhI;rZ^? z>n>X59bv4~)gm*AuuA*9qk2-K3>{^Jjui~DK`sW;=}M9M{HzweIOMMmtsVLG`glC9 zS=t@<W#gEPDPDV(`$^%;; zB_ht6I1HhUw84e$IcIBOM-lr{JFP5K5zfu$TfNxMwfbD>%6^h-kvKS!)c8Cb6|W}P zZ1Qp#WI^Eax46r(8U!AOUO8-F*r4H>=elnO>%3Ym$8Q84?O0!|dEV0E_BIwbuz03f txp%o(e(!QQ;@VjHxAFg7E{9)Dzh{S+raw)8nEp7uc6f;$UY=eDZUO>nh0_24 delta 150 zcmew$xR}M_o)F7a1|VPrVi_P-0b*t#)&XJ=umIwhKuJp=4N?OGlUrGQc};Z\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -26,57 +24,54 @@ msgstr "" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "Document automatically checked in" #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "Document checked in" #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "Document checked out" #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "Document forcefully checked in" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "Document already checked out." #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "مستخدم" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "نعم" #: forms.py:52 msgid "No" -msgstr "" +msgstr "لا" #: links.py:35 msgid "Check out document" @@ -108,27 +103,28 @@ msgstr "" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "Amount of time to hold the document checked out in minutes." #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "Check out expiration date and time" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "Do not allow new version of this document to be uploaded." #: models.py:43 msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "Document checkout" #: models.py:88 msgid "Document checkouts" @@ -136,36 +132,34 @@ msgstr "" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "Check in documents" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "Forcefully check in documents" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "Check out documents" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "" +msgstr "Error trying to check out document; %s" #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "Document \"%s\" checked out successfully." #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "Check out document: %s" #: views.py:81 msgid "Documents checked out" @@ -182,10 +176,13 @@ msgstr "" #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "Check out details for document: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -193,30 +190,43 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" #: views.py:177 msgid "Document has not been checked out." -msgstr "" +msgstr "Document has not been checked out." #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "" +msgstr "Error trying to check in document; %s" #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "" +msgstr "Document \"%s\" checked in successfully." #: widgets.py:23 msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -242,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -260,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.mo index edc93c7b93006015df3cb311bf147fda1133e4c3..3b0377ab8bab8df344bfb3ecc1ed4cc3d0413e2c 100644 GIT binary patch literal 2699 zcmbW1+ix316vn3)pf#65f%3v-8c3Uf);HQHY!nb_QdEgR6kG%dA=dW9URdv#-PtAq zA(2!{QH2y#ig-drLaKOlLjtC0(q|r!#u5^5eddAxfET_qzHOWsBvzjNd5_PW^PO{M zedp-GuNkh#upY(GA2#=yhiQE&);D`{uMj{ z9yq|*N$^?l32+uX4pu?44}1jA*TILtP4G$ZH*f&_3mgQG9Bjrr4N{zUL8M?GgZQvd zaf2&c23Mhd1$+vLd!E4~t;2n^3?7xSx)8I4U``|m^OW-Cr0{#tV!R#T% zCO`ou!5=`1`v-Ue+;^Ca+Al3a*>v;vFmOqLWzhE|X z(R}E-4~y!CEOXt3`-83TNYS}a9=jjwUMxs7JvstXk7xFzy z2A$t+KDfiBm7tF~?kX0lZr~_aBAKHEcYJ7sU^XeaFBNw@PtJ2+%<~H(2+55qD!XAP zHHEFQ$c_+sbJCdOVlW% zAwJnLn%v%A2+(P=aXZ_iA|5AXuSs@36ajl%glr~|ABcjo&K0dUn`5*2w6o~=d}?y~ zjl`^|%0OAuVaY986HzI&a?<9Bnb&jH8T6P=gEfiMVDoG`Gh(Hmx3U?Y8L>}gt@NpM z8jjYixZu)p*zK3i*y+*d(zp_@I-#<1f#Zjsqhw(7S(z6B+Au3aCvYVk{8HqUgq0Ic z#pV-{SArcfhssJ-?Nn-hem-XY>C>;%Iig?cL(&{*u0p1fP?}zWd`H#{B+s8%_m{7;!Jr zvB0M%0y2H6*GwU|%*5*Ogn~Xg_o%gb5UAM8?L*bf+OO7Ky=lAep)Ee#?mT-=%D)FR zM;oKB)0A-x`WM$Hj(MSWcCNA7JSXVhS2R#e&8Va1)_Yr5YpisSOz$Z-|HXR++0l%? pr8l?td1H+lda&R|U=RTfKpoiC$!LL~pbkMqR0~e*kO!hzI}x delta 149 zcmeAcz07QJPl#nI0}wC*u?!Ha05LNV>i{tbSOD=%prj>`2C0F8$*nBDyr#MambykJ z3WjD@MkbT*vq;+lMJ#j;EfoyRtV|5G4S;~lC$YFhH>4;ruQ(^MB)`Z?!7bFsN5Rk0 a*HyvB)z{I}$HCFXCCD{6*lw~e>q`J(!W^dn diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po index 333f74ff73..35d324a0a5 100644 --- a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-19 06:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -25,57 +24,54 @@ msgstr "" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "Автоматично регистрирани документи" #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "Докъментът е регистриран" #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "Документът е проверен." #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "Документът е принудително регистриран" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "Документът вече е проверен." #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Потребител" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "Да" #: forms.py:52 msgid "No" -msgstr "" +msgstr "Не" #: links.py:35 msgid "Check out document" @@ -107,27 +103,28 @@ msgstr "" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "Време за задържане на проверения документ в минути." #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "Проверете срока на валидност" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "Забранете качването на нова версия на този документ." #: models.py:43 msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "Проверка на документ" #: models.py:88 msgid "Document checkouts" @@ -135,36 +132,34 @@ msgstr "" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "Регистрирай документи" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "Регистрирай принудилтелно документи" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "Провери документи" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "" +msgstr "Грешка при проверка на документ; %s" #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "Документ \"%s\" проверен успешно." #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "Провери документ: %s" #: views.py:81 msgid "Documents checked out" @@ -181,10 +176,13 @@ msgstr "" #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "Данни от проверката на документ: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -192,30 +190,43 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" #: views.py:177 msgid "Document has not been checked out." -msgstr "" +msgstr "Документът не е проверяван." #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "" +msgstr "Грешка при регистрация на документ; %s" #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "" +msgstr "Документ \"%s\" е регистриран успешно." #: widgets.py:23 msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.mo index 08f5b10f691c04e1988e26f042210c31051cfb50..f4427a26776bb3019a7ef0f187454f68505c31cf 100644 GIT binary patch literal 2261 zcmZ{k%WoVt9LEhU&@PWYcuKsSpri?Cc4w0ig-I8bq$yO8HVWGc5E62BoLz5b?A6$_ zc~CAr00&M;`~kgGLR`5aaUz8txFF7)LE_8}#P>I|nc1X?wVuz6{k4BDum3oI@*9Ts zEcy%RzoWm5{?!9`pq+Y;m{I z_#(Ilj(|NdTL(Uc?>pc*@CWcE@Kj{sYOMbB{3QgVW$EU2#^MfIWf7&@(o z*{nT;C)uZVI!E?ISnP51N72a+<>(AL<(T}Y+C70zu~7cmLTpm)xY^)N#gaS2J0=Rb z>qs7&RvJr8wmP!4DMM~j$Cc)>(y5cS%9d!HM)s9+WMJT! z;bE!V?x{pLWnfG=$%TfGaF|^(TpPzl6qzlqL^>-rqI?UPkWIOp$w~7 zIS6lb%#Ic@A{v{vTGHB$G>UePlTn1n=tPuA5$+T_LOQgINS%ohNDCg98l_8j_OpG| z81_0OJTQV>w`AsbVSRX)j<8v>)}_>iAaidyNl+%2>?qx)L}fkorZlE34O<-V$<5r@^~~(-80}zdq~v)815_*Jp#7DbJtreF(iZ*;jNN?$=G#1Ap!{ zAFcA9u+D2HLfc3hTgzG_2mS6e2oCHam?Ev7I%8OF924R)`s+fNo3YLk_fD=W)o zLh4n&vShTwKhbOM^boC++pgA&gwpe}jqAA)s?txc14)%{V4iEcLg_LSM;N<)TWK& zw3*#Jf~WayBVxgES`;M8sbXHTYqUyZ1h-ApRoJqa%x;xzet5~zqqs+eOJlBhf8d+4 z4o9=}OtPzVBkuN1MBC-p2>wldNjJ_e0^+7W>^lAD^C)5s@W}Zzb^CUux$09?cq{VN!Ysv0^7 delta 150 zcmcaAxQoT&o)F7a1|VPrVi_P-0b*t#)&XJ=umBNE3=Eb)3Zw=GCbzQq@|x-zSn3*? zC>WYq8JSGJ&mwIL6tU1Xv{W!KvobN%HUI)HpTy!4-H@WhyyBe1lKdho1-DQi9|b>0 bUsnYiS6@d@9|uPlmmt^RV7tw_tO1MwSVkMg 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 8fe817824d..c336f81367 100644 --- a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-19 06:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -26,57 +24,54 @@ msgstr "" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "Dokument je automatski prijavljen" #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "Dokument prijavljen" #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "Dokument odjavljen" #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "Dokument je prisilno prijavljen" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "Dokument je već odjavljen." #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Korisnik" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "Da" #: forms.py:52 msgid "No" -msgstr "" +msgstr "Ne" #: links.py:35 msgid "Check out document" @@ -108,27 +103,28 @@ msgstr "" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "Vrijeme zadržavanja odjavljenog dokumenta u minutama " #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "Datum i vrijeme istjecanja odjave" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "Ne dozvoliti upload nove verzije ovog dokumenta." #: models.py:43 msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "Odjava dokumenta" #: models.py:88 msgid "Document checkouts" @@ -136,36 +132,34 @@ msgstr "" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "Prijaviti dokumente" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "Prisilno prijaviti dokumente" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "Odjaviti dokumente" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "" +msgstr "Greška pokušaja odjave dokumenta; %s" #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "Dokument \"%s\" uspješno odjavljen." #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "Odjaviti dokument: %s" #: views.py:81 msgid "Documents checked out" @@ -182,10 +176,13 @@ msgstr "" #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "Odjavni detalji za dokument: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -193,30 +190,43 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" #: views.py:177 msgid "Document has not been checked out." -msgstr "" +msgstr "Dokument nije odjavljen." #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "" +msgstr "Greška pokušaja prijave dokumenta; %s" #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "" +msgstr "Dokument \"%s\" uspješno prijavljen." #: widgets.py:23 msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -242,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -260,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.mo index 6641202144cef4313f75ca855e0e3476cf101247..9df583941aa72d996aba642a8f709160e15bcd74 100644 GIT binary patch delta 196 zcmcb>{E9jBo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlL9!3U+Fd)qa#E*e&AOZuB zUN{IXPA!^f;TvtHYhbKvWT;?hW@TceYhYqvz!l)H8S)7@lr|Xhfl4_-3WMBwW zXJlw)V4-aQ1YACe#U;8SMTvREIf*6tMOF$y`AMloCHX+QII$=*f8wiW>`q0c>8V8w E02cKqIsgCw delta 146 zcmaFGe1X~Go)F7a1|VPrVi_P-0b*t#)&XJ=umIv|KuJp=4N?OG6GMG@O?3?{b&X6E z49%>JOeU_Ewgn1U=o(ro7?@d^7-|~;0hdo=afxn7QDR\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -44,28 +43,25 @@ msgid "Document already checked out." msgstr "" #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Bruger" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -122,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -146,10 +143,8 @@ msgid "Check out documents" msgstr "" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format @@ -185,6 +180,9 @@ msgstr "" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -192,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -213,9 +212,21 @@ msgstr "" msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.mo index 4c11d871c69e1d7dbcc994d1ad646105640948f8..11e5cfad09215d6af7d09f7fc5f3898ac5ec5b2e 100644 GIT binary patch delta 1039 zcmX}rJ7`l;9LMp0(xh$DCfdaM=*w7bo6;7VrY#x=AK)MsDMiIW)QABCHn%3Xprsmd zu1lgFN*zSdIuwTt4n9T&2ch8LV!=@y#L-3k{_^lo&i&kb?z!jw@Bf^9?_KRGZby8N zjfm5FXqP-@Q@HNsKrA$w9mQL?7dNp3KVSsEVi*3zc5L>U?ZGJa;|OZpS=^0jjN>5Fg+WzQkVK!UOmVHBU!#ZTRVU-vT}|s0gr#e=mLy4@RO8X2Qe2!GGx?Y+k=bXf|i3vbh_XtZOGTxkY!0SIvjrfAm;tPXGV_ delta 1500 zcmYk*O>C4!9LMqLi%{DIZLNw3GN3I2ZrQGj*s4SdlAwYOga*AmyF2uG((d!|-4trv%c$=gxDPL2OC6ulkXKPVyoStWenSoTyKOfI ztTP_sXA*ZHv6@%#5v;X+2Os2l1$W^0sQLeB`!8z#!A<0!w%N8RzkGYp@_Y<+_Oqyf z-oQQhJ}T8$P?z;*)aAR0O8L;{JjE{{**DXu0MDY<@lZz+VuY`4CjVqSTTBsliq2JM zrO8z^SViaiC{-6pJJwBCVZQ9LsjXW-M%7U$3*5`>7_DB7*z29^V*f{Z$G}epd%NySE-J)G^&6r`a z_2%cJMOV+ppIqM&MoFjBo{O3`@tv({0aw@3^{AFMT$tnoBQx!qK~y(qV%N-mvc*ap zKdl@nmL`hjiXDGqvRo;aDy35Y^h?E4ZXr+r#iL$Aq~+3h_TBgaTP{ylmJ5AbcAoGO zKk#BZ<^1Nnvrjkj=jyYKiFm9UEFD^XyzhAT?!#$ZO>2G{&c-gRXS+7*-YvNxi*fb! z{tvr`k4AG@)Gl0?lEK28t<>3>JS8r)t~u|e)%Moh|6Mi=YCc)dyY0DeuQaWf#2(+, 2015 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-15 22:48+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -45,32 +44,27 @@ msgid "Document already checked out." msgstr "Dokument bereits ausgebucht" #: forms.py:28 -#, fuzzy -#| msgid "Document status: %s" msgid "Document status" -msgstr "Dokumentenstatus: %s" +msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Benutzer" #: forms.py:41 -#, fuzzy #| msgid "Check out time: %s" msgid "Check out time" -msgstr "Ausbuchungszeit: %s" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "Checkout expiration" msgid "Check out expiration" -msgstr "Ausbuchungsende" +msgstr "" #: forms.py:51 -#, fuzzy #| msgid "New versions allowed: %s" msgid "New versions allowed?" -msgstr "Neue Versionen erlaubt: %s" +msgstr "" #: forms.py:52 msgid "Yes" @@ -125,6 +119,7 @@ msgid "Block new version upload" msgstr "Hochladen neuer Versionen sperren" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "Ausbuchungsende muss in der Zukunft liegen." @@ -149,10 +144,8 @@ msgid "Check out documents" msgstr "Dokumente ausbuchen" #: permissions.py:19 -#, fuzzy -#| msgid "Check out date and time" msgid "Check out details view" -msgstr "Ausbuchungszeit" +msgstr "" #: views.py:59 #, python-format @@ -188,15 +181,17 @@ msgstr "Ausbuchungsdetails für Dokument %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s " -"trotzdem zwingend eingebucht werden?" +msgstr "Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s trotzdem zwingend eingebucht werden?" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Dokument %s einbuchen?" @@ -218,15 +213,14 @@ msgstr "Dokument \"%s\" erfolgreich eingebucht" msgid "Period" msgstr "Einheit" -#~| msgid "New versions allowed: %s" #~ msgid "New versions not allowed for the checkedout document: %s" -#~ msgstr "Neue Version nicht erlaubt für ausgebuchtes Dokument %s" +#~ msgstr "New versions allowed: %s" #~ msgid "User: %s" -#~ msgstr "Benutzer: %s" +#~ msgstr "User: %s" #~ msgid "Check out expiration: %s" -#~ msgstr "Ausbuchungsende: %s" +#~ msgstr "Check out expiration: %s" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" @@ -259,11 +253,11 @@ msgstr "Einheit" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.mo index e742cdedf2c5f3831249300936becfca7a3ccc79..5e6a145d2977273fa35fd3c566a1e71d466acec6 100644 GIT binary patch delta 491 zcmXZZJxjw-6vpwBG}ZbNt*MBJm0D~ZBxtJ?Up6}l;%;#h*Y2GJeNELFU8(h;Ps7~r5EXYx=f!qT&P#v!#51jcg?C; z!8vSU3ESE84(@P&i6K7YD*mD7F67LXaU0p!vo;I8yn{1%j!W3bD&AoYKTrdQs6i{9 z*%hJoQ2{^mX~6lBbl(~(;1Md|S@yh(3V4m7otnL~P{JWqtIx<8P;QJk3g_37o*jX#QYqO3Kd^dMl@~37SwzO>r&KN}}(; nscn)Tk0bYSP|n>t@vnF2H=~Wss8O%fo4Z?$!9m_}li&UU5_v2F delta 744 zcmb8sJxD@P6u|NO?DhSjX&(+5FG1fBf<*<^kkHoP649F2gQO3|XBrLFT2mkmQCrX) zxkaM{4Z21U4Gp!{8bSTfdqHD#;N0Kk`aI{J_v*eo|K5{dKUPGL93mgd2zjQl5OI%E zGdPBR+`usI;{cvx0Iz?}8z{BjQJ(K;QYwKVjN%fSxQijB_S6NN5e{l7gCb9f?-UeTrh)D@Bk^KE>Rjcunk}FgdyHg1~_bSFLaAi=K%-kuRhsG<3OwXgNagT z9%X_I$^<2h;w74RkJ9)HWq=S}rOqtM01GGstfCCCgVOi}Wq=!uF0*-NBZb=A-Nq(z zq>?CKL0)qQDIw>)7$^E!dBnM74|Y4J?&1XoSH4PG3smx&p5S{p*BitxQi7X1SCoA- z$(wMZlT}8L2v+J^ZFFwc%B&f=t)gLV=d*=$F`L_*HX^qA{h^rMu;i$E9^u+eojk=gQWK^M^&-DzK>}^;Gv{ES`vsPZ(oU)8iA>Q(g1?yHWVBMz;C}oh4~b diff --git a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.mo index ad717b5f6815c14d823605143b9779f2cc71670c..a1bbdd57729acbcee278778c7e83353aadf6ee43 100644 GIT binary patch delta 985 zcmX}rKWI}?6vy$CCjFDzG;N|*n>M~g(*|uIiA~WcEd{~BVnwt#6pCnv4w_mmsDlwF zDHYm2T-3!)5$*5>2X~?1qM*3cT^$5l2M5LPFM096&F9|x{@ru#&7b6pMD)&;b-i{@7RGYA+sKgV;T>k?mLaU@gm0YX8n5A zmgyX2VjXwlSKNVrQ8%_X*B?w`m~jbp{}{I6EgZmmIEc@&AKzmNf1uve-BN#l29-b= zV^%erpp#@`2DRclxC@_R24CX= zKha^FU=^z1@d)*&IyT0HJn3JU#0!kiA{DIdmrAb#q;P7#oDEb(v^}bvVvxpT)l}(wZXxd|iDx^g!(?%!@{VSBUDnx>{)31Mo zLe*(Rw9%2{S1OBFZ#Wh2cW^P_J!*avaOYZYM=Ew^c44k^+0I{|U2speJ&TOw@`rQ9 of>RhN4;Rbu@*2D*h##NgJ8`~_pxy>BO)y&*5_s&E_ z9Z>A13PNxtf+9pwR~>NY!UsZK2rYD11YOiZH@XvSq2J%hj1+s|%;(;FUjOqyXKt_m zXJh%<^2SSs(o5YyJzrKpu-fN z!F_lU)$dpQ1b?rpPL}sB)b|loKp|@Wlc-EyOp*WfJk0Y!J9vP)G%rw>sA=g!#|~5` zwpaZQE$`=0-)>3=Veq~L`A5gv*lms zi_)c?Zl>zUYDLFlt1n8iF4`6<2{c>>f8K1?-vec2E7g~Mxu}>=Y~^@EsjkOH#l*Vf zGhrb}!YDs%yJNF|%1s{g4M~`D`c(O|@qS&ajgufL#`-XKbc!Sr-A z>#~0Q=zkmXQBrHPN1}pFrktJB0xqkiv(aQR=km$Iz{rfbLKtPu;n)@Yk6$d)d~AblW6h_pY`N57rE-_UU1P$jka=lUHZetVPQ z!%E&}ot+MB!7+a+@QaRzE;keXzoGJ5%d@&QBkVcrTWgUPVDTr$+aIu|n zgcM@52LAPN*Eq1e<#Bk^Xsd$t{!o!QI>rHRJa zlopek;01}^5sYqGD{BG83&S7ajU?X8w9yOWjTc_=5BR)iX3osE+exOsotgK%=Xsy^ zo#|g&H(q2ocH(>*=l;7Gdky?>1ODJB-p$w`SOT8_8{os>EVvc?3fuyI4?Yh50``Nq z;C-MGKlee3{~YWCFM+RvZSY?3AMge6Kk!9x+daq$ z?gyU-Pl2@0#~|gu0FvHsLDG8@d=~r-Bpv^PkAhn^F}4fr2PyyCAmz0|vf>L6Te1rv zN@5qmS$Op|Siv=iI1Thc^649pbo>g^{LBkJcRrY2OBjEtwZze+t4L_8?BuPraanyr%SllrA=9p&=9ZY`XN2P#w#EIXY3nt1m=;iIl49*0SKTTgZG1r+)O1g9-GT(@ z$=(;9ZkR5w+m1?G=DU(Sa%n6$yDGl5PGokqINLNF-J>#kXh8XfRnX5sgFa@)!Xi(i z?MOhHBE2VVrFtl-y6v(fHn(h#>!xW>c6msxm@r&bB=uxW#MX*h9xJ21s2{w4m)ozp z1lwJ|S{1Ha_f2yujqeU4z3as3rX%#)l*)+EOcveu>;`ZSmR`^6q}vZK^m&wQAn%W zBEycZ(w5ERvJ*Bt=?aH^AY3-$*dK|iryZ+l??o?5nGfqzy2Xc%48NNj6;0dmv|)GL zsA-4%aaXI@Wu6;(r=lH3GiWNcBN(7EA1IdgYQNqxP6^V8f{G>W*O}z#8}UaiLX&-YD}C(h89; zO?Y0jTqsOVPUbyYZq&uueAR9goM@p_Xiznps5RVz87C>!^}_Dl@Uh{cwCGa4m^*A+ z9zHBuWvYpaJaN`5G)>*G2GI@OafNr_WaX%~FO8!e>%!57tg2l@1I57{3(p0epv{A8_|XbyIj|VCf@?fj2$q7@$~+IQ z;(94qT$cuW;(q{lNaSpA7De;sg(&XKo+f9WI>zsA=6dbLlu%dkLQ_Q zD(rYI_>NRi#qoMtB!$UuG!1mLyZk_^ASo?<$kc;mb)-Fw=w6;FfLsozgP*0h;kj@w zoLN_m{0Gy!J~D^e0{3qO)RsgDQosbRr%7+r#5h{Yjlb5)vhWs(l4Fp@FHkD< zS|*b&s!@U4srQK^sWs_}c%GnOxfA?IN-$SyGLk{yw0mZ%7UiJOj8ORUm2eh6JD4sx zbuprEc(8!UqRPY1XbNE{R7dtCzNl{={vD7BNuD$T8qtClqzaa3JZL?p{ybTtR?7}& zm*aIn^bc@tMgpDfS{)5n#_yzI$bUU(D;e1LCx~96VZeN%6ugi@du1N4iYg}V-m0Zt zkJE%n1#z{j=Uqxl2UhisS~Dl7Q$|EH*kyTe6EE>JeF#thY3>%dRzcE(tP5y=G`Ol5 z^^&LN$014xiM&Z45ovldh{@i{tbSOD<^prj>`2C0F8$urn|Q%!XZEOm`c z6b#L*j7)S5ObiUT0{nG@Qp+-nGxPIwT@p)DtrUz541ww_bPX*P49u)d47Ck_fXgSb wxI{OkC^4@%C$S{I$V$O2)W=7`&(YUa!N%3s(bLDl(ZwamH8|LAvIF}A03$Ra?*IS* diff --git a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po index ef26c54737..3e54f60f4b 100644 --- a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,182 +9,180 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-19 06:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 links.py:30 msgid "Checkouts" -msgstr "" +msgstr "خروج Checkout" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "سند بصورت اتوماتیک وارد شده است." #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "سند وارد شد." #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "سند خارج شد." #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "سند طبق دستور وارد شد." #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "سند در حال حاضر خارج و یا checked out شده است." #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "کاربر" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "بلی" #: forms.py:52 msgid "No" -msgstr "" +msgstr "خیر" #: links.py:35 msgid "Check out document" -msgstr "" +msgstr "خروج checkout سند" #: links.py:41 msgid "Check in document" -msgstr "" +msgstr "ورود check in سند" #: links.py:48 msgid "Check in/out" -msgstr "" +msgstr "ورود/خروج" #: literals.py:12 msgid "Checked out" -msgstr "" +msgstr "خارج شده checked out" #: literals.py:13 msgid "Checked in/available" -msgstr "" +msgstr "وارد شده و یا موجود Checked in" #: models.py:27 msgid "Document" -msgstr "" +msgstr "سند" #: models.py:29 msgid "Check out date and time" -msgstr "" +msgstr "تاریخ و زمان خروج check out" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "مدت زمان مجاز برای خارج نگه داشتن سند به دقیقه." #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "انقضای مهلت خروج و یا Check out تاریخ و زمان" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "از بارگذاری نسخه جدید این سند جلوگیری کنید." #: models.py:43 msgid "Block new version upload" -msgstr "" +msgstr "آپلود نسخه و یا بلوک جدید" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "خروج و یا checkout سند" #: models.py:88 msgid "Document checkouts" -msgstr "" +msgstr "خروجی های check out سند" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "ورود اسناد" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "ورود اجباری اسناد" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "خروج اسناد" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "" +msgstr "خطا در زمان خارج ویا checkout کردن سند: %s " #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "سند \"%s\" بالاجبار خارج ویا checked out شد." #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "خروج و یا check out سند: %s" #: views.py:81 msgid "Documents checked out" -msgstr "" +msgstr "اسناد خارج شده check out" #: views.py:91 msgid "Checkout time and date" -msgstr "" +msgstr "زمان و تاریخ خروج" #: views.py:97 msgid "Checkout expiration" -msgstr "" +msgstr "زمان پایان خارج بودن Checkout" #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "جزئیات خروج و یا Checkout سند: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -192,30 +190,43 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" #: views.py:177 msgid "Document has not been checked out." -msgstr "" +msgstr "سند خارج و یا checked out نشده است." #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "" +msgstr "خطا در زمان خروج و یا checkout سند: %s" #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "" +msgstr "سند \"%s\" با موفقیت وارد و یا checked in شد." #: widgets.py:23 msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.mo index 5de3e0a45eb52f5e9eac3b31c9733ed823d76db9..af8544cd38f2f230d6b1fce9c799a0fe98c56338 100644 GIT binary patch literal 3659 zcmai$O>7%Q6vqcBftt^@e6)O&X+r9jvbGc2syLL;<^xqEZ4}Z80f{%eNxCh+mzP}E>i03cBN5DV8`@nxek}KSu%-av{#Pczb;I zcgH=9QD{a%46$(#uCnJrgn&(e7rgoa`$w_6&F$B>7cvANV#{1V02{1#fl7cOrNczcGAKJj)>In+4$tTLoVMFM|}n zo8WWcS0JtPH<0X%Aep3p45WO%29iDxq&nCD$&dFz4&DT5{tqDK`ET$PSa^W3m%s&( z^j!lfPG5p#|7#E?*|**C@4+|m{3D3)#knH?Nhe)A{)S$V?2}E>Ll^1CH1;s=XK^Eh zac)TegShFUm{MM8jpPSiD3N$=ly}Mn)yo0gBe>}r!%eZHJoGNA0g40F4Al{q8^?)q zOV^VL;_ruYzuBpVibBg(ja%6e+$vsIfzNGSa9?>*L*S)X7v2@&a}`-GL*9^KWQ8fQ z(}D7?@KCJtme5A3kVnlxxjvhr2_)K6v3lW~8i=q5*E1Oz zX72QgaL^cZZ4n$eLh(qsVG;XS%QYGH1(Edk z<-WuRS=hb{m$bSpJnNkCoeRnSuJT29(+&CD?BeT%WzkgHI*Vpa`p)TS%{VKn$_q>9 zR-756ns$pbi}I}U$;!lWr}Ba`Il(86SC39Qm7|pk1f6BklGHc0%S}#HD<_Ura1|C@ zW1SW4h9+>W(pA2!R)t28mz8l52nd90k-H|G72!6jd|r#ttMfy3Yn#<_d3}AoWNEgn ziH(w{8fBf#)8z&&#u0wQl!LC0a!r>H7Z%Sf&Sh(!C{+qGDzs>Y&dO#J3$kLvmYabq z!zrZN)kfHp=U3*P6PX-YtO@PRg`VRoc|oDzE9nQV?l3aFC6Lsq(NHKbn)1 zQ#|>3@=(ZM<`ajf3T!sgownep#%}lJO%eJonseY@jYJR#j!&=M;)k@nbHi#uty!x` z20^D?VsnjV=LU*X^Pngjlt1nlqfnsOqgJe?+sWB%r=89u@l5&lS6N#z43(0Y>z~A_ z%kt^`>$2Zxf>Et-VR>DkL2^IJJV$QHXwu}<7rd#WKF4AkY)N5T@F?s~M?2~h%6pJs zRWiBX`~14Lc!zKov&Nix%NE?^h`>UEVs|M6C6gQ(!Hu*LJVr7NITRld=#07GblPQK znx+aR9TKUJoi>}x9ZbD|-6oL9bo3Fyo9J@Xc(tUE-KHYAFSwUgLDsvorW&6Z`K)%@ z+-(UjJ`y^g;U7cVe`C>>=vC%0F(|v-`8cZts^L_}R!iL@1lxiBwG5NX#$mo^KMN{q zjk4L>NqsL+54ktP{6L)I(}m4s(c)pzjl+#9Mo@B=v-Oz#aC}%`Bk(|Jm_@m{=sKZA zTWvutKDqkX;&ZasI2||try+G>&~z3b5y{TkYDwhx#aR`yrB0g;B*D&G8AyYD9BFng zk`#fkDDeM>Dy^j=!>>j%$#qj11OoM*xDjvDe0lNCyZDcpO!Cm~(Q9ehP!cGqlL!xS JFJAvN`wthnE2;nh delta 153 zcmX>tbDr7ao)F7a1|VPrVi_P-0b*t#)&XJ=umIwzKuJp=4N?OGle^h{O-*$TEOm`c z6b#L*j7)S5ObiUT0{nG@Qp+-nGxPIwT@p)DtrUz541ww_bPX*P49u)d3@7t)h)cSK g`uHgLIr_RP*tq&Sdippxy0`?n1_#?sHs*K=0N-C6ng9R* diff --git a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po index 58a17c4dd2..746d9d5f4e 100644 --- a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po @@ -1,221 +1,233 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-19 06:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 links.py:30 msgid "Checkouts" -msgstr "" +msgstr "Verrous" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "Document déverrouillé automatiquement" #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "Document déverrouillé" #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "Document verrouillé" #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "Document déverrouillé de force" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "Document déjà verrouillé." #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Utilisateur" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "Oui" #: forms.py:52 msgid "No" -msgstr "" +msgstr "Non" #: links.py:35 msgid "Check out document" -msgstr "" +msgstr "Poser un verrou sur le document" #: links.py:41 msgid "Check in document" -msgstr "" +msgstr "Déverrouiller le document" #: links.py:48 msgid "Check in/out" -msgstr "" +msgstr "Verrouiller/déverrouiller" #: literals.py:12 msgid "Checked out" -msgstr "" +msgstr "Verrouillé" #: literals.py:13 msgid "Checked in/available" -msgstr "" +msgstr "Déverrouillé/disponible" #: models.py:27 msgid "Document" -msgstr "" +msgstr "Document" #: models.py:29 msgid "Check out date and time" -msgstr "" +msgstr "Date et heure du verrouillage" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "Durée en minutes pendant laquelle le document doit être verrouillé." #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "Date et heure de l'expiration du verrou" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "Ne pas autoriser l'import d'une nouvelle version de ce document." #: models.py:43 msgid "Block new version upload" -msgstr "" +msgstr "Empêcher l'import d'une nouvelle version" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." -msgstr "" +msgstr "La date et l'heure d'expiration du verrou doit se situer dans le futur." #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "Verrouillage du document" #: models.py:88 msgid "Document checkouts" -msgstr "" +msgstr "Verrouillages du document" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "Déverrouiller les documents" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "Forcer le déverrouillage des documents" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "Verrouiller les documents" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "" +msgstr "Erreur lors de la tentative de verrouillage du document : %s" #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "Document \"%s\" verouillé avec succès." #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "Verrouiller le document : %s" #: views.py:81 msgid "Documents checked out" -msgstr "" +msgstr "Documents verrouillés" #: views.py:91 msgid "Checkout time and date" -msgstr "" +msgstr "Date et heure du verrouillage" #: views.py:97 msgid "Checkout expiration" -msgstr "" +msgstr "Expiration du verrou" #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "Détails du verrou pour le document : %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" +msgstr "Ce n'est pas vous qui avec posé le verrou sur ce document. Êtes vous certain de vouloir forcer le déverrouillage de : %s?" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" -msgstr "" +msgstr "Verrouiller le document : %s ?" #: views.py:177 msgid "Document has not been checked out." -msgstr "" +msgstr "Ce document n'a pas été verrouillé." #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "" +msgstr "Erreur lors de la tentative de déverrouillage du document : %s " #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "" +msgstr "Document \"%s\" déverrouillé avec succès." #: widgets.py:23 msgid "Period" -msgstr "" +msgstr "Période" + +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +253,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +271,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.mo index 113f674cacc5357432c5259a1d348806b3deb426..4512dd55891043b3715dd025c5f92727e3be43de 100644 GIT binary patch delta 203 zcmcc2{DnF6o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLentj{Fd)qf#Ls|iAOZuB zUN{IXPA!^f;TvtHYhbKvWT;?hW@TceYhYqvz!l)H8S)7@lr|Xhfl4_-3WMBwW zXJlw)V4-aQ1YACe#U;8SMTvREIf*6tMOF$y`AMloCHX+QII$=*f8wi`d~T^Z8HvSJ Md50I~9Nx?T09D&8cmMzZ delta 146 zcmeyue3{weo)F7a1|VPrVi_P-0b*t#)&XJ=umIwjKuJp=4N?OG6GMG@O?3?{b&X6E z49%>JOeU_Ewgn1U=o(ro7?@d^7-|~;0hdo=afxn7QDR\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"PO-Revision-Date: 2016-03-21 21:08+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -44,28 +43,25 @@ msgid "Document already checked out." msgstr "" #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Felhasználó" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -122,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -146,10 +143,8 @@ msgid "Check out documents" msgstr "" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format @@ -185,6 +180,9 @@ msgstr "" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -192,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -213,9 +212,21 @@ msgstr "" msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.mo index 74ce5546218e69a876f97f4763c9df98c2622244..681306ba0832c6bc36e6c352cd0b58d8f473c60c 100644 GIT binary patch delta 198 zcmX@h{E|8Jo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLPDTcXFd)qV#1DXMAOZuB zUN{IXPA!^f;TvtHYhbKvWT;?hW@TceYhYqvz!l)H8S)7@lr|Xhfl4_-3WMBwW zXJlw)V4-aQ1YACe#U;8SMTvREIf*6tMOF$y`AMloCHX+QII$=*f8wjhoB^qM>FK3; Gi3|W_4JiKr delta 146 zcmaFKe3sebo)F7a1|VPrVi_P-0b*t#)&XJ=umIx8KuJp=4N?OG6GMG@O?3?{b&X6E z49%>JOeU_Ewgn1U=o(ro7?@d^7-|~;0hdo=afxn7QDR\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 links.py:30 @@ -44,28 +43,25 @@ msgid "Document already checked out." msgstr "" #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Pengguna" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -122,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -146,10 +143,8 @@ msgid "Check out documents" msgstr "" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format @@ -185,6 +180,9 @@ msgstr "" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -192,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -213,9 +212,21 @@ msgstr "" msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.mo index 5e8148d19c552aa8fb43efb9742f8622d95d321b..dca9b97fcec0af621a15793bc7a2e573119b214e 100644 GIT binary patch literal 3019 zcmaKt&2QX97{&)$3M?%jrBJ?^hNfu+j(0;T#c2+-NgxuTQL;q>A)#4&vYFQQES_=F zR9v_qfmErNO27enK|*jqLPBsrNL4S069>eR6C5~j;ve97$6ni;ZW+b>Ndt+0N=hH9~kXjjLm`_@DVTp9{@i9_k$mUd%>^4gWwO~1o&(D z{lDPDc;B;|u?N8?LHfP}9ss-GJ)kPT&q1>P5WE|_2EGJ-1>Obz2_6Ce0jIzNcfcoj z3Ooe91=2q6f#m-RNP52jN$>aIQ{XQk>G&Ib2;94eu}N?OB>%61+=U=1ZwE{IAnAGqq&%Dl zDL?OnU2A{_JXCUS0Cy?}9FW-L#ksfv*p2zXfo-`=;G)ODO{S2Nv z@z5ZB)Jv2v$^la3atnaG(1c|Ff49ou`)Tb#7H6xz&6_#}T(1l1Dns6NxXw4H;gL5!bopD&>hvb1Tg> zJ00ur0#D@@-;|kAI_3Ew)*@nOXaSiHUEDllswp3C%NN=p5>|4NLIU(O=cN@YHhf)Y zmD_+%4*j^LrQqhOa_SbA&DHYaKxM*G7-KXbe3klQ6BE`=32DYhd4wTpVrrIq3# zr`5D!^O~pHauLURYb1wMiVbC|AgLxjS*BJ-(^y&5rTT|YOqz+RN=UoO!%!Ntp2zWa zZ9i&8dT(JT;!KKYyYdLrh8K}roghykq}Mhot>p~+W!xNm?JyiWL-{GY4+RgU3#Ag& zbi5&qOJq;Vv@#e`Y?{+-ASjH%rCFCR^>ov)>}4x6?v!gzVW&`;H{OjUGEHv zL0#$1qk#fG)9#$`+RuA49o{(+9G~&p$J=cfdaH6%(ILFqZl)8oPd?kmXuT$k^}3lz zO)RX=0=}wyGD8|xwGo-pFi88k=u59FMH28OD`EwaM>nh;1irtuwKZ*NxmuSOr$e3i zS+Owl6N<)@QDXeKbmA-PA8RcyEicqTcc$B|Gdi`nSiJ7`01;Vv(fWf}sB{+95Sfv7 z?p$}#J6YS&j_We>7Sd2hC|tl#_LQx}1{^Odah{3TLrD@7@O0o_&D_i^FaDi7n({+) zymM@}#g^#`Q#?{;pi|XTvEl=nacq%@OmY=hW!6;EVM9}^(xn#)9t)o4dQ%LqJ}iPA zQWy%lGj-L!&H-j{wTSX!YFvz}p7QB_MZ<&&2lB;DC?c6&DqVWe z={M3?-HRT@vR2v_ifI>i7GChnLZP{&x=9za#BoU}q6EQ86an9l$ucCon@fWf4b^IH z6ui0ATTx$Bnk_ZU=xP$Y5D+=N0*usdKe5CE@!lcb5TT|>m D5b-&2 delta 171 zcmX>tev#SYo)F7a1|VPrVi_P-0b*t#)&XJ=umIxeKuJp=4N?OGlV`B`rkd&+Sn3*? zC>WYq8JXxBm>3vv1^DX*rIuwDXXfYWx+IpQS}7PA7y{K<=o(ro7?@d^7-|~;0hdo= wafxn7QDR\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 msgid "Checkouts" -msgstr "" +msgstr "Uscite" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "Documento automaticamente in entrata" #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "Documento in entrata" #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "Documento in uscita" #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "Forza documento in entrata" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "Documento già uscito" #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Utente" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "Si" #: forms.py:52 msgid "No" -msgstr "" +msgstr "No" #: links.py:35 msgid "Check out document" -msgstr "" +msgstr "Documento in uscita" #: links.py:41 msgid "Check in document" -msgstr "" +msgstr "Documento in entrata" #: links.py:48 msgid "Check in/out" -msgstr "" +msgstr "Check in / out" #: literals.py:12 msgid "Checked out" -msgstr "" +msgstr "Checked-out" #: literals.py:13 msgid "Checked in/available" -msgstr "" +msgstr "Check-in / disponibile" #: models.py:27 msgid "Document" -msgstr "" +msgstr "Documento" #: models.py:29 msgid "Check out date and time" -msgstr "" +msgstr "Uscito in data e ora" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "Minuti disponibili per fermare il documento in checked out" #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "Scopri la data e l'ora di scadenza" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "Non permettere che la nuova versione di questo documento sia caricata." #: models.py:43 msgid "Block new version upload" -msgstr "" +msgstr "Blocca la nuova versione in caricamento" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "Documento uscito" #: models.py:88 msgid "Document checkouts" -msgstr "" +msgstr "Documenti usciti" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "Check in documenti" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "Forza il check in dei documenti" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "Check out dei documenti" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "" +msgstr "Errore nel cercare il check out del documento; %s" #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "Il documento\"%s\" è uscito con successo" #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "Check out documento: %s" #: views.py:81 msgid "Documents checked out" -msgstr "" +msgstr "Documenti estratti" #: views.py:91 msgid "Checkout time and date" -msgstr "" +msgstr "Ora e data checkout " #: views.py:97 msgid "Checkout expiration" -msgstr "" +msgstr "Scadenza checkout " #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "Dettaglio del check out per il documento: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -192,30 +190,43 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" #: views.py:177 msgid "Document has not been checked out." -msgstr "" +msgstr "Il documento non è stato fatto uscire" #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "" +msgstr "Errore nel tentare il check out del documento; %s" #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "" +msgstr "Il documento \"%s\" è entrato con successo" #: widgets.py:23 msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.mo index 9699d68d3dcbc76624032836d97bd7340fa21330..acadeb69d9fe76859794a984ed977e83eaca6df9 100644 GIT binary patch literal 1626 zcmaKrO>Y}T7{>=%XfZE^rie>{DM%0tjn{UgDB36zkfg;ZHc@auoX~jpu|3J|j5Rx( zmlH=0oO`7ofGgY(g0H|8sUL!SCH{}?wGE9JdHkDs_IaIo=E?2rj|9dV=3UI6G2g~K zcn*IUzk}Q0AK)9{Q}7k=*7HKV1>Oa3gB##`;6v~Zcmlo*eh0n;{s7(tAA#)uNAMo_ zE6A~*fNb|S_zrmEnh;ou55VhS9mG#G@b?%ww84+D{}UhCe(ePzUIRY_Ij>ES{q?~2 z!DKG~9^||pgPhk-Am{Z9$o2mQa$bLdZ-P(fTzgT7cd@U7oJR*_`!2|Nehnh6=^FUg zz^7?U&XWh9*XrQBIR}KA)_McvGv+uo%v+eRWAflT;JB~yhQ}wlD{YW&D1*sK1}DcZ zOJx|7OkGmugpbLXl2b~hD}yvv=EjzRiiX%_IZGPv0q{$BUX z+7V5h52{;?OsYODM}_LUSk?}|=&N1Szz3uDa4@lKH(Q&kd0(|#vb7m+v{iGX*@U7x zqBFyOpVe!(;^x*zO^n)sE`sWNZHr6?=VN)~2IO)5N3PJ`I4IarsYj&xr1Mzrl_43+ z^&X)!e1^L$>T-P?!X%EO^YimYU{_{H7mdW_k)Jv7QO=bqO7kLu(bQpNvu}F`QN7mf zboZBM&}uYmyUqqQoa$drP+*{o5KS^|>^3e=`+~yGasPqZTIzAoA$hfL6PFr0isjb8 zghlSLoW`mhW~JAedfeSOA|(v`tmf$ zF`=8QcLBK?(X==4#g!@9hFtc7v1-;gR&;E{%GLI`T62$=xg?91agr`gSC!EvnR64x z8my^iHfQLVsXy+&j$I@Y4X8-Q=5(O77mGk-|Mz`(qO{;T7jCY29&n3OsWfP%>#vrs fx?7euqUjqU&ri8>7DSIoJfwjy%_$zr=UV&&TXeDV delta 149 zcmcb`^O)J4;ruQ(^MB)`Z?!7bFsN5Rk0 a*HyvB)z{I}$HCFXCCD{6*lzMo=AQs)za1R_ 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 e869589b2c..d8494c162a 100644 --- a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po @@ -1,117 +1,114 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Justin Albstbstmeijer , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-19 06:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"PO-Revision-Date: 2016-03-21 21:08+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 msgid "Checkouts" -msgstr "" +msgstr "Checkouts" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "Document automatisch in-gechecket" #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "Document in-gechecket" #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "Document uit-gecheckt" #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "Document geforceerd in-gecheckt" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "Document reeds uit-gecheckt." #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Gebruiker" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "Ja" #: forms.py:52 msgid "No" -msgstr "" +msgstr "Nee" #: links.py:35 msgid "Check out document" -msgstr "" +msgstr "Document uit-checken" #: links.py:41 msgid "Check in document" -msgstr "" +msgstr "Document in-checken" #: links.py:48 msgid "Check in/out" -msgstr "" +msgstr "In/uit-checken" #: literals.py:12 msgid "Checked out" -msgstr "" +msgstr "Uit-checken" #: literals.py:13 msgid "Checked in/available" -msgstr "" +msgstr "In-gecheckt/beschikbaar" #: models.py:27 msgid "Document" -msgstr "" +msgstr "Document" #: models.py:29 msgid "Check out date and time" -msgstr "" +msgstr "Uit-check datum en tijd" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "Hoelang in minuten uitgedrukt het document uit-gecheckt houden. " #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "Verloop-tijd en -datum van checkout" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." @@ -122,6 +119,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -146,10 +144,8 @@ msgid "Check out documents" msgstr "" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format @@ -185,6 +181,9 @@ msgstr "" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -192,6 +191,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -213,9 +213,21 @@ msgstr "" msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +253,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +271,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.mo index a3ca7f1932290b122f8011de925a55bdac793285..4ef59212e0ea120ebb09e74b0cb45886c62321e2 100644 GIT binary patch literal 3494 zcmZ{lNo*WN6oxAhmP}Z(utP#&@J7;}8OMpjIL5+Dq@Xx4j*}<>3DtC$XUfylHT05k zw;~RfB7~F+2M&>Q$q^yMAqOsz5X6%^f&&-eh@u=gaYg*EyQinUwbb)gw;49#F;C}D{cmVtzd<}dAJ_A0vo3WR{ zgJ2(c1SG$6;7gzY4}vS{_nY8*c>f-J0elGV1^)xdukb`N?l8Cq@5e#%p9G%t0B>feTbe#ncgP($=_jB+?@DA7y{s0bue}EKs_fw2f zYWhH!SU(7<>?nv7urhcFJPtlUE^mT!c)tMg9J~Y4{6B*<|8L-{;NKuz*{(vOcMnMV z4}s)A36idlKpIy|zenH+yx&g0{|Zw69;WaAf|S?2Fj9ODmcb#A@^=+9Kr`i6;G1~= z5quZ?3#7g%pt!_Ako3%?yaaN**Fnshq%<-Uyqrwb|f~Z1Zc<^^|sa z(6Y6#*fb3w*KUZd7O!W@&sE|5-emTvh#Autn%fe-$>PY-wl;hqtwP?^BZ8C+Hrd?gw4tl zyPe*oEg#2Y=QNv_uF@8}=t-AdksiCE18ynH8N@zzRZTe?l1TA4)P96-H^bIlIPdCZ zY5K+)%ea*6?+Tw2p>X)@%-n^-f^2EmH|D&WvW%&q<{68+!VB}~7maC@ns$pZgZ8ZO z(Ng(@Q95RfmU;O^Wo*-VR)08>mLpt8k|kzj_nL#_^H9Obj^_6J9`c2=2DRdCBuM|n+K z5w@}&RFhMjx6!nsVJgWR{{6ddXx7n-jpW#`uHS;USDe)C1G5DkwX_+LhHSPt{gjF+RE;-v z=bo+F@jOU`g<^;e#pq>+j@qQG*+X)2M^J=X@|JFfoi&@vspAT!_3jSa(L2g_N9MgO z@vpZWbnb2Jp6q*f+VtEH&1loiJ(*qCoUE-Mb1Kptq2tpP2i>gYESE#nEz*w8trkn~ z4at;}uC9dKEWLz=xg|yd<0S Ef5wRD^#A|> delta 154 zcmZ1`-Nj;YPl#nI0}wC*u?!Ha05LNV>i{tbSOD<_prj>`2C0F8$=&R}rlz_EmbykJ z3WjD@MkcxjCI$vv0sgu{sb!hPnfZCTE{P?nRtiQ2hCp=|x`vht24+?!hLd?Y#3kKA heS8%B9DQ9CY+QXEJ$)P;U0i}(gM;lh8*?Zy0sz(D8^-_u diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po index 2e0dc5f306..4f875ab9fb 100644 --- a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po @@ -1,222 +1,233 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-19 06:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:31 links.py:30 msgid "Checkouts" -msgstr "" +msgstr "Blokady" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "Dokument został automatycznie odblokowany" #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "Dokument został odblokowany" #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "Dokument został zablokowany" #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "Wymuszono odblokowanie dokumentu" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "Dokument jest już zablokowany." #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Użytkownik" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "Tak" #: forms.py:52 msgid "No" -msgstr "" +msgstr "Nie" #: links.py:35 msgid "Check out document" -msgstr "" +msgstr "Zablokuj dokument" #: links.py:41 msgid "Check in document" -msgstr "" +msgstr "Odblokuj dokument" #: links.py:48 msgid "Check in/out" -msgstr "" +msgstr "Blokada" #: literals.py:12 msgid "Checked out" -msgstr "" +msgstr "Zablokowany" #: literals.py:13 msgid "Checked in/available" -msgstr "" +msgstr "Odblokowany/dostępny" #: models.py:27 msgid "Document" -msgstr "" +msgstr "Dokument" #: models.py:29 msgid "Check out date and time" -msgstr "" +msgstr "Data i czas blokady" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "Liczba dni, godzin lub minut w trakcie których dokument będzie zablokowany." #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "Data i czas wygaśnięcia blokady" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "Brak możliwości dodania nowej wersji dokumentu." #: models.py:43 msgid "Block new version upload" -msgstr "" +msgstr "Blokuj załadowanie nowej wersji" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." -msgstr "" +msgstr "Wygaśnięcie blokady musi nastąpić w przyszłości." #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "Blokada dokumentu" #: models.py:88 msgid "Document checkouts" -msgstr "" +msgstr "Blokady dokumentu" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "Odblokuj dokumenty" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "Wymuś odblokowanie dokumentów" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "Zablokuj dokumenty" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "" +msgstr "Błąd podczas blokady dokumentu: %s" #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "Dokument \"%s\" został pomyślnie zablokowany." #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "Zablokuj dokument: %s" #: views.py:81 msgid "Documents checked out" -msgstr "" +msgstr "Dokumenty zablokowane" #: views.py:91 msgid "Checkout time and date" -msgstr "" +msgstr "Rozpoczęcie blokady" #: views.py:97 msgid "Checkout expiration" -msgstr "" +msgstr "Wygaśnięcie blokady" #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "Szczegóły blokady dokumentu: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" +msgstr "Ten dokument nie został przez ciebie zablokowany. Czy wymusić odblokowanie dokumentu: %s?" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" -msgstr "" +msgstr "Odblokować dokument: %s?" #: views.py:177 msgid "Document has not been checked out." -msgstr "" +msgstr "Dokument nie został zablokowany." #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "" +msgstr "Błąd podczas odblokowania dokumentu: %s" #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "" +msgstr "Dokument \"%s\" został pomyślnie odblokowany." #: widgets.py:23 msgid "Period" -msgstr "" +msgstr "Okres" + +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -242,11 +253,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -260,6 +271,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.mo index e3fa5a6075a7d515e1769a7500e7c03d7977c681..fcf65439427b27a1008682c367042dc907e3719d 100644 GIT binary patch delta 251 zcmcb@yoja#o)F7a1|VPoVi_Q|0b*7ljsap2C;(z6AT9)AkeU)8W(ML)AfCX;z)%aM zLE?NsMO;8y7)XQU<$yF$8Vo>ukQ$IV41W0xp~b0143VkD3;{(Gt-YenbPbGkjSLkG z&8$p}bPY@l47dXPb%RpNGK(|w^K@MjOH!>Aj0_B6>WmDn3@o$_fPl*JOmq!Q3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEf$A)D4J{Q6%&bfdC;k(cbPM(I eQSfv0bycu&^>y_0ad32T333e%wwtWN_zD2Hc^x4D diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po index 2829726e54..f79bc4a302 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: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-19 06:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"PO-Revision-Date: 2016-03-21 21:08+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -44,38 +43,35 @@ msgid "Document already checked out." msgstr "" #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Utilizador" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "Sim" #: forms.py:52 msgid "No" -msgstr "" +msgstr "Não" #: links.py:35 msgid "Check out document" @@ -122,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -146,10 +143,8 @@ msgid "Check out documents" msgstr "" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format @@ -185,6 +180,9 @@ msgstr "" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -192,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -213,9 +212,21 @@ msgstr "" msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.mo index 5d4100bb0344f102e69b65ab5b74237ceed2f186..51dd015db71e9f7e693c5dafff3c8a7c63b88b0e 100644 GIT binary patch literal 3070 zcmZ{mO>7)B6vtgC1(xzvO8Ev88c3-oyBkUrHZ6j*si;I~NViC!O32yqCT?fOi|yHb zhzl142c#aT1Q(#Hs!FXmqV|ZiH$EgTToDI^grE|L8z=tHGdnYBQY+ryj_3LLy}#|Z z`DNGka|~@S`s3&aw=wo2cpfzq~Y#MBW4}&pyKlmZI3;Yb+30?so0VWQq;=j0$^Ti9;=Kq`yjQ^|!S6td;}7sbaOV!jM!^w~{J#d0Uk#EJpMY4BoduB+ zI|qINtv&~j<9Q0f)xnQITIU)_>wgcDKEHyb-*s>=xC6=2`~Bc!;4As_DUjlN42d(1bxwhl#|Iz>zXWOBZ$a|+bIw2W@oiY_ zDU9y{NvBDW;y4LTf)O|dUI5AN2at663q)${ACUC<4}?7IUUbTj)}%&0sZs27UYhi+n7oh?^;$_PhkY!L&}S4my;5rbHa^1w1pvgIg%(nUGu zWu<(`X)$cs5zQ0rxQHUXvOz=Iie+VsBxz3;WiG7@$1yY8m*NW_8MPzDEe75PE5&k}{m(dD&_VzHTtwa)k8BPaihC zBYi4GKvl=f!g?VWrA!Kg4H4VwFq<_7C&-yKl`N68KG^D6ou)&zwH4eJ+v3fR-Vj^W zk7aLYcG612-jPBUh>`SI0X#uA9t>smGLAAj8s?$F8h(O{~yqeZ*Y1hYv;huFs!pITI|h`q)ATDAEo zH6jYINwID5q~{;)p^0gpeLXam@RxaW-*k<=nTo`zP=qLZsDd)?Y2Fh?aA9JxE)!w6 zF18+rM#tH~3Ft`3nD=zr(KaiM8l`bwnpinyI5*NdqXw4--$=_<+>=ye`Z%=V@a$DD zfab&6SzG|P9ggv=eo!UylY|poqF^IVc+0Hl1qAJ)mLU}Yx^9hHUivR5 z4*gS7Jm6)*zI+aEWD(GYrK+*Wyb>bo3p$J0*H0cQ+tbP5>%NSNVeiHNU>qkceHG3o z;=tb|KQhNWTrn)bp=l;|qWi-C7SU)3;VU_F!EqP4O!`WMx~ylKok*!zQaLUP1!^eL zFB0~Zvm#hoZ~gw$X&78yRj%rmpB|j&UAbPKlkuwNzU*Y8_<}k(kBX`*Ym^3C43cJL zbVJh(qj}ZyDwU@6^EtSLpCgU)?B@lQVhRmNxvo~EqUxf?Z;)zpCB;?2-Gy|0LH{a9 z9Cs0^b$?yFdr~#bOSvvetDokh$YMa0bngm7JB=EQd%G#riV34wQDD=-c@!>oLdEQV DY4=r= delta 171 zcmew-{)pM)o)F7a1|VPrVi_P-0b*t#)&XJ=umIu}KuJp=4N?OGlV`B`rkd&+Sn3*? zC>WYq8JXxBm>3vv1^DX*rIuwDXXfYWx+IpQS}7PA7y{K<=o(ro7?@d^7-|~;0hdo= wafxn7QDR\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 links.py:30 msgid "Checkouts" -msgstr "" +msgstr "Checkouts" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "Documento checked in automático" #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "Documento checked in" #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "Documento checked out" #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "Documento forçando o check-in" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "Documento já fez check-out. " #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Usuário" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "Sim" #: forms.py:52 msgid "No" -msgstr "" +msgstr "não" #: links.py:35 msgid "Check out document" -msgstr "" +msgstr "Documento Check out " #: links.py:41 msgid "Check in document" -msgstr "" +msgstr "Documento Check in" #: links.py:48 msgid "Check in/out" -msgstr "" +msgstr "Check in/out" #: literals.py:12 msgid "Checked out" -msgstr "" +msgstr "Checked out" #: literals.py:13 msgid "Checked in/available" -msgstr "" +msgstr "Checked in disponível" #: models.py:27 msgid "Document" -msgstr "" +msgstr "Documento" #: models.py:29 msgid "Check out date and time" -msgstr "" +msgstr "Data e hora do Check out" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "Quantidade de tempo para armazenar o documento com check-out em poucos minutos." #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "Confira data e hora de expiração" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "Não permitir nova versão deste documento a ser enviado." #: models.py:43 msgid "Block new version upload" -msgstr "" +msgstr "Permitir restrições imperativas do check out" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "Documento checked out" #: models.py:88 msgid "Document checkouts" -msgstr "" +msgstr "Documentos checkouts" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "Documentos Check in " #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "Forçando o check-in documentos" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "Documentos Check out" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "" +msgstr "Erro tentando check-out de documentos;%s" #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "Documento \"%s\" check-out com êxito." #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "Check out - documento: %s" #: views.py:81 msgid "Documents checked out" -msgstr "" +msgstr "Documentos checked out" #: views.py:91 msgid "Checkout time and date" -msgstr "" +msgstr "Data e hora do Check out" #: views.py:97 msgid "Checkout expiration" -msgstr "" +msgstr "Check Out expiração" #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "Confira detalhes sobre documento:%s " #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -192,30 +190,43 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" #: views.py:177 msgid "Document has not been checked out." -msgstr "" +msgstr "Documento não foi verificado." #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "" +msgstr "Erro tente novamente realizar o check no documento; %s" #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "" +msgstr "Sucesso no checked in - Documento \"%s\"" #: widgets.py:23 msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.mo index 613fcd7beb4645d58d75b33c6e56bad838db8568..117616d18d0cd7d92430bf224a8e7dd03ba2a59b 100644 GIT binary patch literal 2272 zcmZ{k&yO256vs_lpbgMM`6z;g2?+_QNF0!QqZf`GY1MK-Nc=d$AAk`50TSOgnM|^6*NW#8+t1JMhyDIK zyzfhf_B{Ga=)a@CivIaS_@M3I!&nZ_sn7;v@!uTg}9^AW^ zv7_J{;LBhSJOYlud>{A>#y7yHz#qU@z@Nc6@E@=W9@;n7cLF3mAA&f7T?X-EpWp*g z_9=J=wtogLW4!tZW6y$LfvmteVP_JZrH<u^0|z__2(*&Ky@MPgI&YX&dY;&C|?8(iT%B7)d8oZ23T&ay{VH z9U{d6yG+lD%B_(y!YPfzgp*vPun`8cCCyXqxQJuD$y2$>FG*ubj651DTb@m>txKMb zVl5&WHL$aAZ?0JXq^erlmk`Ue_3;$(e1HZcw0d8)h@xrp!H9 z3JS^~=VIsXv0_$_WviN9u+p#(q-ASHUzDNqmLu=IaoPgDBDO`!yGtwYR(f)zjq_IQ zhKjtmvkmL@b-*iY=lkAS#F%b_w}jge@CCnh(({jb3oYI{8602m{Nuh4L9Zt-DY_2# z%Pq75fALKpt@4hr&g&bI+E_Sk0^ZZ>(jW{yZG}-90_jF3Hl){=BBA9(qzYEnihp%p z8#*@%n$6A4&4wdQY9O~7p-!4+tiv=Da?F!aVw-WH4~rl5&Nu6omF1Q0Gz6`NUpcE& zhqveTw@2{L$t~9$#X_ZRQ9iVtV{JbE+o`3UPV2NE)M~Y~+VcIkTBqt)uNH$&$FI-N*U}?ky?%Nj zXw~cO3hQepVtS7wJVYG|$49W;WL%&O+`X>SX)(#-a&2Vvx-gRecym%y8te>B-nwQ~ zd8K4587_w!;K_`uN~}~ot1weRmD}-F=);-C%g*B2rJY(QI&WR0f+G0sZxq*t?B(NH zVIw z6-;KvanlhmN(!G=hKW){ww#1*#dJBf>jV|;+uw?5t-yV1NA^t{$fF&Qk)b7j$ssr-0`>tZ&O#XPAcHpw!y^iNz>Yb{^?TEEOrdZ|_B?s@9EeZBN4d02Q delta 150 zcmaDL*v(>bPl#nI0}wC*u?!Ha05LNV>i{tbSOD=wprj>`2C0F8$*nBDyr#MambykJ z3WjD@MkbT*vq;+lMJ#j;EfoyRtV|5G4S;~lC$YFhH>4;ruQ(^MB)`Z?!7bFsN5Rk0 b*HyvB)z{I}$HCFXCCD{6*lx2ft0E%+o4*`F 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 ccbbacc4a0..f8e771e2da 100644 --- a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-19 06:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -26,57 +24,54 @@ msgstr "" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "Document aprobat în mod automat " #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "Document aprobat în" #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "Documentul aprobat" #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "Document aprobat forţat" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "Document deja aprobat." #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "utilizator" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "Da" #: forms.py:52 msgid "No" -msgstr "" +msgstr "Nu" #: links.py:35 msgid "Check out document" @@ -108,27 +103,28 @@ msgstr "" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "Total timp alocat pentru a deține documentul pentru aprobare în minute." #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "Verifică data şi ora de expirare" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "Nu se permite actualizarea documentului." #: models.py:43 msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "Document aprobat" #: models.py:88 msgid "Document checkouts" @@ -136,36 +132,34 @@ msgstr "" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "Aprobări documentele" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "Forțati aprobarea documentelelor" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "Aprobări documente" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "" +msgstr "Eroare la încercarea de a aproba documentul ;% s" #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "Documentul \"%s\" a fost aprobat cu succes." #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "Aprobarea documentului:% s" #: views.py:81 msgid "Documents checked out" @@ -182,10 +176,13 @@ msgstr "" #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "Verificat detaliile documentului:% s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -193,30 +190,43 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" #: views.py:177 msgid "Document has not been checked out." -msgstr "" +msgstr "Documentul nu a fost aprobat." #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "" +msgstr "Eroare la încercarea de aprobare a documentului; % s" #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "" +msgstr "Documentul \"%s\" aprobat cu succes." #: widgets.py:23 msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -242,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -260,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.mo index 0361ea7e2768e2f05cc3d8a2571bb62af1a6d288..a644f2c5c43afd91271404231ef9bc9745ff32de 100644 GIT binary patch literal 2766 zcmb7E+iw(A96kyttQQm&eDHE;(n7`Aomom#w%rmbC8@De>tZx9Cez)s-O<^Z&0J`! zkdzYCghnDkeX_h^eA})qT_`QD@?bKP`0TSWKKLj2{mx$7&KjKTnQzWH-|zPQ&e=Z> z?Ea47IfU^F#_t%fV=O*~7oNS3Gd2j^2Rr~A1$F^H1Rex_0ek^?qrQF{coOr6z#ibP zU5p(8z5#p{I0-xqECHn*@I}mT1D^-3178FF2J8a<4eSQ)-(B-}0!V&71|kIe9Ecyg zgcqo60eA=-UjoN4UwVQu1^6d02|V~DV+r6Gkk;pbr-45K&jJ4e9s{QK)_8fKhWYov zA>gk-%74#3#(IHAfW&_fNIG2t_5<(M=l=l7{>>O;Zv#I8A{F*C@MT~bNclemlH@O8 zv_Dvuby0ulc^ZT2Mw;^3gZFdwZ-i<-6yq6;r!bJRjIkd`8dD#sch6!_4@iIZR?+q? zkK1|f8AZW8n-^>|$Gw8!IXmkY1vawHbU#P(qOvvB_ig8 zryHir^S0C6Px0<8lzM;;%k5M#TQVHoGi(IYJ;8MgIU-?p#^#poaosfS8E%OgenB`c z(Ws(=;WlGaX;XsxCDYb(A{U2cy}Yh&x2strs&V~nR=957H_f?DG^(%zPd6Q*=jNIo zL2dJ*`<`7yAz5VH;uuydorc;`Yw)#=xMc-eXNAnW8NJ<0L3gECQ$koxf=qAJanL5u znKP_u5=!RK-q}IwTr>*~nj%Zu*=91)IL=OQJEAM3_1=wc}Xp$4jfbQ#NN?ePsupC<(j%@J1IVCPYDMyOxmvQ7&Zvj zw69MKB_s4Awtd$%kmS*V=ao{4#LUc0+#_=%FJ|LeyO?llhEAeL)hHrYbQ5OXNy70H zy|MAJ@zGY%T3n5d*p`Rerex+ysK^tuUZP~`hBb(8=#DGA^!dzLWuV2QhZibFlBhnWK-PnV-u$D=%#{}6x|fJN^44W;|&Q(CA)T9RM9STh;c`g&oa)lJfAm9`{rIDMjJezLc@4!;P~h&hyo zhf_QW2giE{V=TB4&IhZ({qQ;umhrh6Yy?$_m7pxYv9W^Xd*PMfKA0QfLQv*Gg=1F5 z>50JEY~KTgXyT3{^qR z=7?26<(oJeBxMzvts>WZL3L*-+l?a_9Wwbp=ODr>^=C`c4}wjOUQr2javR6~n+V$t z5@7KFJT(Qo?O4}L@hbYcZkuFFeNKSDctC{Gtz+(PE^ o9>NG`4ppp&i}I8q*U0EmHwJaf;Ne2;W|EJ!ni>tCq(_ndYi@Ko)F7a1|VPrVi_P-0b*t#)&XJ=umEC3CI$veAPrIj1Cv`>e0fcE4J>ty zOcV^wtc*-1-)E7w1&Ubc8d@qCm|2+^Y8wCnmrr7GiEc(^b diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po index 3c8cf39d4e..feb667ce9d 100644 --- a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,17 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-19 06:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -27,57 +24,54 @@ msgstr "" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "Документ проверен автоматически" #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "Документ проверен" #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "Документ забронирован" #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "Документ проверен по требованию" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "Документ уже забронирован." #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Пользователь" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "Да" #: forms.py:52 msgid "No" -msgstr "" +msgstr "Нет" #: links.py:35 msgid "Check out document" @@ -109,27 +103,28 @@ msgstr "" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "Время бронирования документа в минутах." #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "Дата и время окончания бронирования" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "Запретить загрузку новых версий документа." #: models.py:43 msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "Бронирование документа" #: models.py:88 msgid "Document checkouts" @@ -137,36 +132,34 @@ msgstr "" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "Освобождение документов" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "Принудительное освобождение документов" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "Бронирование документов" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "" +msgstr "Не удалось забронировать %s" #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "Документ \"%s\" забронирован." #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "Бронирование документа: %s" #: views.py:81 msgid "Documents checked out" @@ -183,10 +176,13 @@ msgstr "" #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "Подробности бронирования %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -194,30 +190,43 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" #: views.py:177 msgid "Document has not been checked out." -msgstr "" +msgstr "Документ не был забронирован." #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "" +msgstr "Ошибка освобождения документа %s" #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "" +msgstr "Документ \"%s\" освобожден." #: widgets.py:23 msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -243,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -261,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.mo index e2f77fa618c0ff01cb5f17a8e8a856b9eed7263c..c0359784eff2cd478af4520a17ba9e04ab64eaf2 100644 GIT binary patch delta 107 zcmbQi(#JAEh4IQn)r4p>T?1oXBSQs4Gb}#X1Fisn-JsO6%;L=aJYAQ>l2j`N zBLhR2IwM0X0}E{fAmH*zEH2RvDN4*M&PgoEFS1ey%1=ryD#-`Z#fe3k`5Ry9F#-TA C=O3>C delta 117 zcmeBUnZYtah4J1*)r3@2T?0#9BNGKfGb}#X1Fisn-JsO6%;L=aJYAQ>l2j`N zBLhRAItyJxO9cZnD-%O)10dk?Nh~hW4Jk^@E6zzQ$uF`}a0~VEQSfv0bycu&^>y_0 Sad32T333e%w%hnXj}ZV@1R$&c 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 4d0effead1..fa93eef400 100644 --- a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-19 06:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -45,28 +43,25 @@ msgid "Document already checked out." msgstr "" #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" +msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "" #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -123,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -147,10 +143,8 @@ msgid "Check out documents" msgstr "" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format @@ -186,6 +180,9 @@ msgstr "" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -193,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -214,9 +212,21 @@ msgstr "" msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -242,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -260,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.mo index 1dc6ded3ea55805a407ab9fb87b83683e975f197..52434540cc0fcca09794c6e5c9035552390030f4 100644 GIT binary patch delta 204 zcmcb|+`tlgPl#nI0}wC)u?!IF05K~N+W;{L1OPD$5C;PBEJg-~Fd)qb#2S)7@lr|Xhfl4_-3WMBwW zXJlw)V4-aQ1YACe#U;8SMTvREIf*6tMOF$y`AMloCHX+QII$=*f8whz{C?@jHay%t NH&Y?y@Xow+1^`SHEmQyi delta 146 zcmZo*xyNjAPl#nI0}wC*u?!Ha05LNV>i{tbSOD=7prj>`2C0F8iJ`u{rn&}}x<)1n zhGteqCKK07+X4kFbPX*P49u)d47Ck_fXgSbxI{OkC^4@%C$S{I$V$O2)W=7`&(YUa X!N%3s(bLDl(ZwamH8|LA;@>X-5~Upp 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 7c2bb181de..3c38f2f1fe 100644 --- a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-19 06:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 links.py:30 @@ -44,28 +43,25 @@ msgid "Document already checked out." msgstr "" #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "Người dùng" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -122,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -146,10 +143,8 @@ msgid "Check out documents" msgstr "" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format @@ -185,6 +180,9 @@ msgstr "" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -192,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -213,9 +212,21 @@ msgstr "" msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.mo index bdfb3f4057fef16343440da04e2babd8fb6dcff0..bcb42178e411fa0f52c4fc9a4a795c5a268351d6 100644 GIT binary patch literal 1986 zcmZ{jUrZcD9LGmnm7ag9^?!Y{1ki~oYwY5@C~g00AB`o z?IPqA@Kx|Ruorw0EQ9fT;1gIcf{%gM!RNt0!A9_JunF9|JMni2RDM1L5rUiqagon( zgOq#$&LHiS*t7O3j}SF_=P#NU3+ zX3ayO(jC$4164nZpo%-H?dL(2=dU1Kk`=wa0jiciiCH^RSSYR*46mqKtME$MIsvm~RIha8bG>EhJml3K3Ihp5Mf=n3WvB~uj@9Z`*~O6zAdD7)OUncadn zb$N|VqOn>dsu4kg4XOf`e+4 zW7*L=vZ(bV$Z<~k1oO!UOpqR*f6NNfIA$B~CC6scoK>+r+TE3VH`U9^+?Pg93_7-P zBp4J%o|`n)^G@FAM32?iV07VYFllQhd)UalZnS1;_ON-d)yN#oWFRzp*$GE|4*%D+ zX3b37YZ;8x+m?_<-nTsAT9W%F?dAQU| z1GKp)W!X%phlYk)q;lg7u;G>hFQxs&fuAm^stjhAMB3HP(kF`_bskS2Nac>@y0`1k zwq#PB+>`k6jC`ex;v^fE>9T7%UONuP@&%I}efgtC+qO;x9bmrE?G?C3D<>Tv_#at$0%Nto0t$4k+XZKug&N2WbRqN$N+?o@PUJi2f(y7+lGer@C2m(kg) zTW5a@C&sp>=cCzWvT@}`IJ%ICNP>UX&NT@ojo(?nc_A8EBFQ2V#J_p1LGNzf9FOMa z;~)!o2&bo#Xe7GwL-OYO>Q~|D$mY+h>#LLNYv-dg%NwUAqPd@RWc35uh4hm)5Q7ur;}s1w&M!nJGR#MOH7+~v*hf7GgQ`Mb@fS)E+m pQuK3c=G(Xz$!4NV3Qacgt0jIDqxK%2UL+ecm!gRk5`D8o{sV?em<<2` delta 149 zcmX@ae}mcLo)F7a1|VPrVi_P-0b*t#)&XJ=umIwDKuJp=4N?OGlUrGQc};Z\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 links.py:30 @@ -25,57 +24,54 @@ msgstr "" #: events.py:9 msgid "Document automatically checked in" -msgstr "" +msgstr "文档自动签入" #: events.py:12 msgid "Document checked in" -msgstr "" +msgstr "文档签入" #: events.py:15 msgid "Document checked out" -msgstr "" +msgstr "文档检出" #: events.py:19 msgid "Document forcefully checked in" -msgstr "" +msgstr "文档强制签入" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "" +msgstr "文档已经检出" #: forms.py:28 -#, fuzzy -#| msgid "document" msgid "Document status" -msgstr "document" - -#: forms.py:37 models.py:37 views.py:85 -msgid "User" msgstr "" +#: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" +msgid "User" +msgstr "用户" + #: forms.py:41 -#, fuzzy -#| msgid "Checkout user" +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "checkout user" +msgstr "" #: forms.py:46 -#, fuzzy -#| msgid "check out expiration date and time" msgid "Check out expiration" -msgstr "check out expiration date and time" +msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" #: forms.py:52 msgid "Yes" -msgstr "" +msgstr "是" #: forms.py:52 msgid "No" -msgstr "" +msgstr "否" #: links.py:35 msgid "Check out document" @@ -107,27 +103,28 @@ msgstr "" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" +msgstr "持有文档检出的时间分钟数" #: models.py:35 msgid "Check out expiration date and time" -msgstr "" +msgstr "检出过期的日期和时间" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "此文档不允许上传新版本" #: models.py:43 msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "" +msgstr "文档检出" #: models.py:88 msgid "Document checkouts" @@ -135,36 +132,34 @@ msgstr "" #: permissions.py:10 msgid "Check in documents" -msgstr "" +msgstr "签入文档" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "" +msgstr "强制文档签入" #: permissions.py:16 msgid "Check out documents" -msgstr "" +msgstr "检出文档" #: permissions.py:19 -#, fuzzy -#| msgid "Checkout user" msgid "Check out details view" -msgstr "checkout user" +msgstr "" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "" +msgstr "尝试检出文档出错%s" #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "" +msgstr "文档\"%s\"检出成功" #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "" +msgstr "检出文档: %s" #: views.py:81 msgid "Documents checked out" @@ -181,10 +176,13 @@ msgstr "" #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "" +msgstr "文档:%s的检出信息" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -192,30 +190,43 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" #: views.py:177 msgid "Document has not been checked out." -msgstr "" +msgstr "文档未被检出" #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "" +msgstr "尝试签入文档出错: %s" #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "" +msgstr "文档\"%s\"签入成功" #: widgets.py:23 msgid "Period" msgstr "" +#~ msgid "New versions not allowed for the checkedout document: %s" +#~ msgstr "New versions allowed: %s" + +#~ msgid "User: %s" +#~ msgstr "User: %s" + +#~ msgid "Check out expiration: %s" +#~ msgstr "Check out expiration: %s" + #~ msgid "Allow overriding check out restrictions" #~ msgstr "Allow overriding check out restrictions" +#~ msgid "Checkout user" +#~ msgstr "checkout user" + #~ msgid "Are you sure you wish to check in document: %s?" #~ msgstr "Are you sure you wish to check in document: %s?" @@ -241,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." @@ -259,6 +270,12 @@ msgstr "" #~ msgid "Document \"%(document)s\" forcefully checked in by %(fullname)s." #~ msgstr "Document \"%(document)s\" forcefully checked in by %(fullname)s." +#~ msgid "document" +#~ msgstr "document" + +#~ msgid "check out expiration date and time" +#~ msgstr "check out expiration date and time" + #~ msgid "document checkout" #~ msgstr "document checkout" diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo index 02fe8d387d6757de9054efdc4581befdd61175b5..b75a50fd1269899072cd4c8c72ac1e7e340ba5db 100644 GIT binary patch delta 672 zcmZwDzfTlF6u|L!0s<%ULkk*#D@>GPlilM-^g0t_ECdY3g7V;|SaRGY>_McE3xT(Mm6pD1i%&J^z8lOam1Og`J5ZvC!{Z7GuFAZ$9(p=iA+Ex1H7FTdi+})=S(W zc8Go*r|4)eu?1JL6<;O3#t!l~*oK?fj_(rR;~@Dbyp2bw=N(?h;|r^D%Ak{pAIXMa z*hT&uPl%3dB5Cq7s?ZC5qF!*0efS5pfIb$rfd0fG49M@{U7W=mxQ2SZj%lfiY%$QU z-$8x&3l88n47e5Sfp=uAIcWR@)e@*|Ger((x6$)~HBEK5R z1Wg4j9CdI4tW##ipgcNesH-j8|3^4 z%@3)C)JR;EtGNxgF1BHtu9mS4vWuB3>)Y;aDNH2=+K=`?_uJ2$hKBuWcU>L##no)n W?lQ6GYQpR~vxlzkHj)?qTm1{$=a^3b delta 296 zcmcb?If1?Yo)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~};#f%qg4vjg#2AeIB-t3WIa#9x4z z1&BEq85r1rG%t|m1kxfv`aTfL0WlYl|BnfxpA%@9A&@T!q*WLgLK&Qa43LExKpLd5 z1V{@2>3Sdy)C+bP$O52#H~?7$lmb&7DkHjO;K|)L2p`Ph^n+ E0A|7`YXATM diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po index bb522eefc6..0ac098bec0 100644 --- a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:70 settings.py:9 msgid "Common" @@ -86,7 +84,7 @@ msgstr "" #: links.py:12 msgid "User details" -msgstr "" +msgstr "تفاصيل المستخدم" #: links.py:16 msgid "Edit details" @@ -122,27 +120,27 @@ msgstr "" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "Days" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "Hours" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "Minutes" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Object" #: models.py:23 msgid "File" -msgstr "" +msgstr "ملف" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "اسم الملف" #: models.py:27 msgid "Date time" @@ -158,7 +156,7 @@ msgstr "" #: models.py:53 msgid "User" -msgstr "" +msgstr "مستخدم" #: models.py:57 msgid "Timezone" @@ -177,10 +175,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -197,7 +198,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -217,6 +219,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -226,6 +229,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -279,11 +283,11 @@ msgstr "لا شيء" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -292,11 +296,11 @@ msgstr "لا شيء" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo index e1dfcd093347c45042282020687d466a18e7f8e9..19c4ce504ceacf2ccbca57441e2ee1922f768e9e 100644 GIT binary patch delta 696 zcmZvY&r2Io5XWaV^+&B9)SDKT(o;b(v50sPL5hN@kRk=?!8Cb=mAIj96ucOX)`Kks z!HQ60q=+8fM3=<2+C#5B%schgd!c`Uc_mP-wjnQ(5+eptEjS8>z-Yi2*ns_O@Bugl)`RZ?+Mx8A2gSDz)`9teTi5k06|i`O zgRh_*9tHbBOclczD1%;s?cf_w^zQ>M2K)#Qq7?JF?o3tQeI9&$s`TO7aV$FrIi1%<1>mz(sQ#8jadn0 zJBp%~J(p1qy-b_&M8*oIZPQUHmB^@MH;T5R@we01QcTUH=M_yjYS#alNtKCPDQ9CZ z+T7RG)7upZo8i8J=aG$zj@v>cJkZmB{KR-{WHA zj0_B6>WmDmj7>HhFv&7%&AzbXV%vqS7xrG*&TwJw#r_L>E^J`9F#lo$Pz=bt*b0={ Kda>!kRt5l}ggx~D diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po index 1aa0232529..abf373de9f 100644 --- a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:70 settings.py:9 @@ -85,7 +84,7 @@ msgstr "" #: links.py:12 msgid "User details" -msgstr "" +msgstr "Данни за потребител" #: links.py:16 msgid "Edit details" @@ -121,27 +120,27 @@ msgstr "" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "Дни" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "Часове" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "Минути" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Обект" #: models.py:23 msgid "File" -msgstr "" +msgstr "Файл" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "Име на файл" #: models.py:27 msgid "Date time" @@ -157,7 +156,7 @@ msgstr "" #: models.py:53 msgid "User" -msgstr "" +msgstr "Потребител" #: models.py:57 msgid "Timezone" @@ -176,10 +175,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -196,7 +198,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -216,6 +219,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -225,6 +229,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -234,7 +239,7 @@ msgstr "" #: views.py:221 msgid "No action selected." -msgstr "" +msgstr "Не са избрани действия." #: views.py:229 msgid "Must select at least one item." @@ -278,11 +283,11 @@ msgstr "Няма" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -291,11 +296,11 @@ msgstr "Няма" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo index 83f73b84457c38e7f6f7cd61961504a82c609088..564ae8a5aecb6f644da2ded2723c2bd93404a799 100644 GIT binary patch delta 644 zcmXw#ze~eV5XY~!YHR(43NBUxg6I%PYg@IOP(;wSqPPmr<_*up1e&y1u@pscaZrj* zqLcmuPW}P@2QDt%+?-t;^m}PMxcl6_cbEI-oejPw+TDrREy2d&Gw^%(H0Kcn*fAId zn_vuVg**r2s4u~O@ERNh??OI+v#6iJN$?Hi`44aa?Dp8EPb3K(e1#3);4tbRkn?z7 zZ{Qay_yYq7yf_Jtf>R)$&mpjY1&|jQ;5@htrojF1{xswT7^gPT6%rn}4G!=EAS-?X zu|N1bAm~Ygyp#pvnnvKz7c2&7hy!d4&M(TwulH{(oPRd3HPfVpqG)=wu51|uM;uAo zaO*XXwp3L*o}`j;>b~@D-d7hZ2Zyri(~dlH8m7Q3=C{QnioiO0%;K-{SAoapyHxHLqPgvfV3KrRsqto3=E+R-cX55APsUvA&>?c zR0X7gdck5K3z&cy20-#aX|RE;FhR$Z6b7HnKa(;8kr~(SQ(pa?qsTEWCxp)oI2Tz#ZMqKJ10Lc Pvm}$jKP53Kvxorzu*E9Y 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 172b0aee33..47810f2347 100644 --- a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:70 settings.py:9 msgid "Common" @@ -86,7 +84,7 @@ msgstr "" #: links.py:12 msgid "User details" -msgstr "" +msgstr "Detalji o korisniku" #: links.py:16 msgid "Edit details" @@ -122,27 +120,27 @@ msgstr "" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "Dana" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "Sati" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "Minuta" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Objekat" #: models.py:23 msgid "File" -msgstr "" +msgstr "Datoteka" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "Naziv datoteke" #: models.py:27 msgid "Date time" @@ -158,7 +156,7 @@ msgstr "" #: models.py:53 msgid "User" -msgstr "" +msgstr "Korisnik" #: models.py:57 msgid "Timezone" @@ -177,10 +175,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -197,7 +198,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -217,6 +219,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -226,6 +229,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -279,11 +283,11 @@ msgstr "Nijedno" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -292,11 +296,11 @@ msgstr "Nijedno" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/da/LC_MESSAGES/django.mo b/mayan/apps/common/locale/da/LC_MESSAGES/django.mo index 291f61bc31c74ebb44fe9ccc9cc49df0aca14468..76056e46bdad84883836c80766ca1affd7d7394b 100644 GIT binary patch delta 344 zcmX@cyoj~_o)F7a1|VPuVi_O~0b*_-?g3&D*a5^WK)e%(Ie>T{lz$vZvjOoLDE~5$ z<^kdxK-|N~!0;4EGXrrE6U6K?Ak7No*8ypez7`0b%FqpD@B;-V0coH#QO z1|SU}%^(1B3>dg&=A<%!h`hwyR0hBNyi^ANq^#8B5{A&?)FLpUkdj)Gn3+>N(Zbi% zOxM6z*T_)8(9FujNY}u`zKTp>su_V<>!N|Z6rq0OF%D`gdE*?e$ lpdBE4@)FDP7(DaRQ}e*~WS1~F6_us~ZGuo>yK=ICd;qO{J|O@A delta 101 zcmZ3)dW_lPo)F7a1|VPrVi_P-0b*t#)&XJ=umIv7prj>`2C0F8iBEiaO?3?{b&X6E a49%>JOefnhO2b8r46KYzHm5Q2FaiKyrwy0@ diff --git a/mayan/apps/common/locale/da/LC_MESSAGES/django.po b/mayan/apps/common/locale/da/LC_MESSAGES/django.po index 7fb27e3d4e..4c7de89ddb 100644 --- a/mayan/apps/common/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:70 settings.py:9 @@ -84,7 +83,7 @@ msgstr "" #: links.py:12 msgid "User details" -msgstr "" +msgstr "Bruger detaljer" #: links.py:16 msgid "Edit details" @@ -132,15 +131,15 @@ msgstr "" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Objekt" #: models.py:23 msgid "File" -msgstr "" +msgstr "Fil" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "Filnavn" #: models.py:27 msgid "Date time" @@ -156,7 +155,7 @@ msgstr "" #: models.py:53 msgid "User" -msgstr "" +msgstr "Bruger" #: models.py:57 msgid "Timezone" @@ -175,10 +174,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -195,7 +197,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -215,6 +218,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -224,6 +228,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -241,7 +246,7 @@ msgstr "" #: widgets.py:50 msgid "None" -msgstr "" +msgstr "Ingen" #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -277,11 +282,11 @@ msgstr "" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -290,11 +295,11 @@ msgstr "" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.mo index 601ff33a883855647ba99fd44221df6aab7e7365..1d2e8c3ac91cf47249c85ed31a551f4805e6413c 100644 GIT binary patch delta 1195 zcmYk*J!q3b9LMoXOxqZf=A}k$YtvL~O&U{^G?b8`Al9j^_%`SyDV1W7BqRaH2rB53 z&)sv+-Tm*Ld>LLIsI3JY zw+xY>?4{hb8FN(k+qe)BhcQ`S?( zM>R9eO)m{6FoJnhM+2OP4F6h__pn50=DyE4+iBa289v2j5kmj+vu$UgQ(*e#VP75%&r04uKyDUaGH7uGnhv$bP2W4ChoyEID)IF z1v|JXVIS6X6XZr`)Q3r&!~m9X5U-*pUP2B02uaQ~P#HJTgCCF_%v#&8sDA6HgnqT# zU1Xc09&oe&I{RZZ=*9D>7Zy+h7f=&kLmf#S)$buPmU)WWu_pH8dmO-T_zaz_s));| zBZ%=KXuLE=aI%~I*MkKbyjVj03$CCBT0~C3^idRgrZ_;+)^3flc10iMK8pTP3MI4| zN=iE&Z#N9-{8?;k`?N*+GNTk_IZ6prIJQ=3-gj5XK7s}NlR&wQw eMQh#lyOD99wpmX+H!ZLCf%VZFY50A|?f(D?x^5)^ delta 2152 zcmai!U1(fI6vroNlIE+8#w51ZHa9h?iRs48=EG)N#FVrT+BT9F#1@pz?lf7w*_C^D zBU*K-LJ>uMSSnZvf_)OD&@SqOpbw&;h(!e{2wJ3qFL_fRM9|;=?!B6X1P^!aZ)Wb9 zIcNT7c0bzrQ*Y_V_PX;1+fTcl_FIiH)9|ZJys*Z4W46Jjkh|e7#`|Fso`gK+JTEPI z6HdXm-~hYZc^%#amqK2GByT=}jqo$bW4`9K z6@DL%e}PhD89J~PXC)Sc3N#6&>|uB-Ohd&x1G|WCo~NUezX28SB5Z;0KuPsJROVm8 z3-CHT3eT{JuK5CL-M6p@UV{q!CzMiuLnYMOT;0!smnicXEGeTKM3Y2+!QHTvRa0;u z)W*+3CG-M(0KNwI!5^Tc@7Pj3z#!BF}^7|Dk;kLGFLY+`jcS9+-2NJ>@fK~)Lx(qsxcNV`)5jJSa^>c?o3S*Eh6gbq!nQ>r8*v~k)fO?D5hm!?zS zMpLpA`u(du+@s(RNYX^6)5&zvBICja_e3R-ypidyNQF2J0RkK1t&-`2>Qb+?1cTtB znlyhD3{X9|p_}B@=R0Z7rV2LW_{DVE`u^#n>pnH44;ky)4L%f7S=V>`)Z*H8mHxW^ znjKSiLx=Koy)7N`yu4QpoXyQSIs2s3=MR}R)A`xQY`PFl2ieH`KhJ-sR(q0G)sGVd zc|==;A2OT6>2jt1+%95Qm#-^CdAy;gYkegu4>fexE{w(E6S2goGd!M5&>xM*n;)Ex z&Dh1PpUvlDQ%IY167k{4FENrF9vO^d%|}vxA$Gz`<$O0)$a_iWXsR%uP5I72JMX#H zIj~S2&)&B%;SbGbpT4*JP2(TOsf_hb=iNEaX4CWZ{epGff-1Ihe$Kj|e&DC)gAY+b zRy+7lXb0;RDxWu, 2015 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 23:13+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:70 settings.py:9 @@ -58,10 +57,9 @@ msgid "%(object)s not created, error: %(error)s" msgstr "" #: generics.py:295 -#, fuzzy, python-format -#| msgid "New object created successfully." +#, python-format msgid "%(object)s created successfully." -msgstr "Neues Objekt erfolgreich erstellt" +msgstr "" #: generics.py:320 #, python-format @@ -69,10 +67,9 @@ msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s deleted successfully." -msgstr "Objekt erfolgreich gelöscht" +msgstr "" #: generics.py:372 #, python-format @@ -80,10 +77,9 @@ msgid "%(object)s not updated, error: %(error)s." msgstr "" #: generics.py:383 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s updated successfully." -msgstr "Objekt erfolgreich gelöscht" +msgstr "" #: links.py:9 msgid "About" @@ -139,7 +135,7 @@ msgstr "Minuten" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Objekt" #: models.py:23 msgid "File" @@ -182,14 +178,14 @@ msgid "User locale profiles" msgstr "Benutzerlokalisierungsprofile" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." -msgstr "" -"Temporäres Verzeichnis für die Speicherung von Miniaturen, Vorschauen und " -"temporären Dateien. Wenn keines definiert ist, wird es automatisch erstellt " -"(per tempfile.mkdtemp())." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." +msgstr "Temporäres Verzeichnis für die Speicherung von Miniaturen, Vorschauen und temporären Dateien. Wenn keines definiert ist, wird es automatisch erstellt (per tempfile.mkdtemp())." #: settings.py:22 msgid "A storage backend that all workers can use to share files." @@ -197,8 +193,7 @@ msgstr "Datenbackend, das alle Worker benutzen können, um Dateien zu teilen" #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." -msgstr "" -"Eine Ganzzahl, die die Anzahl der angezeigten Datensätze pro Seite angibt." +msgstr "Eine Ganzzahl, die die Anzahl der angezeigten Datensätze pro Seite angibt." #: settings.py:34 msgid "Automatically enable logging to all apps." @@ -206,10 +201,9 @@ msgstr "Protokollierung für alle Apps automatisch freischalten." #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" -"Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung " -"auf einen Datenbankcommit warten." +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung auf einen Datenbankcommit warten." #: views.py:37 msgid "Current user details" @@ -228,6 +222,7 @@ msgid "Edit current user locale profile details" msgstr "Aktuelle Benutzerlokalisierungsdetails bearbeiten" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "Filterauswahl" @@ -237,6 +232,7 @@ msgid "Results for filter: %s" msgstr "Ergebnis für Filter %s" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "Filter nicht gefunden" @@ -256,36 +252,6 @@ msgstr "Es muss mindestens ein Element ausgewählt werden." msgid "None" msgstr "Kein(e)" -#~ msgid "Error creating new %s." -#~ msgstr "Fehler bei der Erstellung von neuem %s" - -#~ msgid "Error creating object." -#~ msgstr "Fehler bei der Erstellung des Objekts" - -#~ msgid "%s created successfully." -#~ msgstr "%s erfolgreich erstellt" - -#~ msgid "Error deleting %s." -#~ msgstr "Fehler beim Löschen von %s" - -#~ msgid "Error deleting object." -#~ msgstr "Fehler beim Löschen des Objekts" - -#~ msgid "%s deleted successfully." -#~ msgstr "%s erfolgreich gelöscht" - -#~ msgid "Error saving %s details." -#~ msgstr "Fehler bei der Speicherung von %s Details" - -#~ msgid "Error saving details." -#~ msgstr "Fehler bei der Speicherung von Details" - -#~ msgid "%s details saved successfully." -#~ msgstr "%s Details erfolgreich gespeichert" - -#~ msgid "Details saved successfully." -#~ msgstr "Details erfolgreich gespeichert" - #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -320,11 +286,11 @@ msgstr "Kein(e)" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -333,11 +299,11 @@ msgstr "Kein(e)" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/en/LC_MESSAGES/django.mo b/mayan/apps/common/locale/en/LC_MESSAGES/django.mo index cb7c1dbd4dfc2a2eae37faa4b8b46a600db66675..7c57cd0d07213e7991bef8861cdeee9ea6863de5 100644 GIT binary patch delta 26 hcmZo>Yi8S!#mH->YhbKvWT;?hW@Tcuxty_w5dc@t25Yi8S!#mH-_YhbBsWTIebW@Ti$xty_w5dc^|26+Gg diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.mo b/mayan/apps/common/locale/es/LC_MESSAGES/django.mo index ce73807add98fa8688afc60e10ea5c250763e368..be87ed1e84108ee952e1017e0550e12081ecbd93 100644 GIT binary patch literal 3267 zcmZ{lO^h5z6~`+Oz9xi#A>k`PnGo!a-Mh0(WUR3)w0L)AOI~d4j)R2wP)&F3PQ~3_ zld5j7H(a>ofRNyTka7Sa#0{U4L*Rt9#{>jIIlzGnoN@xe0fB`0z3QH|m#kaU_3P@c zdiCo6UcLGAiHCovxXy4t$=y7p)CKs)J7~CGd#6$(_)GXM_)o}B{hQ_q_+R*L`1r$0 zeFQ!UpMuNq{qP2SADlpbs-*cid;y+@--R;nRrq0e7xGhY(!3Y`35xx{zz@Q=p!o5h z{`*68-a~%?KLAhk{gd$1^cSGmy$qS6z7EBnfggp_zW*I4e!c|xsUOfh0)GT$Uq6G7 z!`I-;@V8L>a~R`M1$YwPhO*AfQ1@1gOV@Ei1VjL5ooq3q*zD7yXu zGDN)vKMDU1zX%^?u;{Q3#r|_p*3aSRp@T#CefSu>3q^e2mAzl z43WjoGw?U?GL(HiK_h&MCWAvL>wgo9jyv$P@Z0cn@W&8YQ%;Ev5~~GnSwr?E=`4E4 zC4Pt|Oi8|c2#Thk;TD^6eT-ZDmkX(q2B|}nbb}Ia(NZos6VIflu8}h!`x2ie-z5j+ z65qvNxsV{mTArVlroSYA zZrTuaZfe~|s~fN5)C8+{TxsK?TAlc|QL9CvR&NlBGpVT!%hJP<9=i68-tlc+sLQ^^y{o3)ZIMx3b-Ar0JhCUX>1t6$ZMLz| z(UvwxkZ=A3DF}9F*wN=+9&of0`Yo>@eBUG#vb=fTz)t0UN zEvvSZVW#ucw6m^FrlZ=H*cG~+mEIIQh}6fvjB0GF8A%cLb>RZbdY*`0p(9@EJy&$e zzA$ZpYc;Y})*uBi|-g=fM(Y zoQ$sCO%`PCVs*0+Yo`|$)tC%;Q3M%#Pa55*Q`(W5O)z!bL7YxpG#Kfp$Sy~U)C+p)J7b6+im zZem!fWH*^Ds<>44MwV<`S{Q6z*<8Q3>E*@Y;F7N!PH{HgpRuFH-fos=rE&EIos(G6 zHWzPY*6Z9Cgma|NPh4~8>`2=0UH)a)QxF z02>#y3Hj9B@>0xl8*+nXwYnSZt_f`vw<8Ims85&MeYt>sgIktL4_eSGPWSnQEgbX)%$wNVN`1ecT89J*oW*= zO4oy2kaBk1utRU|Ii1`}^^^&7oAdtR_@myd)lN8SQ#GLohzPxwsXzwbg9EQE2~d-O zg{M{q_HflozCPdA%G?=s{dkeOs)-P5mg0~OcFt+RPgCm3)`-y7EZiL2$=lLXD#^39 zHUy#*`QDVm%)k0nOB>%+YF1Bz`=tELkVsOd*GpG97V0W$GDhU<9k)xucHQ;T;sRlk zc(KF#zxDF)*BN%%_hH5%LH|kqR?{~g`gA0FS@*Eyl27vziiS~3o^@%ALC!(ScX`X- z=Drl^F1hCiBWO0@OoPAk%1oBZDG&*A#wHoTCJs6e~nnB&`wnal4tzuWxs z%fUUD8J-cm595t)U~B^X>_+_HdG991?g!s5_$Bx##y@~H@DK22aA*%>_+-bx`@jl# z4>$`R0iOr=g0F!Ofp35hfS-WF;J4uI;P2qw;NKwW*$d@F4ju$g6ys+>vP*#Xf|o#u zuy?@Qz{>?c1aHOo3b-Hq0wnvt0Xg_HNay_vlKjD2@;Dp<@yEvTLv~Mq^Ui^E zP8%e-4Up`A6(oIcfwcc4@NLBOYmnqlL5Tc$4m<{G@I~+gkk0uBBztecfcEbP$=;*j z32+*ub6zgyUk9JS_zGABe*_PJ{}t;8N_m{hAf5XRNcOz|9s&)>!8gH2z^fpg|2;_Y z{t1Lh?6-n{f+Tkxd=lKhkFm$V;~>eO1xen44}!0NB>yf55%w`idA|x$9ef9pKfi(` z_ZLWUyAIMh`>;qn0wRpwSHSBaQfx>+(#P(^OAq;f81Ef;$u_DJ(n0o8Es|eU>tqj| zMR6Iy+kMDxdZ?be57Ou3Mq|qNQM`}iMVS3VzHq#hGkVA;xX^os@KszX@8@uDC6C)( zTgFtUY{>G^Na19}Z5D>o+SM$MH_EgS$yn~P;Dm}Tx1zI6Zi-u{jc7^U6yXJ#M%=9l z$3-0Tb!{$4g9Am%Gb_2%+^z{D`KpSgEwibn&K#SHA~w~5e$k927tR^g%$&3}&ZaYC zWa>!Rz&dY4|75H~0jajpq_ekY1`cwk63J$AsU1zPN6PVVr!%&%>~fIb*tN_L`Zuz= zG1}xIS80o$pWVgh-_0u@o5VRC48HQf3QqBDZ6gT3XOtgih(SP$DA; zL7tuQe(q9eOES?N$(H@O5N69%ED_Jzu@(_ND8)NYTGl|WFVP7rC>8(HjYvKi$O`S^ z{d1Nr8ckUUPDjC6lr1c%@p-X<;;qljFPD~NTN@Y5+m?!gQ(4Of4PE1<#WRgynr;;K z2UK@8K2{xlDyTjkjE(croSm$dtTud4FJKTN)HURK|JL!hld+ z`zrM_T~S=QOvG$fB13$Guc0gZ_UDy!LxFC*C7jf;;0pP=qcw%f-L`Ept80Y6RICu_ z>gt=(6vK=;* z*|aci6c*Z7(!_r*%0Q86HYe#Go-ev+s03T=rfI;x8QGM1D-3b_VFXS~WQwR~Db%@Z zpNCltzZSgXx#d0<17*H|dzGaE%{9-yZ_!?5Bp~fqwQsU0<(=+HJywZ=0eO@4O4#&Z s3FH5@X`$%1uh748zhv1t_~A>;!0(m3csHwUOGR%9N`H-P2CIMmf8m@=qyPW_ diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index a313c6b2f4..477a8a62a1 100644 --- a/mayan/apps/common/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/es/LC_MESSAGES/django.po @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 +# jmcainzos , 2015 # Lory977 , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:44+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:70 settings.py:9 msgid "Common" -msgstr "" +msgstr "Común" #: classes.py:53 msgid "Available attributes: " -msgstr "Atributos disponibles" +msgstr "Atributos disponibles:" #: forms.py:26 msgid "Selection" @@ -35,12 +35,12 @@ msgstr "Selección" #: forms.py:105 msgid "Filter" -msgstr "" +msgstr "Filtro" #: generics.py:123 #, python-format msgid "Unable to transfer selection: %s." -msgstr "" +msgstr "No se ha podido transferir la selección: %s." #: generics.py:147 msgid "Add" @@ -56,10 +56,9 @@ msgid "%(object)s not created, error: %(error)s" msgstr "" #: generics.py:295 -#, fuzzy, python-format -#| msgid "New object created successfully." +#, python-format msgid "%(object)s created successfully." -msgstr "Nuevo objeto creado con éxito." +msgstr "" #: generics.py:320 #, python-format @@ -67,10 +66,9 @@ msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s deleted successfully." -msgstr "Objeto borrado con éxito." +msgstr "" #: generics.py:372 #, python-format @@ -78,10 +76,9 @@ msgid "%(object)s not updated, error: %(error)s." msgstr "" #: generics.py:383 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s updated successfully." -msgstr "Objeto borrado con éxito." +msgstr "" #: links.py:9 msgid "About" @@ -105,7 +102,7 @@ msgstr "Editar perfil de localización" #: links.py:27 msgid "Data filters" -msgstr "" +msgstr "Filtros de datos" #: links.py:31 views.py:150 msgid "License" @@ -113,35 +110,35 @@ msgstr "Licencia" #: links.py:34 views.py:164 msgid "Other packages licenses" -msgstr "" +msgstr "Licencias de otros paquetes" #: links.py:38 msgid "Setup" -msgstr "" +msgstr "Configuración" #: links.py:41 views.py:194 msgid "Tools" -msgstr "" +msgstr "Herramientas" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "Días" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "Horas" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "Minutos" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Objeto" #: models.py:23 msgid "File" -msgstr "Carpeta" +msgstr "Archivo" #: models.py:25 msgid "Filename" @@ -153,11 +150,11 @@ msgstr "Fecha y hora" #: models.py:31 msgid "Shared uploaded file" -msgstr "Compartir archivo cargado" +msgstr "Archivo cargado compartido" #: models.py:32 msgid "Shared uploaded files" -msgstr "Compartir archivos cargados" +msgstr "Archivos cargados compartidos" #: models.py:53 msgid "User" @@ -173,24 +170,25 @@ msgstr "Lenguaje" #: models.py:67 msgid "User locale profile" -msgstr "Perfil de usuario local" +msgstr "Perfil de localización de usuario" #: models.py:68 msgid "User locale profiles" -msgstr "Perfil de usuario local" +msgstr "Perfiles de localización de usuario" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." -msgstr "" +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." +msgstr "El directorio temporaro es el utilizado por todo el proyecto para almacenar miniaturas, previsualizaciones y los archivos temporales. Si no se especifica ninguno, se creará utilizando tempfile.mkdtemp ()." #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Un soporte de almacenamiento que todos los trabajadores puedan utilizar para " -"compartir archivos." +msgstr "Un soporte de almacenamiento que todos los 'workers' puedan utilizar para compartir archivos." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -202,12 +200,13 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 msgid "Current user details" -msgstr "detalles del usuario corriente" +msgstr "Detalles del usuario actual" #: views.py:42 msgid "Edit current user details" @@ -215,13 +214,14 @@ msgstr "Editar los detalles del usuario actual" #: views.py:62 msgid "Current user locale profile details" -msgstr "Detalles de perfil del localización del usuario actual" +msgstr "Detalles del perfil de localización del usuario actual" #: views.py:69 msgid "Edit current user locale profile details" msgstr "Editar los detalles del perfil del usuario local" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -231,12 +231,13 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" -msgstr "" +msgstr "Filtro no encontrado" #: views.py:177 msgid "Setup items" -msgstr "" +msgstr "Elementos de configuración" #: views.py:221 msgid "No action selected." @@ -250,36 +251,6 @@ msgstr "Debe seleccionar al menos un artículo." msgid "None" msgstr "Ninguno" -#~ msgid "Error creating new %s." -#~ msgstr "Error al crear nuevo %s." - -#~ msgid "Error creating object." -#~ msgstr "Error al crear objeto." - -#~ msgid "%s created successfully." -#~ msgstr "%s creado con éxito." - -#~ msgid "Error deleting %s." -#~ msgstr "Error al borrar %s." - -#~ msgid "Error deleting object." -#~ msgstr "Error al borrar objeto." - -#~ msgid "%s deleted successfully." -#~ msgstr "%s borrado con éxito." - -#~ msgid "Error saving %s details." -#~ msgstr "Error al salvar los detalles %s." - -#~ msgid "Error saving details." -#~ msgstr "Error al salvar los detalles." - -#~ msgid "%s details saved successfully." -#~ msgstr "Los detalles %s se han guardado con éxito." - -#~ msgid "Details saved successfully." -#~ msgstr "Detalles guardados con éxito." - #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -314,11 +285,11 @@ msgstr "Ninguno" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -327,11 +298,11 @@ msgstr "Ninguno" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/common/locale/fa/LC_MESSAGES/django.mo index 986d1aabf91c6d78eb457173679265e14b92c77c..6925e5d45b99f80217b0450add9f8ac183689a2c 100644 GIT binary patch delta 1067 zcmYk*J7`l;7{Kw9rb(NZ+DB?lwWduAI)pqlRg35%+QA2?xF|xA3#R5FO;WT=G}PKb z9eV7hgHlZqT4|z#NJm9*QAE5Kp}SIWtE2wE^j7@H`F`h|`#7(gpP>iA@@jkYoFWD& zJ1K`9N~Q2p6N!jBl^Vtbx-f(M)HtaNC$JOmV+5a~2j62ee!?C275CsT^kX*{JCrJ` zK`L_NAyO+IK^f?T-9Cjav@hTmyll6#*h{;FyhuGnerkc_#zos#C=+^%^4@po!;jd> z`05*#ARTKc6KLWtxzR_WOSPfQxC>>V2+E2N;555+5+`YYVN|*AG_w^iqOANX_G1N; z_zdMeCVClPtx<{MZ#;^F%t9VCZ~)6F6PqV(#YObuirxPKWx&t49art^>nQJauzWef z7|QcwC_6NXWvSezA}^S+FU(;Z?MJv5moSE=-QUXSGJ%loAj-gTl$DOyUPCshF_`S6 zd|wi*v#~&SQP!{2wnpAaayAljwh{qKH$?{6jEG&4W0PQBjc-Hh@=?mJ$pYFb|3?oE zHl?u(VRWjYjkDkgRfw{S(nr}0`4h;BBv_2vO_80_Kb%jTqc;nBzS-zFp3WFbQf@SB zsF8eWyr3Vu`rYYVsc01RimOlmarH*jStFaDFw{9CV_Yew^Eqn8()EoTP8W@AK_7Fc zT<7!oOhMmp&jf~|@qN)`BAgf+-k;QgmY#n-$;5E{U_I61cGPRFA%|z#nlWqEU9+m! zJxe;{3wi2h)qF#Fp{IOt&r7RfR=?k~D!S&2>308_CiA(zBb{=AoG7t9)Yc{VWi7akFo{Qv*} literal 3434 zcmb7_+iw(A9LEoW7gq36FL?K;6idkLZfjNChL{R1fw0h&#RrWKXLnA^$n4B!X11j~ zNQ&*Y#>V(UqA}6Ls0)>{^g;+P@M^+8aHfqWz8Mqalkv^?{mo^&+wO*N(wWaWbAI>p zJKNtnwq0Zxd-1%0N8iF&A9&?HyfD7n%GfjD*AbV%m$1GAX23te`@zm_jA6?5flq@e z@JVnGd=2~%+zy@xp9en!p9OyeyTIGv4)71~3Gg3~>}-c|A_qIbx1;q@km3^HQ{Xue zD(p+}A@E|vZ@~w#u7Zz%HIU-J1#<9Lko^4zl77bnVI6jX_+!0zQQUnX+>Mh|A%P(3-~hDe}PoLoezimdq9foD2Py)2|fyz zqxCdMaeV>q0>1&t?=qMMe+Q`_Iv_-PS&;mG1R`}d3F42<;;N#%mAVOkW zc82zMfRy*{h=)Oxk?p}lgK9&A&XVHA@v+D7&>;Vm3siz!DNl;|bvzUk^%3h7i%A2CenCRu;pE_^PDL<7m@M z$89bOo?%;&5vfB7`s_rIXPZVFmPLC^vXg;dD6^B)EIKcjOk3!f&=I%%=&~Hn`W$&U zg;oh(aYe$#hEpLa-u%sFLyk?SpdHb*_tCb9Aj7j_0?j*cD0?z7EK9cIX<2vF(6#r< zqpp^-GdwYLBBvds8wGid`YywJ(%o-r>36iAUf%syrU&!hbQ*%%upBeU?q<23bmooT zeQAuuF%(om7#s(WG8RC#Y4S-`eQUFag_vL4R5;_)}|heD$(FLodvO3G^2sx2URqg{v$645?hg7B*JY zJZ-FA=BqVzjU-{fpQLF0DP%yg`?I9!S19zVTE++Lhc1GzNv3Ln2Wa~<411Gm2}(7; z!qioD9nUa;^|2xxY!lGeozj7Px;4c2UWCQ1v`psLY2ssH+?? zOjF>2r?t5#0(jVXGL1!q6v~133M$o5{)X^S*$Tp`AV7b%QU2beZPst_*KD~>0jRh) zkPTJ8o^4~J(Xa2_WYh{3x}~A87dIJ+TXb!1gY~eEtCfbbZBlL_lVtJHGW1y0pRV^G zgC!gnj*!{`orkGfW^K!{fJ#*T3uxT6IdpW;Y>PqHLT?^PR@Eh37HU6)j>PGVYp`5v zbz$KSD)T<>NqE0zU=sZK}s!FBDhb`?vflN+bv_bXC90)S1z3@n@);?=Bx-78EVKU2MJMo33iZMQwKw H_bBo|*O@l& diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po index b06b587891..1e8d5e14fe 100644 --- a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:70 settings.py:9 @@ -55,10 +54,9 @@ msgid "%(object)s not created, error: %(error)s" msgstr "" #: generics.py:295 -#, fuzzy, python-format -#| msgid "New object created successfully." +#, python-format msgid "%(object)s created successfully." -msgstr "شی جدید با موفقیت ساخته شد." +msgstr "" #: generics.py:320 #, python-format @@ -66,10 +64,9 @@ msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s deleted successfully." -msgstr "شی با موفقیت حذف شد." +msgstr "" #: generics.py:372 #, python-format @@ -77,10 +74,9 @@ msgid "%(object)s not updated, error: %(error)s." msgstr "" #: generics.py:383 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s updated successfully." -msgstr "شی با موفقیت حذف شد." +msgstr "" #: links.py:9 msgid "About" @@ -116,27 +112,27 @@ msgstr "" #: links.py:38 msgid "Setup" -msgstr "" +msgstr "نصب" #: links.py:41 views.py:194 msgid "Tools" -msgstr "" +msgstr "ابزار" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "روزها" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "ساعات" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "دقایق" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "شیئ" #: models.py:23 msgid "File" @@ -179,10 +175,13 @@ msgid "User locale profiles" msgstr "پروفایل محلی کاربر" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -199,7 +198,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -219,6 +219,7 @@ msgid "Edit current user locale profile details" msgstr "ویرایش شرح پروفایل محلی کاربر فعلی" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -228,12 +229,13 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" #: views.py:177 msgid "Setup items" -msgstr "" +msgstr "اقلام نصب" #: views.py:221 msgid "No action selected." @@ -247,36 +249,6 @@ msgstr "حداقل یک مورد انتخاب شود." msgid "None" msgstr "هیچکدام." -#~ msgid "Error creating new %s." -#~ msgstr "خطا در زمان ایجاد %s." - -#~ msgid "Error creating object." -#~ msgstr "خطا در زمان ایجاد شی" - -#~ msgid "%s created successfully." -#~ msgstr "%s با موفقیت ایجاد شد." - -#~ msgid "Error deleting %s." -#~ msgstr "خطا در زمان حذف %s." - -#~ msgid "Error deleting object." -#~ msgstr "خطا در حذف شی." - -#~ msgid "%s deleted successfully." -#~ msgstr "%s با موفقیت حذف شد." - -#~ msgid "Error saving %s details." -#~ msgstr "خطا در ثبت چزئیات %s." - -#~ msgid "Error saving details." -#~ msgstr "خطا در ثبت چزئیات ." - -#~ msgid "%s details saved successfully." -#~ msgstr "جزئیات %s با موفقیت ثبت شد." - -#~ msgid "Details saved successfully." -#~ msgstr "جزییات با موفقیت ثبت شد." - #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -311,11 +283,11 @@ msgstr "هیچکدام." #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -324,11 +296,11 @@ msgstr "هیچکدام." #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo index cfa2727632943b0e401fbb5a7eed7048c83a869f..486d4389bec45666376c88927bc67e07cdeb1d1e 100644 GIT binary patch literal 4022 zcmb7`Pi!4W9ml7orNz+D1_~_{7%0JZ>-TJjC<-qGVVtB*8e?NS;m>W}?!5OV-nYBm znYH7J1L9IaB`ydFA%rR}#HcqA5*#S%J5(GvB2`HA#07CcNIf99@cGTI|B*z9(cAs* z?9TlDet*AtZ=ZbN2a2)4^%U2S?^9}7p5MidG4p^@J#ZF$5KKY&bQ8P?=HM*&3-CkW zpTT#7?|>f!{|!D3KFa3zfoH(?fJ-2s)C=H~;2Jms-UMac_rVW74~ChPtIJ_P;?JOSR%CYe75ejI!f6#3^sk$(;3r@q4N!{FE2c?pVN zJD}M8Jy7)g5PUEA6Hxs8IrupEI`|{-kKhVeqEzhpEhzim1V0J>0TjJ|2gToaK(XgO z7K^;c!B@z|GvHU5{|e=z|HM?|#}nXH<{JDWxCP4o*FaRO-+`j%P4GPU*Y^7>!9rWI;cU@ z&c6-LGyg95G4MB_*zs12Z-c^@zkuTJ!x$_1Itk)}S_H-Z&vO&LUIjk^4#7`@FN3dx zuYs?C8AglU|KuiiKlJ{_uM;4ysq>)t@m%}<8(^3D%OK%bAK{WAx@4T$p-@>tZE*TPUi4m^F0kza)?X%=S;xOIL?+2wWpXCx>sU_`0QJJCDeUoh2 zJk?=jf;L&EcZzDuR$eD2*R{7g6xxqWW%a;i)_2uXzo>&+N>jCzYnKN*w3YUyP26DD z^ybJNeP&Whns zWT9J3GG!@>w~fo z$((!C$Ty)>s_QZmu2#G7r^5S!C$gMskMVlPr42`U&%>x5_jAep z9ErBu&hB_^gx&{2M3e7oePuv+B?2%sve(&kF2-cX!8z!fR2Dj5q>o%gg6!>%w^ETd zGuu_0Fhxk3T4)_hX;?|RbTEF)H#L>oQtGS7wb3bD>l=zHfwWMItC5ifG zQ9$17O)an{R3`TWGH{T7iEme3hwJfnKxTPE^&BO7v*7qUuhyzUsEg=9)Vd|)p|j$LF714&9{SE^(bH3FtDBu=i3;mGQY$@udSUTwXW_G*(~ElX zZ12qJ&cd061r~PJiN46abKU91-om+O7Z_95;9+M|+{+9J?CJHQZ!270FTAN-!Geb1 zolR@TJ$;!PPeyuX6hhgXpWoTp>Biu=fxXowsPk2`ubLl=GaZ|b{e0HSm>*R0vr{Wq zRxTa-yx3isS}y2fId<%pI27!yFi)Fu`FWkdQg6eB>zkK5=MLAk>F8X_lOly1J$

    UmH|g1MF$&gMFumbNWjThy3=NSo|2WgF2DquRbrzu1mM(57wS@(~X* zBZS49Xd5ojfEp*tlFkwLVBKmdEb{SCC~`;Jr(aVRb*?T>_G15z(xw|LWxyZV{cs{w*w*> zZBGwP@@@2^MWiN5^=k4R4vV;2w~Nv6e;apKrAK7nTVUOuZ1@)mKm#9(k1Zcsw_A|b zN0y3ud$OlCCVTCvqSHDyaANShM4~-l+T$g$YV97OK2W}Y;M@@Argq!Dr2T>TobZ@h zj|)fM>s<3;vNwi}@;4x77)@?NJ{m6R;*;8_ z%d(<3S85&dayFT^c*tezpl*(+14VEzAGjg(ipT3wM+su`-yfTLi_&7W+a5jHgMbpH z{qKkMs6%vDTFMZk#4`Q`g@Q9}|8$bahV7HRrg~yGh@|p*>~d#Ew5h75)zDG%rm0X>gBT|k#1?UE zheV~3m`)2L#(^ex%0+*yUWb1 zUj?L!6s4hwL?i?hAaW8C5~8Aj;v^axN+bj|qM!3aAnPC6m&f5Sh(9rc54L+0WPc_=KJQ(S z&q+bnTL;?1RJnRd{iO=FXIgIB79$ z6$fOOq$L?ew3_H;rE#E)DKm;}LS{*7MYS+erYy!5lgx^-AP{3K*k3M2ilntVT+FO8 zRTAeityOGUS;IPKMDJvj_!3&FPI%8vnQ=HsHf$&{o@?!B`a}>~@^?C8`^qi{Il;DN z?xj~yOlY0xJmg_qr&z60A6(xuoh)8azHLvtJg{^}a&xLz5(&xW+Mc(!C>9FK%3>1H zaUZcnP^M&D&yX@P75XYRU{4subY?6WRD+L1T8fm!dlD-Ot!k9T1vru0u}dvoNJ#oN zOyXh_6+j94;-d3&mqMFWjbufMId?9U#T*w)Kv^0kGQby3@s5*5%p=zue8K`s#eK9R zlD}-p3QJM%oDnlR;VgLP1Md>b78X=#TCSsbC&s7eO0z0WwDqPUh6k%JkDMIDC`}>Q z-n^Evi6m}Tm1dJgrEzy=6C-t)Kp@YaH?L%)N|U%E{u1>sS({cXmDSbNvSsbCrq;@S z(x~WMPgff3jHiNzsYJydm71;$l%~&5Pjq}9Di4;CaZL2F|?buR;i{-Gf}2x>KbfsdlqLN)q;lvS-7Ne5W`SH)mHuXps%JsHmvC zOBX%bS7K(DO4tm^C9d8;t*8w$ttK~b_!J{qGNVQkq7Ji|u+VBYP~BxQrHb&mW{yse zMT-LAh;6A8F_!rm`hUBtceZae;ecCp%^g1*JKj$*mrvtT%xx;OOZi1Y0t>In^{!g0 z2_w4KI~R>$BYfaKRBttnn8bev@NfzLgoLR1h0x-vy0Ybtj^7MgaJRRZ`j04fm;J6G N$L+}f, 2016 # PatrickHetu , 2012 # Pierre Lhoste , 2012 # SadE54 , 2013 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:70 settings.py:9 msgid "Common" -msgstr "" +msgstr "Commun" #: classes.py:53 msgid "Available attributes: " @@ -36,12 +37,12 @@ msgstr "Sélection" #: forms.py:105 msgid "Filter" -msgstr "" +msgstr "Filtre" #: generics.py:123 #, python-format msgid "Unable to transfer selection: %s." -msgstr "" +msgstr "Impossible de transférer la sélection: %s." #: generics.py:147 msgid "Add" @@ -57,10 +58,9 @@ msgid "%(object)s not created, error: %(error)s" msgstr "" #: generics.py:295 -#, fuzzy, python-format -#| msgid "New object created successfully." +#, python-format msgid "%(object)s created successfully." -msgstr "Le nouvel objet a été créé avec succès" +msgstr "" #: generics.py:320 #, python-format @@ -68,10 +68,9 @@ msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s deleted successfully." -msgstr "Objet supprimé avec succès" +msgstr "" #: generics.py:372 #, python-format @@ -79,10 +78,9 @@ msgid "%(object)s not updated, error: %(error)s." msgstr "" #: generics.py:383 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s updated successfully." -msgstr "Objet supprimé avec succès" +msgstr "" #: links.py:9 msgid "About" @@ -106,7 +104,7 @@ msgstr "Éditer les paramètres régionaux du profil" #: links.py:27 msgid "Data filters" -msgstr "" +msgstr "Filtres de données" #: links.py:31 views.py:150 msgid "License" @@ -114,31 +112,31 @@ msgstr "Licence" #: links.py:34 views.py:164 msgid "Other packages licenses" -msgstr "" +msgstr "Licences des bibliothèques tierces" #: links.py:38 msgid "Setup" -msgstr "" +msgstr "Configuration" #: links.py:41 views.py:194 msgid "Tools" -msgstr "" +msgstr "Outils" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "Jours" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "Heures" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "Minutes" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Objet" #: models.py:23 msgid "File" @@ -181,30 +179,32 @@ msgid "User locale profiles" msgstr "Paramètres régionaux des profils utilisateur" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." -msgstr "" +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." +msgstr "Répertoire temporaire utilisé pour stocker les miniatures, les aperçus et les fichiers temporaires. Si aucun n'est indiqué, celui-ci sera crée à l'aide de la fonction tempfile.mdktemp()" #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Un espace de stockage que tous les agents pourront utiliser pour partager " -"des fichiers." +msgstr "Un espace de stockage que tous les agents pourront utiliser pour partager des fichiers." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." -msgstr "" +msgstr "Valeur entière indiquant combien d'objets sont affichés sur chaque page." #: settings.py:34 msgid "Automatically enable logging to all apps." -msgstr "" +msgstr "Activation automatique de la trace pour toutes les applications." #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Durée pendant laquelle les tâches d'arrière plan sont différées pour les tâches dépendant d'une mise à jour de la base de données." #: views.py:37 msgid "Current user details" @@ -223,21 +223,23 @@ msgid "Edit current user locale profile details" msgstr "Éditer le détail des paramètres régionaux de l'utilisateur actuel" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" -msgstr "" +msgstr "Sélection du filtre" #: views.py:129 #, python-format msgid "Results for filter: %s" -msgstr "" +msgstr "Résultats pour le filtre : %s" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" -msgstr "" +msgstr "Filtre non trouvé" #: views.py:177 msgid "Setup items" -msgstr "" +msgstr "Paramètres de configuration" #: views.py:221 msgid "No action selected." @@ -251,36 +253,6 @@ msgstr "Vous devez sélectionner au moins un élément." msgid "None" msgstr "Aucun" -#~ msgid "Error creating new %s." -#~ msgstr "Erreur nouvelle création %s. " - -#~ msgid "Error creating object." -#~ msgstr "Erreur de création de l'objet." - -#~ msgid "%s created successfully." -#~ msgstr "%s créé avec succès" - -#~ msgid "Error deleting %s." -#~ msgstr "Erreur de suppression %s." - -#~ msgid "Error deleting object." -#~ msgstr "Erreur de suppression de l'objet" - -#~ msgid "%s deleted successfully." -#~ msgstr "%s supprimé avec succès." - -#~ msgid "Error saving %s details." -#~ msgstr "Erreur de sauvegarde %s pour voir les détails." - -#~ msgid "Error saving details." -#~ msgstr "Erreur de sauvegarde détaillée." - -#~ msgid "%s details saved successfully." -#~ msgstr "Sauvegarde de %s détaillé avec succès." - -#~ msgid "Details saved successfully." -#~ msgstr "Détails sauvegardé avec succès." - #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -315,11 +287,11 @@ msgstr "Aucun" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -328,11 +300,11 @@ msgstr "Aucun" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo index b4536c182b02d59e1bdcfefd980f72842dd6f7b5..9edf31da8ec49057e6f7e69491c29d12213592f7 100644 GIT binary patch delta 289 zcmX@f{Ensmo)F7a1|VPsVi_QI0b+I_&H-W&=m264AnpWW79gGkrKbaF9w43r#Qls6 z3@d>&ClFgQLCkUn(!4;vCy*8c(&0cFsEh$ffz4qC(mAj0_B6>WmDn3@kS8;%78`2C0F8i7R|fO?3?{b&X6E v49%>JfNT>31Fisn-JsO6%;L=aJYAQ>l2j`NBLhR2IwJ!sW0TEVjQorMAz>6y diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po index 9c652aaaf4..92997ea08f 100644 --- a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:70 settings.py:9 @@ -84,7 +83,7 @@ msgstr "" #: links.py:12 msgid "User details" -msgstr "" +msgstr "A felhasználó adatai" #: links.py:16 msgid "Edit details" @@ -140,7 +139,7 @@ msgstr "" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "Fájlnév" #: models.py:27 msgid "Date time" @@ -156,7 +155,7 @@ msgstr "" #: models.py:53 msgid "User" -msgstr "" +msgstr "Felhasználó" #: models.py:57 msgid "Timezone" @@ -175,10 +174,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -195,7 +197,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -215,6 +218,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -224,6 +228,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -241,7 +246,7 @@ msgstr "" #: widgets.py:50 msgid "None" -msgstr "" +msgstr "Semmi" #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -277,11 +282,11 @@ msgstr "" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -290,11 +295,11 @@ msgstr "" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.mo b/mayan/apps/common/locale/id/LC_MESSAGES/django.mo index bfaa19f572690b2e679986c49e83ec9c71e17a12..8d74bbb49613ba066f69fc7d10a11cf0957f0e15 100644 GIT binary patch literal 1394 zcmZvazi%8x6vqb=NOC|3;a34cLka|n=5Ehek+sH!li0!{2gW&5M4@Yf$xByfPC*Z_&oR($XdPzUkASdInECt$NdT9d_RK^kn>lNuIUjQG29OoDCE$|7*@9;M$LEgLvybE%ij~DzL zd=vYdAmoXcF|ZVnd1RcAjo*QDas6B~zwbE=wqA!;6W4oa{N{(o^>J=U66Z0vKCwRW zO%m%`i}ii7jwa4XN-5Y$lT6H|xJJpyWJ@D9v`tc*1h?32oSzc>>)`jSGh*{_stE4a zsVW*Ou&`58Mew-ysEJ8NfBN_POkBe>PTEgCSO?_-%5zlnpPd>_fFQl*7yU@{-DyvkZ=E$Lw2<`(MAM zVVL`(z%AkotR8&O8*Pm?p4L6=XT7VwN~VIAyETeR=1v;a zj%>9mr+DvZ(%SBLQ>{Gp07-=C+Bq}E~6YE{~NhmL%1F5woe5{IsoIId;YTEV_I8Te_lg`h{bsdQA zqqZfk(2OFX|04R&3jE+DQMa>R3L+NKl9YMM*ZBxxRPCqUcQSInqxqQGA> tp~AK;*L{zTMhtDcZan6oSjBO#MbjeFqA#}%%4#Y)QiuJVYFQti{|mcBTF3wZ delta 124 zcmeywb(q=Wo)F7a1|VPrVi_P-0b*t#)&XJ=umIvtprj>`2C0F8$)}inO-*$TEOm`c w6b#L*jDTzt0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPm^vc^D`S(*KFpkq05L`sk^lez diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.po b/mayan/apps/common/locale/id/LC_MESSAGES/django.po index 75ff48420b..3c67eea47a 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:70 settings.py:9 @@ -25,7 +24,7 @@ msgstr "" #: classes.py:53 msgid "Available attributes: " -msgstr "" +msgstr "Atribut yang tersedia" #: forms.py:26 msgid "Selection" @@ -42,11 +41,11 @@ msgstr "" #: generics.py:147 msgid "Add" -msgstr "" +msgstr "tambah" #: generics.py:158 msgid "Remove" -msgstr "" +msgstr "hapus" #: generics.py:284 #, python-format @@ -80,23 +79,23 @@ msgstr "" #: links.py:9 msgid "About" -msgstr "" +msgstr "Tentang" #: links.py:12 msgid "User details" -msgstr "" +msgstr "Profil lengkap pengguna" #: links.py:16 msgid "Edit details" -msgstr "" +msgstr "Edit" #: links.py:19 msgid "Locale profile" -msgstr "" +msgstr "Profil lokl" #: links.py:23 msgid "Edit locale profile" -msgstr "" +msgstr "edit profil lokal" #: links.py:27 msgid "Data filters" @@ -104,7 +103,7 @@ msgstr "" #: links.py:31 views.py:150 msgid "License" -msgstr "" +msgstr "Lisensi" #: links.py:34 views.py:164 msgid "Other packages licenses" @@ -136,35 +135,35 @@ msgstr "" #: models.py:23 msgid "File" -msgstr "" +msgstr "File" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "namafile" #: models.py:27 msgid "Date time" -msgstr "" +msgstr "tanggal waktu" #: models.py:31 msgid "Shared uploaded file" -msgstr "" +msgstr "berbagi file yang sudah diupload" #: models.py:32 msgid "Shared uploaded files" -msgstr "" +msgstr "berbagi file-file yang sudah di upload" #: models.py:53 msgid "User" -msgstr "" +msgstr "Pengguna" #: models.py:57 msgid "Timezone" -msgstr "" +msgstr "timezone" #: models.py:60 msgid "Language" -msgstr "" +msgstr "Bahasa" #: models.py:67 msgid "User locale profile" @@ -175,10 +174,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -195,7 +197,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -215,6 +218,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -224,6 +228,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -233,11 +238,11 @@ msgstr "" #: views.py:221 msgid "No action selected." -msgstr "" +msgstr "tidak ada aksi yang dipilih" #: views.py:229 msgid "Must select at least one item." -msgstr "" +msgstr "pilih salah satu item" #: widgets.py:50 msgid "None" @@ -277,11 +282,11 @@ msgstr "" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -290,11 +295,11 @@ msgstr "" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.mo b/mayan/apps/common/locale/it/LC_MESSAGES/django.mo index 0aec9ba261e2645872c43cc697e117e64eba7e23..8de1977da1906a0169bc589b686b3adf94385c27 100644 GIT binary patch delta 923 zcmY+?KWGzS7{~E9CYPj*sZCqkYHO2f3o1sNv zMrp&ev4}B8@X$6oVgt*#i4KlMjo~r}>H6_7_Te<{!wcAf_b`SFxC@tXKR(6n_zruG zX_$2edhiD(aSN5G8O|MkOfc`lF6_%3h%se1rPK2V7!TzT-vaw^>~Uenb`g1+^0!s2yyg-gKC%m3SJtWhyw1 z=dgr#FhhQ`%3uK3kQ`pgB~(E( zsC+lEG00$%K?+w;3qHpk_!6~MYp8`kAsf*O&HsiLRcKdKh&~;?h(d)b^bM#eg_3i+ zI=)8h!_!S|wUR4z4B6JGT^M;yH?5PV!c=sQrWk6|IDr--t4%qvtM}Gii)oIKC literal 3106 zcmZ{l&u<(x6vquMv|WBS{3w)PuRutmYIZjvv}L0l(l!xA-8M=$NE8X-opH8qXUD6t zXVc^WXQ+^nP$W12C&UE_RKX3wAArOkfB>l{P;ZssP!5Ri^UO}V`C;wMXKX*)@0Z{H zF|v0#ZmBaum(N~ zE`Tq9Z-EEE_rRyX_rWK@FTru}C-8poFYpoYACUJsfX$f%j)2FD{_7y?CBetQbr4I$ zN8o;Nqu}S@KJ>o=9|XSvS^pnF0)Gejy#GL6KXPyGheIHKVj3^jdj@2C=0QI1BFN|T zKwh^7vi|Rayx%pD<-Y(wgipT%*^ZM~bQpXSB+!9xgBu`J5PyUCiGT58`8_zC<8l}r z2akiS&pUWM2VMq8!4JS=;J4sG@K5j%cpH2XJXp!&a13O>Ujzws;7i~J$ou^OvOT|n ztj7%ys*9T-`|%dYe!LB`UiDiSuO;5zbi%m8VFUy#~|zV8OZVb9>h=l zf)}6jEBFw217ttn0(swka4y{Fbp^Z)OpYb%$-a9S4>w+a1kVF_SO-3b&m6xKg z;Dci}XzX7xYAH;WbSfg7g`u)`C5z*=Do;czR=Z3%sbfo4_P4E@BkN2mJBr#eyrPnb z+$HHq#xbp$^omMxpiC&Uiku;PNv4WcbgXPu%(YGC#9S1Kxjy!n?O2g?F4gVKDcc}% zDoaz9I9{AWJFmp>U~EE(RlU^ko~6ub7)VZcl{lTR+EMlSNIMF5I%E6HE(dwRfo8rl zEGXvF)TFt~b<&|kt*x!l0=!4}0tp;=Wdz&rkx zNI2!JOgb4tCeG?mB^DfVqiAN9QGV9o&Wg1jjJl_gV z@r{Cfz`)-$;syAMqK3YesoQ1Q4Rw@%4 zOWdpmEt$4Tad(!Cm8mum$fFmuljFYj3lH-@0>osb%)z#IiW)2=pAX`X4$ZyG&WtyfN&#Np}%t+gI3a_Xw9^QLK7h=8+4+rU8!sXxl>t;vsA{xf=Ro$-bv4Q?d;SH<)5?T2_2cG z$%&atS*Q$!oJV=BGJaSlp^Di#+oq83PIh9A>mK(Jl3{`6q^wbqrY_Pg)$8kW9T8D5 z3l$@CSfeSHeUvmfUsKOmYZ615(=iL9di9Vy&?(Y=9Vzs+Pt3BMbvimrI$F#Xl}uBl zZOKG|u%VW~S*EVT%Yuf<$rOLfZ4`LcN}Hb?T3Y>Hc!7d(afhrs!&k$WAR zQIeUy*{pRt3dLil)4>_$j*a+##U}zxD=Vd6edkQMvM7zYK%O5GvEq}VKD(tbp^T8? z+6{vT>Ey+?)l%eoCi6vqD$^ diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.po b/mayan/apps/common/locale/it/LC_MESSAGES/django.po index a25c726e2c..61d7bedb54 100644 --- a/mayan/apps/common/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:70 settings.py:9 @@ -58,10 +57,9 @@ msgid "%(object)s not created, error: %(error)s" msgstr "" #: generics.py:295 -#, fuzzy, python-format -#| msgid "New object created successfully." +#, python-format msgid "%(object)s created successfully." -msgstr "Nuovo oggetto creato con successo." +msgstr "" #: generics.py:320 #, python-format @@ -69,10 +67,9 @@ msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s deleted successfully." -msgstr "Oggetto cancellato con successo" +msgstr "" #: generics.py:372 #, python-format @@ -80,10 +77,9 @@ msgid "%(object)s not updated, error: %(error)s." msgstr "" #: generics.py:383 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s updated successfully." -msgstr "Oggetto cancellato con successo" +msgstr "" #: links.py:9 msgid "About" @@ -127,19 +123,19 @@ msgstr "" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "Giorni" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "Orario" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "Minuti" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Oggetto" #: models.py:23 msgid "File" @@ -182,17 +178,18 @@ msgid "User locale profiles" msgstr "Profili dell'utente locale" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Un backend di memorizzazione che tutti i lavoratori possono utilizzare per " -"condividere i file." +msgstr "Un backend di memorizzazione che tutti i lavoratori possono utilizzare per condividere i file." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -204,7 +201,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -224,6 +222,7 @@ msgid "Edit current user locale profile details" msgstr "Modificare i dettagli del profilo corrente dell'utente" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -233,6 +232,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -252,36 +252,6 @@ msgstr "Devi selezionare un elemento" msgid "None" msgstr "Nessuno" -#~ msgid "Error creating new %s." -#~ msgstr "Errore nella creazione del nuovo %s." - -#~ msgid "Error creating object." -#~ msgstr "Errore nella creazione dell'oggetto" - -#~ msgid "%s created successfully." -#~ msgstr "%s creato con successo" - -#~ msgid "Error deleting %s." -#~ msgstr "Errore nel cancellare %s." - -#~ msgid "Error deleting object." -#~ msgstr "Errore nel cancellare l'oggetto." - -#~ msgid "%s deleted successfully." -#~ msgstr "%s cancellato con successo" - -#~ msgid "Error saving %s details." -#~ msgstr "Errore nel salvataggio %s dei dettagli" - -#~ msgid "Error saving details." -#~ msgstr "Dettagli errore di salvataggio." - -#~ msgid "%s details saved successfully." -#~ msgstr "%s dettagli salvati con successo" - -#~ msgid "Details saved successfully." -#~ msgstr "Dettagli salvati correttamente." - #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -316,11 +286,11 @@ msgstr "Nessuno" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -329,11 +299,11 @@ msgstr "Nessuno" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo index 0d87acab3391e0e7fc84dd1b250a9048f559a29e..41f130b5acb5dd43bae4b01c348df27a8dcf79b8 100644 GIT binary patch delta 584 zcmX|-KS)AR6vmG}Q~P6sK@>$kTABp4kZ?1i5|SXvriQ1UFP*dZorYy7ld0%%RaXwnNKH#;8)F?*XoX#6*aNz@VOU-~xZt&eu|$y@ cZ6u+6e;THBE;X8F4Wa7)POoy6TX+ur0dhEL?EnA( literal 1734 zcmaKr&2Ah;5XTz`Ukd^31jJXM6UoR9n%VVYAdKY$i5)AFcVjsl3nV1eo+;0cGt<55 z?%j>gJOJVV2QEAUhg{(Saw9Lm18{*ONB%V*yLJ-OQtfZM>!Yh`y8c`|_oKkN2zej! z8{`t?n`iKY^#}Mi_^9Sz;0M@0_bddw0=@@+1il4culY5&i2bPEe+P1$pTRf52jGj~ zLy+S=0wwqlcmZ5M@N?i2$a!4_UjVnkm%%>x3v&4icYQ^kyCyPlt61}nW(xK4UOXX!w3VWkTW}b>r^pRe5 z!x?Sr8>wQS8C?gV1Wxc5x62C7=;0m}W zJFPt$8S8_dOS2@nK2BXQFp+HS-W~)u`0K$w*u+PSWVf^WY0&v1=&s4t&!R5=uXQ>w z4EAV}aoi{Ex}E5gwU0YktsPV!46M>FSKio2?wJF!-hfWo%)mgWW0g`cAXP+ibL``x zT<((}lFgM)+=^TtdOwQV?dfzHdJdHx()}W+46e=X_|ikN!Iq9qg69y) zYX_O11 z5A>8`LUx)RC1mjkphzjD30~O=S2Icpy-i7nV&70Iy&Vd_6^HG{{Bk><@Lei`N 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 9326a1a333..ec4d8807dd 100644 --- a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # woei , 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:70 settings.py:9 @@ -55,10 +54,9 @@ msgid "%(object)s not created, error: %(error)s" msgstr "" #: generics.py:295 -#, fuzzy, python-format -#| msgid "New object created successfully." +#, python-format msgid "%(object)s created successfully." -msgstr "Nieuw object succesvol aangemaakt." +msgstr "" #: generics.py:320 #, python-format @@ -66,10 +64,9 @@ msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s deleted successfully." -msgstr "Object succesvol verwijderd." +msgstr "" #: generics.py:372 #, python-format @@ -77,18 +74,17 @@ msgid "%(object)s not updated, error: %(error)s." msgstr "" #: generics.py:383 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s updated successfully." -msgstr "Object succesvol verwijderd." +msgstr "" #: links.py:9 msgid "About" -msgstr "" +msgstr "Informatie" #: links.py:12 msgid "User details" -msgstr "" +msgstr "gebruiker gegevens" #: links.py:16 msgid "Edit details" @@ -140,15 +136,15 @@ msgstr "" #: models.py:23 msgid "File" -msgstr "" +msgstr "Bestand" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "Bestandsnaam" #: models.py:27 msgid "Date time" -msgstr "" +msgstr "Datum en tijd" #: models.py:31 msgid "Shared uploaded file" @@ -160,7 +156,7 @@ msgstr "" #: models.py:53 msgid "User" -msgstr "" +msgstr "Gebruiker" #: models.py:57 msgid "Timezone" @@ -179,10 +175,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -199,7 +198,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -219,6 +219,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -228,6 +229,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -247,36 +249,6 @@ msgstr "Selecteer minimaal een item." msgid "None" msgstr "Geen" -#~ msgid "Error creating new %s." -#~ msgstr "Error bij maken nieuwe %s." - -#~ msgid "Error creating object." -#~ msgstr "Error bij het maken van object." - -#~ msgid "%s created successfully." -#~ msgstr "%s succesvol aangemaakt." - -#~ msgid "Error deleting %s." -#~ msgstr "Error bij verwijderen %s." - -#~ msgid "Error deleting object." -#~ msgstr "Error bij het verwijderen van object." - -#~ msgid "%s deleted successfully." -#~ msgstr "%s succesvol verwijderd." - -#~ msgid "Error saving %s details." -#~ msgstr "Error bij opslaan van %s gegevens." - -#~ msgid "Error saving details." -#~ msgstr "Error bij opslaan gegevens." - -#~ msgid "%s details saved successfully." -#~ msgstr "%s gegevens succesvol opgeslagen." - -#~ msgid "Details saved successfully." -#~ msgstr "Gegevens succesvol opgeslagen." - #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -311,11 +283,11 @@ msgstr "Geen" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -324,11 +296,11 @@ msgstr "Geen" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo index 91649a194afe8f97d54fb0a1d4b0fb6b7384ee2c..fc842ed163470e799c23aadf87c6d28176370667 100644 GIT binary patch literal 3748 zcmb7`ON<;x8GtJxhOh)kLQDv+6c0PQiD!0pV_DWX3tI2mi4(8Ac-L_Rr<(5C*`Dd? zYIRq8+^ukljJR<@AdFGMnF~VBg~$SgJv@YRLL5K}5@!yPC7(b@e1G?Ny_-0Pl&1UZ z>aP0he^$*uAAR6Qiq_%!BG=FEQ))$?Kf;YR`+!niI0yH^5Xz?kT!jgogV*3^;XCl7 z@HTu5{uh1?KFs8Y;9>Z2xD5HEUV=}+bvO$LP{#cbeg^&=%D6Y-gYef-y|EiPLxB5_|*7{CB3j1s|cm4<*Ik$Kfa85h(sxg%ZaN_&In19)Rhz z|Kllt2}RF8LDB#1DgO$^-oHbU`!2);^*@N|Y9Gpq-48+0V?UJlPeI9-HhdDk0!99% z>G$tKvEwqV{S0ND*CC?Sn-J5~@22nn0w1OSFDUbF!(YJ%QR+qb78HB;ag%wE!KdJp zP~<%iMZXOwezH*Xx(so@`aG93sSRo3Bk|Yn)}D4GAHT{awIogKz0<@7se{(^h2#LL z*1nT?%i7`>@!`{4noIPRCV98J9i$_=e}U@|m*^`wEAgD=k|sHe3AJzM^3f}u@9?YE8BCXV&kWkZ|gIxvYY za;v@5`L@Zd-il(Ix7Bjb6<#fep;}IKlz7{>na)!iL|bK)^!2tI>yb%H?Ro~xF`m ztlzE!77SS{*KxC0uFlz!yJ$gP#6)__Wm8Xf^?_V%>?pfoeUZ}VUa!bENvTj5Y3xkM zgM{RsFLSkNM=80QmE=!`^^PZ^9O@k9^*9Qf9OXR^+r_AtNbC<0XnQfT<6Ij_?;Rns zQr_13)E4d)50IgC_C_{5RQqHck#nSLkXh0JCG$ELksx#1qhTo0X6M>!lT48$4J~P1 zmr_5IaA|MyVcyhKXj7>#muRCya;;}5s(_>=wU|meQV6WmNUOx_o6eEE=bKt!jL%Gx zZxMl=@QZ)j>O8q#-*%E&-cUWe6TKO*_g${mGbh#AIu*8FCh^Iru3j@GHGg7tZDZz~ z#pS-WmiMEub-d{3txea}GwWwJTPxxf# zcCiFK$`pgVz2q5bqU4wk$kN>UrSqF7TSxDXn}(xxA_-hbZgln0UgURl?dmk1S&xg% z#I2Jq8?j3zY2D42o;}7#`LZ;dEG;eQZ|aWb^MQrVH`fxyki78b@Yu^Ls(5$9Yxeei)5( zF}Ys)p&KXB(9sKB?r&a6nUh3pjd3)*ac$gIrxHqeWP*X!POZAo3}l0;dPcipW+zwU zTCUNQ1KWILhn{J=ck@bEA!b}ou8t$?@w?TD;i$0=_%n3|w^pcbD=cvJCYu%NLfN}Qmy|2E&4i7|OUi;oS9jM-5U; zo!?1VM-(M*YF|aWGFdjzmxv+%A+#??L1l94Lf1;MMiY9XEnDxNq8UY);)~1<3IDVd zc1Z}f+xmjcDN_>;3yn9pdozs08N+79;_fER6EWS{zBC?LxJ^-lwFg*ZMESuyJd7^xFLMz?C>~t^ literal 3123 zcmaKtO>7%Q6vqcBg__S6X!&L+q)k+PTa6qcy(72b1GnazIiHZX^gv6oZ|8{LBP8vqu{q5|$_vXDf zZ=ZkLv*QxO=)?6aF7GbJhQP1x#tq}6dl-8XTy61N@OjK{fCcbR@LsTI2V;0-hrqpH z4tyM(1YZK*1b2b&fX{&MgHM5WR>31Oc`xcal7s2PiufbE`4UqKrV>7tIav<3`0zM5+ zfd@bjq&P0L-d_e^#Qgi#`Y#~m={87y?#|$Bz=I$MXF$q-(3*b$lKn41lD`g8JU2n| z<986Qvp+z%$o>Lp|9`+faOVT*{(0~P%;!MT4?(J@I!Jadg7~q^xRHOKgB0HnAldsF z#E;#?Z8vxeBtQQJ$Vn;QIyqUe{qohS*R9JTj77&CRk1C0|m$G+8!M)RAQ)p2tR3U|$q{$%VC{Dn?eC z0%v1U7|OtsatQAdC%Rwy+7-~Mg_>-3WX2I7x2h`Hc&c?r*C#w>xqGKQwytcmQ6kv( zESYo*vWYO%VVZIklz1TPya%Cgdaa9P>Du<|4fIO zwMqvqBhrHs^x4TI&TR^9PFD4bWb?_sP-gQ~EFO<)z7`%H=!oz5(y#@bb%S_E?ZkG%5+8@ZaF>&whc%}lJv+@H;7#&lruzB8%AD!%TZmQ2m?;UO&2 z%5ZNmJlxOU;CYVap8ovn!vp-lf#mVn@E|?*((C-O{yaZ>HhE7n`9A3MLua6GC_{}b zvS>Xh2hD4`8aF@o10|CV7nvwfYpY1+rUm*?&_5cYrUdGI1%X}j$RmUNe6=s~HWjb3zX`nrOkVm8`5w|3q`x;?ic z3{Q?tQg#DfmoQsMT3|Xrqy5Hu-tmNY!{QDqvu9v4Hg_8xaN4@9|&GAQ%1^kl%% z>Z%Nc2w>PhtpF-MlKifbxSQ70q*0k8Cs)l`bwni><@_H(TwhQC diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po index 877ebfa8dc..1b7ad0cadf 100644 --- a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po @@ -1,32 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 # mic, 2012 # mic , 2012 # mic , 2012,2015 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:35+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:70 settings.py:9 msgid "Common" -msgstr "" +msgstr "Ustawienia wspólne" #: classes.py:53 msgid "Available attributes: " @@ -38,12 +37,12 @@ msgstr "Zaznaczenie" #: forms.py:105 msgid "Filter" -msgstr "" +msgstr "Filtr" #: generics.py:123 #, python-format msgid "Unable to transfer selection: %s." -msgstr "" +msgstr "Nie można przenieść zaznaczenia: %s." #: generics.py:147 msgid "Add" @@ -59,10 +58,9 @@ msgid "%(object)s not created, error: %(error)s" msgstr "" #: generics.py:295 -#, fuzzy, python-format -#| msgid "New object created successfully." +#, python-format msgid "%(object)s created successfully." -msgstr "Pomyślnie utworzono nowy obiekt." +msgstr "" #: generics.py:320 #, python-format @@ -70,10 +68,9 @@ msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s deleted successfully." -msgstr "Pomyślnie usunuęto obiekt." +msgstr "" #: generics.py:372 #, python-format @@ -81,10 +78,9 @@ msgid "%(object)s not updated, error: %(error)s." msgstr "" #: generics.py:383 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s updated successfully." -msgstr "Pomyślnie usunuęto obiekt." +msgstr "" #: links.py:9 msgid "About" @@ -96,19 +92,19 @@ msgstr "Dane użytkownika" #: links.py:16 msgid "Edit details" -msgstr "Edytuj szczegóły" +msgstr "Edytuj dane użytkownika" #: links.py:19 msgid "Locale profile" -msgstr "Profil lokalny" +msgstr "Profil regionalny" #: links.py:23 msgid "Edit locale profile" -msgstr "Edytuj profil lokalny" +msgstr "Edytuj profil regionalny" #: links.py:27 msgid "Data filters" -msgstr "" +msgstr "Filtry danych" #: links.py:31 views.py:150 msgid "License" @@ -116,31 +112,31 @@ msgstr "Licencja" #: links.py:34 views.py:164 msgid "Other packages licenses" -msgstr "" +msgstr "Pozostałe licencje" #: links.py:38 msgid "Setup" -msgstr "" +msgstr "Ustawienia" #: links.py:41 views.py:194 msgid "Tools" -msgstr "" +msgstr "Narzędzia" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "Dni" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "Godziny" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "Minuty" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Obiekt" #: models.py:23 msgid "File" @@ -152,7 +148,7 @@ msgstr "Nazwa" #: models.py:27 msgid "Date time" -msgstr "data i godzina" +msgstr "Data i godzina" #: models.py:31 msgid "Shared uploaded file" @@ -176,70 +172,74 @@ msgstr "Język" #: models.py:67 msgid "User locale profile" -msgstr "Lokalny profil użytkownika" +msgstr "Profil regionalny użytkownika" #: models.py:68 msgid "User locale profiles" -msgstr "Lokalne profile użytkownika" +msgstr "Profile regionalne użytkownika" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." -msgstr "" +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." +msgstr "Katalog tymczasowy zostanie użyty do przechowywania miniaturek i plików tymczasowych. W przypadku braku takiego katalogu zostanie on utworzony przy użyciu tempfile.mkdtemp()." #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie " -"plików." +msgstr "Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie plików." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." -msgstr "" +msgstr "Liczba określająca ile obiektów będzie wyświetlane na stronie." #: settings.py:34 msgid "Automatically enable logging to all apps." -msgstr "" +msgstr "Włącz dla wszystkich aplikacji automatyczny zapis zdarzeń." #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." -msgstr "" +"Time to delay background tasks that depend on a database commit to " +"propagate." +msgstr "Czas opóźnienia wykonania zadań zależnych od operacji na bazie danych." #: views.py:37 msgid "Current user details" -msgstr "Aktualne dane użytkownika" +msgstr "Dane użytkownika" #: views.py:42 msgid "Edit current user details" -msgstr "Edytuj aktualne dane użytkownika" +msgstr "Edytuj dane użytkownika" #: views.py:62 msgid "Current user locale profile details" -msgstr "Aktualne dane użytkownika szczegóły" +msgstr "Profil regionalny użytkownika" #: views.py:69 msgid "Edit current user locale profile details" -msgstr "Edytuj profil aktualnego użytkownika." +msgstr "Edytuj profil regionalny użytkownika" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" -msgstr "" +msgstr "Wybór filtru" #: views.py:129 #, python-format msgid "Results for filter: %s" -msgstr "" +msgstr "Wyniki dla filtru: %s" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" -msgstr "" +msgstr "Nie znaleziono filtru" #: views.py:177 msgid "Setup items" -msgstr "" +msgstr "Ustawienia elementów" #: views.py:221 msgid "No action selected." @@ -253,36 +253,6 @@ msgstr "Musisz wybrać co najmniej jeden element." msgid "None" msgstr "Brak" -#~ msgid "Error creating new %s." -#~ msgstr "Błąd podczas tworzenia nowego : %s." - -#~ msgid "Error creating object." -#~ msgstr "Błąd poczas tworzenia obiektu." - -#~ msgid "%s created successfully." -#~ msgstr "%s utworzono pomyślnie." - -#~ msgid "Error deleting %s." -#~ msgstr "Błąd podczas usuwania %s." - -#~ msgid "Error deleting object." -#~ msgstr "Błąd podczas usuwania obiektu." - -#~ msgid "%s deleted successfully." -#~ msgstr "%s usunięto pomyślnie." - -#~ msgid "Error saving %s details." -#~ msgstr "Błąd podczas zapisu %s." - -#~ msgid "Error saving details." -#~ msgstr "Błąd zapisu detali." - -#~ msgid "%s details saved successfully." -#~ msgstr "%s detale zapiane pomyślnie." - -#~ msgid "Details saved successfully." -#~ msgstr "Detale zapsane pomyślnie." - #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -317,11 +287,11 @@ msgstr "Brak" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -330,11 +300,11 @@ msgstr "Brak" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo index 4a5ce4a470b6de23d79cfb3346eb578bdcd006dd..b17597db94681e3126cd010b827945479f40ca0f 100644 GIT binary patch delta 675 zcmY+AUVvHv7R1z@6FIFsNVegDVt~(3|DKvU&E3CH@GhuH>cIScyBw}lm za9Al?q|jDvtPR-2%Ff2d%F4>h#{aunzXoQ0GsDa~&paJ_IKJ^^YV?WFj?z!kpV4P@ zUSpu$!+m%kNAUq3#7B4lALD5p;xxWNJ@)~}aJTXkjpe&{V^sE-*o$@^S{xp3^iyxuuC+c+l?Y~XKm#v*7Qt#N*hz?oYH(MXu z?WNnRrst(=`fkn0b(6BPE@S2gclXA?deblDhI45lHw%-OLy#CB+q4*-s$IS?A4ccH zW+Q0Kx8|B*G#5n^SC_)BS+fPj!iCtIR?v(Zzt1%rt?1(07q#QH*^ce47@Iq};`$~? zT(Dei4Bw4h%QT*MRlK~+xASsm+sP%DE!#VTJlm7Q3=C{QnioiO0%;K-JpqX2p#1er5Ic4PX=R}NAs{Wyz~Ia949Ea!WCGd(vVapv zgA5P^(m=gnhk+~rDuV-%dZ08|Ju6JqF(qYk7o(#|St>(tYEEi$NoIcDWF978 zQ&U|7OI;%q1w%6{BOu$vzMAs#;B-Kj6$iNV$&d9*Z*kp4blN96R UL(Bm}5HpLwh8|vicyT@h0DyQd;s5{u diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po index fb026f68b6..5ca337e12f 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: # Translators: # Emerson Soares , 2011 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:70 settings.py:9 @@ -87,7 +86,7 @@ msgstr "" #: links.py:12 msgid "User details" -msgstr "" +msgstr "Detalhes do utilizador" #: links.py:16 msgid "Edit details" @@ -115,11 +114,11 @@ msgstr "" #: links.py:38 msgid "Setup" -msgstr "" +msgstr "Configuração" #: links.py:41 views.py:194 msgid "Tools" -msgstr "" +msgstr "Ferramentas" #: literals.py:13 msgid "Days" @@ -135,15 +134,15 @@ msgstr "" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Objeto" #: models.py:23 msgid "File" -msgstr "" +msgstr "Ficheiro" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "Nome do ficheiro" #: models.py:27 msgid "Date time" @@ -159,7 +158,7 @@ msgstr "" #: models.py:53 msgid "User" -msgstr "" +msgstr "Utilizador" #: models.py:57 msgid "Timezone" @@ -178,10 +177,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -198,7 +200,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -218,6 +221,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -227,12 +231,13 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" #: views.py:177 msgid "Setup items" -msgstr "" +msgstr "Itens de configuração" #: views.py:221 msgid "No action selected." @@ -280,11 +285,11 @@ msgstr "Nenhum" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -293,11 +298,11 @@ msgstr "Nenhum" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.mo index cf502a40563f889aa2659c9ccc72baec7becbb36..ca792344de9df860f90c879e02f4e6f7d963de0f 100644 GIT binary patch delta 1104 zcmYk*%WD%s9Ki8kn7)^=M~l3m?Rs-ALD z@zT>Oh@ki=)Po*G4~lq@pdLi9coHlA1A=~k$+kG`{5~_YlbzqpZf+!AHWj`$ zR$UWHCv^jLSA|F#k5>{Xy%CWiOkor=$R!@31!u7t=P-$Pu@+xr6~4!H_z}DDH?F`0 zH=9HX(nUij?j+RUZq$WF!u|wS(?5zU@nqP~VjKND@*ug2Tymcf!-t_yP!oEN`rKC- z$G6zb`tpg!8U_|o6R2dCPK*;6k_Oa_TTmBDqV9MH-r}^z@dW*!tV&bH$W|BJk8AN5 z>in~q!pm5PPcg#!Ql!y|Z*UM7aTRuvjs7r=49Py!@q?&|okHE|404G>sK;}t^Dki% z=dcwYq0WC7`T+|%@e2*j_&e$m|3c0D53a{%ZtAzO4H=Sg)FV6+_D$48Posf_(A&rX zl@`^6^%+`pP5mbLjqYD$bt#sEK3I#sTP?by1XUASD!MBz`r5RxPAPG1>qn`l*+6Zi z{$KPIbOU;d1~noB<#(#@O?SGH+D=_6`X}fJJNnKxQT1C0enjp>%nN=nUu887+ZjtV zIA+$8Q8(}T!Odt#%y#lQ%MV^e+k?N+wxk@ivhJ)Uhpdb>nX_GoRxW?091S~XW&L1p zEFC@Ux*0z>AG=aN(9^rUr!Qrs28R0kg8J&#<&nPBQ19U5bah)rFkkbz(l&$ZwHJd2 zb&0K`u4l@)?abtrNy{lNm~z1KrtOR|Hf6h6QzkSq*AKqcZ4S1?yZgh$yi#Vxh2lL| n_PEZpJ(Ks$a(66eIleJv8q4E>A0LSiTb{?3ot)_h&*J7kP+OEa literal 3098 zcmb7_J8T?97{`YY@;Kh+5gq|P9u78P?`)GmSSuhqwk3m|SoVbigrd3K@p+Tooz3j* zIkpfqG>8TXB9SHt0dkWFfl^U~;^@*+&_F?j=nsCOv|9z14eGIbv7vNRI^ajX&EMO7)eI9%Y{1AK>{2GJ_Vh=Xs{SM%E2gD^>G@G)=&Wcxn@S?_lx ze*oF;E=b@nCI0~tMsWle4~`)Z&Lyws*xiSV2iyHLF1C|xW53wf=W(&kTt~b&Owae? zybR*12HVGj>$w{26UU7Q=bK~x3@-MG2gi_bag2FzEx_dU(T}I{NagVuSf454bpNJz zu2a#Ul4q2(%BM8*Je8)4Ss1R=dBRtr+GWDZAWSKhoo(yJD7D(iwxX8wE~wZiyCf~i zFr;N|E+~TyWlUMB$ZATLq*1gOget9zv6jxP81sEG)`5Q63KdCfP0-4$N?j7CGGkP1 zd9i_Yxe>h|L+wedN{nWm>oOB?kZcesF;T4A(ez0_u;lHu$M%_BHp&Gn%kr0AK{08J zHbuyTxJ|KIrhd4-<+E;`SDvjt=Xqf14axOSy^=^sAy;``sVFB(%j#kZ(aCSIL{MgA z+|H0PF%x(yPQjiqirFl+l%g6uB+^o-B;IwbD6lH3i_>tTuw$26I;}~1HqddYMEO{R z_2NwK=PrdduOi)1Vjw&N+rKl5h-4_WQC=u z_ggCFjOHvj)4uZ-$`%&5G%Ht7ypt2N3$=NbXk(q(v>o`)c-Bsxrgo_|cc$r_;u8gV zhwILzk)h$^&d{sQ$T1pz*&V_2v7sRdI`gU%u-@%*BSY>>$BzzS)MgNDr)gxIh7u>s zrFq>_24`npr_ux(0!8+mrjn6MbFeCFX9@>wVBE;nARMHDC2JG6(O6zyu3J_WEUHU& zPe%a9>}YhN%`4AF z>n+Pi<1vw3ReU^R#QI{!?aIdz{1Cww)L?4^Rf+ahgq9=?CDKUN3EBVx23js=0d}g3 z1>G_V%`NbdaB0L?(bu5P57I=(-Rm6{q;B4zauZ>FmS){Akz&+r@jzoXlOZ{IF;`NF zGB^qNR8(-_<8X*2^xzlCmsW0Q+{tO~QLvL6L#40U6`thnR*6#R|65TmtioO?DlMM& z10Bh{_mM;zO#n+`-I3&?)6td*?l2Y!=2pq#d6EOeqFcY^-DtBcdk)>GfXY!Mr1(~S z;P@%1#@|qpGjym3{~*|_e4jztX0qs!-8CuZiny0vOsI}3+FPDqN>r!`#e)QAQPn7Q zN0+wc-u4zKH_~`1izLbJTK6mbIdbP?ZN9AL@{Wmm+_A#zqG*{W@0q!d${A8|CqFB5 oWoi1lno6s=lr~LnYM^BeR!QWLR3%cypr`h>3vk#s6=#pYe~Vu~V*mgE 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 30c5d9ef1f..3141d949bb 100644 --- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:35+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:70 settings.py:9 @@ -57,10 +56,9 @@ msgid "%(object)s not created, error: %(error)s" msgstr "" #: generics.py:295 -#, fuzzy, python-format -#| msgid "New object created successfully." +#, python-format msgid "%(object)s created successfully." -msgstr "Novo objeto criado com sucesso." +msgstr "" #: generics.py:320 #, python-format @@ -68,10 +66,9 @@ msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s deleted successfully." -msgstr "Objeto excluído com sucesso." +msgstr "" #: generics.py:372 #, python-format @@ -79,10 +76,9 @@ msgid "%(object)s not updated, error: %(error)s." msgstr "" #: generics.py:383 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s updated successfully." -msgstr "Objeto excluído com sucesso." +msgstr "" #: links.py:9 msgid "About" @@ -118,27 +114,27 @@ msgstr "" #: links.py:38 msgid "Setup" -msgstr "" +msgstr "Configuração" #: links.py:41 views.py:194 msgid "Tools" -msgstr "" +msgstr "Ferramentas" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "Dia" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "Hora" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "Minutos" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Objeto" #: models.py:23 msgid "File" @@ -181,17 +177,18 @@ msgid "User locale profiles" msgstr "Perfis de localidade do usuário" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "" -"Um backend de armazenamento que todos os trabalhadores podem usar para " -"compartilhar arquivos." +msgstr "Um backend de armazenamento que todos os trabalhadores podem usar para compartilhar arquivos." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -203,7 +200,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -223,6 +221,7 @@ msgid "Edit current user locale profile details" msgstr "Editar Usuário Atual - detalhes do perfil de localidade" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -232,12 +231,13 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" #: views.py:177 msgid "Setup items" -msgstr "" +msgstr "Itens da Configuração" #: views.py:221 msgid "No action selected." @@ -251,36 +251,6 @@ msgstr "Deve selecionar pelo menos um item." msgid "None" msgstr "Nenhum" -#~ msgid "Error creating new %s." -#~ msgstr "Erro ao criar nova :%s. " - -#~ msgid "Error creating object." -#~ msgstr "Erro ao criar objeto." - -#~ msgid "%s created successfully." -#~ msgstr "%s criado com sucesso." - -#~ msgid "Error deleting %s." -#~ msgstr "Erro ao excluir:%s." - -#~ msgid "Error deleting object." -#~ msgstr "Erro ao excluir objeto." - -#~ msgid "%s deleted successfully." -#~ msgstr "%s excluído com sucesso" - -#~ msgid "Error saving %s details." -#~ msgstr "Erro ao salvar %s detalhes." - -#~ msgid "Error saving details." -#~ msgstr "Salvar detalhes de erro." - -#~ msgid "%s details saved successfully." -#~ msgstr "%s Detalhes salvos com sucesso." - -#~ msgid "Details saved successfully." -#~ msgstr "Detalhes salvos com sucesso." - #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -315,11 +285,11 @@ msgstr "Nenhum" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -328,11 +298,11 @@ msgstr "Nenhum" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.mo index 0c521f0d1050958f6a32e3358a4e272dea1fa859..8494f9bf9a6e801191a00ec5488729e4a6365441 100644 GIT binary patch delta 628 zcmYk2Jxc>Y5QZm-`7nNB3L6dA2nrrvViZj$h*+rS2WhmB(`;bna)I0>s2~AT*eXFm z5G@4%fPcZDrG4hhx??}4AdyLs(H zfNg>Sa0_e#cRcQb5#)Pd5ZnjD;E~5uFpm5JjDdBK`yap%_|#y9Ua@G##+!HG6KqBP z4PL_|{>H_(P=O`ggFNUF2#z$%FO?%x4!Qw!J*=fNmb8=OV4AU5u2>wxo%vaz^7;}>HQu1#dK)IVu#*)%0h z;Regd3z{yJiZ;#2bz#|pW~Ehfgne)~KA^8{h;@e+MZQoLv?NSqvS3lh7DYEGS>YJc zv}?V-*^yCI8&;DEB{7;#B~>k@Y0-IIT@+<$qe-1K9FbO%TH^0qGLhECF3)_rZ*W;c z&CRjIwR5GsP;#<<#))1O4PEu~tE#80_T^s*>1z^NY72o_yyQqzZW~UaNUX+`Qu(*_ E3v`NZEC2ui delta 313 zcmbQn`Gl?ho)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~};#f%qg4vjg#2AeIB-t3WIa#9x4z z1&BEq85r1rG%t|m1kxfv`Zy5F0WnD5GbV`mJ0PtIloSS^%;eO(;?&7Y87&2ZQgidmQW=6%b5fH_ zGV}8$vorbfn(7)@>Kd6S7@AobnNCh*l7@>I8CV&cZ0=<8XXFH%a&+;L=E*E9(LzV( Tm82G>r!o|S3_7|vGnD}VK3_1G 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 f00478ea2e..7374dd1cab 100644 --- a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:70 settings.py:9 msgid "Common" @@ -86,7 +84,7 @@ msgstr "" #: links.py:12 msgid "User details" -msgstr "" +msgstr "detalii utilizator" #: links.py:16 msgid "Edit details" @@ -122,27 +120,27 @@ msgstr "" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "Zi" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "Ore" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "Minute" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Obiect" #: models.py:23 msgid "File" -msgstr "" +msgstr "Fișier" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "Nume fişier" #: models.py:27 msgid "Date time" @@ -158,7 +156,7 @@ msgstr "" #: models.py:53 msgid "User" -msgstr "" +msgstr "utilizator" #: models.py:57 msgid "Timezone" @@ -177,10 +175,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -197,7 +198,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -217,6 +219,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -226,6 +229,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -279,11 +283,11 @@ msgstr "Nici unul" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -292,11 +296,11 @@ msgstr "Nici unul" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ru/LC_MESSAGES/django.mo index 30e6e1acd63c7c532401fde235bb8fedd33107b1..0431cab99bc5bab60939bbceb5af6e26b310803b 100644 GIT binary patch literal 1940 zcmZWpOKcle6dj-xF#mvn1yq+st3+h%8P}BHWKuzzl%lwaQWuHk#Pi||^~_lF#z`Y} zkq-ftgjR~Eg!nE%Vw;*q`KPd8$KuU~4Fa)+O_ywt;N0=piNurMoOj>5_nvdECI8-a z?3RZ04EBrIcd%c=9=#7AtRH|60DlA?2mS>w zH}C}Fe}T+(;{H~B9>{%POK}j${fB{{0mp#M^B3?j;632;*#BTZh4@*JWq>Dv&jAe} z>o}j{IPhu2?*cjR3Xtn&()dH*+lbeI1>kSM$AMiC#e4*O0;mJIegJqJ9?k<_KztD< zdx2FTuC*tzSucC%KJCRl*f)FY!seO6LT51->t=23#k$*zxgW&_ZL%P%k)X)+1Wt2O8*ytQ`S>=j-U=F_)JENk@TJg7uHT4+)JhE*krXviiO7zqCTzrk zFUXCAm(?x?WLF|L@Y5XO@SQKTvB~#PqD=@dm=W5gqyf^jvheCbXoqv;xFIqEoElO% zB+-y&T?YaKlDNlVy5UXwwp)|ER1d|BD`q9xzC)l+n@qui%o1IgB0o_jN!CThopOcK zo9LW%Yc-k_R0###J0NrYYSMvgv)&blyLIqfyakf=|<75DvrUfwJkeXkf;nNiGKFNd}-Yc>W`q={fsgc#FAAnni%kl})pTa(7Bx%~k?07q$w+oX2i-;dnAvOPl1vMy@AQx=hY z>QjE8`2AL_);0AVN*B<&sj1J=`2!T}t4*9x{{_15$4l{|roO~I_~T`K@8Eh*9Wd1j zuI8CMUL}6R;U?j3h0?rzia%DnEQlM&i&<{9rFI}-2PDgcZjcx+KtG(RZDP$wS|dDY z6?Iy+tbc^M9hUYDTC9U39m^Vvf|7Ynt+htM%-~+(<{;)tA^kvo-;064{9T-P<5jg8 zFCld=NyIfqhSUSK#~OEeY|HGG^+4w@qdi^ ey6q3xO#E-KUk%Ng5XL`1>Ia0KVH{0X8`^*B+tNe; delta 326 zcmbQj-@s9SPl#nI0}yZku?!H$05LZZ&jDf(I03}WKztI2*@5^h5X%AaRUj4y;x9nV z0>m7Q3=C{QnioiO0%;K-EzSf~3#0{rd^4aSAle;BdjaVPAZ^0H5X!I^$lwJE+yK&i zK>8Vw<^s}RfizGr*kK?GfM&q~$ReOL*g>o?QOA@N2A|C2)V$)<$^RHF1%gs@^UG2h zf>U!+lS?x5^Ctgh@-;QpHL%n*GEp!zvoZp*O$-dU0{nG@Qp+-nfl72;5=&C86pRcE pVd{(wtc*=I*D|kU=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:70 settings.py:9 msgid "Common" -msgstr "" +msgstr "Общий" #: classes.py:53 msgid "Available attributes: " @@ -86,7 +83,7 @@ msgstr "" #: links.py:12 msgid "User details" -msgstr "" +msgstr "сведения о пользователе" #: links.py:16 msgid "Edit details" @@ -122,31 +119,31 @@ msgstr "" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "Дней" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "Часов" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "Минут" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Объект" #: models.py:23 msgid "File" -msgstr "" +msgstr "Файл" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "Имя файла" #: models.py:27 msgid "Date time" -msgstr "" +msgstr "Дата и время" #: models.py:31 msgid "Shared uploaded file" @@ -158,7 +155,7 @@ msgstr "" #: models.py:53 msgid "User" -msgstr "" +msgstr "Пользователь" #: models.py:57 msgid "Timezone" @@ -177,11 +174,14 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." -msgstr "" +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." +msgstr "Временный каталог, используемый сайтом для хранения миниатюр, превью и временные файлы. Если не указан, то он будет создан с помощью tempfile.mkdtemp ()." #: settings.py:22 msgid "A storage backend that all workers can use to share files." @@ -197,7 +197,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -217,6 +218,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -226,6 +228,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -279,11 +282,11 @@ msgstr "Ни один" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -292,11 +295,11 @@ msgstr "Ни один" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.mo index 845f5d3780fb5d455f52495a63a6f25a83b41e8a..cb18a17aa45e7cc0a8b89d1075722ee872652408 100644 GIT binary patch delta 212 zcmeBUxyDj|Pl#nI0}wC+u?!HK05K~N`v5TrBmgl75GMjL3lL`k@fAh}hI}B+1H>*& z5b;1D4HRYoQed-y6a=_s=A`B&=B6_E<>#d`1Qg|Gr6!l?dZy@xr4|)uPV}@fHPbaP z)-^IzFf_9=G14_KF)-i?@YfAWEz2y<%+J$xNi0dVQZORxGRKF$TK%p TAtkXSza%v~mBFbfwTb}%W;!Rm delta 122 zcmcb{(#K+PPl#nI0}wC*u?!Ha05LNV>i{tbSOD=Aprj>`2C0F8iFv-Jrn&}}x<)1n uhGteqK(>j20at*(Zcu7jW^rbIo~}z`Nvf5Ck%1vhosof+vB|~{A&da=fE5t{ 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 19d73d3fd9..ef3bb902e7 100644 --- a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:70 settings.py:9 msgid "Common" @@ -141,7 +139,7 @@ msgstr "" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "Ime datoteke" #: models.py:27 msgid "Date time" @@ -176,10 +174,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -196,7 +197,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -216,6 +218,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -225,6 +228,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -242,7 +246,7 @@ msgstr "" #: widgets.py:50 msgid "None" -msgstr "" +msgstr "Brez" #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -278,11 +282,11 @@ msgstr "" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -291,11 +295,11 @@ msgstr "" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.mo index ef1bbe7dbff8de967ba4b13db489abfa53856ad7..f244695d0cb1001f71a0bc3bdd493b9d418b657c 100644 GIT binary patch delta 532 zcmY+fvTmL}cY<6hi+usiJX6DU}v*xOPj5rPmV-Oifc9CJ^3lT$+ zh`ON)9ncS5FbI2L7*4_{9EEu(>b9X1?sVLPeVErf>&I|_s7hz}IYKUx9uzF#HgP}< ziVaC9np=l6a1&0!Ln!L*;ShZ4%-g@&qbs_zTXplnbG|lS;Zhs7|$m_46>G(#Tr%X!lVyVI@$qSh2C4*MWe9Qi@G&eQ9 zP;N{}Oa6eY%*tMssez!+D=R)laWBW^1h432Y?33I$%D+RsDE`{HK@!rPbDUK?3-8G z7Y56qhsHx!Ci=W@wdy)EU#_gyxsj!{c2lE8t97lhRL*ME42osN+KJB6?OPOtbEwv> LyGN55|5tth$+KuK delta 302 zcmeC>*v3|WPl#nI0}yZku?!H$05LZZ&jDf(I03}WKztI2*@5^h5X%AaRUj4y;x9nV z0>m7Q3=C{QnioiO0%;K-Jqw8CfS47?-^m1&1Je6}v=)#)3#8Q;7 z-sClmzNV(S29~-;CJKgTRz^U!iGcxEfWK}~YFTD6P>HTfVo9o%f{}qCOr4Q|m9fcY RJthUl$+66-lP@s~0RWEQDGmSt 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 ebf31dae6f..fa92c31040 100644 --- a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:70 settings.py:9 @@ -85,7 +84,7 @@ msgstr "" #: links.py:12 msgid "User details" -msgstr "" +msgstr "Chi tiết người dùng" #: links.py:16 msgid "Edit details" @@ -133,15 +132,15 @@ msgstr "" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Đối tượng" #: models.py:23 msgid "File" -msgstr "" +msgstr "File" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "Tên file" #: models.py:27 msgid "Date time" @@ -157,7 +156,7 @@ msgstr "" #: models.py:53 msgid "User" -msgstr "" +msgstr "Người dùng" #: models.py:57 msgid "Timezone" @@ -176,10 +175,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -196,7 +198,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -216,6 +219,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -225,6 +229,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -278,11 +283,11 @@ msgstr "None" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -291,11 +296,11 @@ msgstr "None" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.mo index 6aa731204fe2742ae86dbc5b03b4be0d3b8fc1fd..5442a72bb39c32702f42c017f232e5c7d188c369 100644 GIT binary patch delta 610 zcmX}oIYcCaL=j0Rh*)T&h;=YiEaU(;iWU;J@IWNNjS;~E zC3qAXMex8v8yhPv1+j8hBQ`cRHvTgi9QM6$-p+kJ5y+vBfJ%Nk)+BAO7Jh*~}` zK*E@W3Y>x#I4zxncGL^d3X`x1rls4^g?b-W!F$N}KSLXQ%^N2JlVaTXk`Meq2kKv# zLf8xQ8@A8|ZzO}nUvLQdzO1aTWql{>2Uv&oCs+eNAuiDc-)})THi{FKiV2ZZS`T>x zZiw^6*8y>8DJ)0ubu3dE0{w|E2UNlnMg@ZZQ9i_>`KkD0ylFAIgF$NT2~26!tA?0J zkwBPHUvzv-qkeUiMKneOYGgddH2tx#S$8U~78+#X=meu77Gk3@H5#E|jg5)q4zgH4 z4Qcv_GEmm(X>0fRyl!u&zr&}WDUJVkd|rQB*ZH$jUC?f(PmR58GBQVGrWf9BE+j^B zg^bgLxqd+(Cs#%y`;na`V{tyWx}$$v8}w$IyM^8lZgLwL%FQg9%SZH{Iy4tAC2zO8 I=4_V!03O|WsQ>@~ literal 1628 zcmZ{j-)|d55XToNzg#G^{FL~$Af;+SYdax8xhN7eNl~TRjZznZgj8MbHqN2*oprlT z8hCL4(E_RfwWXvKXb>s_30zbO(gxILo}m8#FZdiA2?_Dc1K+tl+agg`9)E6jW@o;$ zXaBxq%V~ynH|#;!Pq2qzuUv;Otlz->0PeIE|;5PVwA$dFa zFL)og?M9Qo6C@o1q(0Aqr1uC&d9SDbN$?T)4UlyH3R0hT>i+|h?yV3(d=x}$_6$h% zM?id7G38+p@>m8&d0Szm?-m%%N4d1<4!R31l126Igi(LG16uTcy6cYgf#$v)b{h=W zX4Zh>P9$wDU9M`5BbAz|`TjzdA>c}1ZW7S8=PR!4xee!@cU?9vH;+$5Q5cz?UQp(N zoaX~7%hqj&)2~WLcefKEl-jdi^FU(3Ta@m z-xV*)NMXz31$)5`_{4bOP-aS2!$^yQDtoTjTPrJ33N4e# zOZ&v0ejYWQk&&1PoY2Kj!Qy+SJ>Ao7@uXK~(yv9fFZP8|MOi$kCaxMC9O341G(VDI z@$paM)hh$4b^L?)-Ou5k?<{@Ub^oZpf&a+b*|*w_3-O85CZ~Dz)A-wuS?i;V@fV*l z6ES@e-z7!w3(mAz61x?4eak>5d^15)p{f09n%bZzX&-6ww4lQe| zZ#S, 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-24 20:34+0000\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:70 settings.py:9 @@ -55,10 +54,9 @@ msgid "%(object)s not created, error: %(error)s" msgstr "" #: generics.py:295 -#, fuzzy, python-format -#| msgid "New object created successfully." +#, python-format msgid "%(object)s created successfully." -msgstr "新对象创建成功" +msgstr "" #: generics.py:320 #, python-format @@ -66,10 +64,9 @@ msgid "%(object)s not deleted, error: %(error)s." msgstr "" #: generics.py:331 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s deleted successfully." -msgstr "对象删除成功" +msgstr "" #: generics.py:372 #, python-format @@ -77,10 +74,9 @@ msgid "%(object)s not updated, error: %(error)s." msgstr "" #: generics.py:383 -#, fuzzy, python-format -#| msgid "Object deleted successfully." +#, python-format msgid "%(object)s updated successfully." -msgstr "对象删除成功" +msgstr "" #: links.py:9 msgid "About" @@ -88,7 +84,7 @@ msgstr "" #: links.py:12 msgid "User details" -msgstr "" +msgstr "用户信息" #: links.py:16 msgid "Edit details" @@ -124,27 +120,27 @@ msgstr "" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "天" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "小时" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "分钟" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "对象" #: models.py:23 msgid "File" -msgstr "" +msgstr "文件" #: models.py:25 msgid "Filename" -msgstr "" +msgstr "文件名" #: models.py:27 msgid "Date time" @@ -160,7 +156,7 @@ msgstr "" #: models.py:53 msgid "User" -msgstr "" +msgstr "用户" #: models.py:57 msgid "Timezone" @@ -179,10 +175,13 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 +#| msgid "" +#| "ary directory used site wide to store thumbnails, previews and porary es. " +#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using tempfile." -"mkdtemp()." +"temporary files. If none is specified, one will be created using " +"tempfile.mkdtemp()." msgstr "" #: settings.py:22 @@ -199,7 +198,8 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to propagate." +"Time to delay background tasks that depend on a database commit to " +"propagate." msgstr "" #: views.py:37 @@ -219,6 +219,7 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 +#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -228,6 +229,7 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 +#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -247,36 +249,6 @@ msgstr "至少需要选择一项" msgid "None" msgstr "无" -#~ msgid "Error creating new %s." -#~ msgstr "创建新 %s的时候出错。" - -#~ msgid "Error creating object." -#~ msgstr "创建对象的时候出错" - -#~ msgid "%s created successfully." -#~ msgstr "创建%s成功" - -#~ msgid "Error deleting %s." -#~ msgstr "删除%s时候出错。" - -#~ msgid "Error deleting object." -#~ msgstr "删除对象时候出错。" - -#~ msgid "%s deleted successfully." -#~ msgstr "删除%s成功。" - -#~ msgid "Error saving %s details." -#~ msgstr "保存 %s 详细信息出错。" - -#~ msgid "Error saving details." -#~ msgstr "保存详细信息出错" - -#~ msgid "%s details saved successfully." -#~ msgstr "%s的详单成功保存" - -#~ msgid "Details saved successfully." -#~ msgstr "详单保存成功" - #~ msgid "Anonymous user" #~ msgstr "Anonymous user" @@ -311,11 +283,11 @@ msgstr "无" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password field is " +#~ "case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields " -#~ "is case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields is " +#~ "case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -324,11 +296,11 @@ msgstr "无" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: " -#~ "username, email" +#~ "Controls the mechanism used to authenticated user. Options are: username, " +#~ "email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.mo index 138f85d09f2d58cb2bf257da65e572ab5c65b6ee..807c96a7fa6def600ad4d413e14bbbd4bf78a630 100644 GIT binary patch delta 283 zcmey)dYG;Lo)F7a1|VPuVi_O~0b*_-?g3&D*a5^WK)e%5?*q~bKzta8*?{;7lzt7Q zLFzsM@qI=HhVMX{3y7~XLDW40(z-zYOCT)>q{W%R^3DvJKn5RBzywGG^??B^lmcoylQ!`xyV_hRd1w%6{6C+&%69WUT0Ds+})UwRt z%=|oEm&B4(D+MD1Lzp@vLn{Nb&323li~_4}ti7@EX4j343^$hF*nG2f@*JjU04X0Y A{Qv*} delta 186 zcmX@i_MNr>d7eE@Q46Fx8F#x$BJ2@GcK|COsc&L%rRM)^# m*T_V{(9FunbaDWrG)Tlk*T_J@$jHjjbaMq`0^{UYOpyTP1sIP2 diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po index 4ada41a3d0..ae0c09175b 100644 --- a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -43,6 +41,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -77,7 +76,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "تحرير" #: links.py:43 models.py:65 msgid "Transformations" @@ -91,7 +90,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "اسم" #: models.py:42 msgid "" @@ -112,6 +111,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.mo index 8bb9ebccef695c8cc4fb57e3909509f4609f0df7..0ba81547df321c10f544eedb47c1cf25eedbb350 100644 GIT binary patch delta 256 zcmcc1vX`~~o)F7a1|VPqVi_Rz0b*_-t^r~YSOLT=K)e!4uLIH`wVR>zE~xlHAl=W% zz;Fymive*M6GUAukd_1TOMtWxke&>rLGsIhG*G!QkO{E>M1u?l0cIcu%7XzblxA>E z$t+>;OUzB3SdhSLrfXoVYhEJ, 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -42,6 +41,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -76,7 +76,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: links.py:43 models.py:65 msgid "Transformations" @@ -90,7 +90,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "Име" #: models.py:42 msgid "" @@ -111,6 +111,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -187,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -506,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.mo index 0e3d0ca0c79cbb0ea8d97f6c420cde51afff9443..ad483333124fac242706d7f2fb81f3c4899fca9d 100644 GIT binary patch delta 278 zcmeyyx`(a)o)F7a1|VPuVi_O~0b*_-?g3&D*a5^WK)e%5?*q~bKzta8*?{;7lzt7Q zLFzsM@i#^WhVMWcWac|21_ox37?73&(!YST5RjGx3IgSw8FU~F1`{9+)CUHvP#Rlzs<7@Ap`80i|A7#MH``0ECxmSq-a s=I80UB$lLFDHs_T!qgcVS{ayawqq<~, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -43,6 +41,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -77,7 +76,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Urediti" #: links.py:43 models.py:65 msgid "Transformations" @@ -91,7 +90,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "Ime" #: models.py:42 msgid "" @@ -112,6 +111,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/da/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/da/LC_MESSAGES/django.mo index 403ba1536abdc64cc1b487591c9473157db68a7b..671d67670a709c27376bbcb8fcfcdb9b78a0aae2 100644 GIT binary patch delta 157 zcmX@c{DL|3o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlL9!3U+Fev{qkPSp&0MZKw zeu=rM6D@pA&2$Znb&U)a49%=ejC2i53=Fse{B?s;%QA~I^Ye6F5=&C86pRcEVd{(w StqjaI?&4u&^-C`2C0F8iJ`u{rn&}}x<)1n dhGteqrW4mog9I#ejSLhFEv<|!H(uvq1OQj>4ln=! diff --git a/mayan/apps/converter/locale/da/LC_MESSAGES/django.po b/mayan/apps/converter/locale/da/LC_MESSAGES/django.po index d423e0e567..b3417bca59 100644 --- a/mayan/apps/converter/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 19:29+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -41,6 +40,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -89,7 +89,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "Navn" #: models.py:42 msgid "" @@ -110,6 +110,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -186,13 +187,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -505,11 +507,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,8 +625,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.mo index dce1955a92ee6286b7318ff4373d613cd1040c06..35e3bda275192561a4ed2212d93fd1470056e475 100644 GIT binary patch delta 44 scmZn_Zx!E=$i{1?YhbKvWT;?hW@TbDIgd>mE@EV8Wni{>8rypo0PAiF!~g&Q delta 44 vcmZn_Zx!E=$i{1`YhbBsWTIebW@ThLIgd>mB4S{nU}S7%V6u4{+j|xO?Fb6j 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 caa3cd0f23..338542cdd6 100644 --- a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-08 23:04+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -43,6 +42,7 @@ msgid "Exception determining PDF page count; %s" msgstr "Ausnahme bei der Ermittlung der PDF-Seitenanzahl: %s" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "Kein Office-Dateiformat" @@ -87,9 +87,7 @@ msgstr "Transformationen" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird " -"automatisch eine Reihenfolge zugewiesen." +msgstr "Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird automatisch eine Reihenfolge zugewiesen." #: models.py:38 msgid "Name" @@ -99,9 +97,7 @@ msgstr "Name" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Argumemte für die Transformation als YAML dictionary eingeben, z.B: " -"{\"degrees\": 180}" +msgstr "Argumemte für die Transformation als YAML dictionary eingeben, z.B: {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -116,6 +112,7 @@ msgid "Edit transformations" msgstr "Transformationen bearbeiten" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "Transformationen anzeigen" @@ -138,9 +135,7 @@ msgstr "Einen gültigen YAML Wert eingeben" #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"Transformation \"%(transformation)s\" für %(content_object)s wirklich " -"löschen?" +msgstr "Transformation \"%(transformation)s\" für %(content_object)s wirklich löschen?" #: views.py:139 #, python-format @@ -150,8 +145,7 @@ msgstr "Transformation erstellen für %s" #: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" -"Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" +msgstr "Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" #: views.py:238 #, python-format @@ -195,13 +189,14 @@ msgstr "Transformationen von %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -514,11 +509,9 @@ msgstr "Transformationen von %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -634,8 +627,7 @@ msgstr "Transformationen von %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/en/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/en/LC_MESSAGES/django.mo index 3e7c56b8191ec841abf45c8fff4cd394ee9b2db7..f9a9d845118cc6b64c3f4355c00d8bc6ffd02802 100644 GIT binary patch delta 26 hcmZo}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhR2 PIwM0X1GCNiEZ3O;eGw7t delta 66 zcmaFH`;2$PEoM_wT?0#9BNGKfGb, 2015 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:39+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -43,6 +42,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -112,6 +112,7 @@ msgid "Edit transformations" msgstr "Editar transformaciones" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "Ver transformaciones existentes" @@ -188,13 +189,14 @@ msgstr "Transformaciones para: %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +509,9 @@ msgstr "Transformaciones para: %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +627,7 @@ msgstr "Transformaciones para: %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.mo index 975a3abf65eab556370bead81373b4feba55b51f..f61108545ecc2377579a76f7370479abb5b6c6a0 100644 GIT binary patch delta 683 zcmZ9IJxD@P7=}O1v>z*IktpI2)euB!av`_=)`FO%LS3+Mpa@4^SQ z0k(p1um?0jFL(@kz=Fdf*bIFN4ua>P0PjIw|LX7!?1X*?k-1Ag_jh0bWWzBqjma?B z4Sm~0Gypz;Z1e{D!FNYDV^bTn9~=P#pa7>qzQ_v5fjbV592UVo E1y5A7x&QzG delta 252 zcmaFFIg_pao)F7a1|VPqVi_Rz0b*_-t^r~YSOLT;K)e!&6@d605QEgdhtl7GGz$>_ z1>!bF1_mY|)&jCSnIP)70BLa`|0FrF+{c%@7>u%QFJCxKfqG#9JUjQG|_l>?rxI3-ObFb zA3-1?8iZ(}p-BOS3nGx{BC3NTNJK((2!)akq=+IN{J*(7J3c!IDJ$>(Zf9q|`Cjv1 z-`c(XQ-R|ZocnO@*(SswxZ?p_aC{9u27c4wb?|xI{{Zd>e+ORxw>>Dtc5ol~Ft{Ha z0|&roz!>D`AA%>qkH9_P4Up~K0?&eXzyWXulV1gwz!C6skl(+F3$OPJ_z?IfXu!Y0 z*T6ak3H$_PKfdblTkuKTUk7)BKZ4JKzk)A;w?UW?yYSLAwej}zXo#L-+`R(pTK_b50K;D zxdSx>xmHi()a<2J3xaIu-{IM5TEG>`*pC2CNb$9a*95CzS=ie~BcChc9_ZM+; z&++k88~(ZrSN5BIXJle)scA~5 z)8yVy2y-fQ09NkxEUPu=%s?ZJE<6GOX zVj|McU+%~HRt8`iE*O%uC}SPbJ13`4^UqurJ5O9gk?bav9VZ^y7!pYf3;x|mhn!Vu zR*Ixmh2HIpRNW|L`zkbir2L+kSPoUjQz$~xOj9R1sZ(`)k}_FW6sCFNMmg(m8kse8 zXfeb^wEW6~3@@o9B9~Hb;o@n%VAPpfO@}CL>PRQn$v9RK!A~Bj!CXYr!MJPqV$R5> z5;J%t6H41})^w~mGBiX{oG}sF#b05Lmf%8Ti;yiX={TkZMQT}vxl>V*rfL+cnxi}k z8#1Y@Xowe)xl6g#LihyJ?d-0-Ev?n{1aFHfJmkPQz11|!;8SMOx{*!FqME}$^^VoLU(u#8$+e9sE>$o->Yi-5(G;NBiNx5f( zsVF$tE>4A}0`s9eUxU{)<^F8bzqBg2*Q;e%xyh11fyz=st}$J=$jp_MT!G#55f z=je@bX)fVZC(tj(7L(MdEM6(rwQJ-H#V~CigN>w~qxXV&C7TtRGz#^jfrfKgrBqs4 zS}OVs=$cyQ7fL3z(&*HbnjCMSqNXjy9UG;ZDGe5;r=};?(=uEv7a&Bu(}Vey3^6;k z>`GZIbuvn56=Rhz7RjAOB1?|>+tx(Mrs&Q^)9898fZH1D| z-`b-iqtyO+bReN)G(0$3*er?KT9vabwpP)TdBXcAUsTvTJ@x({Qz%PwLmjE~_M&xj zw#S|oTf@(jCdF3&Qfumd2&t&g3uw3z1D@Q`fe1_HtNajFejo~fH~HI_XFw^rD$ zOPe&7j<=Wf#v&})+uqa2cMVM>xawQ8I)cji8HgOt zt}C$*aC0&&ClJFdXNsc!9BFJzaw4@+-f)qs(y(qdS!DiOqg$(Ok(P;r189;aM29QG zYHhu4`@$nxIiBOeU2+Zaf`nhr6}7HX?sTlN342t#Us+aX+tu#YDy2Ck{n8I&c?>v% z-UMMK?q{!MsQ3fl?ztJr5$^%0JeJ3|fF%H)CS(+xNpdghMzN@~@ALnGW;l=jr0 z;376F(t|e5vAVKFnnB>Fqdl%aR-&!q-v4+Ce zuDw~1s*Yr%N?o<@sC;)KfAl!#>l5!%dYj0Bg#{fN`I`aQ7E#;Lq delta 266 zcmbOt@sqXwo)F7a1|VPqVi_Rz0b*_-t^r~YSOLT;K)e!&6@d605QEgdhtl7GGz$>_ z1>$Z-1_mY|)&R2mm>~ML18F`W{|=Dm0Mf64G)VmyAPrQi31mV9Ks3l;W*`R2!2v6j zH93tnbg}?jAg`&efu*jIiGrb-m67S>JT_@#pooR8k%5Adk(HsTwgC`u`6L#X=!O&} q<`w58mgE;%DFo#wr52Us1L@+#qRjls_t~CK_TWxqjmpo@WdHz>cq&x@ diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po index 89fccfdf49..cd02fd1939 100644 --- a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po @@ -1,54 +1,55 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:15+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" +"Last-Translator: Thierry Schott \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" -msgstr "" +msgstr "Convertisseur" #: apps.py:38 models.py:34 msgid "Order" -msgstr "" +msgstr "Ordre" #: apps.py:40 models.py:64 msgid "Transformation" -msgstr "" +msgstr "Transformation" #: apps.py:44 models.py:44 msgid "Arguments" -msgstr "" +msgstr "Arguments" #: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" -msgstr "" +msgstr "Exception déterminant le nombre de pages PDF : %s" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." -msgstr "" +msgstr "Format de fichier non reconnu." #: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" -msgstr "" +msgstr "LibreOffice n'est pas installé ou n'a pas été trouvé à l'emplacement : %s" #: classes.py:254 msgid "Resize" @@ -64,59 +65,60 @@ msgstr "Zoom" #: classes.py:324 msgid "Crop" -msgstr "" +msgstr "Découper" #: links.py:31 msgid "Create new transformation" -msgstr "" +msgstr "Créer une nouvelle transformation" #: links.py:35 msgid "Delete" -msgstr "" +msgstr "Suppression" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Modifier" #: links.py:43 models.py:65 msgid "Transformations" -msgstr "" +msgstr "Transformations" #: models.py:32 msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" +msgstr "Ordre dans lequel les transformations seront exécutées. En l'absence de modification, un ordre est automatiquement assigné." #: models.py:38 msgid "Name" -msgstr "" +msgstr "Nom" #: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" +msgstr "Saisir les arguments pour la transformation sous la forme d'un dictionnaire YAML. Par exemple : {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" -msgstr "" +msgstr "Créer de nouvelles transformations" #: permissions.py:13 msgid "Delete transformations" -msgstr "" +msgstr "Supprimer des transformations" #: permissions.py:16 msgid "Edit transformations" -msgstr "" +msgstr "Modifier des transformations" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" -msgstr "" +msgstr "Afficher les transformations existantes" #: settings.py:10 msgid "Graphics conversion backend to use." -msgstr "" +msgstr "Module de conversion graphique à utiliser." #: settings.py:16 msgid "Path to the libreoffice program." @@ -128,27 +130,27 @@ msgstr "Chemin pour le programme Popple pdftoppm" #: validators.py:22 msgid "Enter a valid YAML value." -msgstr "" +msgstr "Saisissez une valeur YAML valide." #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" +msgstr "Êtes vous certain de vouloir supprimer la transformation \"%(transformation)s\" pour : %(content_object)s ?" #: views.py:139 #, python-format msgid "Create new transformation for: %s" -msgstr "" +msgstr "Créer une nouvelle transformation pour : %s" #: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" +msgstr "Modifier la transformation \"%(transformation)s\" pour : %(content_object)s" #: views.py:238 #, python-format msgid "Transformations for: %s" -msgstr "" +msgstr "Transformations pour : %s" #~ msgid "Resize." #~ msgstr "Resize." @@ -187,13 +189,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -506,11 +509,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,8 +627,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.mo index cbfdfbfb293c717bef4c1179564cb70ffc6049be..472683491807ff6d75739b5dbc7e8067d3e2d227 100644 GIT binary patch delta 44 zcmX@fe3E%WE3cWZfw8WUp@N~Am5I^BNlSQq67$ka6Vp?z6f#ODn=(dEp3A5M05lH` A=Kufz delta 44 zcmX@fe3E%WE3c`pfu*jIiGrb-m67ShNlPX>Ge+_FB<7`;CZ?xaDP)vRp2MgM05fI{ A{Qv*} diff --git a/mayan/apps/converter/locale/id/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/id/LC_MESSAGES/django.mo index 5929350b2b6f0314feda7d5938230597d3b6adbd..af3735e496699222f7f342bc57499915133e8f52 100644 GIT binary patch delta 44 zcmX@ie3*GcE3cWZfw8WUp@N~Am5I^BNlSTr67$ka6Vp?z6f#pLn=wXDp2w&P05O#f A#{d8T delta 44 zcmX@ie3*GcE3c`pfu*jIiGrb-m67ShNlPcYFh=qCB<7`;CZ?xaDP*Qhp3A5P05LfY A-2eap diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/it/LC_MESSAGES/django.mo index 4c828e7852a7d6cf7621ae3cc75da391ebbabb7b..c18d1c7738c5776f5a33cb2bdc2f6c3283a726d0 100644 GIT binary patch delta 595 zcmZ9|Jxjw-6b9gv+Sd9}2L(l}a0l(66xt{qx|J&EU7vU⪚8k2F!b8)!wA-gZ~`7f0k0r`|Je2!@~l@lLR6;@JaD6Lc*@VA*1)r_ z*1!uG!~R{{d&q+xAUA%30=~c`{DS>(98J676y$+A9EN#_A8p{KVSccQb#RCq^5*}m z7cY>D;wTP-89{Rn!v9Vmit^5O%~Y1>Qo&KuQ^Hbv!gHkMR&2+Vo?%-wr>e?RG+#D6 zDoRsDY1t_&r*XNST1l2pVQ!I=!pzX>J$>ri1DN&X({ OT#6kP_ z1>#;t1_mY|RsgamFflNw0qKoEng>YV0MhJ0`YDhGsecQkfl4)jOo#x81{ur@#6USX zV1=?KH#3G#{?8c5YpQEtscU4SU}$D#WI8#PNg5<#p=)HIU}R)vXu7$TiI;KmRpwaM JsQmm~1^~f89fSY? diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po index 83a2da6a7d..812dd84439 100644 --- a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011,2015 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -26,15 +25,15 @@ msgstr "" #: apps.py:38 models.py:34 msgid "Order" -msgstr "" +msgstr "Ordine" #: apps.py:40 models.py:64 msgid "Transformation" -msgstr "" +msgstr "Trasformazione" #: apps.py:44 models.py:44 msgid "Arguments" -msgstr "" +msgstr "Argomenti" #: backends/python.py:87 backends/python.py:101 #, python-format @@ -42,6 +41,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -68,15 +68,15 @@ msgstr "" #: links.py:31 msgid "Create new transformation" -msgstr "" +msgstr "Crea nuova trasformazione" #: links.py:35 msgid "Delete" -msgstr "" +msgstr "Cancella" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Modifica" #: links.py:43 models.py:65 msgid "Transformations" @@ -90,7 +90,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "Nome " #: models.py:42 msgid "" @@ -111,6 +111,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -148,7 +149,7 @@ msgstr "" #: views.py:238 #, python-format msgid "Transformations for: %s" -msgstr "" +msgstr "Trasformazione per: %s" #~ msgid "Resize." #~ msgstr "Resize." @@ -187,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -506,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.mo index 8d29fb51553db5eb14337170a43a8c805f0e8624..bd4a60fed82f25ee4c9b79c6c12729a9cbcc51d7 100644 GIT binary patch delta 313 zcmZ3-I-RZlo)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~}>NsU@ilt|^%%41S5ZsS`UIP0e%-jCG9+6%5U+ zOpJ65ObiUT0{nG@Qp+-nGxPIwT@p)DtrUz53}Nbw46O{zHrp}EGm3|$7L{jarKA=y VB&C+87GksB0%@Q!upS`A0OW$~, 2013 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -43,6 +42,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -73,11 +73,11 @@ msgstr "" #: links.py:35 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "bewerken" #: links.py:43 models.py:65 msgid "Transformations" @@ -91,7 +91,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "Naam" #: models.py:42 msgid "" @@ -112,6 +112,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,13 +189,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +509,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +627,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.mo index 697b9dd4d04cd2fd132d52a2a64023f318b4f690..8402a01f519fd3bf7cb1b9b67fdc26262de92324 100644 GIT binary patch literal 3021 zcmbu9&yN&E6vrDy(e)P~_!IT92-%JF?94(48CV5jG3YLAmIWdqF}2+_vo+Jx)v2nc zcScMMNc3Rh$pi8?m`Ly>Bp%o?(SsLn959}|c`zn=G4cC)nq_8LOpKj$ed_0{_p9FR zjcY&m@V$b63;s=OJZ}_y`~fuhz5*WwuNJ%xK96x1+zS2-z5uRy(DT-UTfm3Gt>7VW z1bhaJKwiHH9soZ9H-X=SEblgW68sAs0gqwxHZTLn!7Cu2{}Bz}_Y?RK_#0@zKfqVP zIwlGH6l6WVEci9}B*xdlr@$Y;XTe+GOW^MyM0o3Q=vVk)Gst%Ty{^Y~kM#Vr0pxp1 zAnS1gd<=|1i10e#B={ltH259JdfWmJg1>-l_cjP;`}Tr!;8}1dcop0M-Ug3=4-NI? zPJv~NXFLui&imcjDjo?JdJuzxpl2Oq@ce&zn-+!P=Ci2eQ|e$F}mHuR9U>(RnR zc}~0xvhR>$z1#%7gQlLgWbCYWNXO@-ang8)j1*2%EHiRO#I~kQOE{(D`>zo8RB1b; z-0v(e>BKuMBk5#;72;`l`^eyhqjtEEJQC>GLC^Q}d_x9q)V{I04C_sX%H_@fk-nM$ zh=vM=1f3I+3hCX0(^K3{WvN(k3zEbghqB_tGlM3Pu#k|S4OPHi6{cMxC9CxQa473W zN;_Po%HHw^-sEB+6W&50oMu`oR&kwX4j-XJ)FlNvjom)>`ddaM3o5Xf;viZ+GB1Lr zj6-soQVSKQ)Vz_$Yc&-hwAzu1trJlsLxP?>QG>XUgoALmkO%XaXi4uFmPAatce17; z$(A7@O5Sl3B3<$p;wXa(3#*uHDN|8I^OEGE3{oe<5*@8kBx{b+I9L#IU4}dP5|KL1 zsTM#di0*lJ`LwWB)nlCYW}qP(#_pZbNdlb`qw7YrC<$v0Gp)f*5gT8aQ0y#uv(l=L z^k%g~x_fhjsXjQgE0%4MmexC^@J!^QvW{aj7;EdD(Yoc$7|l8B9}WFez2H=7TC`#B zu0sFKv~K-5U8SL!<8yxgnh;F?Ff^>vc)7C2FYoflD^%H2-97G? zcbCi9=+DY?ii3XdzVS-6yyvwtzM&~$ou8W(3CGX%v~C1SB4nq92|A*wGuu?OKPzQ@ z;{)}UP*Ew+t=AzTuBXU6e@=>46`qfjU7(Q#=aTB!Se9j_+@eLZTQe-NebcBmUmI z`|_|!<4?wc4iSSY?VVR{S=TBh(a=nk8WH(NkhiuePWz;?8v+OCw6mpgs02+Vbl-Sel#?mDxo1~jYcCSPN!=O!( z3Oe&km&rPVQi_V3hvLnmq^8{)?M%eDUQ;slL?P=7Bv|=J9Qo6T&F0%616T;&70RU>MQLf zE-TU7Y`N-b!@A~bwUmsZmDq{W+G#g1?2AZIsM|pYkt%uJ zFM5g#_DE4*)8$eOl@rla(xpYQHupO*V91%460snoJLs6yJ3eo2UJIa9f2~F`_LXLS l6n6_ZM$4}VPesvbP&&hNYT8bI%Re`+fK&hg delta 247 zcmX>r{*I;oo)F7a1|VPoVi_Q|0b*7ljsap2C;(zMATET`6+jxKwjPL&F)}c;0BL?8 z_GV&W-~iImK$;UsrvPc7Gy{+Vt7it%U=WmAoLQC15R_k%Sdz*xS%58&*HqWQQrE~t z!O+ag$aHcZo3t@d#6s7|K*7k!%FtBX00_8z5{pZ8Ly8jfigOZ6@{6n#g7TA6i%Rl= yba7%)X8z{8YzmCZQMs9kd5H=|`BgwhQ7MCeQc+@Z;*oZSfc)~zBQvv$s~7;|mNFRt diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po index e546bb54aa..d69eda4144 100644 --- a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po @@ -1,55 +1,55 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012,2015 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:15+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" +"Last-Translator: Wojciech Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" -msgstr "" +msgstr "Konwerter" #: apps.py:38 models.py:34 msgid "Order" -msgstr "" +msgstr "Kolejność" #: apps.py:40 models.py:64 msgid "Transformation" -msgstr "" +msgstr "Transformacja" #: apps.py:44 models.py:44 msgid "Arguments" -msgstr "" +msgstr "Argumenty" #: backends/python.py:87 backends/python.py:101 #, python-format msgid "Exception determining PDF page count; %s" -msgstr "" +msgstr "Wyjątek określający liczbę stron PDF: %s" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." -msgstr "" +msgstr "Format niezgodny z formatem plików LibreOffice." #: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" -msgstr "" +msgstr "LibreOffice nie został zainstalowany lub nie znaleziono ścieżki: %s" #: classes.py:254 msgid "Resize" @@ -57,99 +57,100 @@ msgstr "Zmiana rozmiaru" #: classes.py:295 msgid "Rotate" -msgstr "Obracać" +msgstr "Obrócenie" #: classes.py:307 msgid "Zoom" -msgstr "Powiększ" +msgstr "Powiększenie" #: classes.py:324 msgid "Crop" -msgstr "" +msgstr "Przycięcie" #: links.py:31 msgid "Create new transformation" -msgstr "" +msgstr "Utwórz nową transformację" #: links.py:35 msgid "Delete" -msgstr "" +msgstr "Usuń" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Edytuj" #: links.py:43 models.py:65 msgid "Transformations" -msgstr "" +msgstr "Transformacje" #: models.py:32 msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" +msgstr "Kolejność wykonywania transformacji. Jeśli nie zostanie zmieniona, przyjmie wartość automatyczną." #: models.py:38 msgid "Name" -msgstr "" +msgstr "Nazwa" #: models.py:42 msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" +msgstr "Wprowadź argumenty dla transformacji w postaci słownika YAML np.: {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" -msgstr "" +msgstr "Utwórz nowe transformacje" #: permissions.py:13 msgid "Delete transformations" -msgstr "" +msgstr "Usuń transformacje" #: permissions.py:16 msgid "Edit transformations" -msgstr "" +msgstr "Edytuj transformacje" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" -msgstr "" +msgstr "Przeglądaj istniejące transformacje" #: settings.py:10 msgid "Graphics conversion backend to use." -msgstr "" +msgstr "Backend używany do konwersji grafiki." #: settings.py:16 msgid "Path to the libreoffice program." -msgstr "" +msgstr "Ścieżka do programu LibreOffice." #: settings.py:20 msgid "Path to the Popple program pdftoppm." -msgstr "" +msgstr "Ścieżka do programu pdftoppm z pakietu Poppler." #: validators.py:22 msgid "Enter a valid YAML value." -msgstr "" +msgstr "Wprowadź poprawną wartość YAML." #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" +msgstr "Usunąć transformację \"%(transformation)s\" dla: %(content_object)s?" #: views.py:139 #, python-format msgid "Create new transformation for: %s" -msgstr "" +msgstr "Utwórz nową transformację dla: %s" #: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" +msgstr "Edycja transformacji \"%(transformation)s\" dla: %(content_object)s" #: views.py:238 #, python-format msgid "Transformations for: %s" -msgstr "" +msgstr "Transformacje dla: %s" #~ msgid "Resize." #~ msgstr "Resize." @@ -188,13 +189,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +509,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +627,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.mo index 740e34bf5930532617eb1e4beac0ecb6278a6b81..1a82ab504f0a950f7edd2fbb492099aff1bf387d 100644 GIT binary patch delta 310 zcmeBX{m5E>Pl#nI0}yZku?!H$05LZZ&jDf(I03|LKztI2S%CNgl)eh26@d5_5QF4@ zLun>Ph&oOnJpqXMfEZ-coylQ!`xyV_hRd1w%6{ z6C+&%69WUT0Ds+})UwRt%=|oEm&B4(D+MD1Lzp@vLn{Nb&323ej3TZ%nYo#HiA7)o Ofs|i, 2011 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -44,6 +43,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -74,11 +74,11 @@ msgstr "" #: links.py:35 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Editar" #: links.py:43 models.py:65 msgid "Transformations" @@ -92,7 +92,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "Nome" #: models.py:42 msgid "" @@ -113,6 +113,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -189,13 +190,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -508,11 +510,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -628,8 +628,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.mo index 544b65f0eddc43f074abe23792bf6454b95afec3..cee81c91081691549bf8fb6b1131e90ca7c2c078 100644 GIT binary patch delta 697 zcmaKozb`{k6vxl2`cXy2B0`$mqy|Hiw&+j;LI;CNgav~eE@|SuEBC!tO@diMgh@mq z!DJC)vh*LYSS@C|!QgxP12s5#=YH;a_uO;7=k7MW1a@A#{3itKg!jSE;N85pu)vC7 z0Nk!}AM8PV05*ZwpdY-g@(yf7{0K(DCs2TIAm{si6$Zf$q8;kOCWM0s$c+;q7n}mm zaVZP7B7SeE2>AfRh0`QSta}5_+GhUQyR&dX+dk7z5q3R BimdyaAYKW?3P5}gh(T)KL+Niongxje z0`WXX1_mY|2B}}j#K52kq>lkjtHkWfo`V=jpm6mZVxK7#SD> j1uvtPD*zpJ$R|oSeWSF*%sUnKdduKbHXj?w2Hj 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 b8b2aebbfe..93152a76e5 100644 --- a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Renata Oliveira , 2011 @@ -11,31 +11,30 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" -msgstr "" +msgstr "Conversor" #: apps.py:38 models.py:34 msgid "Order" -msgstr "" +msgstr "ordem" #: apps.py:40 models.py:64 msgid "Transformation" -msgstr "" +msgstr "transformação" #: apps.py:44 models.py:44 msgid "Arguments" -msgstr "" +msgstr "argumentos" #: backends/python.py:87 backends/python.py:101 #, python-format @@ -43,6 +42,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -69,19 +69,19 @@ msgstr "" #: links.py:31 msgid "Create new transformation" -msgstr "" +msgstr "Criar uma nova transformação" #: links.py:35 msgid "Delete" -msgstr "" +msgstr "Excluir" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Editar" #: links.py:43 models.py:65 msgid "Transformations" -msgstr "" +msgstr "transformação" #: models.py:32 msgid "" @@ -91,7 +91,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "Nome" #: models.py:42 msgid "" @@ -112,6 +112,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -149,7 +150,7 @@ msgstr "" #: views.py:238 #, python-format msgid "Transformations for: %s" -msgstr "" +msgstr "transformações para: %s" #~ msgid "Resize." #~ msgstr "Resize." @@ -188,13 +189,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +509,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +627,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.mo index 84d21a592a44276a3dcf73dee517f3d3bc815eeb..d0711f933372155bd375f30b03fd8f56392f09c0 100644 GIT binary patch delta 281 zcmX@i+QU|VPl#nI0}!wSu?!H005LZZ_W&^n>;PgGAl?b3_W@}IAU+JlY(V@3O1}ou zAa$RB_&6g2!*?Lf3B>!EAmS&1v@(!?4oLF@=}!=GX9gx_hyr#X4b%q)tWX-{D3GB* zDF&c=FaTK!2CgZYB@BLvxv3L78coe~4UBb-3>6H`tW1n_4NMFSxB~ojgHp>fi!<}{ sbX^ilQmqt>3=CoFj0~*|%r@IGx-;^D%t=kGI?~MGSDKqTxrNCd03B8-+yDRo delta 186 zcmeBSJIq>tPl#nI0}!wRu?!Hq05Lld=KwJXbO5me5O)GG8xXI8(i?#^3lQ%B;^T}A z410mJG7z^iF);80>6JhlB)=0%?*r06WneKN#Q@}j?Brx%2JwJk;-N-fQ(Xf~T_Y0( jLo+KQ)5!sh(jXBFT_XbpBO@zA)6Er(?u?VqG1&nCQ;ruH 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 4706731523..ddd8d46c00 100644 --- a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -43,6 +41,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -77,7 +76,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Editează" #: links.py:43 models.py:65 msgid "Transformations" @@ -91,7 +90,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "Nume" #: models.py:42 msgid "" @@ -112,6 +111,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.mo index 18769668d6e7417b425e33f788a2cb8261a1285d..a5941f63fcb37f060bf65d9de26aee95a1d66eac 100644 GIT binary patch delta 344 zcmX@gc8E`n!!0guPn8wB(;daH6^oz!7nj4bz(=OshO^U zv96J!f}xp}iIJ{>iGcxEfWK}~YFTD+W`3ToOJYf?m4cChAxxc-p_PHzW;@0ijK;Gr z?7Oh{!lnybFE(6k0+9?C7F^hRVatUL7j^*!c3f-#D%f;k!^NhHJq#CST-bB5fASTk FLI4lDO6ULp delta 186 zcmX@dew3~Lo)F7a1|VPsVi_QI0b+I_&H-W&=m25`AnpWWHXvRFr8fd;79idM#Ntd0 z410mJHV|J0vK4_eBQpa7ACOiC(n3Jm2uL#mX^ty lOcV^wtc*-2XE92HL@acT3>1uvtPD*zPhy=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" -msgstr "" +msgstr "Конвертер" #: apps.py:38 models.py:34 msgid "Order" @@ -43,6 +40,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -77,7 +75,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: links.py:43 models.py:65 msgid "Transformations" @@ -91,7 +89,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "Имя" #: models.py:42 msgid "" @@ -112,6 +110,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,13 +187,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +507,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +625,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.mo index d98ad3fb9b9e2b325dc6cf2ec9ffa5b57c0e287e..d35e0162f029f08be61326e107618bc23c76aa2f 100644 GIT binary patch delta 156 zcmeBUS}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhR2 TIwM0X1GA00LKs;*b5j`rjmQ`Q delta 99 zcmZ3_(#K+PPl#nI0}wC*u?!Ha05LNV>i{tbSOD=Aprj>`2C0F8iJ`u{rn&}}x<)1n dhGteqrW4mog9I#ejSLhFEv<|!H(n261OPrx4p9IA 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 da540764a3..12d3105d74 100644 --- a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 19:29+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -42,6 +40,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -90,7 +89,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "Ime" #: models.py:42 msgid "" @@ -111,6 +110,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -187,13 +187,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -506,11 +507,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,8 +625,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.mo index fdfdb33789af3cd87b8becddd317b52294a69c3e..08be01d330db50465e3102808509350a1b3c55c8 100644 GIT binary patch delta 205 zcmcb@JdvgTo)F7a1|VPtVi_Pd0b*7l_5orLNC09MAWnqRX+U}wBLhP=kOrw^V}i)@ z0BN8w1CRon1*9OrH6^oz!7nj4l_8)gKPxr4MAtJ#H!QWNI5R)bN@1d}g{hgYfw8WU zp@N~Am5GtAfr)_uSAf56P-JfNT>31Fisn-JsO6%;L=aJYAQ>l2j`NBLhRAoQ1BDfr6o>m67GfH&ToM-9;3f 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 b2eff393f0..967c6950cd 100644 --- a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 19:29+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -41,6 +40,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -75,7 +75,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Sửa" #: links.py:43 models.py:65 msgid "Transformations" @@ -89,7 +89,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "Tên" #: models.py:42 msgid "" @@ -110,6 +110,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -186,13 +187,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -505,11 +507,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,8 +625,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.mo index e433b22e1240498dabfd0c41cb04fa4deb22f257..e0909343ad7d61a1bfc4cc41f54cccab62bdb13b 100644 GIT binary patch delta 252 zcmZo-UB_B~Pl#nI0}!wQu?!IV05LZZ*8njHtN>ybAYKW?3P8LLh(T)4L+NWk8YF)g zh^H_zFg${amoqUihydAjK$-_gPX^K;eG8!Uav%*`R!U6;g?R4WA|14EcPBSR|# Wv(0vlB8+TLC-gpFzF~48lOX__`XmYf delta 186 zcmZ3-+QeFaPl#nI0}!wRu?!Hq05Lld=KwJXbO5me5O)GG8xXI8(i?#^3lQ%B;wg*_ z410mJ2oMJ`F);7|>2x3sQeOh4tAR978CVaHVgPbMc5*T>gLptNacv{7sjh*gu91m? ip_!GD>11n0X^@D8u91O)k&%_5>E>ic5yr`NOa=hJpA_l< diff --git a/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po index 9fc0b6d8f1..5f2a0cf855 100644 --- a/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-20 22:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -42,6 +41,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -90,7 +90,7 @@ msgstr "" #: models.py:38 msgid "Name" -msgstr "" +msgstr "名称" #: models.py:42 msgid "" @@ -111,6 +111,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -187,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -506,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.mo index ee7ab228cae3529ff1904aef4062ca6c76f24ec3..5683efc5e892e40098bae1a098368ad24845437e 100644 GIT binary patch delta 760 zcmYMyy-QnB9LDiqOubfXeF<^sP$A$=gF~j4{0mK;9IOaRAO#(QQx-w$q7rm= z5EMi@I4Iacp^FU;rAtx@+75z4htf`hqTeST>*1dBIk_+A{GNMr*17MOPke99XoK_t zy7$2B8U9AKm5^Bnu3{5zU=%m84c}u94{;c;ox|L$b@JGPWqgT?$Sw8-S*L8rO!_%d zLv8dA6BzQ$(l~?}e1&0rht0T*4{_bOg*<8p?)nGkXLr4d9QK1j1^vWU_P28;r=-9X| z8xI8`Z(??Gy7DoSXvr4~#kZwmW!oEzjiyGPr_w<(7|mwVmG*G||1;?z8;tB_!b?rj c`quY_`gVP{zN6=T_q@HHnJOg)Dn(?hsvM+dhpCzL6>Lw#g-TXM z3^{^ImO>@lq*JnORI)qNJ`bp1uc%&W%f|X4qOYU3tqa< zuig1uRI(RTvNzOM)8*B=%aqoJ80%84lrE!ny6jRTU8OZJ&_?0P1a?v#lrE;GL@iVo zrAw=EZmG4?H&FyNZKauVkm8eXq}uTZ`kXIMvT-aHpNv^{WORJW8gpj6J(`)&Ox&J| WTg8lbr$#T=C0Ekf$ZC2cWBvhV?LHC! 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 722d79a119..23bbe9dd69 100644 --- a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -10,20 +10,18 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: api.py:100 msgid "Unknown" -msgstr "" +msgstr "Unknown" #: apps.py:22 msgid "Django GPG" @@ -58,6 +56,7 @@ msgid "Length" msgstr "" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -150,6 +149,7 @@ msgid "Import keys from keyservers" msgstr "Import keys from keyservers" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -167,6 +167,7 @@ msgstr "" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -177,6 +178,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -195,6 +197,9 @@ msgstr "Delete key" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -202,7 +207,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "البحث" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.mo index 53717cc7cc0b6d5c720bcefc0592bfa570d1f5a7..b5b79e563cd3d8a552449db19c5274809568b108 100644 GIT binary patch delta 829 zcmX}qPe>F|9Ki8kyEB@)tF@V{`3LbJDlF`*i-#o$@!};fC4rD&wUme}Y)X0B-7Z2N zgocP9v5?YZsEbpQUIRP4p_37I^x!e@Qis03-Lc31=JVz^v+w=hd-J|!D_%H`Sucgw zMRX963nKma7qz_&i8SIn4C6J$U{DweVBqCudx0nP2|U zsUs0)^c7YeMcs*2X3+sZV>j+&FaE+J*08KmT*8}Za00t7R#&`;Mea+eD-JPPj~-gC1VT->3y9IS1XjG?J1LyoO^zemd|e>Uc|d z72jYXIOfU@kdrG!C&4pmA!39!9k8v^s~(qjqXdhqw5C8dM!LW|Rh^xHabT7VX- z-vqnTbDpo9iB{iA=xX(>b-Uu*cSBCdn#$jQJlJu&OBM{3J>rYvTaH$Ahi2o_c*%G3f ztRe5n0QobEh8XpUJjDoR;}qs&3=1%hUAT(Pc$M)UoA@1I(qrt!P8>i!$u{yoaoM4x ziyxpa^bKqA8g0DA5Z332_;C;);RqJv$Bc8xP+7@*U(38tAdl?R$RodLs_-xBiRnF*LlNq&>9uI+7!95KjMTZhj?SU@ z^kyT4bROaf9rhw64=?aJSxIsT>CmexC0~$w9U2svjtbf$Qcp!Uq*0vQ^#y%ZW3CgE zzUcTwBsSwZhU2=EZj1Cg?x%#$KhWB0S{cC*p0wso|Y_7pe8sa{B#=`~&bR BVC?_^ 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 27c62b0219..8b7fcb6c8a 100644 --- a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -10,19 +10,18 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 msgid "Unknown" -msgstr "" +msgstr "Неизвестен" #: apps.py:22 msgid "Django GPG" @@ -57,6 +56,7 @@ msgid "Length" msgstr "" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -149,8 +149,9 @@ msgid "Import keys from keyservers" msgstr "Внос ключове от сървъри за ключове" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" -msgstr "" +msgstr "Подписи" #: settings.py:13 msgid "List of keyservers to be queried for unknown keys." @@ -166,6 +167,7 @@ msgstr "" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -176,6 +178,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -194,6 +197,9 @@ msgstr "Изтриване на ключ" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -201,7 +207,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Търсене" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.mo index 785be3e935cda663c82c3b3df40109d6bfe3e78f..3cccdf34e73cd3aed590cb92758456959c8b381e 100644 GIT binary patch delta 777 zcmYMyPe>GD7{~F)bv9f7^k>&H+g$WkhRe>jc@QDXpi^b2bTW9+C0%iLSr>vXd#b1o z8cUrG1iN)u0zq%#!RXQIMD=Ujduc=$ z5 z@?r}$(Qiy)#52oc59V+Tqxck$-~yh&SD`D&r?wiluZO-5+dm+eec`4BeZv^@+Yc(c z?DiM7((sefHP9|J&x0JdAcK%Az);Y#av3*7?Wn z3>B?fJJ5g7QJ;wT5zmz;r)$r>RMU7c8x$V|wKv|~w*J1%rM|4+?e`DlvbEM|^52`R zKj3HTx#*|H^hh~hDZBg5##|wAcB7o%cs=X7OT|iQX5OW3q*!osb}L^hJ`7x?))Q<0 E3)q!WIRF3v delta 711 zcmXxhODIH97{Kw*n87e!Gv3chlt-p9%?LY`jf5y!F>%RT*9^zIo%%)LYze8w_-LEY#BHNgzh z*L4?a<$3mV4SIQQK)p4+7LBSutar5_y|xmX7O7uEla1!n{fCDEdsv(O&s8wc?D+^* z=vDb>l{8I8gZ!+}q%~nJrqr4t(bT@9!%;P38ZjALm|u;?;-=v@Omoc)$hcvyB;TDA z`H}WucY7%8@969aMUsQAYMtrQnP9jl7)oup9y60e?poi-+WfLH8(s7-EicCJ_Ki(L FegV++NLK&= 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 9620fb637b..aa91a0242d 100644 --- a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -10,20 +10,18 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: api.py:100 msgid "Unknown" -msgstr "" +msgstr "Nepoznat" #: apps.py:22 msgid "Django GPG" @@ -58,6 +56,7 @@ msgid "Length" msgstr "" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -150,6 +149,7 @@ msgid "Import keys from keyservers" msgstr "Uvezi ključeve sa keyservera" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -159,9 +159,7 @@ msgstr "Popis keyservera za upit za nepoznate ključeve." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih " -"datoteka." +msgstr "Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih datoteka." #: settings.py:25 msgid "Path to the GPG binary." @@ -169,6 +167,7 @@ msgstr "" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -179,6 +178,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -197,6 +197,9 @@ msgstr "Obriši ključ" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -204,7 +207,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Pretraga" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.mo index d78de654339fba843060fe5bc5942d24ca88c210..0f694a24a5387fa1ae14074885cafcaa2b9d465e 100644 GIT binary patch delta 44 zcmX@ce2jTQE3cWZfw8WUp@N~Am5I^BNeg*=67$ka6Vp?z6jBl=8!<*tp2esG05Q=G AzyJUM delta 44 zcmX@ce2jTQE3c`pfu*jIiGrb-m67ShNed@CFh=qCB<7`;CZ?xaDWoJ$p2?^S05M?= A)&Kwi diff --git a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.mo index a4297708c7ea955b45f9428dd8bf0d7cb81ed098..56d712de4077a37a32fda67475a6a73099f41c1b 100644 GIT binary patch delta 44 scmbOvH%V@T9|y0Qu7R, 2014 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-09-08 23:05+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 @@ -59,6 +58,7 @@ msgid "Length" msgstr "Länge" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "Identitäten" @@ -68,9 +68,7 @@ msgstr "Begriff" #: forms.py:10 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "" -"Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht " -"wird" +msgstr "Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht wird" #: links.py:14 views.py:81 msgid "Private keys" @@ -130,9 +128,7 @@ msgstr "Signaturfehler" #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung " -"verfügbar." +msgstr "Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung verfügbar." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -155,6 +151,7 @@ msgid "Import keys from keyservers" msgstr "Schlüssel von Schlüsselservern importieren" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Unterschriften" @@ -172,6 +169,7 @@ msgstr "Pfad zum Programm GPG" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "Schlüssel-ID %(key_id)s konnte nicht importiert werden: %(error)s" @@ -182,6 +180,7 @@ msgstr "Schlüssel %(key_id)s erfolgreich heruntergeladen" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Schlüssel-ID %s importieren?" @@ -200,13 +199,13 @@ msgstr "Schlüssel löschen" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." -msgstr "" -"Sind Sie sicher, dass Sie den Schlüssel %s löschen wollen? Wenn Sie einen " -"öffentlichen Schlüssel löschen, der Teil eines öffentlichen/privaten Paars " -"ist, wird der private Schlüssel ebenfalls gelöscht." +msgstr "Sind Sie sicher, dass Sie den Schlüssel %s löschen wollen? Wenn Sie einen öffentlichen Schlüssel löschen, der Teil eines öffentlichen/privaten Paars ist, wird der private Schlüssel ebenfalls gelöscht." #: views.py:134 msgid "Search" diff --git a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.mo index 2c468fb921d8bc7aeb0f7a6a1c6f07c32250e932..fda6bbeae50962fb0be5592cb83869f9b0a84d5a 100644 GIT binary patch delta 26 hcmbO#I8|`Ne->UdT?1oXBSQs4GbU-T?0#9BNGKfGbHL=##R%_E58~>f$ooT>;LseWHBDPfAJkp~^G_{vh7cn9T ziWSt<%|UT<%^(CRh$12mf^@3b#X+#3gW@8=?=M{Nk>7pZy?c4T_kMSczQ_I5FFm10 zLQ4}nh^c_cI4%ac(9U&;Y(fV&;$`F~*SU1!O^o6ljNuXdVHeI| zT%;-&=}a(i4K?R7>cX#37k-D^@e}Gse&9}QqRtx%i`baL44y%LvdE<$A7VE?N1guy zb)(CeAiunCbwpN?&B{9J#Gk%@{O3*74aIp#ZW;6)Mm)sFk~oOp&{&m0H3*_zZOe zA5bf|hMYy3Sk2Q3aV!_7P)pN5P4E_ZN3x2#@ORV`{X+d#!c5i#qo^l4iL5Dk)Qz4+ z{l9~na2|D?tEd&c5u^U}P zo>Z%_jnGZ)BHB%>p&LrK>gSK@iBp7rEbW$Tcd(DpU2pcs^y3;Lw)pq0S4e+=&}!`V z$A{}i$Av)serSIn?RbUrGU*mPw<43p*^*OP@Z6;9d2`;u{{!XP$8d2xYnX=&+e%v5 zT*fxcjA=$s<&D$sm14O#S2B(}6*rf(O{+c6wsMwPFLizn)+Zt_1CgVz8|C>0cgCsx QjShrQ6unDMtv5FI4@Wp@*8l(j delta 930 zcmY+?%}Z2K7{~Ev#&JqbEpwdAnr=Dt2I@G?M2gZI?Zika5^FK&O(!VjI<~0AZ5Kfn zF%$#?LArF+Ey@<+DtA$vHbyN1cm4q_g1*0Tggnf1KIfi$?s<96l;WRS{GUyc7e+}E z2Z+9qSr%`EsVJ!`vj*(OdOU~xY>+C7Ls*L=Scl_y5vTDazN`2PPw-qDG24L|Y&7$& zkH&dA22g80MNRk|+pvV%z(-8rDr(_%OydS-(5W`#XIH7>IEuS)1~vX6YJ-n(Hx|qK zW(zdfoV`a4T&fIMLFTq^6~Ci)zJ@jU8|TQ@25Q0wyllcJsQF&wPMk+=WD%9YCA@~K z*u(mkU{pU|$7A>sd1uSmjGu7~*H9Tc%j(L=1w4*dPz&EjWoQoBlP%(9e2XrINvkq2 ziJG^7K6hY`X)w3FLY?Fd>c0@67Wj%f(I3>t{-VCCW;T5nLuD#~TA-bZA=ZT?sN9C~ zJAHpx51Yle{WP>2htPd%!d608afndSVh0JGT6fEVwv|0R>BPzZdiPe^O8r)8-)dlt zh}fyk6RW?4(5aP572TE6y^ql8j}R(};AYkBQ1B&^48_Jgw_wBhiMzSNtmite=S_K? z#nx!PKHHJ%=}2ds?$f>LZ1GvNO+9DSlgjj_(!q!5k8n_`2}1E, 2014 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 @@ -58,6 +57,7 @@ msgid "Length" msgstr "Largo" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -67,9 +67,7 @@ msgstr "Término" #: forms.py:10 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "" -"Nombre, dirección de correo electrónico, identificador de clave o huella " -"digital de clave a buscar." +msgstr "Nombre, dirección de correo electrónico, identificador de clave o huella digital de clave a buscar." #: links.py:14 views.py:81 msgid "Private keys" @@ -89,7 +87,7 @@ msgstr "Hacer búsquedas en servidores de claves" #: links.py:30 msgid "Import" -msgstr "" +msgstr "Importar" #: links.py:35 permissions.py:7 msgid "Key management" @@ -129,9 +127,7 @@ msgstr "Error de firma." #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "" -"El documento ha sido firmado pero no hay clave pública disponible para " -"verificación." +msgstr "El documento ha sido firmado pero no hay clave pública disponible para verificación." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -154,20 +150,17 @@ msgid "Import keys from keyservers" msgstr "Importar llaves del servidores de claves" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" -msgstr "" +msgstr "Firma" #: settings.py:13 msgid "List of keyservers to be queried for unknown keys." -msgstr "" -"Lista de servidores de claves a ser utilizados para buscar claves " -"desconocidas." +msgstr "Lista de servidores de claves a ser utilizados para buscar claves desconocidas." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Directorio de inicio utilizado para almacenar las claves, así como los " -"archivos de configuración." +msgstr "Directorio de inicio utilizado para almacenar las claves, así como los archivos de configuración." #: settings.py:25 msgid "Path to the GPG binary." @@ -175,6 +168,7 @@ msgstr "Ruta al binario GPG." #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -185,6 +179,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -203,6 +198,9 @@ msgstr "Borrar clave" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -210,7 +208,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Búsqueda" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.mo index 3da23e216a579fcd9dd4b30c5201b7fd76872a4b..3187832965c7172448f55c09a8260de821da6020 100644 GIT binary patch delta 1018 zcmYMzO=uHA6u|M9kESM#rdFeEwI#!@5pN3hq_^V##iR~9`CeeLsD|Au@vVPENEdE|DFW#_c$b9CDA72k)Z~=dc4G<7s?~$MAd8fLmmM>lC)* zRSbxfWQxHlZrnj#a}{;s*QgV}#eMh*HIWTGfSagseQhFfj9>yUA&1O!+KZ3Sk4vcW zE2xRCVkhg%yT(A|3zDq-L=F7a^iT8oCTcgb%4=5;cKWJPhJz z)cJoPk7NS_tS`SA97NAHkpd3jC@$a_e#LV*#O%AUfI8s}PT>M-Vm?kgF^Ihw#S=J+ z8h;xHv5cC)ODs(?SYvP*L)3+}q=ZLt7InhsNQkVVCh!46_zj2ANqzOrlBjVh)CJGt zZk$98ndZb#+VtO{ z8@PwA)i_Mo7OEPq8;)w(J?Mz0?aXxl=1AfT)KGEw!)Te=k4SFZxkvY+p;4` z!yGo^v2ZMzO2iE_VVb@R=Z%Zjt!yEi&lzXZMJpAKo3U10JeG=?)to2qs=oIIo!;eI cwYF4SuFqE1I}Gn){Xy+TZLvO6Y4@M}3;2R?VgLXD delta 910 zcmY+@Pe>GD7{~Ev-EGrt?T`O*HFeWHn6k2NyQU(N1zrjdWr0|T4llU|~T zLA-d1sFSBvv_qgEc!{7(7a;?oP9D4W{f(Q@!@To(XXfR3pZA@a?bv?3`=ctfYD9u| zjW!T4%i@zVPDCnbb`iU=5^p1ijc^L%1B~DpUcf25i;LKSn|iqX*|IU#?P5?*dtC?aU7$VM~z=X6}WWeR2s00Pghw8{Dj~sk);$krS*>Q-faCFQMzOQT_O6hSfO1dGOs#vW zCso}uHh%ypNC<=i=e;GqL_*>K2nj`#NI_gcIdDkCjT=JTh>(!@eyh93Q}#K{rtB_?)`B^h;{JXNAbY**u6r05_}x|1h@q9(?#$;umvuFYv3Wc z2|ftEQ;z=yq`VKnXF>U~f-ix~cproJgSWwlz&F4(@HgN+;D12M|1Ze>9>9a|4}p(> zPk^5XBanJ_z)ykS2EPQ}0`Vta#bXux8F&Glg0$yD5TeC>P~uVW9C!|V8pJ2j1ZmGD z@L{lB@&-sh^gzzLRq~bc`yog@Uj?55UjyL+@w<|L0MFz7Z4iIrUwC{R{1AK-F}UXe zAwG@wUty5;yaRH-zk;0iemVYk@b`HCH^}+F#-`l&T|B-Ez6UnJRTx2b!Dqo=g538l zkn;Zsa{l`u{oaBTDCY`D`(6ZT|8^Dge+Y8@Z^5U)KY>qz{{*@2VK|xbe-wNU z{0>MtKLzn8ZsYM;@J*2MdmDu5;ysZ0@Bzp;{sWZYgP24=tbp`G1LQs}@H5~VNWE`@ z)Kh_s?~g$G|0m$rz@LM(|6P!I^k)!m4>_;|p2z(;+^h+%r>rmI<{HkYj!)yRF51o- zs;))+_$qGNT3s+9T#uJz9O!HMuU3x1{dc`2M(HQo@I~CqxS{gwqEF~A`hpj0f){xiH+`$J-07NFcUom8wX&-+E!w+lqOB9n zp8@hfAI<%g&-ic1PEQ`Cx$G7blpN*ziHSK=W&@Q;iAfT_z*Qvi($E+rB2+X`BzW4Li{k-Ie=!CT%*e3basT zWfHZYXxU4h9BXHKCJxp@^jR4blMSHpSS99^i_T76k;=|Zp~d|)?aoQHX%@T;)v&d( zXM}DfeKk~x*f<;+Hy42y(;*yToQ|{99m(87LY7L8H%%AAs=_;DoZ6o0=jHmINwlwt zPFr-k@Q%rh_M$T!r7kNGqFIcDaCO=(Ms)70mpzvb!$#V{V_v+301cH@eNC5#*H>~4 z)tvTul7$JBvN8*w&*NBo-^-Kas3tbG?PmkAX?(~CnovllSqM6X85qeB<@Ug)6C1X# ziI>$-uSgvY5yh2KUwV@%(=)cO9g+xH069sT9#8@nrBcsaDy~ngc4Av0u$aZXL;lEp zW0iwy+b22b#dgTz5Ts#0`r!%ozm6p`bQK8v@7rS$g zf%{@@#xNZ6;lCx|d#1bW#h!LUv3E4m;)V^$3(ZZ4;+<13V_Db*t8Nso6E}^X6xwgQ z^cJ!x>U5)<2qbE}CAZX(vT~!nwY#vRnHbTQ@0)J)Lf-e$UfPli+t>G^>P(2*DA|@= zZ8R@Njpw4(rfgnpU09787a9#rjCS}m+H=bKL?MY=a&KUu z^pV_+2WghcueX&uz^%WDTz9@^k?12NP9N2n@7LmV_&j9TevS-`_Ou$dOEIqUfAkvZJfBJS!*n;r#3@^ zNA!G4X8JIzj}m32Y^E$h7WAAEo>0};v>}eNm*f{MX9b59!zR6~~wopk6+X;#@ ziLRz@=v&f`!mGcsdRZ1fuPj;lylgICUO35tWoaQ(jw9BAB*W*1&aq#+TWi>yPzuYy&it6(ZP>9$R@`?i$ zC5kdNvZqWIj&=jB7CDE<`5iOs#X6K0OjxNl3gAwkNYYK=SihfFn7)z7(qFw zj{SA)TAkV&rwNaKsEFeMhhiR|)!8m`TG#kdY7N`KD9zCarpIgq+EF*kC_CZi-Nmc1 zj)OmDQ;QCP@cf?@Iy)smT(0ss2&; zEF@Yn&VfY}x=qh0oW)F5<_!}|R*hv|4>`SEq>#g0UmUD?sYVF+HMlGMKT>HfU@tq3 z%7U^88jj9^#+h5x23Co6Jc=e%<}gz&M2^j9`UdhSM-A!FhPdo5J5w{X6Gi~7rEufS zefWZAYjZZ(m($@%Tk5oDHY1RFIC7doC~T%Cy1+KNb$339IGs_%(_@sV(_(#~hb+}R z^d<(D|L4#u{4Z6MQrV#pziONf3$KXLiPlK+(3_9~Whn0Wd>6w*7u%_PS~ao_=X4=u zmYt`X8I@z0XN?Q?PG3iM6>f*$>2@|VU34>MjQ61qyNg9bV`3Bs*C|Q!eXUdYU99z( JvGbWE{s-3gEhzv1 delta 1028 zcmY+@%}Z2K7{~EvYMRk$H1nTRM1AKKyVY*qJN<8Pe!nZd+z7Vxo6IK&U0s0ny=RvzgGwE z8PP^-qV)vKy79smZbW>mStWL21)fAM8{ihgA&lU8+>T?|hXp)@&rANmgM5wz&BB<( z9cD%Aq0`GiKWfigs0Ht0BR)VS@B&-#J!<1sOyC+OF}BT&%g%D!g(Db6A2oj#mEaAm zLbqqfWGhTKFB-;z#80_7hd9RaD}?up0j&1=7Cj zq4Mjwk}O5h8t7@U7)|e6iR__iqrEhRl4_a z1XUN6Qc+LSKR}r)R4SEwH%+JCPgAtGx?pd>Usw*d23%FB)*T78xyjI+3x&s>AFeMS z&UlkHJX6THKjBLi-5v2`9f@SD^KdHB?MBKPyBImDk$5r{PqfF0NPpU&>KOLYIX|18 z%6qBUQ2uhpo64h~_9pTRpUT<;HD{&^1#e<9q lqmSIfirX$#*>pfzWY*KL)49=nE;ntx, 2012 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"Last-Translator: Thierry Schott \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: api.py:100 @@ -26,7 +26,7 @@ msgstr "Inconnu" #: apps.py:22 msgid "Django GPG" -msgstr "" +msgstr "Django GPG" #: apps.py:55 apps.py:62 msgid "ID" @@ -50,15 +50,16 @@ msgstr "Date d'expiration" #: apps.py:74 msgid "No expiration" -msgstr "" +msgstr "Pas d'expiration" #: apps.py:76 msgid "Length" msgstr "Durée" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" -msgstr "" +msgstr "Identités" #: forms.py:9 msgid "Term" @@ -86,7 +87,7 @@ msgstr "Interroger les serveurs de clés" #: links.py:30 msgid "Import" -msgstr "" +msgstr "Import" #: links.py:35 permissions.py:7 msgid "Key management" @@ -126,9 +127,7 @@ msgstr "Erreur de signature." #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Ce document est signé mais aucune clé publique n'est disponible pour " -"vérifier la signature." +msgstr "Ce document est signé mais aucune clé publique n'est disponible pour vérifier la signature." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -151,8 +150,9 @@ msgid "Import keys from keyservers" msgstr "Importer les clés à partir des serveurs de clés" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" -msgstr "" +msgstr "Signatures" #: settings.py:13 msgid "List of keyservers to be queried for unknown keys." @@ -160,9 +160,7 @@ msgstr "Liste des serveurs de clés à interroger pour les clés inconnues." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers " -"de configuration" +msgstr "Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers de configuration" #: settings.py:25 msgid "Path to the GPG binary." @@ -170,18 +168,20 @@ msgstr "Chemin du binaire GPG" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" -msgstr "" +msgstr "Impossible d'importer la clé : %(key_id)s; %(error)s" #: views.py:48 #, python-format msgid "Successfully received key: %(key_id)s" -msgstr "" +msgstr "Clé : %(key_id)s reçue avec ssucès" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" -msgstr "" +msgstr "Importer l'identifiant de clé : %s ?" #: views.py:59 msgid "Import key" @@ -198,14 +198,17 @@ msgstr "Supprimer la clé" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." -msgstr "" +msgstr "Êtes vous certain de vouloir supprimer la clé: %s? Si vous supprimez une clé publique qui fait partie d'une paire clé publique/clé privée, la clé privée sera également supprimée." #: views.py:134 msgid "Search" -msgstr "" +msgstr "Recherche" #: views.py:136 msgid "Query key server" @@ -213,7 +216,7 @@ msgstr "Interroger le serveur de clés" #: views.py:146 msgid "Key query results" -msgstr "" +msgstr "Résultats de la recherche de clé" #~ msgid "Key ID" #~ msgstr "Key ID" diff --git a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.mo index 7fad2d578d24a4d37ff6f27d452669a38faac7e6..a966e8142b5ecc5390afe6ee4668ef6c3ae96a9c 100644 GIT binary patch delta 163 zcmX@f{E<2Qo)F7a1|VPpVi_RT0b*7lwgF-g2moR>APxlLentj{2q4V?#4mtsAc6ys zelQ45O)N^zm}uc^YNl&otZQVbU}$D#Vx((eVqm}(;IA8$T9#RynV+ZYl30>zrC?-W a2vcWdXk}=yaTh-$r*~>mYVqNf#S8$~Cmc)w delta 99 zcmey!e3IGXo)F7a1|VPrVi_P-0b*t#)&XJ=umIwIprj>`2C0F8iQ&Gyrn&}}x<)1n bhGteqrV}?xg9I!<0tO~l21Xli@-qSeU4;%k 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 5ddcedf39a..49b628c11e 100644 --- a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 @@ -56,6 +55,7 @@ msgid "Length" msgstr "" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -148,6 +148,7 @@ msgid "Import keys from keyservers" msgstr "" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -165,6 +166,7 @@ msgstr "" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -175,6 +177,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -193,6 +196,9 @@ msgstr "" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -200,7 +206,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Keresés" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.mo index b0cb3ead9e015e62babfe030a38fcf484f45fc9f..06f777370f75f75746cae23e9c4d9bc43073f2be 100644 GIT binary patch delta 44 zcmX@ie3*GcE3cWZfw8WUp@N~Am5I^BNlSTr67$ka6Vp?z6f#pLn=wXDp2w&P05O#f A#{d8T delta 44 zcmX@ie3*GcE3c`pfu*jIiGrb-m67ShNlPcYFh=qCB<7`;CZ?xaDP*Qhp3A5P05LfY A-2eap diff --git a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.mo index 7f313d95791434e14a885c5bd0a5a0b064c30051..91ddb72ddfb3478123e61a119938a347aa982aa8 100644 GIT binary patch delta 1036 zcmYMyPiPZC6vy$GHfe2Yn_6wEt+lI-2LEhHVwyv4QuQP#RyW_O2qZ{F_bzPItp*WU1R zqb2FP>E}XbV>sW!K)cjx){P!^;dSJ)y9{l352N@HJMkHg<02ly?+s&NvxD5{u^p!{ zW>&EoCdYVi2Nko1+IShY@p~M^6;vYYxCb{;>xLp`8BAanFCdrAGxXzA+=@%6^>0v# z*06{8_Mtv8`+_8EKT!*RH{58v-$W%8<0Y|epy4p;L<#J`Blw6a=1>X0v@I_h8>jpyyu zUHf#QDj4si{`wY!4852{DpxNL)Zb|%1#LF{3p&j{x_($~I6$Y`wwJCGE2#bvCBKud z(<;$sQ!FK#v_kU{WoN4Lr~=LAG$$CRD{FmAHT_(w(std@^hxv?cF|Rh{dBeAs@r-s zRDBXY97=jY;fhW8g}^V{L~*+0m2U*T;|IZPF#7+&+``95aV+Pij=Gt&lg{O{88?+p zrJ`p}yJ!8I#kt~a$vy6s{k)S&rJL(A>3lj>Ew#OBiQHy^U+wO=9~v3=gMvrMX+nB- XLXmuDs_0xU2G=}0$>=XEMMwVuudH!u delta 910 zcmY+@Pe>GD7{~Ev-EGU&&9c_~Q`=Zep|CM-yQ1R3h%OOO1?%J>cFJTrlcms1dj2t%0sT=1}9r}#w$X`5% zakBHZP&*UWHW$^JUUcv#DzPzCMT@A!0#rq>QNP*DPtw8Z%YCH4Yi%GP^rH9;8ZkG#nqu=szV)1*ww>| zb+d`kKR}slsP$@hGok7)5E|L=QG7HOeoy3LnI~R((uPK!y?8u1<&~YX=Z$+;f|le+ ux|DZ&^M#_*)!kPp1&hfx-RaRCx7g, 2011-2012,2015 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 @@ -57,6 +56,7 @@ msgid "Length" msgstr "Lunghezza" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -86,7 +86,7 @@ msgstr "Interroga l'autorità per le chiavi" #: links.py:30 msgid "Import" -msgstr "" +msgstr "Importazione" #: links.py:35 permissions.py:7 msgid "Key management" @@ -126,9 +126,7 @@ msgstr "Errore di firma" #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Il documento è stato firmato, ma la chiave pubblica non è disponibile per la " -"verifica" +msgstr "Il documento è stato firmato, ma la chiave pubblica non è disponibile per la verifica" #: literals.py:50 msgid "Document is signed, and signature is good." @@ -151,8 +149,9 @@ msgid "Import keys from keyservers" msgstr "Importa le chiavi dal server di chiavi" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" -msgstr "" +msgstr "Firme" #: settings.py:13 msgid "List of keyservers to be queried for unknown keys." @@ -160,9 +159,7 @@ msgstr "Lista di server per chiavi che si possono interrogare." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Home directory utilizzata per memorizzare le chiavi così come i file di " -"configurazione." +msgstr "Home directory utilizzata per memorizzare le chiavi così come i file di configurazione." #: settings.py:25 msgid "Path to the GPG binary." @@ -170,6 +167,7 @@ msgstr "Percorso per il programma GPG" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -180,6 +178,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -198,6 +197,9 @@ msgstr "Cancella chiave" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -205,7 +207,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Cerca" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.mo index 731cf839093d54f5e2b0c1e23bfd5c5f92629def..105deb16b8628bae139954409b786932607cecdf 100644 GIT binary patch delta 226 zcmcb~yq~51o)F7a1|VPoVi_Q|0b*7ljsap2C;(zMATET`6+oIDi0grPJ|hD|JCNoC zVs$2n8HPZb1IRZ6(m-i205Tbvff!^5gG*{oYDp?XaB5;vas~r?XkK<+etF(R3tv++ zT?1oXBSQs4Gb}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhR2IwM0XLxYXGJOea2&1_@Yz1Pn~942(8&Fv>Fm0BRcz%m4rY 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 9d46ed720c..04527ca454 100644 --- a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,19 +9,18 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 msgid "Unknown" -msgstr "" +msgstr "Onbekent" #: apps.py:22 msgid "Django GPG" @@ -56,6 +55,7 @@ msgid "Length" msgstr "" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -77,7 +77,7 @@ msgstr "" #: links.py:21 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:26 permissions.py:16 msgid "Query keyservers" @@ -148,6 +148,7 @@ msgid "Import keys from keyservers" msgstr "" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -165,6 +166,7 @@ msgstr "" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -175,6 +177,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -193,6 +196,9 @@ msgstr "" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -200,7 +206,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Zoek" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.mo index 4e542307f9c01fa2435f99287928f9cb03fb036c..646caaeb6a2fce59644573c765dc0b1ffef79a3f 100644 GIT binary patch delta 949 zcmYk*KWI}?6vy$C=A|`hYX6wlYOO|F6)O+ld!`+-Sp^4$)<1(ohXyIMRU_2@r4TCO z94R_D>7;`cN|xeS!NpNU1ZhQ-f;t+mt*6|4Mhdi?uyol{) z6`Npkf*V&+IhRozub?(w#Xfw4I>-j@#Vypjwv<_fIV|95Z z`~JkrD3gBf>co@Si`P&me~7HHC)k0{oGZ>XRAui`2l(V%M}7YXs$;)V>;53M*k9DX zEv@vQjx|mNjkc&#C5wkDQ56RWRiO=b6H2(BI7ld&o(Wa20<`)6LtW!nYdqxf{T!14 z^<9<6BOgz&htTOe-90@_{lpIUUjGKQe;1+Z1__OQH9t9GD7{~Evb=6$6{GVmord~{zW~bTE#eLN9_IR473y2x+=`GLWU4 zbcinMaTW3++93~}Jm^JO4~m%JRq*Ebx6VQ@`^@K^dEb5C_jzWPYWA!BOhx#c(VB^e zL`TRhfung`XimP_9gJfsb|OFP=TeBn7{Rw#g5&rCXYdKG2OePy_mQw!5qfyn%(o6Y zT|DSR?fDh8;1bs1GU@=oumN{b8=sJ^0;c^d0@HWn(=6^vQZ~@COmDM-< zNr%JP25RDFFku^6+x7wvP$xgcVm!t_RO@fxR^TZP;1#MuFWFrc=|fd$1gr5Q>J=`cD!7VTZv(sW40X^}25Yem zeVurS4r4ZkD$R7@eBdG~qwlB+{XqS11y!NVV0;TXqy0v$_ZKNp_ArpGf)abIo15m_ z13Fbilu$NW;69;^9uaEVte#NTdbe8q|5nZoZz1~;=bl#v9c7$rO}P%LVqtrBld+!H z5GtQauBNYD, 2015 @@ -11,16 +11,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:42-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: api.py:100 msgid "Unknown" @@ -59,6 +57,7 @@ msgid "Length" msgstr "Długość" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -88,7 +87,7 @@ msgstr "Query keyservers" #: links.py:30 msgid "Import" -msgstr "" +msgstr "Import" #: links.py:35 permissions.py:7 msgid "Key management" @@ -128,9 +127,7 @@ msgstr "Błąd podpisu." #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Dokument został podpisany, ale klucz publiczny nie jest dostępny do " -"weryfikacji." +msgstr "Dokument został podpisany, ale klucz publiczny nie jest dostępny do weryfikacji." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -153,6 +150,7 @@ msgid "Import keys from keyservers" msgstr "Import keys from keyservers" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -162,8 +160,7 @@ msgstr "List of keyservers to be queried for unknown keys." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." +msgstr "Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." #: settings.py:25 msgid "Path to the GPG binary." @@ -171,6 +168,7 @@ msgstr "Ścieżka do GPG binary." #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -181,6 +179,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -199,6 +198,9 @@ msgstr "Usuń klucz" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -206,7 +208,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Szukaj" #: views.py:136 msgid "Query key server" 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 def16f3f8ea8260643f039a3d387923ae7cd13e1..45cee22921322e03fb2c898103147feb25ff81ac 100644 GIT binary patch delta 808 zcmX}pJ!lhQ9LMpe*Gpew`j%>Ij47!d#Fk1f#vl=gP!~6$Viz+U;jqEJz;k_pE*TuV z2#11$S`kDLL5bi{P$%i6pp!z2#oeK^g5O_q_=kT!&)swR|DTt=^oP;rLE61gAMyMls^1a1^f!MQ^z*`@ z>OFRy!V^3{qPhyTun*ti0DeR*@H5tMAIo@|?OjBR1$=?p@ppc%;UThPGea@`|2&?h zzq!I-1OuGJO}vT^V-HY`r&uLJHK*F6PIC>l3u?4OSD;X16;G2|)EKEnsRJ49+DoW>dG z1h>#$Wd?N`oT|x@C!?B^YlTkMaeZ4~jJDlOa=vkU#a~;uK^Q%AZw-`Z3m0aKUfwHL zO2sIZ$o_v*^eSGVRZ7fs^)5A*8!NtT)p~ZFzUy|izHWURjrZsB)i7j+a(-xT1a^7V Q+zf2q5A*d!e;t4fq*9u(=|}s4pp2(}|1N zj4P;(?BFuK#WDPe2@JCx2d7YXcEIog^Qb$!M4f+y1NaNuu)1EP7h{;hah3Y=jtebZ zLVj}1phxio^-KIgZ7@pvtRu=Gc6>SzjmK zM-vyUA(8tV*hzMfY`z?NR9gHIsl_$4X^n?uE2&M!NR4pe%z9ERSy3yt9+;fWrMGtd z++JX869k!Hr0_4alt{##XK~lFN5_&b*Pi1v&P>N=&3-zY&g{lhe$FIq*BRy6Q+?0z zl8#$Et{JW>mTJFP&Yal_%tl5gS<>Dxwx7+W%T@dld1->z8JRZ$ckT6Uf8S)~4(l^m AT>t<8 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 9063593c41..397ee9eb06 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: # Translators: # Roberto Rosario, 2012 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: api.py:100 @@ -58,6 +57,7 @@ msgid "Length" msgstr "" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -79,7 +79,7 @@ msgstr "" #: links.py:21 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:26 permissions.py:16 msgid "Query keyservers" @@ -127,9 +127,7 @@ msgstr "Erro de assinatura." #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "" -"O documento está assinado, mas não está disponível uma chave pública para " -"verificação." +msgstr "O documento está assinado, mas não está disponível uma chave pública para verificação." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -152,8 +150,9 @@ msgid "Import keys from keyservers" msgstr "Importar chaves de servidores de chaves" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" -msgstr "" +msgstr "Assinaturas" #: settings.py:13 msgid "List of keyservers to be queried for unknown keys." @@ -169,6 +168,7 @@ msgstr "" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -179,6 +179,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -197,6 +198,9 @@ msgstr "Excluir chave" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -204,7 +208,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Procurar" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.mo index 17fd2bebf7e95f1a56fbaf15fac710e7577e416a..cafe54a0ac70db8b08476c0ca9c2fdd68e6163b1 100644 GIT binary patch delta 821 zcmX}qKS/{~F~+?m8^Vzj1J)1;ZAB7r1|NXB*x2n9P^juP7}LUaCscF5os(7{8e zA~=d50l`TSbZG^*QaTmdf`UWAP8~Az`@0-I+;g9oyZ7GbeV^nyaW>feF>LP|B1b+| z_82oQL)?hZn7}U>$M0z24TkX!V|b7K*ug1`GAV*(9K;Ip%2ZL`Eg;`D%_|0J9=t{s z`iNO&by$3^VJ zdEBQP&rt<_vWp@7iz;BVy5>hwok^k&ki{Yvg7-_P@0U>>*uW@$zy$TpCW8#_pbE6{ z8D5}H_zP9w52}?N)B*!k*TN~(PnSon^8&R&2Q{yTTxNyaBV0$V+rp+=yT^b-nop<} zAD{{zBMtCF^Qh~0MvE$PqzWr^G8NT^6xxVlgw&c^Plr>ax~N-Ke>fUE5Kl;*evBL^ zwNss18+=Uaw^QgpGEC~fqfX=*59r;t80y#>wUHA@wq~A zrcf^BN^_OjvRAd!4^PUaN~w6#u+MwE$?)&!%bNRst?oKrERyMWT(|D8;<#QuGVvcN C2~4{H delta 746 zcmYk(y)Q#i7{~FWE=5%-_12<`ilI^sf=K)UMv1{D(oh3&LyTPvk|t8QUIvLE29tq7 z1TkPEu~-^m6p6)Z^8K}!IO%ggr{~^tp68r%6?m-4yauf;Lu(@oz5cPcs!^UJxl#UXNU^|YX7M{a0T*PWz zamQCtiLzLWJFdsb&s^}({A+jo4lVvayXH}ayI8031wUc}U)=Y8vTA+^wbK~tyKdC!4x-kbzz&>6ANkE19WA_xI;umgz*E$Mm#C|G zKrQrvD$Gk&D$K{D9_x`>Oc!d$an#8rQR|PQd#i={%8^k;AwoymNT>yg7NS{y{xvP8 zg1EQB&h$!&f18r(ZdEKb{xv06)2V0!4TK7 1);\n" #: api.py:100 @@ -58,6 +57,7 @@ msgid "Length" msgstr "comprimento" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -87,7 +87,7 @@ msgstr "Consulta servidores de chaves" #: links.py:30 msgid "Import" -msgstr "" +msgstr "Importar" #: links.py:35 permissions.py:7 msgid "Key management" @@ -150,8 +150,9 @@ msgid "Import keys from keyservers" msgstr "Importar chaves do Keyservers" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" -msgstr "" +msgstr "assinaturas" #: settings.py:13 msgid "List of keyservers to be queried for unknown keys." @@ -167,6 +168,7 @@ msgstr "" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -177,6 +179,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -195,6 +198,9 @@ msgstr "Excluir chave" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -202,7 +208,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Pesquisa" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.mo index bf62fa5aa482f19e8373157632ff893f296eab81..787a7adc694d82e5cf5fa303ac44a474146a6652 100644 GIT binary patch delta 767 zcmYk)KS*0q6vy$?_+py+x3RTa|5R~O5b|QkARQE;IEYLAgM&j10fQ1j4HYS5P_f0q zO0a7?6m=`bMbt@!qI7d`5X4bR2T@#H^!wAN^ziQc-1qO^bMAfTp`EhqNyu3?qJ~yY zbDo$r;y+Y;@tGCl66WD|e1<=;0Doc!ZebJNcsB8}#_7cXX0aXTkymUV87FIh=u~mz z2sP0q)}qfbi(oxQu?PM58S`-wOYy7cD)Omqc+a;zcfIEa$YIBvl+Y;#ncvRn{HEFq ztl+^Wqidi;)C5QP9M5n7uQ7~0jG_eR(8UeZz<)Wt#|u=#@1B|!Vi&5g0W85Oe8c?q ziB1=;VH;kdmN*u?ue2R2x$eZ5ID|@Y3N_(JBqy82GFKmOL%g7)ZB?S$_lIDym0aj<$(5a! zO8>#D^+BKObK>KP;oO2#8|Y1sq{lv_b8Ak2QLH)K(j0N?+*oTgk}LFAJ>H49t!{Wd t>JK`Bj=h=83CgYIGGwv+AZnkQd9r{ delta 709 zcmXxh%}X0W7{~F)m}sMoFVR>V#RgvvEm)EeixCP+MGy-fl-iuqC9HNqZCN9w=^+;n zg6%04Ec93?;xXXGn?3X*2>k=RdQ~V0p8WoFeb|}L?(FV7&&(WmUBs(r@$jw@eYAes zf7%G`q=Alj7cy%@2OIGtwqO}sv5K#72cO|-;59zwd4!*uaUQ2|33+8dka?>1lN%-f zjY{+f2k;+e@e*@595#z!0h_Rh9k?9$3Hj8vgZE#9@fvd3FS;o1<6jn6$6oT=7iQCs z-%%6pVW&RC0v=%+6D&go&0q#UqgHl6w}5q2fz1!h9%2l&kR-Na9-rVWzD5rx$!~|; zXiKkz(H9NjeSvUWtr;Kb{x9s(x;JejihrE>1=%?5)Ie3qJy1pyvnAt O>Q$Un>AmZ%x^@F6)kL}g 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 78f24267e2..13e835b51c 100644 --- a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,21 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: api.py:100 msgid "Unknown" -msgstr "" +msgstr "Necunoscut" #: apps.py:22 msgid "Django GPG" @@ -58,6 +56,7 @@ msgid "Length" msgstr "" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -127,9 +126,7 @@ msgstr "Eroare semnătură." #: literals.py:45 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru " -"verificare." +msgstr "Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru verificare." #: literals.py:50 msgid "Document is signed, and signature is good." @@ -152,19 +149,17 @@ msgid "Import keys from keyservers" msgstr "Importă cheile din keyservers" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" #: settings.py:13 msgid "List of keyservers to be queried for unknown keys." -msgstr "" -"Lista de keyservers care urmează să fie interogat pentru chei necunoscute." +msgstr "Lista de keyservers care urmează să fie interogat pentru chei necunoscute." #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Cale director utilizată pentru a stoca cheile, precum și fișiere de " -"configurare." +msgstr "Cale director utilizată pentru a stoca cheile, precum și fișiere de configurare." #: settings.py:25 msgid "Path to the GPG binary." @@ -172,6 +167,7 @@ msgstr "" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -182,6 +178,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -200,6 +197,9 @@ msgstr "Ștergeți-cheie" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -207,7 +207,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Căută" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.mo index a3f8b6b15e035e496f1f9b65bb1b82396c081742..7f2f95b07381d7928684fabd7327118e3ca2da1d 100644 GIT binary patch delta 818 zcmX}qPe@cj9Ki9PyKghsU9~mc%+e?X`?KU*7Y}<#LL`GgqQoFNSUyyw7i@`_V$rJy z4^NQ}VI7nX9YkGR67}FE$ipmpD3QP}9lCe1L*L)?*|5L;y!p-BncvLpr}{!N|07|| z3ayE_K*Y*KuHs+R_C6$1gCOBlsfti&zs!moG@t9ePyqR!)BIZoqkoI_rf@5nrP zIpCp@#4pr^!q#yy2~5+sF@u8`!MAt{=dlJC1J{r#!fJ` zT9lp;r*iou?^me1(4*E}>s{+Ek}FR_cE}pYJsb9>tcK)+ks){B)mYAXDG#08bLn$O z-52Ao_tEN)ccj|dQ)&B>-I2|ty;!92euLEOc5eDM6nHr`vAl#Ov5z$s)%9V7oqsuLQr_$A6hx7dJBXy7MC zvBj@c0B0}@XR#O;JU5X~)s8p5=k=$MN1apU;uVJ2K^hxbU)}LHnfQiP_<_}!!?rDK z!V%oTetg6@mgM|pX5s@x6#Hk9A$kKVa39R9$~CUzSE;I-AL~T QE&{2(pze47a};d+1tNn=_y7O^ 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 5fc12b7019..548055eaed 100644 --- a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po @@ -1,29 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: api.py:100 msgid "Unknown" -msgstr "" +msgstr "Неизвестно" #: apps.py:22 msgid "Django GPG" @@ -58,6 +55,7 @@ msgid "Length" msgstr "" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -150,8 +148,9 @@ msgid "Import keys from keyservers" msgstr "Импортировать ключи с серверов ключей " #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" -msgstr "" +msgstr "Подписи" #: settings.py:13 msgid "List of keyservers to be queried for unknown keys." @@ -159,9 +158,7 @@ msgstr "Список ключевых серверов для запроса н #: settings.py:19 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Домашний каталог, используемый для хранения ключей, а также файлов " -"конфигурации." +msgstr "Домашний каталог, используемый для хранения ключей, а также файлов конфигурации." #: settings.py:25 msgid "Path to the GPG binary." @@ -169,6 +166,7 @@ msgstr "" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -179,6 +177,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -197,6 +196,9 @@ msgstr "Удалить ключ." #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -204,7 +206,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Поиск" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.mo index 13ea267c5be64c13a25891b19901ddd478272865..6852ce84294e454e20bbfe3d09bce7b2d94eb719 100644 GIT binary patch delta 47 zcmeBU>0_DD%4?=;V61Cos92 DP5BPh delta 47 zcmeBU>0_DD%4@1?V5w_lqF`udWn?;W(x%BFj8XhPiFxUziRr0U3dK3`!Jd=XGA055 DP6rO{ diff --git a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.mo index 458adbb9f77ac57ba9e7d70cc5cf5c4de45cbae0..2fe1019677088860773dc82fa0ff280dbd70cec9 100644 GIT binary patch delta 619 zcmX}qze@sP9LMqJ^ej`0w4}@k2^tIp?>Zga!lgf;r70q!B%~iyw3H1(LxaQ-L`6$e zAw)O`HWY+ItMfCpK(Sy(Py63s)*N3weEQSiNA^k{EhMoG2W7HRohO+8X zst4E5jeF?BBKom}SvB4(F(F#gE@gN5;u&Zpafs$+++etA? zzl4&o;rQc>$B8Ei^E8rh6D464Wql1LU>)VcEgZ#9G&x^|y?+U(u#f%@2JjGN!8wNU z8s&m@lnXwhBzZ=e*F;J9ffDEo8*Q(v+ I?Hh0M7X;lz%>V!Z delta 597 zcmXZZPbh!UyuW&W?fZNEp6B=cp5O2DY&ZBGD7^*UM~W7qI;d}|hk9_( z(H5La`7w(wTty!iu@Os{!~^WdC)*$F9M$H<3rxzCC|v-?xyTx}}-c4rK+Lk#LCXHj18Lo^uGfvmy zTF!d)hOAq6Iv&^bVa+h3vB8AF*wl63WJ;ULZ4}lEE6dtwwwOyq4L!!(kUXcG3EilS Ldv;vbvv=SRaF;|o 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 a953f33ea5..dee110626f 100644 --- a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: api.py:100 @@ -57,6 +56,7 @@ msgid "Length" msgstr "" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -149,6 +149,7 @@ msgid "Import keys from keyservers" msgstr "Import keys from keyservers" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -166,6 +167,7 @@ msgstr "" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -176,6 +178,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -194,6 +197,9 @@ msgstr " Xóa khóa" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -201,7 +207,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "Tìm kiếm" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.mo index 9566430773aac7cc57d9b40bc78506148fd58a6c..366bee8b4ca366f03029c7586ed056e0c024e259 100644 GIT binary patch delta 614 zcmX}qO)mpM7{Kw_?Ut&d^%AX$AVf48-L-9`H!mN8L{icN5~4)hnmRO*a41<4iJmwS zw>EL;#o5(WR2;atxjOhiF)`Vh-#oLk&&+iC9X^YcUc0ReMH$rf2gj)|1`VZPD%FX* z=)*${Vj0`9f(v+s32bVEOr9i8V=Lxx4%d+>>K4gUQulP?3_PGL^o&FJjt&}@QZBma z$4zX(9Sq}v_6YezUF!E$?Tvnahdio5(}s_DZj_XIq7z~uM^;I&g%TIEMNAPN;}|w@ z0^e{10~}9In4n3bgL1-ElstKq0~K^!!G7W@CRkt9>C9piWoOaApQG4EJf)pS+29hg zwpu}%pT{oT*5gH#h07?nDAy!Keq||=BSMvH^uCN(}05VEPy57(6fl delta 589 zcmXZZO-lkn7{KvaU&>TU6Dc#oK#_`#by>r_NeM-P5kxEmCZXV^7nJJeDG2HkTZf=- zMs)TgbSVgeK0x=5Qm0P+AKJlZe)Bl9^UUmCMZY7R&r#ovq9ut*;)lo(ZyFtK*Q3-h z*3gTG7{oS)u!Bo@fwTDT`inE<86FzM3YKsinNqjNJ{@((K#D)26ne%f{6G`?Xkpr? zlpk#zz$!+t;d+8BRp;*frTf2w{8X222%qqp%k?l!eYL`F^57PR(ROX1LEgeNb}@^u zIE{Ujo5kpKOrqRu6=k1wl#AGIeu`t{XDDy#9t%4RUKq&9w7|b1jFZP*=THtMyGC_3{1 diff --git a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po index 7128530712..8b35a13aec 100644 --- a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: api.py:100 @@ -57,6 +56,7 @@ msgid "Length" msgstr "" #: apps.py:78 +#| msgid "Identifies" msgid "Identities" msgstr "" @@ -149,6 +149,7 @@ msgid "Import keys from keyservers" msgstr "从密钥服务器倒入密钥" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -166,6 +167,7 @@ msgstr "" #: views.py:38 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -176,6 +178,7 @@ msgstr "" #: views.py:57 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -194,6 +197,9 @@ msgstr "删除密钥" #: views.py:110 #, python-format +#| msgid "" +#| "u sure you wish to delete key: %s? If you try to delete a public that part" +#| " of a public/private pair the private key will be deleted well." msgid "" "Delete key %s? If you delete a public key that is part of a public/private " "pair the private key will be deleted as well." @@ -201,7 +207,7 @@ msgstr "" #: views.py:134 msgid "Search" -msgstr "" +msgstr "搜索" #: views.py:136 msgid "Query key server" diff --git a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.mo index e20adcf9a30878e8caa101b599c9f8baa7a90849..596114aaaabbf5c9624d420d4ecc59b6e36c44cf 100644 GIT binary patch delta 584 zcmZvXO-n*S6o!wbS<(m8DrzxA5d@d6W>%Lrk*gw#pcZW+auz}=bnRm&hDNn((V|6* zf)LFzDFmZG&_6h{>4Sbp&^vyhL<5h{nK?7>JzhG$-HG>J=LKPPfI$!fT_6wi`UC^u z3%J1#Xa_C_Q6Jn5JK-U?2Oh2Mr(m5k3x9wGFpm9LE0G7@fP0A&BvB0G;1Je9S8zXk z19!r&wf!563~B>P#JpN^vUCNU0OP z(`THmjNZ6Jy4%=thI7QX>X@HVUN@!bj^I2O)EO5zTm4^r&yOl8tbamOnxBySfCp*f NG8eg2ndHy6egTC#zPtbc delta 124 zcmaFNK9j}bo)F7a1|VPrVi_P-0b*t#)&XJ=umIxwKuJp=4N?OGlRX)IO-*$TEOm`c z6b#L*jDTzt0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPpqvFroq>s!fzjsEjPZ;B6YmuI 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 63f745c84e..15ecac7a7b 100644 --- a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,39 +9,40 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Date" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "مستخدم" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "تعليق" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -55,7 +56,7 @@ msgstr "" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "التعليقات" #: models.py:23 msgid "Document" @@ -67,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "إنشاء تعليقات جديدة" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "حذف التعليقات" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "عرض التعليقات" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "إضافة تعليق على الوثيقة: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.mo index 7e75c3c0b8f8009c3e63ccf97e94ba4af69d2a56..c296fd1a4e40ebcc983b4f8ceb5e2561499f411f 100644 GIT binary patch literal 998 zcmZva%}*0S7{*5hKQ{3r=uKlr6BRVWZVN$N>_NT~jE$sL?%VFLtZ8?enJI;n1aDrr zU}C%&uf_u+4GmxZ3$s@bM*k2KpDAD!oaC9`%)9UNzVkNy-qZDlV4Z`mK_PS=`UKha z1G)8+By%x73eWEhWodZgj@ozpCY6Obin~| z6ts2c!Mor~@Cx`5ybXQ@QG%R?>|1TFeUDuzNxIvo&Su{P3n7ofkd{TY$`ehsprI(& z?b)Zd6dBu(9})q{1I=l|8;2f6#t|Xoyu$I}ppYWZ6_;ct{yT44iWj`B*;L48xKy!7 ze3}mygM?0u=bt$RUK3KYyo%zGjn*T@io&PP^wT11cSSz4t$dpGGDFN8VA%}K4Ecit z%p3GPB(egZk8R!KdD)EbJ-Fv#IZpzmSy2Xwssvg{pB6-kOH5u6Dv+^2LK4-3h_fOO zsy-d9S0cpm%-%VzYrg9?8jXH!3&gX0p&ui=a^EW5s-1`Nu&Uh3K^eCcxqVK4DnHQ~ zJJatuV9&~B{~#K{OP&jnI(oqJxKWW$|2+i{jlHj$J?7$=cWhfA^k z^IV^nB4@f%mqCS13RzV?O=|6{%4J9B{xR2^&>K0L=^Jr~Sv7m+vsp9i>5ADkO^R)e znk__kOw;V9%VsTILLhx@cBt7vd@Fr*_|2#G4`SZ^n|&-`TEu)nflc_)3F>s(g?HVw zj`2C0F8$)1e9rlz_EmbykJ z3WjD@MnJZSfdN;5ziv=!S!Qu&ex9yNVo9o%f{}qCP|gCR&cMXVz-aSnMt(*B5jqr% 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 8968e4b9a3..ec2038c2c7 100644 --- a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,38 +9,40 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Дата" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "Потребител" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Коментар" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +56,7 @@ msgstr "" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Коментари" #: models.py:23 msgid "Document" @@ -66,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Създаване на нови коментари" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Изтриване на коментари" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Преглед на коментари" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Добавяне на коментар към документ: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.mo index 8078b3b360ccde88bc6557398f03f3bd51407484..44355b3e2236ab702a2ebda54bfca917f20fbbe9 100644 GIT binary patch delta 523 zcmYk0F-rqM5QQh27!_1htQ1)Uu{yX*V${P%a+N_61g$-Di>yg*VfS)^AgQgy!XJ=U zEVQ+-^KXd$2|K|zCNUX!e7igQX5Mr5E#LiE%03Wk23mt6XbyUUxIUp(=nKk2KhQLk z%MdMt^I#U-02jcm!F>nhIs4!@bO^2EelXehpMlufC56KZ8Wzlfx8Ndp2lApG$cr99 z%%CZV!*Y)UaZNz%9WM?A3pPfPXy|rZ#)(L@h;*aFXJ2eus#N<8s`QB$Bf~_BSY8cH zmIAy`AX^fR!6Zv3RvJ20WB=}VkG9K>TXYJZ@XCIv=(r`h($ delta 124 zcmdnTzJbN!o)F7a1|VPrVi_P-0b*t#)&XJ=umIw3KuJp=4N?OGlRX)IO-*$TEOm`c z6b#L*jDTzt0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPpqvFroq>s!fzjsEjAe`f6r2?r 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 33ba22e69a..9f1d3057c8 100644 --- a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,39 +9,40 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Datum" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "Korisnik" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Komentar" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -55,7 +56,7 @@ msgstr "" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Komentari" #: models.py:23 msgid "Document" @@ -67,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Kreiraj novi komentar" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Obriši komentare" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Pregledaj komentare" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Dodaj komentar za dokument: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.mo index d78de654339fba843060fe5bc5942d24ca88c210..adc78cf48ef2c06aaccb7773d456074ed76a395b 100644 GIT binary patch delta 521 zcmY+8%}T>S6oqeXTL0UkxYET?P!|$N(poiiqv=YKidFZa86`GNWRfc4qA%dag>T`; zowyZz05|SLUqcW))1<}@ocU(%y>sTgX5aGtk2&R@uqL4;$bn{|2S~0@Xc78?#-Sf* z0?K8G=D`A}fMu`lQ2NxtTWA+5Kir{v{ zna{6=k3wpoLJjV5G!mzfjzcc!#QisSx4FMwQ?-g}=uEGf)rzWBHErsksUGr6H*^DE zl};uzG<`T{=%%*y_&k%jIdZ+zm#1^qiIdoZMXramoiuF{))w@4LWbsr;1Tn$dHNJp T{1i|Nkw>aKqIZU7YjpM(qoHt8 delta 124 zcmcb_c8uBLo)F7a1|VPrVi_P-0b*t#)&XJ=umIv7prj>`2C0F8$)1e9rlz_EmbykJ z3WjD@MnJZSfdN;5ziv=!S!Qu&ex9yNVo9o%f{}qCP|gCR&cMXVz-aSnMjl201fmpf diff --git a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po index 9bd8852559..f260bbcb70 100644 --- a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,38 +9,40 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Dato" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "Bruger" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Kommentar" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +56,7 @@ msgstr "" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Kommentarer" #: models.py:23 msgid "Document" @@ -66,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Opret nye kommentarer" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Slet kommentarer" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Se kommentarer" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Tilføj kommentar til dokument: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.mo index 6cf9a4ac33b65f4a868920238d50838671511dd0..129ae9b2e8b51ca9d93a9ec63452ec83904f6c21 100644 GIT binary patch delta 66 zcmbQmJ&St-2eYY}u7RylWKYNcRgU>OQ5Jdn0 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 4e00f386fc..55f5d33e00 100644 --- a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -10,17 +10,17 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-08 23:05+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "Kommentare" @@ -38,10 +38,12 @@ msgid "Comment" msgstr "Kommentar" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "Kommentar erstellt" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Kommentar gelöscht" @@ -84,6 +86,7 @@ msgstr "Kommentar zu Dokument %s hinzufügen" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Kommentar %s löschen?" diff --git a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.mo index d4ee115eed684f3e7efdac1d086010d62b8519c9..b3005071b7e0ec8b34076a7652699faefb9c542e 100644 GIT binary patch delta 26 hcmaFP`kZxx42eYY}u7R2eYZEu7Rblk%@w#nUxWcZDL@+72vNMlvylWKYNcRgU{yhq|eVR@3-0hcB<1=qNPxDNdJD>3j>>GojE6Rdej2z*G5Cr9#Q|7F|9p9!o-7A{BJ|kt-HqCmyo{~D;EAiPBzJV!r0)^@8X&86? z$gH%Jm?g)&VPq$=V|zoVQbZ{K%$3HQ7eP=^?ta9JYoGqFQQGwc`2s z75(~7t*Mo`LDf>cpf`2C0F8$-fzWO-*$TEOm`c z6b#L*jDTzt0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPpqvFroq>s!fzjq#CN@R@5p)!f 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 895e47c853..0c62aec8ac 100644 --- a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,87 +9,90 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "تاریخ" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "کاربر" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "شرح" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" #: links.py:13 msgid "Add comment" -msgstr "" +msgstr "اضافه کردن توضیحات" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "حذف" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "توضیحات" #: models.py:23 msgid "Document" -msgstr "" +msgstr "سند" #: models.py:33 msgid "Date time submitted" -msgstr "" +msgstr "تاریخ و زمان ارسال" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "ایجاد توضیحات " #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "حذف توضیحات" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "بازبینی توضیحات" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "اضافه کردن توضیحات به سند: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" #: views.py:122 #, python-format msgid "Comments for document: %s" -msgstr "" +msgstr "توضیحات سند %s" #~ msgid "Comment \"%s\" deleted successfully." #~ msgstr "Comment \"%s\" deleted successfully." diff --git a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.mo index d5d43094008827acd75be21a82492c48b924793e..b56d74096b1ca17771cd015a15f405a4a734d8f7 100644 GIT binary patch literal 1528 zcmZ{jOK%iM5XT2X;;=XgaioYxfC>_dQPle|7IMbeVEm9QvBI*~oVbiMKM+qa_Vsc8 z;~?8lf;Yfv@Cw)hIUfyP2Y10=!B-&X_ZH-H|AJia5r}lkT7Xh2c(V@{&iO0o_fVuf z5YB}K$II_{9^`s2LRmNl{|o+REL_uPvXCSc>nxMG3x>wzG$lIrydKgm8!Yy0dK@fR zYHKrMYGmXj<#MO**#=8kDPQDNCdvA(OgSf$U`eKuw@UQwIpY11HTdY|GZ^&EDJ~-w!Ke&#%U zlHG|Y%T5isI^V) zcBQ%6Tt4|MjcUEJsB?$z5UsreH9NWMYDF5Ue3s&FWUO>^o2?Zwb7IF4+tP^TJl2WI zJ0Z<%DL2S9q_(N7rQSrTSkWf4A>~CmwR2OmbUd7!%xRt)w`VKC!nXEK8uEGncSp*| zFDz5!2Te-D4PBn;H8qb1ja^Qt(B4ogN6z*`C+KqRpUcSa4(Bl3?$S|LdIJyWdhIi1 zxdDO=Ula&-GRCba1L1G*o#W_bo^=1%w%kvo9f{Mw5`2C0F8$-9|+O-*$TEOm`c z6b#L*jDTzt0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPpqvFroq>s!fzf1JW^w+Y{G`;P Sl6-}r{Nlu-%>2o1%ufLU7#vgp 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 24a715a601..07e60ea447 100644 --- a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po @@ -1,95 +1,99 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"Last-Translator: Thierry Schott \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" -msgstr "" +msgstr "Commentaires du document" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Date" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "Utilisateur" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Commentaire" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" -msgstr "" +msgstr "Commentaire de document créé" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" -msgstr "" +msgstr "Commentaire de document supprimé" #: links.py:13 msgid "Add comment" -msgstr "" +msgstr "Ajouter un commentaire" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Suppression" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Commentaires" #: models.py:23 msgid "Document" -msgstr "" +msgstr "Document" #: models.py:33 msgid "Date time submitted" -msgstr "" +msgstr "Date et heure de soumission" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Ajouter de nouveaux commentaires" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Supprimer des commentaires" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Afficher les commentaires" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Ajouter un commentaire au document : %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" -msgstr "" +msgstr "Supprimer le commentaire : %s ?" #: views.py:122 #, python-format msgid "Comments for document: %s" -msgstr "" +msgstr "Commentaires pour le document : %s" #~ msgid "Comment \"%s\" deleted successfully." #~ msgstr "Comment \"%s\" deleted successfully." diff --git a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.mo index 7fad2d578d24a4d37ff6f27d452669a38faac7e6..6e5379531c87a469c91968ed54e208cfae28c0e1 100644 GIT binary patch delta 524 zcmY+8ze_?<6vvNg7DfoVLYoLKm+@I$rxt~z={te9#^@-v{D`;e)>R}727BQii zjYgZ5A<_k+&o~u=mYl?zyOnn8z z)OUwZ=~%zY%{Di$g786#^OvDg7B%dLWjoQbJ*VXbd73fKp1DKeU0c8sgaa9bBO5~h jufh)>yS7TE1GZZ=8MxuV4o9%%X2*oXO`kiK>qp*S$kmDU delta 124 zcmcc4c9PlRo)F7a1|VPrVi_P-0b*t#)&XJ=umIwIprj>`2C0F8$vTX_rlz_EmbykJ z3WjD@MnJZSfdN;5ziv=!S!Qu&ex9yNVo9o%f{}qCP|gCR&cMXVz-aS2Mt(*B0s$04 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 e68087f9d7..8676cc5012 100644 --- a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,17 +9,17 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -29,18 +29,20 @@ msgstr "" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "Felhasználó" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Megjegyzés" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +56,7 @@ msgstr "" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Megjegyzések" #: models.py:23 msgid "Document" @@ -66,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Új hozzászólás" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "hozzászólás törlése" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "hozzászólás megtekintése" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Megjegyzés fűzése a %s dokumentumhoz." #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.mo index b0cb3ead9e015e62babfe030a38fcf484f45fc9f..b5bfd074d7497fdd149260bbab73a11cc11cf07d 100644 GIT binary patch delta 515 zcmZXOKT88a5XC1ZMvX`?7J>?HBUUSWNep_OnnKWE5VW${B|j{t@0G$mA!flExB&Cu0q7WlRqzUCz$ehN zUtkIRfHElMhzigZ=mK;ddJ8yUsGp|BzBlM1>JKRPru2A(u2J;!0)U@%aA%;JDKK{wI4%{C%B8262$5h@ug=5MJRV~VJ$E)|-S zB@vxPDx`Dw&&b_QYrDZkjaMyZHSBtgi@Fe{_6a{#*KXtnK5t^L&8osOb5+Y0yN}Ov zxwNHxIq1kf^8$UD44J2Jr>E~6oq06rlS#Olr2Rz3nJ;Uzjtmnzlvhdg|B>3t@AVR2 O(y`lzyJD7QcKQWh&v`2C0F8$vTX_rlz_EmbykJ z3WjD@MnJZSfdN;5ziv=!S!Qu&ex9yNVo9o%f{}qCP|gCR&cMXVz-aS2MovZm_0$w0 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 0265c1a058..2322ab7902 100644 --- a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,17 +9,17 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -29,18 +29,20 @@ msgstr "" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "Pengguna" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Komentar" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +56,7 @@ msgstr "" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Komentar-komentar" #: models.py:23 msgid "Document" @@ -66,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Buat komentar-komentar baru" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Hapus komentar-komentar" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Lihat komentar-komentar" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Menambah komentar ke dokumen: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.mo index 84a11fd0fa8f43b9d6dbd5f028b86076284966e8..5eeb7ecc1459529a2fe8af915f32b72a08aebb1e 100644 GIT binary patch literal 1051 zcmZXSKW`H;7{(103IT))6N14=Ahkm7UDB#5S7j(kD^((*3TY)4Bsb??U0v+R_BCzi zu8fsfU}E3{u(I?MFtH#pF)}mryv?7hsHOLQzSoca*na)%{?sW$yNh^?I6=%H{vfEu zR~WkuR>4PL9h?T=f;T}4J_Pr{2jB@f1%3c;fFHqo;AfEZUq|ELK=M2T-y^;w$oJhf z#-4(Gko2eEE$|aaK3_ocIRnY(2S~b~AkF^`lKwA9{v;y(Gzg1x&#S{UzQegh(pC_6 z5OiKzgBq4$*AaB)^R}9%ylZcU{F!Hsk!Hk6!t-70{*yW-gW^UF z#w&Z)M20n0t|quJHu7OxUOBd{FV5R^c3*Xa*hs~;a$Z}L@RmH1hOaeSZz^row=Rg5 z&vYtY7MT|voAAo!>yBv9E}$1=o$y**T@vwvs8xA&DOp?)@nRf9DB9{k)4G>+wQ3T- zcpjrwUP&KB$4TRJ8LUfq+wLfbJ8D}mowg8|tdN-!9VL4S-v~0-*yQY92>m3A27|$T zpy_&79nRyvBR8Drq8^<_sI=#!e6&cULo`=uZM4?PLs#eHO2e9fdWgRX+4v0UoNaaTF9X1X@jCQJD8jt-N}CLBMTdEsO()~)OLgq!~Pudmlu z_^?}_HT+4PSLaqLY&FYtVKP0goh>tkp(J)^xy&c;0mUfajvYTD&CA|pG3v%mVGnHS kf)YyBkfy8hyzGp}HEWJukY!tRK?;w^7pTDTu`EUZ04kgi+W-In delta 102 zcmbQuah%!Wo)F7a1|VPrVi_P-0b*t#)&XJ=umIv-prj>`2C0F8$>$k;c};Z{a7fXB7%yHppYn&-K4d&8v?dXDuJdgF>Sq*N%l0^WOpXaOp^A( zTd%$G+86OzdpWsPvCzK-UB~@Pr)|m z`hA)Ezk(02{|2Je)Leg;Xo6*KP4>!UPfxJoM z#MQkXS1Lx~_S+EV9|&W4OABdIVU>=B#x@{iMz7AfCXIy3MMr(07gmDy}r$w~II!ixE_?;Q;@(gW1OM9^4Kmn0MTJO3LF zA@pKC+;T_AObie|M*MuPoFD&rlJsLY3X9eCpz2~~K2Teak^!Q3X^`{>%a#5Dz?k*{ delta 102 zcmZ3)ev{eao)F7a1|VPrVi_P-0b*t#)&XJ=umIxuKuJp=4N?OGlT#Rdc};ZY}T7{?bVFE#I_Dn(G~kx;5cXyaWcs=_92C`l?+)T&jS_5z2gcj8REJ7dj^ z*~F?iASylqAnsf$Aq0YB5eJfQzyU4@xF8|%9r!)=n|)8OymGvHs~Yv8}&E8wZeQNi;dk1v2vf$?O# z0=|gxb&%J80GebcbwD zXwC&26Q2nygQFc|A91x(cu86o$B|vI2}{|KSGgoNypt>MWg2YCO!8ETV}H)L{)i1R zCVHyQu{(9kj0iUIs3y`f?8yliY&&U#TWVHg+nPPu_2IQNyd|wuMkmw~2SU@V%TWZ!@TUAo zaom%BjW~(kek($$T^G)W9V@iUgf}*!+h(t;WOtWt3)>xuzA0Q^(OR)s%#7dZqUZ2xNAB~2x;0K%Wo$j?-G(yFT|Jw` zs1LIGLalYJwKYAIcrmJN813;k!p^|}JN9zl!&4}|O5I&yo%GG^&ed>b>c<&(qz$)p z*Q84K5?Z;Ve5Ey^K~`&LLo2fIs@rCa%vHH&-nV~>mQcS z|Gmn)>d9c*J-MJ${PKexkv7Fl;PMv`{2vHXgu8S!624H{~|qnz$P*gkr2;PL9T S>IZE*lD+Kk-a{uSgZ}|5aFu-k delta 144 zcmey)-N0gTPl#nI0}wC*u?!Ha05LNV>i{tbSOD=cprj>`2C0F8$-9|+O-*$TEOm`c z6b#L*jDTzt0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPpqvFroq>s!fzf1JW^w+Y{G`;P Tl6-}r{Nlu-%>2zQ%nFPE4euMI 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 2509373bc3..fadb1477ae 100644 --- a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po @@ -1,96 +1,99 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"Last-Translator: Wojciech Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" -msgstr "" +msgstr "Komentarze dokumentu" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Data" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "Użytkownik" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Komentarz" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" -msgstr "" +msgstr "Dokument został skomentowany" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" -msgstr "" +msgstr "Komentarz do dokumentu został usunięty" #: links.py:13 msgid "Add comment" -msgstr "" +msgstr "Dodaj komentarz" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Usuń" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Komentarze" #: models.py:23 msgid "Document" -msgstr "" +msgstr "Dokument" #: models.py:33 msgid "Date time submitted" -msgstr "" +msgstr "Data i czas zatwierdzenia" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Twórz nowe komentarze" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Usuwaj komentarze" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Przeglądaj komentarze" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Dodanie komentarza do dokumentu: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" -msgstr "" +msgstr "Usunąć komentarz: %s?" #: views.py:122 #, python-format msgid "Comments for document: %s" -msgstr "" +msgstr "Komentarze do dokumentu: %s" #~ msgid "Comment \"%s\" deleted successfully." #~ msgstr "Comment \"%s\" deleted successfully." 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 e5cc9e833b3925948ce130aeed422ea640246f9b..2a20bc128377cb069be6b282efe092780de37600 100644 GIT binary patch literal 906 zcmZXS-EPw`7={guzrY0IM*@M6IT+eBxkgEQ`fYXGi**X_Cvu=MKrVt;>jz8`m%z7VVcdJN^zGV~4d>nHRG`UPEumM;); z4ZIKD1)qRRU<14YJ_m1sFHiU1fj-|p_!;8RGkpKPNXQNF;Uz+Df-B$yumSpfZ$MwC z2i^lefWAis-UcTiQcY|6zOF;w-!G&lm#5Y&#+yDTLI`=4Wi-`AA(W#|(@dw8w`00u z$%7TP)gOjXJGw#hV)}+KeJNvc5Qx zKJWj2jd~otSdXxRx7<3G7_My2oi;J;>qBAi0DWz_ks1zaSn;7?iQq*{d+4efR>BIp zdhA>ohv8^6syUxQ9*J=cZy1_ctO*N$AttiIhWTlpuyo;C(B12H7Wb~#qF_fWhxca5 zq{OA17`w2{xl~P>9&=-bYYmcJw!QH46_12r9hK@#s$opG52ZWnH>RZvdU<7d&UUpa zY)n--{j{w{lg`Z6s-jO@w7%91FaR>eYjNX$8#?*^71yVHF$#G9*(}Tt{XEQVKNAwM nN}p(ZKEre{IO*iFkVsBC<20}2Uqvh#IGM{&JkyvG@z2>Gkks-8 delta 102 zcmeBTKgDcuPl#nI0}wC*u?!Ha05LNV>i{tbSOD<^prj>`2C0F8$q9_Uyr#MambykJ e3WjD@My8W@F-n6(EI=X#CRPSUn;$U>FaiKq)D8gv 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 bbed049b0e..8273ab7abc 100644 --- a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,38 +9,40 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Data" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "Utilizador" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Comentário" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -50,11 +52,11 @@ msgstr "" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Comentários" #: models.py:23 msgid "Document" @@ -66,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Criar novos comentários" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Excluir comentários" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Ver comentários" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Adicionar comentário ao documento: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.mo index 8d74625a4fa43edb10171de90d1fc6f1d0c1ab8c..d90738ce13c08cd51c6f22a1262855392bb7ec30 100644 GIT binary patch literal 1157 zcmZvaJ#W-77{>#YxA0c+B7s223#cdLOYT}#B~_7V@2XbniPQDk6}gFfH6(GconFhx z%*q5p;v2xgCtzY@WI_xqEJ*Af_&b-o9tBHJezx;}UTi<#E>FC2FfPJw!Cu0yzz$$` ztQ>QkbKoj?6Wjn#gU`S-;68W*d;wa&H{b;LzFdC1Uh>VAS3z+d27 z*a7Ss)~`=E&Ry^WX!Cys&x1d}+u(2TIyi|SHckZ}>sJMBeGTv`xCWjD8EEr91t&oR zBGqUd$IRwA39~wTA2uIkMLeJw_AE$U)NJFr#V$S%qlknuNqB0;=fp@7$uPJ30lA}{ zrBYLJw4uqiR7a$WGs8*B`@_iEX<(=L5F-*!biS1cV|e5=c+Bmu0%Q6zx3i(SayG?y zthSO*cxdQqL^rw8LZ$&}v3-`3W}~(4c6cV0p)K7L5narCns#MC-1eg`U9y!yPi;8? zsr$8A>QB>pjnrm?nQ7|J_&$WR!*_*^`>(EE3;g@{d<=JuX+yh;r8;Its(^Il7FW2p zj?_#E2|?P+S&!2$XGuWXs4DN}TyrwDsMvE6SIE?kF@1JW8||mjS)ZJYMX06}Pq8Y98J}t?Ii=GBtQI+TG7^K*RTpm&Ht^^CaA1N^`TY z(Osr7bIhfjashsQvwN7xhwT} r+M@B8Z9GOeS&{HtN9%DTBIY#r!Z;Ud$RmDb14?vYJ~#rJ?QhK=`gu2+ delta 124 zcmZqWyuoa7Pl#nI0}wC*u?!Ha05LNV>i{tbSOD=nprj>`2C0F8$-fzWO-*$TEOm`c z6b#L*jDTzt0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPpqvFroq>s!fzjq#COJj`89Wrf 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 6c6ff3d16a..2ded9e72c7 100644 --- a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,87 +9,90 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Data" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "Usuário" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Comentário" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" #: links.py:13 msgid "Add comment" -msgstr "" +msgstr "Adicionar comentário" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Excluir" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Comentários" #: models.py:23 msgid "Document" -msgstr "" +msgstr "Documento" #: models.py:33 msgid "Date time submitted" -msgstr "" +msgstr "Data e Hora Submetida" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Criar novos comentários" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Excluir comentários" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Ver comentários" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Adicionar comentário ao documento: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" #: views.py:122 #, python-format msgid "Comments for document: %s" -msgstr "" +msgstr "Comentário para documento: %s" #~ msgid "Comment \"%s\" deleted successfully." #~ msgstr "Comment \"%s\" deleted successfully." diff --git a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.mo index 51ab8003ace658f6d8e3e2d54c29b160ba979d8e..61a5e14e437d13d6e4d7fcfd6ca043592dde99b5 100644 GIT binary patch delta 535 zcmY+9O-sW-5Qe9kT3b-Dq8B|Zh2klYq#tVVU}-_Hh$84cHcMDY6Uc``L4tVk>Om0w z3tqf>7VNJO{UL(yCauwhC(rE8&g|q`c`PL#Rpp+r%3uT7U;#V>xjw-<_yQ&H4dy|y zK(qoc!U|l2m*CCGehZd;cHwt$0BYD*XNf9sD|1472-a}Whh?L4colZC3v>l9V}A>y z2h9OFtQwWg+3j*rw6ej!5Pd#dbY zGDFj+_YB?Cc3xih3rWYeV(0BfK7i@0K*Y?o@@eY~v;C&>P^1%&pG00LnCA;Qv_<2G bhzAb;pQbnxt{7R7k00Qptg@WGDO^rJY0q}* delta 124 zcmbQm-pFEcPl#nI0}wC*u?!Ha05LNV>i{tbSOD>Hprj>`2C0F8$)1e9rlz_EmbykJ z3WjD@MnJZSfdN;5ziv=!S!Qu&ex9yNVo9o%f{}qCP|gCR&cMXVz-aSnMt4R4-5eBY 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 dadd6e659e..c73fe3c4f9 100644 --- a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,39 +9,40 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Data" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "utilizator" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Comentariu" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -55,7 +56,7 @@ msgstr "" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Comentarii" #: models.py:23 msgid "Document" @@ -67,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Creați comentarii noi" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Ștergeți comentarii" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Vezi comentariile" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Adaugă comentariu la document:% s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.mo index e1b8e158f2c975a702a276d7663035114b3b8230..abf1caa75a18dc8e5d2f71e4304abba7e402678a 100644 GIT binary patch delta 675 zcmaKnOG^S#7=}MfyU_)TE>Md@AkkuA9J>x}!d68TLG4RtA*6z1wY1AJH-QnfiKu0Z zQ5rH$f5UhB0Z~7qWzc&@r6B1H?>y&xm-jnI`aip}Z-f3z!s>=5pcvE#JwR%`L*vi~ z)Cqk-T~NSBGz9j8esB^T0H+$~c~JQ*fun6itKc%ud+kIc;C-E0s$iod@Cqv9cDMz> zUT_RFz-e#|ga>s%>awa* zJwcH=5lLIS8A~Lsqh^y$D~QmFwQnKOaI$IJw$ii{|5bOfus%Dd>0!+XiO`%m6V~(@ zUGLf4(6+3@xE)U=HRWUqLk~6UjF71>7Rpz?Ea$n#1$MZ|C3z}yg3AcJ;B&buPuY>j zT;gZJRdxhFB3G7Y&8+trzHZe(EyE?^TU0;6$nmCS;alUPJZHD{WOU?JEjz?_s*NlE mT@>XvFs#TNhQQcsb=4UOJf$X2aQPZ$AA9qL|2);@B7FlSxC8?L delta 124 zcmey$agoL1o)F7a1|VPrVi_P-0b*t#)&XJ=umEClCI$veAPrIj1Cu=&eN9bu4J>ty zOcV^wtc-wc69WUT0Ds+})UwRt%=|oEm&B4(D+MD1L!g`mNS%R+m4VUb(~Q#@0r#yG Awg3PC 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 ad79d251b1..611ae6b81a 100644 --- a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,40 +9,40 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Дата" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "Пользователь" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Комментарий" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -56,7 +56,7 @@ msgstr "" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Комментарии" #: models.py:23 msgid "Document" @@ -68,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Создать новые комментарии" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Удалить комментарии" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Просмотр комментариев" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Добавить комментарий на документ: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.mo index 13ea267c5be64c13a25891b19901ddd478272865..90199a127162a6a81c099a251e01b9cb8db4a4c8 100644 GIT binary patch delta 459 zcmY+8ze>YU6vj_AR*8sc2Ngx`;uuKM8Z?`jMT=OZxX0!oH*IqvNh`SY1w?T00el2E zb@vT)Q%5&nz{&5njn)Id`;ln9S>j~JObVG3g*B& zsDMwf2)@ArFiS))U=`?nUsI!ga~d_=E6^3_CKU4n@{laSID}$m7zWN6PzL%@l>P;F z675BiXsK?OlU(FVM5@)(xi7Xd+8_Ca!bmyHStNW>%w!aBhu2_^mt=G*C(1WFN86rd zS1s2Oj_22^mR+-LvvF*la9?IpC02lyzHn`)=yM(4-o1ZnmQi{tbSOD=Aprj>`2C0F8$>NN@yr#MambykJ d3WjD@My8Vs8KprY79bG=6DtFw%`+K87y(}R4a5Kd 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 ee6f768f89..6cac744891 100644 --- a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,18 +9,17 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -35,13 +34,15 @@ msgstr "" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Komentar" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -55,7 +56,7 @@ msgstr "" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Komentarji" #: models.py:23 msgid "Document" @@ -67,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Kreiraj nove komentarje" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Izbriši komentarje" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Poglej komentarje" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Dodaj komentar datotekei: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.mo index 52967eeb528ca2933b243f65b70349a9a2e78506..c73091b9f8707bea4f9e6f1445020641fe6cc9c7 100644 GIT binary patch delta 539 zcmY+8J4?e*6vt2P!$)Zq9SZ7jQHoO_X=~N!BJHI3pj7Evl1me45@=GzsiU)liz3uj z6ci`hG2ka~7Blz(`~ZUg+XuE6e)o6oIrkjSNBAe!`kaqk6V5bP20BQ9MBQv?IyFcBU2Pt$=OsBSWfZ35)m&DRbFw^hd?c0l zndzF2Es04g%gD;`Uq(^ot(VSXs8u%n2a9Qj-(jBNKWPSHhk1V6WOXy>UN-v+|JSK7 s5|@L{y))Kr1>IYd4r_ks!fzjsEj8cpM9{3cu 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 b896949594..69515ee80b 100644 --- a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,38 +9,40 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Ngày" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "Người dùng" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "Chú thích" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +56,7 @@ msgstr "" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "Chú thích" #: models.py:23 msgid "Document" @@ -66,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "Tạo chú thích mới" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "Xóa chú thích" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "Xem chú thích" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "Thêm chú thích cho tài liệu: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.mo index 1ecf84b872a29feafe7879c5ad75f63772f29d9d..ed36c0cf81c3f5cac3ae075116f3b0f95456626c 100644 GIT binary patch delta 492 zcmX@dyqB&1o)F7a1|Z-BVi_P#0b*VtUIWA+@BoOVf%qX1vjg#8Am#vKRz?N}VIa*1 zq*;Kp5|HKx(&|vYIgkdKV*{k80I?SkO9A=!nHU(@fb=g2UC+SC%)r0{6yN~TAPG?@ zUk1w8gz^o5G|&vN8jxc_jsQ6b1b}8Su!30#0^}&576t~#loW;J{M_8syb^_ye1(+! z6H`tW1n`4NMFSxB~ojgHp>fi!<}{bU`LrDHs_T!qgcVS{Ybw z+$F*o_iX#_r(FwPtZ#X-Zr9U}4bP^vKU=u?{hnDsS3(3~)U#9aZW e8J>15csX+kRP6bb70)`hGd!EW^!c1_s2Bj;bbsRj delta 124 zcmdnXc8=NNo)F7a1|VPrVi_P-0b*t#)&XJ=umIvIKuJp=4N?OGlRX)IO-*$TEOm`c z6b#L*jDTzt0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPpqvFroq>s!fzjsEj3SHx0PYlV diff --git a/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po index 0724bbb034..eb9989fdcd 100644 --- a/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,38 +9,40 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "日期" #: apps.py:43 models.py:27 msgid "User" -msgstr "" +msgstr "用户" #. Translators: Comment here is a noun and refers to the actual text stored #: apps.py:46 models.py:30 models.py:72 views.py:25 msgid "Comment" -msgstr "" +msgstr "评论" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -54,7 +56,7 @@ msgstr "" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" -msgstr "" +msgstr "评论" #: models.py:23 msgid "Document" @@ -66,23 +68,24 @@ msgstr "" #: permissions.py:10 msgid "Create new comments" -msgstr "" +msgstr "新建评论" #: permissions.py:13 msgid "Delete comments" -msgstr "" +msgstr "删除评论" #: permissions.py:16 msgid "View comments" -msgstr "" +msgstr "查看评论" #: views.py:47 #, python-format msgid "Add comment to document: %s" -msgstr "" +msgstr "添加评论到文档:%s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.mo index 995b4636b7d096df5a326087220e714a18d9cdec..df924d8386453c5f48e9b609d56f1eccb9aab74e 100644 GIT binary patch delta 610 zcmYk&PbkA-9LMoz`~Cd4nMI>fE-tj%Sjtj%@FxzO+t*no#vf;T7) z?(mu6k0^nzxs*Ug=}(|xlt5P~fgVr-y`v0nWojkHQTp|wpZRKx10R)QBavFfDokS% zH&6oI7VjTX8oVKS3NOcuLRA;7Eh>LZN?wGA`Kth@8kP}dlT^PYgMW+ug%^+C(vh39r)t{PQb$mv9z*Ytfh7?=x?r+|9UIcS|2JGxQC~J7jNw5eBDblEg-j1?(?umQrOQnK> z7J{&tHbv5fRCZeD4+tsJDM=uOm0%|+{621_7FIsoGoN8^cIG#G+4Q%0{iHR0pr{u5 z1^tD7O7|rgs2zNbyZ8!!;5=rNN_FBEKF3ce?;T?Se_}f}rfBTK9vsAOoWhJ!>uQ@x zEf4mvh#xVFzfd+f$5RfiNykC{J&J?$*Tg|Wlpw!Rg8WAbl4W-ZVx#Ocj}l}PCCEN@ zbG|xa!cYBSkRWGR#0!)lIUdReZ;%|SnSM-j!RxALl&>fCgs!8>c%#U4T}_MtJ?Ejvuc9qYjQDqndyj%skSLyH4BU7>8jCw z#WlLLWSF};2umds1hZkeywTJO!W7kCxl8sp4@cI*NE8?l^WZRZP4?r<_ak-YaBy$^qdjt`z$x$_y- E72g${E&u=k 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 64e38fd18b..200861d290 100644 --- a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -10,26 +10,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "لا شيء" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -72,7 +71,7 @@ msgstr "" #: links.py:35 links.py:64 msgid "Edit" -msgstr "" +msgstr "تحرير" #: links.py:40 links.py:68 msgid "Delete" @@ -102,13 +101,14 @@ msgid "" msgstr "" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" +msgid "" "Causes this index to be visible and updated when document data changes." +msgstr "Causes this index to be visible and updated when document data changes." #: models.py:82 models.py:109 msgid "Index" @@ -138,11 +138,9 @@ msgstr "Causes this node to be visible and updated when document data changes." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes." #: models.py:134 msgid "Link documents" @@ -166,11 +164,11 @@ msgstr "" #: models.py:156 msgid "Value" -msgstr "" +msgstr "قيمة" #: models.py:159 msgid "Documents" -msgstr "" +msgstr "الوثائق" #: models.py:204 msgid "Index node instance" @@ -214,6 +212,7 @@ msgstr "Rebuild document indexes" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -251,10 +250,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Are you sure you with to delete the index template node: %s?" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Are you sure you with to delete the index template node: %s?" +msgstr "" #: views.py:286 #, python-format @@ -283,6 +281,9 @@ msgstr "" msgid "Index rebuild queued successfully." msgstr "" +#~ msgid "Index list" +#~ msgstr "index list" + #~ msgid "Configure document indexes" #~ msgstr "Configure document indexes" @@ -328,6 +329,9 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" +#~ msgid "Are you sure you with to delete the index template node: %s?" +#~ msgstr "Are you sure you with to delete the index template node: %s?" + #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -338,11 +342,9 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -379,11 +381,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.mo index 1743691198fb847f0cf1ca5c4fb4fde04676fd39..64eb448d0c5ae96b40cd6ae28401dacf0e1f0721 100644 GIT binary patch delta 655 zcmX|+KTjJ$5XIMEf-w>S3Mz_mNuqPW`;zyW+nNkak3T#+`PfNu~f%G<-qoaTPJvv1z)HWEL2OTPx=9|fWpIgHfE z0pu;xM1M?(=imUC1DC)a@Boa1M_?cL8SDn@U;?~opMM9RVSfX5fju2Ul(Bvcei5Q1 zs+|u*=ioL7!8dRS{0SQ4`!;{K>q)qn0V%KoJ^}l|0EBN8@ctiY6OWMQ(ijz8!dx_o zOqgezmq+p8_!jt3uWT56S}jGg|c%cOJm)ahL;(=oya9PmZB$5-rgE8OL#;7?dKxP~&e;Wkz+ z_A7rnvn4(Z%TU$?S5a>gpQ8H`@+-4Bf%4oeOmhogli<*<1$@oEF$>?pv`lCT_>BEX zO&mapDdrl)P1w|--ie9p z(i}kA8A$g7u@4Zh1@iAOF))+>=`Lo7`u|XxkA;Cj3@9!Oq=8D67+8TEkmcwAD9->i zgMoQ6Cu6s~XI@Hbg+gXtaYKd6S7@Aob0of)7 x23!IDx, 2012 @@ -10,25 +10,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "Няма" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -71,7 +71,7 @@ msgstr "" #: links.py:35 links.py:64 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: links.py:40 links.py:68 msgid "Delete" @@ -101,14 +101,14 @@ msgid "" msgstr "" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Предизвиква този индекс да бъдат видим и актуализиран, когато данните в " -"документа се променят." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Предизвиква този индекс да бъдат видим и актуализиран, когато данните в документа се променят." #: models.py:82 models.py:109 msgid "Index" @@ -138,8 +138,8 @@ msgstr "" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "" #: models.py:134 @@ -164,11 +164,11 @@ msgstr "" #: models.py:156 msgid "Value" -msgstr "" +msgstr "Стойност" #: models.py:159 msgid "Documents" -msgstr "" +msgstr "Документи" #: models.py:204 msgid "Index node instance" @@ -212,6 +212,7 @@ msgstr "" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -249,10 +250,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Are you sure you with to delete the index template node: %s?" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Are you sure you with to delete the index template node: %s?" +msgstr "" #: views.py:286 #, python-format @@ -271,7 +271,7 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "При големи бази данни тази операция може да отнеме известно време за изпълнение." #: views.py:342 msgid "Rebuild all indexes?" @@ -281,6 +281,18 @@ msgstr "" msgid "Index rebuild queued successfully." msgstr "" +#~ msgid "Index list" +#~ msgstr "index list" + +#~ msgid "Configure document indexes" +#~ msgstr "Configure document indexes" + +#~ msgid "Index template node created successfully." +#~ msgstr "Index template node created successfully." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Index template node edited successfully" + #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -317,6 +329,9 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" +#~ msgid "Are you sure you with to delete the index template node: %s?" +#~ msgstr "Are you sure you with to delete the index template node: %s?" + #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -327,11 +342,9 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -368,11 +381,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.mo index f3ba6fac28b8c199e6aacb03f39031c863575047..09c25ad9c1d5aea811595bdf99cefa7bbee78e8f 100644 GIT binary patch delta 597 zcmX}oIY+hH!82G}_HU7ur? z^(E>9AJ~Wio~=6-Mc(6fj+$=h^Ex6wxPMGf^#f?ke}tJelSYC;U-}nKe-osh+X3A+ z9n=%S^L>v;oq3(mL}9bCBb{(iJ5{U)v>W+uIDRKy&Ids z(ZNJ&a5&kU98Hg;)T$Z#|7AFtPK@0in1^1K^5r5Eg>Cm{TPzeMciZaJ7gs(0_If)f dEvKMT{*Bhf;?JT~7IQ_pm6z6fPVM=us delta 732 zcmajbJ8aWH7{Kw%gE+K69|EPk)Ekg0qB^)H;gN}fhq?f&#A9eBtoT~FPVC5z5p>A{ z5=eBi%7#z{8|_jUkdW8{Gh$$4Wkn2ZNc_*~LKi;eyWiQl`|dlx8{e7ef1fOF2x5Xf zLB1v{3iWYyr<;XZQI9>PFsU z6+h!F=ZjxV_=#z{IDj*F1?#8_t)c!h8%Q5woE#;&U=|~c`s?Y?`}dRd_)pMd7GsRM z3GO5gl0|A}hnHV%=W<8GVA)$qA|>6hm2_0llV0Ge2P#hAr_0{3szFMu$X=-IE{vBT{P{woIBUF znb$3AUKL7v# 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 4eefa6e451..934af687ea 100644 --- a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -10,26 +10,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "Nijedno" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -72,7 +71,7 @@ msgstr "" #: links.py:35 links.py:64 msgid "Edit" -msgstr "" +msgstr "Urediti" #: links.py:40 links.py:68 msgid "Delete" @@ -102,14 +101,14 @@ msgid "" msgstr "" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Uzrokuje da će ovaj indeks biti vidljiv i update-ovan kad se promjene podaci " -"dokumenta." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Uzrokuje da će ovaj indeks biti vidljiv i update-ovan kad se promjene podaci dokumenta." #: models.py:82 models.py:109 msgid "Index" @@ -135,17 +134,13 @@ msgstr "" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Uzrokuje da će ovaj nod biti vidljiv i update-ovan kad se promjene podaci " -"dokumenta." +msgstr "Uzrokuje da će ovaj nod biti vidljiv i update-ovan kad se promjene podaci dokumenta." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Označite ovu opciju da ovaj nod služi kao kontejner za dokumente a ne kao " -"parent za buduće nodove." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Označite ovu opciju da ovaj nod služi kao kontejner za dokumente a ne kao parent za buduće nodove." #: models.py:134 msgid "Link documents" @@ -169,11 +164,11 @@ msgstr "" #: models.py:156 msgid "Value" -msgstr "" +msgstr "Vrijednost" #: models.py:159 msgid "Documents" -msgstr "" +msgstr "Dokumenti" #: models.py:204 msgid "Index node instance" @@ -217,6 +212,7 @@ msgstr " Obnovi indekse dokumenata" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -254,10 +250,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Are you sure you with to delete the index template node: %s?" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Are you sure you with to delete the index template node: %s?" +msgstr "" #: views.py:286 #, python-format @@ -286,14 +281,17 @@ msgstr "" msgid "Index rebuild queued successfully." msgstr "" +#~ msgid "Index list" +#~ msgstr "index list" + #~ msgid "Configure document indexes" -#~ msgstr "Konfiguriši indekse dokumenata" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "Nod predložaka indeksa uspješno kreiran." +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "Nod predložaka indeksa uspješno izmjenjen." +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -331,6 +329,9 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" +#~ msgid "Are you sure you with to delete the index template node: %s?" +#~ msgstr "Are you sure you with to delete the index template node: %s?" + #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -341,11 +342,9 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -382,11 +381,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.mo index f498ad086684c40a870d1feff3f46bd42c520057..3b38fcc1db6c9516b1567a584fe251c1b5527b6d 100644 GIT binary patch delta 374 zcmY+;y-EW?6b0akNf1RXY_+&AkdRFzU@C<)Dg1c@ne1GXVRvU_=PtxbO9erK3i=IS-yFT+(*ukSW{Ifr+fo5UM%4bfA(>av6G+%&hUh+3!+`j>d-q@ zM~+gRkC==WJ=B2%$=C++XPj%X-chE{Np!*#e8wcUJUsD)<3hMOJvmtKHd>uVJEExD z+v!YSwthaeqh4$G>3yv-?E7RTbG$xXYWF}^Ya8V3|8Puj2 zERl?qkU%NqM$iKiY7v4Y6hxcAO;EN?G${K1^xEP6&*$97-2Zvqc~?GF8vUA?FlZ<~ zVk_~}VN4soj;Eq5B^Z;7%Xkno6OB25C-EYVVh%c!j7h^{%tJ47n8Q??uoJgqFJ|Ly zBxlr&(@^4hEX2R)!h&_iq@xG*gGMaEqnLtyNT19#`~D5o^CQS%CaL=I86LrgWMi`M zCeml~0Mp5D9?{6)f@MGO*7h?h;evghPFB6R2sPqzRLAyX2_8otHCIuI22hEHZ6Df> zqdGb%$!}iK&`4%%Kj1#jKjB8qPF-Dsa#Tl~P|tVRp1?-VyU>XvxD6*z9hgOR^dsJ9 zdB3BUXn^&KcF-83As6upw(u5>U>TLrNq4nG`KS^4a0@nJDRyHfUdJjN!VUNywUl3M z7f|o}gX(}YgZbY{ql~Kz*0dv?GpA4q&!IZfZ{HunyPS_<7dDVZ_wS)bI)S{~Od*e$ zY2+|-RC;b6mG2j>>@gSfuQl~>rVI5{n(`LhgQsyl4%*j8Q8Vxy)zLSo#51TVoE&s_Th3LZj4Ir2h~VEsF+fm#EoA%e{7r+E6MQ^$wzr*iC4(4TN^~TG3Q9A;v@0 z5PJ!gvQ<`U?ISI5IiWqK+0z~{eP{&Dxb}ug}v^;i04+@`odpogsf9-0P17Lq2zV@JvrA62!1S zbRig9NL#d)oMA^+bKtzcH{!k=47i&EXM6hGC1LADMxVoKb+tKSW0_r6QcQ=1e0Q7jPU_5%Tx7<5EDtz#0TFrB8kQaqKTJaBB|eBI~aWMr2qY#nK?7_ zKmT*4pKQCbWB$AP(zgw5KhZ+8ml*RR?keSnwy@TiN_-2O@hl$1OZYhcjng<(X3RZ! z0UPlu*5P%m!Qb#+H08$7H7(d=%)Du%)5eLtxCxJ8ALdaBUBoST4fVjAxE_~Lo;RV#V zrPwb~3H%TruVv77jyK~2ID~rPG^#QoDzVd;!S%{jzo2bgX7yCZW@8iUWbk^aIxD|g#CD6#iDbp4_pD-qa zn!$AjYb|f#GuS{@athDmXQ(Bc=B=908>qdph)QIMA1%q%TI#Qv{}d1S6}NF*y}_7z z%-}=#81iTG{Adrn8hZx0#e9rPXbB(0Z;;h6%Sf?IB{%7X4Y(OQQHc%LQGX3Q#))^( z#UrSx5bFByJRPmo z5$wSLslNFrK7R>Sp)XJ~`5Kkbx2UDLfqKwisQapUn65YBFt(y9p#9l&8n@c-;4WUmhL)>ZlXEQ)(SyTzlR!gF$B`hIS z(bdNKYu24a57A3>6WSAMnz`COLhG*9O6($3PX2?L4nmttcDy^DIuN|s2HT}uZIh@Ny1I1gV&55Q7cQPMXXFNBSpRs=Axc<1Evtgm8 zY)jSHlYT{V9QU%3T{+k1B#URuI})Xy8%Bl86}I8O*PXGzW~0LG ziuMM_j=PZ^cf$PGm<_{;yyv}A+*;XCGSibv_og!4PUr5v4E^qOx@zR9)L}d8hHlPJ zJ<7}aoJ_iNWn6lXlj-V9_v}p5s-DP(QR>+s>xZP23;LWVv(c2B4V?paD)6k+KeKu~ zIyloCc8t0w1_}$+e>Q6VFXV$0)|<8bx?@wm8x9mt)kKLxP+#9ao%2^};@ZIa=8!*? z^&)3B=R1c~87CQ<=lsY9(|#_p{_(s&9XU1#BkOtAFV?J|ORO8d>r%4#a_virLRa0U q!uK0S4%~go1`|1NGEfFi)}OSVos7)?4H&iAVAN8?Vn^MYl79d(Uj^p? 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 203b0600f4..6d464c4020 100644 --- a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -14,14 +14,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-08 23:05+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -33,6 +32,7 @@ msgid "Document types" msgstr "Dokumententypen" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "Dokumentenindices" @@ -102,19 +102,17 @@ msgstr "Neuer Unterknoten" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Fehler bei der Indexierung von Dokument %(document)s; Ausdruck: " -"%(expression)s; %(exception)s" +msgstr "Fehler bei der Indexierung von Dokument %(document)s; Ausdruck: %(expression)s; %(exception)s" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "Interner Name um diesen Index zu identifizieren" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert " -"werden." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert werden." #: models.py:82 models.py:109 msgid "Index" @@ -132,10 +130,7 @@ msgstr "Index-Instanzen" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "" -"Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-" -"Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/" -"builtins/)" +msgstr "Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:118 msgid "Indexing expression" @@ -143,18 +138,13 @@ msgstr "Indexierungsausdruck" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert " -"werden." +msgstr "Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert werden." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Wählen Sie diese Option, wenn Dokumente in diesem Knoten dargestellt werden " -"sollen (und dieser Knoten nicht als Eltern-Knoten für weitere Kind-" -"Knotenpunkte fungieren soll)." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Wählen Sie diese Option, wenn Dokumente in diesem Knoten dargestellt werden sollen (und dieser Knoten nicht als Eltern-Knoten für weitere Kind-Knotenpunkte fungieren soll)." #: models.py:134 msgid "Link documents" @@ -226,6 +216,7 @@ msgstr "Dokumentenindices neu aufbauen" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "Index %s löschen?" @@ -253,10 +244,9 @@ msgid "Tree template nodes for index: %s" msgstr "Baumvorlagen für Index %s" #: views.py:172 -#, fuzzy, python-format -#| msgid "Create child node" +#, python-format msgid "Create child node of: %s" -msgstr "Unterknotenpunkt erstellen" +msgstr "" #: views.py:196 #, python-format @@ -264,10 +254,9 @@ msgid "Delete the index template node: %s?" msgstr "Indexvorlagen-Knotenpunkt %s löschen?" #: views.py:218 -#, fuzzy, python-format -#| msgid "Edit index template node: %s" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Knotenpunkt %s bearbeiten" +msgstr "" #: views.py:286 #, python-format @@ -286,8 +275,7 @@ msgstr "Knotenpunkte der Indices, die Dokumente enthalten: %s" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." +msgstr "Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." #: views.py:342 msgid "Rebuild all indexes?" @@ -298,19 +286,16 @@ msgid "Index rebuild queued successfully." msgstr "Indexwiederaufbau erfolgreich eingereiht" #~ msgid "Index list" -#~ msgstr "Indices" - -#~ msgid "<%s Root>" -#~ msgstr "<%s Wurzelverzeichnis>" +#~ msgstr "index list" #~ msgid "Configure document indexes" -#~ msgstr "Dokumentenindices konfigurieren" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "Knotenpunkt erfolgreich angelegt" +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "Knotenpunkt erfolgreich bearbeitet" +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -361,11 +346,9 @@ msgstr "Indexwiederaufbau erfolgreich eingereiht" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -402,11 +385,11 @@ msgstr "Indexwiederaufbau erfolgreich eingereiht" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.mo index c1561c77f590ef447964850e10350200c95b46ec..6595fc17085fbd5e4b67e969c0f32d885ee8d68b 100644 GIT binary patch delta 344 zcmXxgy-LGi6vpwBuU69ru^b&Z2NgH*2HZP23PKharxvPHuc1T9)IpGR z@fNytbL-+A^nVh2;NcgN!~4AC_hjvr+kyQlj7NO(Mo!6&=tPFdEyj3*FF3|;yu`p1 zImbK9@d?jxj$K^h5w5Vn8ZXeYn!Qqd9wr=?pcd73TjV-z(F1DH7i!T4wdfDEDCo3B z*QiDJSl}aS(Ff|@0;y?+I|y~+$gq7uXY&X2#_Y*4=@FM4re8f9wlSNU@3XP><7Hu# ThDm%CXZa|t3OhCbKfUe&qOu}G delta 637 zcmci8&q@MO6vy$K|FS=3NYUTL?4pHHQwB+d5fp(hAv4#I#xa~3)RoXy!o|?87l@WY zv8e409q>!{WrLjW?A48F7Q7Q_-*aQv6R58U4Edkxs zEM62H3pzN6Ljwp#ZL zB}Q}+^B!Xk;z}KVl((CVIf~181Y0a)F5zk1jBl_JKVv6;#|E_OjoE@hOkppEF@t`* zj0~-q>r^`En0E)w*RQCBzPbKFGBy^oNA|ZQR_TKB~rs` zh2vhPGDXJ}=aRu^xPaln`owoo6FtUWtRcCWk8XPvM`_mujcLU(q|2mH-Px(K(_Qk|o#HG)t%ZoKcR8N z(RGls^FViF9}y+?r1{gGsca{-I~DC-N3P@4PIR2w>HkIVL8YJ29ov)EU%Ob}X+NxA zvad8$ZJ#$|zx1B8vgh-~TELg|gpvdCp@G3fG?7dl7_yJ~J2!d;6RG%UZPp+1)T)7D zPh@(gRL++QxtVA#UyK$?xx#cl745rb2OGcG9id0|yHM3$3eWitmkU>C^W|(U(KPP) E2P~3m+5i9m delta 1596 zcmZ|OZHQD=9LMo9`!MS4uIt+FW~Wg|I8_~rV(u+VvD)QBUP`-$E-bheHufi8b8<9kB1fe%VeSg6Bflh5K4sR3PIm3%HB+6t2OO*vtARZVkAEJ+wc=r|=qT;-66)xP|i^&s|hx zXZhQY^LPk<$5Xhc%NUCbsD*yRUc85zzngP;8i%k>cFc6E<9VE-?cr*?gj(ntYTUP| zjorY__$O-I0JCb`D9++G)S17JB*|PvW#$W9gyE^M-n8UTG{#Q`rXOR<0ik@34T3j1b8KvqA(O1E6GfY*{(In@umrT*9XqQT{ z$`-29OLCHQZ$xcIMd?#fwse+{Q#Vjmwo(VP^eRq4x7$Eo`C z6{S+2rK*tWq;TZP_dABlfQmk+397y#vvVZ0vq2C|$2Z#l*)`|AU8}m*3Cgu2t{+*? zcianvbxVOL)On$! z;)PMXKJE5DeA|{aNBmZLxZk>t7rBlNYvr;VhI6$_<-Pb!`at8?bRji4naxdQ^94Jx zy_n~^kjrKEy_TJIk9(mP_}M+ISG4)u1oxiF=6BfKWHDc8yu7?8l}TbOHLsqWZoIK# zdn!XTNuZ@_{7q&sK9?El)h?>qZ(t95?*#GX%rBd?ouy94wUv@3DnIfnT+wb`^&PLA z#CN9a$|}W|^pi8X!+1mYhxHjv$k_jSFo~So<-oVi&rf(!FlLs<|Ib=UhDr}TW192# b*E8CDsKq>=o%m(16vjVxzuB1Vc`o%YyWRLA 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 95ecf0eff0..a2330c9c89 100644 --- a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -30,12 +29,13 @@ msgid "Document types" msgstr "Tipos de documento" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" #: apps.py:120 models.py:25 msgid "Label" -msgstr "" +msgstr "Etiqueta" #: apps.py:121 models.py:30 msgid "Slug" @@ -99,19 +99,17 @@ msgstr "nuevo nodo secundario" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Error indexando documento: %(document)s; expresión: %(expression)s; " -"%(exception)s" +msgstr "Error indexando documento: %(document)s; expresión: %(expression)s; %(exception)s" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Hace que este índice sea visible y actualizado cuando los datos de " -"documentos cambien." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Hace que este índice sea visible y actualizado cuando los datos de documentos cambien." #: models.py:82 models.py:109 msgid "Index" @@ -137,17 +135,13 @@ msgstr "expresión de indexación" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Hace que este nodo sea visible y actualizado cuando los datos de los " -"documentos son cambiados." +msgstr "Hace que este nodo sea visible y actualizado cuando los datos de los documentos son cambiados." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Marque esta opción para que el nodo actúe como un contenedor de documentos y " -"no como un padre para otros nodos secundarios." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Marque esta opción para que el nodo actúe como un contenedor de documentos y no como un padre para otros nodos secundarios." #: models.py:134 msgid "Link documents" @@ -219,6 +213,7 @@ msgstr "Generar índices de documentos" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -246,10 +241,9 @@ msgid "Tree template nodes for index: %s" msgstr "nodos de la plantilla del árbol del índice: %s" #: views.py:172 -#, fuzzy, python-format -#| msgid "Create child node" +#, python-format msgid "Create child node of: %s" -msgstr "crear nodo hijo" +msgstr "" #: views.py:196 #, python-format @@ -257,10 +251,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Edit index template node: %s" +#, python-format msgid "Edit the index template node: %s?" -msgstr "editar nodo de la plantilla de índice: %s" +msgstr "" #: views.py:286 #, python-format @@ -279,9 +272,7 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "" -"En bases de datos de gran tamaño esta operación puede tardar algún tiempo en " -"ejecutarse." +msgstr "En bases de datos de gran tamaño esta operación puede tardar algún tiempo en ejecutarse." #: views.py:342 msgid "Rebuild all indexes?" @@ -292,19 +283,16 @@ msgid "Index rebuild queued successfully." msgstr "Reconstrucción de Índices en espera de forma exitosa." #~ msgid "Index list" -#~ msgstr "lista de indices" - -#~ msgid "<%s Root>" -#~ msgstr "<%s Raíz>" +#~ msgstr "index list" #~ msgid "Configure document indexes" -#~ msgstr "Configurar índices de documento" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "Nodo de plantilla de índice creado con éxito." +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "Nodo de la plantilla de índice editado con éxito" +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -355,11 +343,9 @@ msgstr "Reconstrucción de Índices en espera de forma exitosa." #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -396,11 +382,11 @@ msgstr "Reconstrucción de Índices en espera de forma exitosa." #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.mo index ceb4304a0a85019b03a45086e808b74922a2708c..b0796e0860dbc9af79c5dd9545a59d09191a1264 100644 GIT binary patch delta 1157 zcmZA0O-PhM9LMol+tpoj*S9S5rG3mYEmwRAK_v-;qJtD9(F+A?n^|rdYJ?X%q!1(p zqm>>yNRV_1Spx0mN$AqcX_1H`sEdcFOAtuk-|o<%VdweG%LA~oU<`8aV@t}O(V$3o8f=98=Z_G6u#_jkK^Y9mzqX`(34HdWptFawBFoL%* zgp#7o7TR=%nT;Kr3TG7_reA}lIDq+h$9@0MIg4S&=dlVGQR}_I z64p2GXiRbJ-*B3Kg7cAoa2)UDa*XKTnu(wm8|Zf;dou~t#G`l?A7LT>KwdRjigH&G`LV*4JJqV7l=>W-Xt{Tb9eOQ?;kI=`asK!8a+ ztVGS*={z3c{1rhD1Io>L)Xr|A#_uB^V|gTS0c){<)plVUDwk(asp&=CiOX1r;lM#Aa}V iu7}s`tH``v&VL+QOf9WXrIM+|WOqTtmznllVd5{MJbE?& delta 1510 zcma*mUuct87{~Dwo5uc2WB+L9bnBV6>(r&j*lsg)e?-`HpbUo>b-O9a+b)eS*<+Aot@i z&Y%)p<3|&{6}W;rOf74k4Y&!Fa1Ux>2T&_MgqrA)pnncYWlpc5{*zoR(D53!u>6zS`>UM5@gGPY1kr@ca9yp+owbMukI?nz|9onL(}Ivh{ziYJHcjyF=t zVfSv+2KBrZPrhjr!>Qy@Wuhq(YJNWLO0Ic66uVI?FaP3S_7|&j{!*>%X4<-4Lu;aA zdC9+A{l->jd3Ht5Dg&+CLT)6wKFo{@Zg-pCd7@VKEB>$6zxeE9zv6nL3*+=&@-O;J zwtBL9sybUeZiB&i@5J&_^;E6QC$+LZB6r28hctBgSO4!vgYLKJ`O2a8wvd~Rb-81) F(WffO2qpjk 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 53a17e6ce7..efdd3c2f17 100644 --- a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 @@ -28,16 +27,17 @@ msgid "Document types" msgstr "انواع سند" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" #: apps.py:120 models.py:25 msgid "Label" -msgstr "" +msgstr "برچسب" #: apps.py:121 models.py:30 msgid "Slug" -msgstr "" +msgstr "Slug" #: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" @@ -97,18 +97,17 @@ msgstr "گره فرزند جدید" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"خطای ساختن ایندکس سند: %(document)s; , عبارت : %(expression)s; %(exception)s" +msgstr "خطای ساختن ایندکس سند: %(document)s; , عبارت : %(expression)s; %(exception)s" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی " -"شود." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی شود." #: models.py:82 models.py:109 msgid "Index" @@ -134,14 +133,12 @@ msgstr "عبارت اندیس گذاری" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی " -"شود." +msgstr "باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی شود." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "بررسی شود که اینکه این گره ظرفی برای اسناد است و نه پدر گره های دیگر." #: models.py:134 @@ -214,6 +211,7 @@ msgstr "بازسازی ایندکسهای سند" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -241,10 +239,9 @@ msgid "Tree template nodes for index: %s" msgstr "گره الگوی درخت اندیس %s" #: views.py:172 -#, fuzzy, python-format -#| msgid "Create child node" +#, python-format msgid "Create child node of: %s" -msgstr "ایجاد گره فرزند" +msgstr "" #: views.py:196 #, python-format @@ -252,10 +249,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Edit index template node: %s" +#, python-format msgid "Edit the index template node: %s?" -msgstr "ویرایش الگوی گره اندیس: %s" +msgstr "" #: views.py:286 #, python-format @@ -285,19 +281,16 @@ msgid "Index rebuild queued successfully." msgstr "ساخت مجدد اندیسها در صف قرار گرفت." #~ msgid "Index list" -#~ msgstr "لیست اندیس" - -#~ msgid "<%s Root>" -#~ msgstr "<%s Root>" +#~ msgstr "index list" #~ msgid "Configure document indexes" -#~ msgstr "پیکربندی ایندکس سند" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "ایجاد موفق گره الگوی ایندکس" +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "ویرایش موفق گره الگوی ایندکس." +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -348,11 +341,9 @@ msgstr "ساخت مجدد اندیسها در صف قرار گرفت." #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -389,11 +380,11 @@ msgstr "ساخت مجدد اندیسها در صف قرار گرفت." #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo index edd580d3fa880a5e39fde58e4a7d5109445a6c99..57fc2349585a999d3483f41fb57a91a4e2a7607b 100644 GIT binary patch literal 5155 zcmb`KO^h5z6~_w*Ukgsa5C{QG5n}AMGc&uk4}sZTEIh zy1IAQ5nNCNB3uGeh=gPmBot*$gplBX1Q#?1BoN{N5;r8oAwnQ=;6QQ+;`genduF`0 zgdnA@{!dlCdiB1m_D?(SdREc8^bgVh{syJagTHtaAKEK-DRm$CD)=dI=bM!}4PF7S zf!_z;2kv-_Qtt#G1V0GQgZ!x_KJN!tz>k3mcrW-2C}+L^%DI0AKLY+6d^fo3txDYu z&VfR|06qX-0^bg9f{3KP>es&x3jGa`KlKuyr@)_r7r>)$Q|dk7(;yS0jqvH-Tg9{2(98SpXiCirpi zpWt5bewc{8PJ-gsE1<+f0?vX@fx`DkpxEzcpveDAQ1t%`D0Y7Zd=^yiQtC^d4U7(!P;v;dp;PG+r2;(RG_$DZPN1(*(Z~Xkr;6BD`r&5?o?FU8P!+v}Y z6gfW!5~`{P@~2`xBJY<$k>^_;p94R`_y#EP{SQ#=a}Plxb~y|RpCwTCt$>%nD}MdQ z;5_4BfkO8xDE61baHnhHFKMEO$SizB=G}CWN&F+Zxt}f#m#Rbb1M~;!(&UWE_F)F1 zr}$X%R2rsM57WiY(mHg}L7LHUE=L9 zy-mNLev~dTQ8!%VY(57bq(9;pB%bOfF)scUUrKyQ&PY6p4_s+Gu^z-p&`XStvann; zX`zejLu1v+ptQ#7Vh~#$r;*vzMW%a3ug5kP@*s_LIgEnBM0#Uj((!)g0v!&5bk*4Q z6rVJU%>T+}V8UyaG}*9-vsCyDf_3OpEY8vfM^raNU4Qy33-T1IZqOBZHs zmvy~p9lLi^{Y)#uR4~lT0gCuc$8(%ucPn2yd&Q|Of;2?Z zsYSd#wTwbj>v6g|o~eSRA#g*T#OXB?-9qGN#cyMq)*G!_jN-z5wi`^ACiX0*60eb3 z#7jBeZp;T~TpF3YtuI-lPhBMhvprTvrXQ3EfnC`d`E|ll8LS$;cTf~V+wF9sEVS*& zZ5ig-RTCENFk9=Gv@_p+q?4O|r#{DadS#pxSg$jy7W13{ataAwxVR+3UwiA{v-X%a zo5S2#OWexJcqD5w4vh=yS*so+g6o~mWJJRm$-nB$QQm28vKd;xJmtB`xmtQZmm5(c z(odA8B!g`khRD}1ljM5alhiw0G*oj0w>x%wh)hk_JEw?kotC%Q$+MKGa!h1-Y#?<8 zW>%dIdL~h4&ANPvuEs=Gog)Rqf#@Q-t8>*SHR^ndn{#|D1*sP_)hrttvPDYBT5w$# z!8N08wnia|<&$x^3CqH?)v~vdWK}FKF!-XLY<%QbnuTVZWrez!l&fk*D%5(Al$dQJ zh8bm);u`7Rb)C7w6AXuxS_$92A%sI;)f}s~TFDI)zDP`uoX)ovs>^bex*XrGHeIM< zyLBdNT{d|YkW0b!Ak~YfmM+dLn_-q0ttGn}N3BQ8Rohz0x_aiq`IVL{e^{+`ic;0p z2j=Dvx8@GE4$SNM!`(v%TXToz<{)e>8@VEGM|WVpJ9l*d9Bt-oV2jpD9;BASm*ri( zob^nO1(q`#vWc{*{)89ZfK7mIHs$g$M>fC6MBC3*o=~Mr8+gi ztfSZtvsCU^b;0CorqHA3bqKgf(9xdJ%_284nFQQU5?1~?hGvZ+D_65JC#~hKPM z(4-|>%ZV%6SjbVKACI=$Q%4a{ri_}CUJv#svv6RZ6g9Zw{N+6qA<08j^a>I4(?=t3 zCA@)j!bn!5>yRpGO_>+kevPf)^E?lF{ML)s6x&+D5VYZ#sEaW?I`i+!}k zO#&A;#og}45T#kUZh~^NPX8%6)Wvc*%qbfA_!k8JxisxrJ3)e1yrxE+FnUoQUzIdQ z%SEpjCaLeZf*EpyiENRVF;S6B9X-B9M1KsHbJrK5z>}k`Jd+|{T_iG9Ti)r9G~g4pEEk6WzJq}G_U z@w~k0PJ~6gKH5?j1MS??cwxm_z^X$HpRcKx`}~Zjz>ED{*+ny*yl4kOR%jqmCT! z6)xSXXw)QiJl6}`0-Xz8lVvT(xl)KA4X6;5E8cXYtpcg~K`f(n6S@b==tWZ4AGMvM z6V>n@xJ4FB=f!N+wr_Tu#+1JDNWw^R*3Vx_&dMZCWVP75>gqG9`O!C$(Uw#u9xgEt z7e?w_ER}?@iy)5jOhqVHWPB1OvPS zT*h|1h)>|>*orr?8#gekR88ICBErBC<|M4HA*5Qbw_cU{sivA(->uaW$F`Fv4j3K?8R?T9()^R16z23<9UQqsb$hT ziRbZc{1wmRY*?wico*e+O`L-yvKynA!U3Gdnmp(P7gCZ1oWV;dXSjuO|0iTk^*hSO zn%L!j?8i<#f)qpL@m)NH8oxtH;763o{DQK9Mmkb~ScLPJiy;Qa@nHSN8BEf@j3f9h z$^ws2UZ%$=-`mC0NLr;)UaHA@e-=4*^$y0cfU?mglns4U_Y`n2DOG&O z_5%h{`e{t#Onv+`O2s}zPQ(vc;O~&dslFdlDfxv+MVYSpXcCfufBv#SLPiKVFDbFa z5KVSZ)zlzO&P-lB3He1xNHyfFpQK3w63@`&#goeP)1-28eE*F`I&!pc%Alt0rln{j zH2LXEndE`jh>hK3*L@0m4E!w(NwjHy#^{BbtI%OsT5wjc^uyn^9Xpyl?ku{VTP`IJvV2x&QfcmuCo|9M)L1q% zx_&YoZV3L954CUMf3PTRWvfu2eCPJLb*Tkr%DmrFqBG z_P+%&Uqz?QT%@N-a{M8hFqe0H8hwQvnZiuJTxQBTcQMvt-m>BW^4wh8Tr(@yK)0SN m+it<#T+_KlC-3LGdCeO(8`hK=iVd6hVpq(b__(, 2012 # SadE54 , 2013 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 @@ -30,16 +30,17 @@ msgid "Document types" msgstr "Types de document" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" -msgstr "" +msgstr "Indexation de document" #: apps.py:120 models.py:25 msgid "Label" -msgstr "" +msgstr "Libellé" #: apps.py:121 models.py:30 msgid "Slug" -msgstr "" +msgstr "Jeton" #: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" @@ -84,8 +85,7 @@ msgstr "Modèle d'arborescence" #: links.py:54 msgid "Deletes and creates from scratch all the document indexes." -msgstr "" -"Supprimer et reconstruire les indexes des documents en partant de zéro." +msgstr "Supprimer et reconstruire les indexes des documents en partant de zéro." #: links.py:57 msgid "Rebuild indexes" @@ -100,19 +100,17 @@ msgstr "Nouveau noeud enfant" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Erreur lors de l'indexation du document: %(document)s; expression: " -"%(expression)s; %(exception)s" +msgstr "Erreur lors de l'indexation du document: %(document)s; expression: %(expression)s; %(exception)s" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." -msgstr "" +msgstr "Ces valeurs seront utilisées par d'autres applications pour référencer cet indexe." #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Permet à cet index d'être à la fois visible et mis à jour quand le contenu " -"d'un document est modifié." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Permet à cet index d'être à la fois visible et mis à jour quand le contenu d'un document est modifié." #: models.py:82 models.py:109 msgid "Index" @@ -124,13 +122,13 @@ msgstr "index instance" #: models.py:102 msgid "Index instances" -msgstr "" +msgstr "Instance d'indexe" #: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "" +msgstr "Saisissez un modèle à restituer. Utiliser le langage de rendu de Django par défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:118 msgid "Indexing expression" @@ -138,17 +136,13 @@ msgstr "Expression d'indexation" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Permet à ce noeud d'être visible et mis à jour quand le contenu d'un " -"document est modifié." +msgstr "Permet à ce noeud d'être visible et mis à jour quand le contenu d'un document est modifié." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Cochez cette option pour permettre à ce noeud d'être un conteneur de " -"documents et pas seulement un noeud parent d'autres noeuds enfants." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Cochez cette option pour permettre à ce noeud d'être un conteneur de documents et pas seulement un noeud parent d'autres noeuds enfants." #: models.py:134 msgid "Link documents" @@ -188,11 +182,11 @@ msgstr "Noeud d'instances d'indexes" #: models.py:213 msgid "Document index node instance" -msgstr "" +msgstr "Instance de noeud d'indexe de document" #: models.py:214 msgid "Document indexes node instances" -msgstr "" +msgstr "Instances de noeuds d'indexe de document" #: permissions.py:7 msgid "Indexing" @@ -220,8 +214,9 @@ msgstr "Reconstruire les indexes des documents" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" -msgstr "" +msgstr "Supprimer l'indexe : %s ?" #: views.py:64 #, python-format @@ -230,16 +225,16 @@ msgstr "Modifier l'index: %s" #: views.py:81 msgid "Available document types" -msgstr "" +msgstr "Types de document disponible" #: views.py:83 msgid "Document types linked" -msgstr "" +msgstr "Types de document liés" #: views.py:106 #, python-format msgid "Document types linked to index: %s" -msgstr "" +msgstr "Types de documents liés à l'indexe : %s" #: views.py:145 #, python-format @@ -247,21 +242,19 @@ msgid "Tree template nodes for index: %s" msgstr "Noeuds de modèles arborescentes pour l'index: %s" #: views.py:172 -#, fuzzy, python-format -#| msgid "Create child node" +#, python-format msgid "Create child node of: %s" -msgstr "Créer un noeud enfant" +msgstr "" #: views.py:196 #, python-format msgid "Delete the index template node: %s?" -msgstr "" +msgstr "Supprimer le noeud de modèle d'indexe : %s ?" #: views.py:218 -#, fuzzy, python-format -#| msgid "Edit index template node: %s" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Modifier le noeud de modèle d'index: %s" +msgstr "" #: views.py:286 #, python-format @@ -276,36 +269,31 @@ msgstr "Contenu de l'index:%s" #: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" -msgstr "" +msgstr "Noeuds d'indexe contenant le document : %s" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Sur de grosses bases de données, cette opération peut prendre un certain " -"temps." +msgstr "Sur de grosses bases de données, cette opération peut prendre un certain temps." #: views.py:342 msgid "Rebuild all indexes?" -msgstr "" +msgstr "Reconstruire tous les indexes ?" #: views.py:351 msgid "Index rebuild queued successfully." msgstr "La ré-indexation en attente a été faite avec succès." #~ msgid "Index list" -#~ msgstr "Liste des index" - -#~ msgid "<%s Root>" -#~ msgstr "<%s Root>" +#~ msgstr "index list" #~ msgid "Configure document indexes" -#~ msgstr "Configurer les indexes de documents" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "Noeud de modèle d'index créé avec succès." +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "Noeud de modèle d'index modifié avec succès." +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -356,11 +344,9 @@ msgstr "La ré-indexation en attente a été faite avec succès." #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -397,11 +383,11 @@ msgstr "La ré-indexation en attente a été faite avec succès." #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.mo index 579d9d91295f847ecc0525b934f266685391e2b7..cfc2985a16ec0c529d5d9285a137c7329d05dd11 100644 GIT binary patch delta 371 zcmY+;y-Gtt5C!0kNf5ywu+?H-AR#{zFjy$qSg3^$5GKixEH}F=*@+}JR)SU%qK#c_ z#4@FI@EPm`JKsXjjUYJi?SZ?)-t(P(&tH9P<{k_t58H4E%g}>#ZeRs&VI3xrgD2RB zXSmB4^Mzc6;nMHkH8Oqk9=V5nL}JZkA)WLMOn0$_JN!Ac22Q+2bL87HB+a~3K$K6uPg!UcvL`3$^z41eRIAu=?};KQ3Aq=pbBpMtZ?p*vHn_rQ2WaHdl1&4LMXc}9aDd=A O7|3;r#-odm2I>cnCtvme delta 178 zcmX@b`ja{So)F7a1|VPpVi_RT0b*7lwgF-g2moR}APxlLPDTcX1StO%kPSp|0MZWz zo_Q&$6$+Vo#U+V($*B`h`I?&Q8d&NYnJ5^VSs4M@CI$vv0sgu{sb!hPnfZCTE{P?n gRtiQ2hCn$BT_bY^15+y_lg&PioQ(XLD26cr03o6weEAgIJ80z29$n&S9AGd922JsC>&(RH-LW?@gf=a2-{- z1>VpLC#0flrv#6afq26CXz4yi&-#~pIVEbBdIcg!T zsJvZa>d&T4F9VvmAGcx>RqBhV53+b1uc0P-i%RqZ*}MspMe|gk#vMF_t*C`1P?vKU zb5K=KE7AEobaeB*3s3J)+Yj2E+ChTim>NO}bsXg0Y&vsI9wW5)zfFmC&i^<5kxace z7}fb#5h{l&pc|@x8y32`6YYLGp&P7LOHkF#rV8yQ_7Zi3&Rng5*hlDyR2AI~b0nTg zxhW?-luS9v(KGI(lOA(UySCf+*&fcXv}5^8w#PqXSN$jLjlh5}e%c+eYk~T_zOhjo z44(I$7|9IU$>5!ETdc7q*4*SYwRN<%*s4(Fzmevqj>h%}J)wbI`=lUhHws?aZ-o!- tqwu)BR5ToN)5*k;n@-2=$D;ONpPNc$M&pi+6wd}mGUwt6`U}N_zX9Duf4u+z delta 1452 zcmY+@OK4PA9LMpKI5UZpnZ#&(HO8E3Vv_2lX)r#fLJEQ+R*|Y*xGB@QH+u1AZjzaS zii@BN9}A`Fp=yc?kuD-45kv?s0t!XCa3cr>A0Q%9TA>zdX;=OJW)iA@?zx{k=bq>P z+&R_e?D(_AvF{DhM_EO=Tw~03Jul!!bjOU@i9NUjNAW1m;0M?dH)a_QVl#e;DLjI$ zSjGfS;Bvf#S-gpj#*CZacvwiqzsQ&-M(d@x5VfFoq@me{b+{Y%;eK3#KO$Yt465BM zCh@`C`(Nh#9oJB=LDX+8_AtNM%tIFyIpi{DxoJlesD(^nJcgdXaB3DeAPj`8pzo<f8 zL>cEoaV7qY-S`5PkyIo3S4AhiHsD^=K*v!XPof%LKrS=Q zO*@)JE%XVJZSxW}!E0QEb>vwoUV&d=8>-(3YTWavZ{%td`B%jaDthrQY5{+szTUsF z1{G>IA37!tpy;A#a!pKgvzDUJ*Uow>N4Z)RL<`00f#{($>-?1}?S36)F-4)t6*||- znPI0Yh>s}xcj_oQC|aR)!Sq6lGBx%us46%8vf>nf2Th97!eg;mn6prqH+W zF{S&~(*?CP%ZGx)Xtj(LIi}C-X;w(6fce^WC4Zd(F1w508Yo zl3%IH+Deg_t~bo2K4HP&+PJ!t$mXNM{1&2KbKsp^MAZ>|I~;j|mQZ@XwR@O4>UO5LxHIW* IooyWY4-NFu>Hq)$ 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 c1d8384d1c..ccc2f96ff4 100644 --- a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -12,35 +12,35 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "Nessuna " #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "Tipi di documento" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" #: apps.py:120 models.py:25 msgid "Label" -msgstr "" +msgstr "etichetta" #: apps.py:121 models.py:30 msgid "Slug" -msgstr "" +msgstr "lumaca " #: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" @@ -100,19 +100,17 @@ msgstr "Novo nodo figlio" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Errore nell'ndicizzazione del documento: %(document)s; espressione: " -"%(expression)s; %(exception)s" +msgstr "Errore nell'ndicizzazione del documento: %(document)s; espressione: %(expression)s; %(exception)s" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Fa sì che questo indice possa essere visibile e aggiornato quando i dati del " -"documento cambiano." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Fa sì che questo indice possa essere visibile e aggiornato quando i dati del documento cambiano." #: models.py:82 models.py:109 msgid "Index" @@ -138,17 +136,13 @@ msgstr "Espressione di indicizzazione" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Fa sì che questo nodo possa essere visibili e aggiornato quando i dati del " -"documento cambiano." +msgstr "Fa sì che questo nodo possa essere visibili e aggiornato quando i dati del documento cambiano." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Selezionare questa opzione per questo specifico nodo quale contenitore per i " -"documenti e non come un genitore per ulteriori nodi." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Selezionare questa opzione per questo specifico nodo quale contenitore per i documenti e non come un genitore per ulteriori nodi." #: models.py:134 msgid "Link documents" @@ -220,6 +214,7 @@ msgstr "Ricostruisci indici documento" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -247,10 +242,9 @@ msgid "Tree template nodes for index: %s" msgstr "Template principale per i nodi dell'indice: %s" #: views.py:172 -#, fuzzy, python-format -#| msgid "Create child node" +#, python-format msgid "Create child node of: %s" -msgstr "Crea un nodo figlio" +msgstr "" #: views.py:196 #, python-format @@ -258,10 +252,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Edit index template node: %s" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Modfica il template dell nodo per l'indice: %s" +msgstr "" #: views.py:286 #, python-format @@ -280,9 +273,7 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di " -"tempo." +msgstr "Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di tempo." #: views.py:342 msgid "Rebuild all indexes?" @@ -293,16 +284,16 @@ msgid "Index rebuild queued successfully." msgstr "Ricostruzione dell'indice messo in coda." #~ msgid "Index list" -#~ msgstr "Lista Indici" +#~ msgstr "index list" #~ msgid "Configure document indexes" -#~ msgstr "Configura gli indici dei documenti" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "Modello nodo indice creato con successo." +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "Template nodo Indice modificato con successo" +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -353,11 +344,9 @@ msgstr "Ricostruzione dell'indice messo in coda." #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -394,11 +383,11 @@ msgstr "Ricostruzione dell'indice messo in coda." #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.mo index c536e511f4037c500d8cab33fc58d5a7fdd83080..14c4834e7131d00642d461f01e8d8b56d41c87f5 100644 GIT binary patch delta 641 zcmY+=&nxUv7{~E5GhZ{qz2j#><7QY{5Ho(1NkV=k+$@xh(wI3h4M)uQvC(YEA8^Q$ zQr5SNjjm#0&rTMU|3KZcvG9IohVs-iuk(DT^F5#QJuSa4%RW^)2a2kq>*;g)7d_$P zhq}g5yulGHb}N;_DGcI2^x^~7;4?C&N<`1-OonY0>CBr`VPsc9KDvH2yPP-7;c zw?avi&csYy=SQ8+n=}jR_lnW>z;hMoZf);qjf6wt?r3L+opXX;Pa@%Hd(YXP<9FM? x-iUql4pw{~sEwM}n|du}>wKZ$m|4*2_+l)jml7)Z?O=Q8Yj8%jHul1|`T>|MU9$iH delta 749 zcmaLTziSjh6u|MhAMRZ=F;R$#CXhu9DtIAYa+(|n2E-rWVPRpVFxj0fo7>wB`@>%d z*C=QqK?cPxg_>4S5G43V92ORWot=e+osHkQRYZ|Ic>9@|ot=4ad&8R}-Oqc=PXw`t zoFre6W90Dy58?ry$A@?hd)UVDq7Vo09!}r}n(wx-i63wjcb7;!jK^>ekKi?|2+AitggA)ncobjb6n;V*f1qh>lG{un zi)aeDfYaPBVg`dOJi`%ui4A;<=EJYQ9H2_-=K)(H>(, 2013 @@ -10,25 +10,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "Geen" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -42,7 +42,7 @@ msgstr "" #: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" -msgstr "" +msgstr "Ingeschakeld" #: apps.py:128 apps.py:158 apps.py:171 msgid "Items" @@ -71,11 +71,11 @@ msgstr "" #: links.py:35 links.py:64 msgid "Edit" -msgstr "" +msgstr "bewerken" #: links.py:40 links.py:68 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:44 msgid "Tree template" @@ -101,13 +101,14 @@ msgid "" msgstr "" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Maakt deze index zichtbaar en 'up-to-date' wanneer document gegevens wijzigd." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Maakt deze index zichtbaar en 'up-to-date' wanneer document gegevens wijzigd." #: models.py:82 models.py:109 msgid "Index" @@ -133,15 +134,13 @@ msgstr "" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Maakt deze node zichtbaar en 'up-to-date' wanneer document gegevens wijzigen" +msgstr "Maakt deze node zichtbaar en 'up-to-date' wanneer document gegevens wijzigen" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Selecteer deze optie, wanneer deze node alleen documenten dient te bevatten. " +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Selecteer deze optie, wanneer deze node alleen documenten dient te bevatten. " #: models.py:134 msgid "Link documents" @@ -169,7 +168,7 @@ msgstr "" #: models.py:159 msgid "Documents" -msgstr "" +msgstr "Documenten" #: models.py:204 msgid "Index node instance" @@ -213,6 +212,7 @@ msgstr "documenten opnieuw indexeren" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -250,10 +250,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Are you sure you with to delete the index template node: %s?" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Are you sure you with to delete the index template node: %s?" +msgstr "" #: views.py:286 #, python-format @@ -282,14 +281,17 @@ msgstr "" msgid "Index rebuild queued successfully." msgstr "" +#~ msgid "Index list" +#~ msgstr "index list" + #~ msgid "Configure document indexes" -#~ msgstr "Document indexeringen configureren" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "sjabloon node index succesvol aangemaakt." +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "Sjabloon node index succesvol bewerkt" +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -327,6 +329,9 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" +#~ msgid "Are you sure you with to delete the index template node: %s?" +#~ msgstr "Are you sure you with to delete the index template node: %s?" + #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -337,11 +342,9 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -378,11 +381,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.mo index 96728c3c4af5058d8dc0933e6f30315e6b1c6367..3248b70d0f0103b4cfe4c8a0cf76c3ddc5844e62 100644 GIT binary patch delta 1241 zcmbV~Jxmlq6vqcS4iFIpPKDECY!C`=InVYXe?6c0#vC7Ae z$SOk|#W;cysbj1k{034y+{4&m@DVrzz5u7eU!Vbw)ibsad=AFJmtYip2Oa|7gK6+P zxF76`FxCu?fcRC|1m+kProl$=I(P@v!3OXvNQFN^%KrwNz$lWGZwna%kz#T1G{`|Z zxB%P0a+qHM@na7##n7Lv;?EA$u7f>DIOuW%ybqGnA0R0`iLM90CtxqQ0n$M}VCn|H zfTQ3p*bb&3la$V2B1g`HwEtCbFX)2z(4Q@bFSKBlly-om^cYCi_J_|YkQ$DIq;v)x z1Lr`p{w~-BJ`MA)Ky1x6L2A4MhPN6B!4j)rEhr)dWEb68EvN|B%y4zAv$hD5ofNGY z)PU5ILJAU43lc#=*Goa)7af%BCm{zJO9UStscgaMz#wI8;+DvnV!@PLw=<=Jv=mof zQM&%%o?ZWJ{Yo@^d|RKWOj$}gTyP}|MN=rrmCYS#>C#E?%dX^;d0}Pk<1W|bq9~cz zsrq8h%5oE_lE_NlcT=gNo7Ob+a}#<{QgrOR%&0`hE@;xyl8F(`k&9ZbkE<<|a;7?! zvs|s8&7$G$>ddjCgq4xiN9k6Hery)SE}Ihz(q!jsOZryiTGs_h8|f&+7I^!jS<3ov zBDvPoz~Jz}P?9H8=@Y~LctiZ}%1|;rIJU9aFkRO(X}fA`t!P2FSM=bQ5%~3bV`*bO z8msd^HLkW_`X}S7rqRm0t&2Q&%dpwDP{)_Ns%`d?uyO+CZEt#cBnsa4W7CpZo9DOI z%AO%=Md%T_`yc+b%Fw{TKYzU`-fOsCV3pwpN04mZE_<20WK+sBa#9I)#u0|!*Lz_8QrWQPe7z&MCLef7$&_NmmrD97*FnLlJo7V!+O;Sg@&DZGyb+{Gxq$1r}x zNu^rq6N6zUeqscF<1swMSsZ0`3g=PQ-NF&9;AO0%T>cfx`|psA)dze_65sJQ&->g; z5*T9>Nnj1na=toXaFU6ycpiVD9FU+(;5l5xizpfRC>gd;D)0aee9@cVM@gWKlE52G z;SXeM6=xHv*bFXlzM5qqrL&QrYSGEY4^h5?yd!+(qE?1E|K3)x(IZfH5wemoox#a1_Zx%zhlGa3(`k30>E(S;ypOkdwN S|6?kFX-oyzjP>BPk^BQ{gQD*M 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 b3a9f97491..1fe06f476e 100644 --- a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po @@ -1,45 +1,45 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012,2015 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "Brak" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" -msgstr "" +msgstr "Typy dokumentów" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" #: apps.py:120 models.py:25 msgid "Label" -msgstr "" +msgstr "Etykieta" #: apps.py:121 models.py:30 msgid "Slug" -msgstr "" +msgstr "Slug" #: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" @@ -47,7 +47,7 @@ msgstr "Włączony" #: apps.py:128 apps.py:158 apps.py:171 msgid "Items" -msgstr "" +msgstr "Pozycje" #: apps.py:139 msgid "Level" @@ -88,7 +88,7 @@ msgstr "Usuwa i tworzy od podstaw wszystkie indeksy dokumentów." #: links.py:57 msgid "Rebuild indexes" -msgstr "" +msgstr "Przebudowa indeksów" #: links.py:60 msgid "New child node" @@ -102,14 +102,14 @@ msgid "" msgstr "" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Powoduje że ten wskaźnik będzie widoczny i zaktualizowany podczas zmiany " -"danych dokumentów." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Powoduje że ten wskaźnik będzie widoczny i zaktualizowany podczas zmiany danych dokumentów." #: models.py:82 models.py:109 msgid "Index" @@ -127,7 +127,7 @@ msgstr "" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "" +msgstr "Podaj szablon do wyrenderowania. Użyj domyślnego języka szablonów Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:118 msgid "Indexing expression" @@ -139,11 +139,9 @@ msgstr "Causes this node to be visible and updated when document data changes." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes." #: models.py:134 msgid "Link documents" @@ -215,6 +213,7 @@ msgstr "Odbuduj indeksy dokumentów" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -225,7 +224,7 @@ msgstr "" #: views.py:81 msgid "Available document types" -msgstr "" +msgstr "Dostępne typy dokumentów" #: views.py:83 msgid "Document types linked" @@ -242,10 +241,9 @@ msgid "Tree template nodes for index: %s" msgstr "" #: views.py:172 -#, fuzzy, python-format -#| msgid "Create index" +#, python-format msgid "Create child node of: %s" -msgstr "Tworzenie indeksu" +msgstr "" #: views.py:196 #, python-format @@ -253,10 +251,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Are you sure you with to delete the index template node: %s?" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Are you sure you with to delete the index template node: %s?" +msgstr "" #: views.py:286 #, python-format @@ -285,8 +282,11 @@ msgstr "" msgid "Index rebuild queued successfully." msgstr "" +#~ msgid "Index list" +#~ msgstr "index list" + #~ msgid "Configure document indexes" -#~ msgstr "Skonfiguruj indeksy dokumentów" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." #~ msgstr "Index template node created successfully." @@ -330,6 +330,9 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" +#~ msgid "Are you sure you with to delete the index template node: %s?" +#~ msgstr "Are you sure you with to delete the index template node: %s?" + #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -340,11 +343,9 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -381,11 +382,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 134005999434c689fe9fe46a771a16a0c5b257d1..e8dd3e75ecac169c6f0aa6768ff4804aea9e3541 100644 GIT binary patch delta 780 zcmX}pKWGzi6u|M9KPGK8Z5sb1^p9KzDOE8 zQ0O3naMn=-hq`p?pg0NX*vZAMlY@g;JGvCV?~?SvyU*S4&%O7%J4*jbukB~zn?jr; zN60;Llzb84Lj1*fJj6LHMn#_BOB}}En82QxNEQdMgcq?Fmobi2Jd01UA2%>5vL^4i z>0#hKp1`e++o&6N@H&3M9RBN!XPDIWS=1Mg;v1SQpw06xlMiv6?jGYhj^P1ny+Nv< zr@jnvGs8d;`|vsHiPllS$Sc&2KcQ~?j3@CMY6E*nP5F+x?+4z%ebj;$n{@sr>iT&c z!n+uuzMLjm8-~8%45=s5(2W|}7+?B0(%fZ8K1SHg0O~J1MW#p%-X9hm44>M+Lk}Xi z?51ygtFh|%!Q04T@F6-De2w1kzwMQqHRCpXnXNdDAQihjVtiR}E9RNwuE;{e)O@*P zFPo|?daemJV-Nc7RhuiaWLKLeIEa-~(-V`0iK)DmpDtY~1drmw$0Jku(qwUGBYrI! z{7hWxmD#FOb6mR~{7K}33(1*Wx4PFZZ`Z>v!Ufr@jy7RAuHUfTvXRznx8jt$&DpK3 r)<;kKbA39i8Cf*$YO@v`CCzxZL9Z@Lrf#*i+dD0*VysH%z@GdED*b|> delta 747 zcmZ|L&1(}u9LDiUvdzYq+9(uTqcUniTAEVR#+M*y4^=$WlhA|ou-%=Ot;tT!CSXrN zP*AW?7}TSO3VQKW!Gm~l{{r#g&5IXNd;w2h)bDJ1X~2Qsd}b%}@=QJ#{}ekP4>%76 zZ9jFGdP*In#xr!Zdw3b|<0X8DH*hE`#38(cC47Q*-)pSldmO}lISNN`6sPbcE}$z! zN8DvlU}7CF;v*cw4`>hgi5py+cZBfxe%!}q{EaI(pBF;nTReuJ@F@0i`UM<8`>+6Q zklQ$p8>t;3-Y~EMzTh7Gg){gU?SV7=XkY4M28)zk#{<*0o8JC=w(X^MQDocE$dtAL zdK-c_iGIql7jus&Y<|mRhIOuVF@irv_=QUzh}!tOd1cMYRu^D1}U9B~%=tL4da z<;t`?b-Grmng>qF&YUe*&dAAXtunp!(m9`Xw*wpL4x1nOF>~CVcV@XIop|mJbgm{_ zl8g<4*0miaFQOpyZR*eqwDfhu1}C?k5Yhh@+u%K`MY5hAw4K~bo+X=F%*HKG>Q&Y3 NeoOP+y=LYLrGK>MonHU| 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 1ec0e412f4..d8ea20951d 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: # Translators: # Renata Oliveira , 2011 @@ -11,35 +11,35 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "Nenhum" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" #: apps.py:120 models.py:25 msgid "Label" -msgstr "" +msgstr "Nome" #: apps.py:121 models.py:30 msgid "Slug" -msgstr "" +msgstr "Slug" #: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" @@ -47,7 +47,7 @@ msgstr "" #: apps.py:128 apps.py:158 apps.py:171 msgid "Items" -msgstr "" +msgstr "Itens" #: apps.py:139 msgid "Level" @@ -72,11 +72,11 @@ msgstr "" #: links.py:35 links.py:64 msgid "Edit" -msgstr "" +msgstr "Editar" #: links.py:40 links.py:68 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:44 msgid "Tree template" @@ -102,14 +102,14 @@ msgid "" msgstr "" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Faz com que este índice seja visível e atualizado quando os dados do " -"documento forem alterados." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Faz com que este índice seja visível e atualizado quando os dados do documento forem alterados." #: models.py:82 models.py:109 msgid "Index" @@ -135,17 +135,13 @@ msgstr "" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Faz com que este nó seja visível e atualizado quando os dados do documento " -"forem alterados." +msgstr "Faz com que este nó seja visível e atualizado quando os dados do documento forem alterados." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Escolha esta opção para que este nó atue como contentor para documentos e " -"não como pai de outros nós." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Escolha esta opção para que este nó atue como contentor para documentos e não como pai de outros nós." #: models.py:134 msgid "Link documents" @@ -169,11 +165,11 @@ msgstr "" #: models.py:156 msgid "Value" -msgstr "" +msgstr "Valor" #: models.py:159 msgid "Documents" -msgstr "" +msgstr "Documentos" #: models.py:204 msgid "Index node instance" @@ -217,6 +213,7 @@ msgstr "Reconstruir índices de documento" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -254,10 +251,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Are you sure you with to delete the index template node: %s?" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Are you sure you with to delete the index template node: %s?" +msgstr "" #: views.py:286 #, python-format @@ -286,14 +282,17 @@ msgstr "" msgid "Index rebuild queued successfully." msgstr "" +#~ msgid "Index list" +#~ msgstr "index list" + #~ msgid "Configure document indexes" -#~ msgstr "Configurar índices de documento" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "Nó de modelo de índice criado com sucesso." +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "nó de modelo de índice editado com sucesso" +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -331,6 +330,9 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" +#~ msgid "Are you sure you with to delete the index template node: %s?" +#~ msgstr "Are you sure you with to delete the index template node: %s?" + #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -341,11 +343,9 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -382,11 +382,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.mo index 3040bdea17f9f3a6af73220bfe5a3959bf45db31..e81f9131838af566d22e6c6672cd73593a9f15ac 100644 GIT binary patch delta 1165 zcmZA0Pe@cj0LSr3ch}u?*V44oRiB#HnoIr($rVZZW0%nWogyT+7PZVZRztd2kliX_ zG)SRCmm-J`VPtjbSQOSxsKg}fA|3MLDf<4_SBD11&&<4i^XE6u*JZE5qYHVSNkfTJ z!_*rajA_M{4E|6SGmSZd->@Ac9%C-zAQs{m%)wPGM&mWc2VvZbl^DYo4B-_F;284C zsJTOzkZvQ4~o+;EuAE4HmML*7A zKI@x#8k%^;^_S}!YN6k*L1tseChS^{ZS<>g8}?u>UUQ$1yG~+|@hL3FN2vAQVFBx# zk2LNR`!b%TKSn-XxQt0WywRBLID^?Zhq|iI$SYuH#-5^n_a3!@@3;kj zqE4Pk95N6je=U^DKpqyNB8(v4n`uTpZ^ceLgo<#&^*QQF=3T$yCi+WQjjO1Iia13P zI!MszIe<0E-=U#hyB|EQ^|BL`hRSX#;h0LQ64PYNoi5t2;*V0b_}`+9Yw`b!4p!q1 zmgxRVsftMv>kCzMid}c8FICYgW)+=^6w^f~FQe|DMyR?|m0D^Qbr)6FqW=nWuzNU_ zNI65jeJQ7J;Cy1l8A>|wgl+Tuum`-wHtBt7+kLm}g0IWo&N}7kjwkxaW z{g*u_`-gk%i2q)&DO%SUZK!wZn__z#ZE2wR-$+A!tgiW4d*FD6oyjh-OW7anr<}Vs h6-?S#DDFL)o^v|1$Jdb<=pDXf--f2vr;X>H{sS$}duIRu delta 1448 zcmb8tOKeP09LMparqg!XQKeq>=q*KyRyC?jBo%~62_o@Yl*zrf?Tu+Kota=Ejg?rC z$Uzj5h(~HgRHO;9AV|Dc77~wyO(m=>B&>XY(;+PVGv|KJoO|xM|MNfh-i-Uz{U0Vo z&KRPJHiLF?j4^A}AIpWPix{&W>v0_(znKNiRPt4UBz1qs&dID`~GAbj;5RRLVG7xQ_}lr z$mtAH-JyLIdtLP>TaSdf!_ETNC+)O7UwWx@BY7vC4ce}4E!)3i6WdIMPJS|s&SxJ1 g>pO1PqYaRM*l7M^uDxF7+VXg#T^k>;pW?fI0Yv)Ha{vGU 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 909d7700da..dec3cdf9ec 100644 --- a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Renata Oliveira , 2011 @@ -11,35 +11,35 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "Nenhum" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "Tipos de Documentos" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" #: apps.py:120 models.py:25 msgid "Label" -msgstr "" +msgstr "Label" #: apps.py:121 models.py:30 msgid "Slug" -msgstr "" +msgstr "Slug" #: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" @@ -99,19 +99,17 @@ msgstr "Novo node filho" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "" -"Error indexing document: %(document)s; expression: %(expression)s; " -"%(exception)s" +msgstr "Error indexing document: %(document)s; expression: %(expression)s; %(exception)s" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Faz com que este índice seja visível, e atualizado quando alterações de " -"dados de documentos." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Faz com que este índice seja visível, e atualizado quando alterações de dados de documentos." #: models.py:82 models.py:109 msgid "Index" @@ -137,17 +135,13 @@ msgstr "Indexando expressão" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Faz com que este nó para ser quando alterações de dados do documento visível " -"e atualizado." +msgstr "Faz com que este nó para ser quando alterações de dados do documento visível e atualizado." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Marque esta opção para que este nó ato como um contêiner para documentos e " -"não como um pai para mais nós." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Marque esta opção para que este nó ato como um contêiner para documentos e não como um pai para mais nós." #: models.py:134 msgid "Link documents" @@ -219,6 +213,7 @@ msgstr "Reconstruir índices de documento" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -246,10 +241,9 @@ msgid "Tree template nodes for index: %s" msgstr "Árvore nó modelo para o índice: %s" #: views.py:172 -#, fuzzy, python-format -#| msgid "Create child node" +#, python-format msgid "Create child node of: %s" -msgstr "Criar nó filho" +msgstr "" #: views.py:196 #, python-format @@ -257,10 +251,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Edit index template node: %s" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Editar template de nó indice: %s" +msgstr "" #: views.py:286 #, python-format @@ -279,8 +272,7 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Em grandes bases de dados esta operação pode levar algum tempo para executar." +msgstr "Em grandes bases de dados esta operação pode levar algum tempo para executar." #: views.py:342 msgid "Rebuild all indexes?" @@ -291,16 +283,16 @@ msgid "Index rebuild queued successfully." msgstr "Sucesso do Rebuild da fila de indice." #~ msgid "Index list" -#~ msgstr "Lista Index" +#~ msgstr "index list" #~ msgid "Configure document indexes" -#~ msgstr "Configurar documento indexado" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "Modelo de nó de indice criado com sucesso." +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "Modelo de nó de indice criado com sucesso." +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -351,11 +343,9 @@ msgstr "Sucesso do Rebuild da fila de indice." #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -392,11 +382,11 @@ msgstr "Sucesso do Rebuild da fila de indice." #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.mo index fc69b01e903a2555df7ab4bcd5c85418dc011f7a..edf8cbc9b2572a75a9754a30988e352c2b682661 100644 GIT binary patch delta 601 zcmYk&O-mbL5Ww--?ApYaq=`YaMA064Q6hPffI%b&Tk&8#dQsXXKIq!Gf#^ahf`X_Y z;6cxV(vydZC!yfQptqiS62xyH9=-X0(lm5n_BYwx%se}P5)bj6hhFDMh+cA#JST_9 zDT@p76KC-PKj900#ZpKlh3D9hcUZ(n?8KBU;@}7D!%>W33B$O65s@8Pq%bdj!4fJQ zz#rIw*Jv6v@Rs5CxXkZU9pnU^HrJ4rSNX@UuV_qtlaN6d-^&&o@(|E f>fYZWZe2;)t9T=UA5`^xq}Jh9Yi?a%MFw91C23SX delta 746 zcmZ9|&r1|x7{Kv&f3&OiO9fHO=rx2;92uwGv?Z!TKj@;-S)pm>T^k%{WM?MSixeq# z@H8kyP=~rjr;c7al_w!0y6t}u_$TyzcUGc(;dwvr>^|@NKF{0i{nfYG>@V&KMjtUk zd?W^m$s7}72Or>TypKO{8He&hT)jNiGmRAdw1N2i2%hLa^Bws8-y;0ULU;%&T)Hr~P)cnQCvE~JTL z_y@j~S&NJ&G z=t-O~(btYzcD$4YNrPM7fq~8j5wQ86*467oiuh%Tr z71Qi_G;cgs&%MYC1LH1t)}&=l^WUst%}BFavnpQ}iu?J|b_@35TTdoIR==dula5q+ zTzZ*qmyIWLp_};f@QwY{4^I+X{YWQiH#8+k>PWF=J&a, 2013 @@ -10,26 +10,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "Nici unul" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -72,7 +71,7 @@ msgstr "" #: links.py:35 links.py:64 msgid "Edit" -msgstr "" +msgstr "Editează" #: links.py:40 links.py:68 msgid "Delete" @@ -102,14 +101,14 @@ msgid "" msgstr "" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Cauză pentru acest index să fie vizibil și actualizat când documentul suferă " -"schimbări." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Cauză pentru acest index să fie vizibil și actualizat când documentul suferă schimbări." #: models.py:82 models.py:109 msgid "Index" @@ -135,17 +134,13 @@ msgstr "" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Cauză pentru ca acest nod să fie vizibil și actualizat atunci când datele " -"documentului se modifică." +msgstr "Cauză pentru ca acest nod să fie vizibil și actualizat atunci când datele documentului se modifică." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Bifați această opțiune pentru a avea acest nod ca un container pentru " -"documente și nu ca un părinte pentru nodurile suplimentare." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Bifați această opțiune pentru a avea acest nod ca un container pentru documente și nu ca un părinte pentru nodurile suplimentare." #: models.py:134 msgid "Link documents" @@ -169,11 +164,11 @@ msgstr "" #: models.py:156 msgid "Value" -msgstr "" +msgstr "Valoare" #: models.py:159 msgid "Documents" -msgstr "" +msgstr "Documente" #: models.py:204 msgid "Index node instance" @@ -217,6 +212,7 @@ msgstr "Reconstruire index documente" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -254,10 +250,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Are you sure you with to delete the index template node: %s?" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Are you sure you with to delete the index template node: %s?" +msgstr "" #: views.py:286 #, python-format @@ -276,8 +271,7 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Pe baze de date mari, această operație poate dura ceva timp pentru a executa." +msgstr "Pe baze de date mari, această operație poate dura ceva timp pentru a executa." #: views.py:342 msgid "Rebuild all indexes?" @@ -287,14 +281,17 @@ msgstr "" msgid "Index rebuild queued successfully." msgstr "" +#~ msgid "Index list" +#~ msgstr "index list" + #~ msgid "Configure document indexes" -#~ msgstr "Configurați un index de documente" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "Nodul șablon index creat cu succes." +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "Nod șablon index a fost editat cu succes" +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -332,6 +329,9 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" +#~ msgid "Are you sure you with to delete the index template node: %s?" +#~ msgstr "Are you sure you with to delete the index template node: %s?" + #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -342,11 +342,9 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -383,11 +381,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.mo index 0a0b1f0f4b859d0aa0da6da48f8bc551132f8ba6..81c2d25372c4247772917d889b994f2275dbdca5 100644 GIT binary patch delta 701 zcmY+=Ur19?9KiA4yf<~~rdhJc!hsJxq~WFw8if*C6cIiK1+lh^jO^}V6MTu45<&(+ zN9jR=QP07!2_xL9w;l@4eQGb&TdxT|2Yr7{gnn@D=lsq+zw@s(^y_%}$Dq3@#4*|_ zT8(y^b|b`x_=s2W6JEh^hsb@L$6?&X7`8Btdl<&Ej);rraR}4ch4UE2TkX6o3v{{} zD4-TB;|xB;6WGKf_ziWT?-*l~eSA*d+bOb+Tlf^uu*)Uf#w70HZ5(BjK`i4*e1Vsx zEb^AlfKEg`S%~AS1E?=Df)Tuk8+aXO@F!|ryhmgT6R3}-FUeW{h1O~4#u|D-4N8SO zv=>s3(sVH{C9HE8ee`+{GJQUMiT;C}^Gfv1lTgT1I{fHtA-nXz^GijU%jHWZ;>5=0 z{LH;YFDKXhoVOg$`^8em&wB0DE4I!13v#pIduG$Q<7O6@JoDShMpEMwljF%mJdsLI zO`5yz@Zm@@k)F8lZq1!`%%85WV;i<<-v_I9*Y4OxuoA3`t8a_sZ7el+|qAHq4iBtN$f4tHGM?!Pt&@-IMwY DaH*40 delta 770 zcmaLTOKVd>6u|M5Cbmgztr0_`5xIgQ6;tXpsTvSlMMd-*XcsY=mSA#Inj26MVtqhW zq{yf{5vgm5FItUpBQ9Jha}m^4m#+N)F8ogv6cq=~{mtXdRnKPQ_j>ms*>mLN6} z4~QXRXNV7N9*^QxJc0q9!BmgPM!bw^yoYvQ8}s-9lei{K;8q;Q-MAemu}`EaSLj5U zxPjw%2UGY7?EznLh{Jj#A`6T+_ljJ{hj{l8Y^n9U%s z?iakG`Z@Gfb*57AmE+Y)$|=q&`X#5{C>B+{KGmpH&W-#tQ*p%~i9hmGU83Ea%HFg- zA3mj5!i9lcW^`Z1%{sfr@@`I_h@|bz-i*7)8O`P0>=Qq7Ae^{sTESd!F}Pq}ndjz( zY3YghHvPEoz1GpBejUvWcWeArL2$_|nP;Z$1oNh49+@^9JErBBWxXYq+7T=`!5mXd i<|)e^`G0zXbhAwIOOEUWH%&(m#zyq<*hlTgv)=(=^TJ;M 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 108d7f0433..cd4cbd75e6 100644 --- a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,27 +9,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "Ни один" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -43,7 +41,7 @@ msgstr "" #: apps.py:123 apps.py:143 models.py:38 models.py:126 msgid "Enabled" -msgstr "" +msgstr "Доступно" #: apps.py:128 apps.py:158 apps.py:171 msgid "Items" @@ -72,7 +70,7 @@ msgstr "" #: links.py:35 links.py:64 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: links.py:40 links.py:68 msgid "Delete" @@ -102,13 +100,14 @@ msgid "" msgstr "" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." -msgstr "" -"Этот индекс должен быть видимым и обновляться при изменении данных документа." +msgid "" +"Causes this index to be visible and updated when document data changes." +msgstr "Этот индекс должен быть видимым и обновляться при изменении данных документа." #: models.py:82 models.py:109 msgid "Index" @@ -134,15 +133,13 @@ msgstr "" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "" -"Этот узел должен быть видимым и обновляются при изменении данных документа." +msgstr "Этот узел должен быть видимым и обновляются при изменении данных документа." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." -msgstr "" -"Этот узел будет контейнером для документов и не будет иметь дочерних узлов." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." +msgstr "Этот узел будет контейнером для документов и не будет иметь дочерних узлов." #: models.py:134 msgid "Link documents" @@ -166,11 +163,11 @@ msgstr "" #: models.py:156 msgid "Value" -msgstr "" +msgstr "Значение" #: models.py:159 msgid "Documents" -msgstr "" +msgstr "Документы" #: models.py:204 msgid "Index node instance" @@ -214,6 +211,7 @@ msgstr "Восстановление индексов документа" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -251,10 +249,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Are you sure you with to delete the index template node: %s?" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Are you sure you with to delete the index template node: %s?" +msgstr "" #: views.py:286 #, python-format @@ -273,9 +270,7 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "" -"В больших базах данных эта операция может занять некоторое время для " -"выполнения." +msgstr "В больших базах данных эта операция может занять некоторое время для выполнения." #: views.py:342 msgid "Rebuild all indexes?" @@ -285,14 +280,17 @@ msgstr "" msgid "Index rebuild queued successfully." msgstr "" +#~ msgid "Index list" +#~ msgstr "index list" + #~ msgid "Configure document indexes" -#~ msgstr "Настройка индексов документа" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "узел шаблона индексирования создан" +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "узел шаблона индексирования изменён" +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -330,6 +328,9 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" +#~ msgid "Are you sure you with to delete the index template node: %s?" +#~ msgstr "Are you sure you with to delete the index template node: %s?" + #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -340,11 +341,9 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -381,11 +380,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.mo index fcfd4eb4d0295a851d57c7ca4f424cf7c203522e..19ecb3da74847a422c34363b6190a9626fc4c75c 100644 GIT binary patch delta 381 zcmY+8y-EX75QT3vDi&JUYB4X6kRJ({N+gYf+StovGq^Xqd#~)h32_@+1yh9J18AYO zrG?#!FCaF8VCQ3aHUYr{-yE1ZFefiREMIj z3m(CHNvR)rk$YK~=icB&?gM@R|AZr^7D1un28FZ7xZ$%628kH&)V}G-h_rE@O(5#X z8d1lFVouM5dhEH&P8|7AJF@4Jve(v7!WZN@5^^>X^12w7WF*1BOLcO3xYnxFnw3VK z>aF&6bMn0Tw`kPcwVkK$lalV(XjVci{lCOsDw)b}g!)2V&X|T0>xfY*jO@Hcp!-Z2 dhhBzEMk4Mbl#eMNvt#roC#17s`g*6U>KCJtVR8Tf delta 156 zcmZ3+c7!GVo)F7a1|VPpVi_RT0b*7lwgF-g2moR}APxlLD~t>b2~fT%Py>()2O#}m z;F*__TA`4cS6q^qmz+BBxi7D&u7Rblk%@w#nU#_0WJgA6kcfq@k-36_sg;q*=1j&A KM*d6`Z43Yz?;2?U 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 22829cb27b..2d1020537b 100644 --- a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,26 +9,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "Brez" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -101,11 +100,13 @@ msgid "" msgstr "" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." +msgid "" +"Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:82 models.py:109 @@ -136,8 +137,8 @@ msgstr "" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "" #: models.py:134 @@ -166,7 +167,7 @@ msgstr "" #: models.py:159 msgid "Documents" -msgstr "" +msgstr "Dokumenti" #: models.py:204 msgid "Index node instance" @@ -210,6 +211,7 @@ msgstr "" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -247,10 +249,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Are you sure you with to delete the index template node: %s?" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Are you sure you with to delete the index template node: %s?" +msgstr "" #: views.py:286 #, python-format @@ -269,7 +270,7 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "Če je baza velika lahko operacija zahteva nekaj več časa da se izvrši." #: views.py:342 msgid "Rebuild all indexes?" @@ -279,6 +280,18 @@ msgstr "" msgid "Index rebuild queued successfully." msgstr "" +#~ msgid "Index list" +#~ msgstr "index list" + +#~ msgid "Configure document indexes" +#~ msgstr "Configure document indexes" + +#~ msgid "Index template node created successfully." +#~ msgstr "Index template node created successfully." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Index template node edited successfully" + #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -315,6 +328,9 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" +#~ msgid "Are you sure you with to delete the index template node: %s?" +#~ msgstr "Are you sure you with to delete the index template node: %s?" + #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -325,11 +341,9 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -366,11 +380,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.mo index 4909b70321db1a6accaa5f00cdec7eda90865d8a..31c027bc283c0ce19e07917e48df3b4c22a0a591 100644 GIT binary patch delta 302 zcmeBTna5gxPl#nI0}!wQu?!IV05LZZ*8njHtN>z8AYKW?EI_;&i1~nc2b6ytNV5X* z86cj;$iQ$3NQ3m}GC{;Efiy^cJ&*?J?*r0YKzcHe1}YB(G7$hM26hO@KxU{gND~;i z1>R F000>9Ihp_f delta 155 zcmbQo+QkxgPl#nI0}wC)u?!IF05K~N+W;{L1OPD~5C;PBEJg-~1StPEkPSp|0MZWz zo_Q&$6$+Vo#U+V($rCU5@tW!ySn3*?C>WYq8JSMjW|RhrSm+v=D;Sts8JTPjW|U&& K&qUUh$^ZcJ92w65 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 c61a835c0a..31213cb9a5 100644 --- a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,25 +9,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "None" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -70,7 +70,7 @@ msgstr "" #: links.py:35 links.py:64 msgid "Edit" -msgstr "" +msgstr "Sửa" #: links.py:40 links.py:68 msgid "Delete" @@ -100,11 +100,13 @@ msgid "" msgstr "" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." +msgid "" +"Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:82 models.py:109 @@ -135,8 +137,8 @@ msgstr "" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "" #: models.py:134 @@ -161,11 +163,11 @@ msgstr "" #: models.py:156 msgid "Value" -msgstr "" +msgstr "Giá trị" #: models.py:159 msgid "Documents" -msgstr "" +msgstr "Tài liệu" #: models.py:204 msgid "Index node instance" @@ -209,6 +211,7 @@ msgstr "" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -246,10 +249,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Are you sure you with to delete the index template node: %s?" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Are you sure you with to delete the index template node: %s?" +msgstr "" #: views.py:286 #, python-format @@ -278,6 +280,18 @@ msgstr "" msgid "Index rebuild queued successfully." msgstr "" +#~ msgid "Index list" +#~ msgstr "index list" + +#~ msgid "Configure document indexes" +#~ msgstr "Configure document indexes" + +#~ msgid "Index template node created successfully." +#~ msgstr "Index template node created successfully." + +#~ msgid "Index template node edited successfully" +#~ msgstr "Index template node edited successfully" + #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -314,6 +328,9 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" +#~ msgid "Are you sure you with to delete the index template node: %s?" +#~ msgstr "Are you sure you with to delete the index template node: %s?" + #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -324,11 +341,9 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -365,11 +380,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.mo index 4bf7f43eccb67454de7bf4f411a6d70285c17e44..96e8cc509b49eeb94e032fd574e0cd73dfd59d42 100644 GIT binary patch delta 482 zcmX}o&r1S96bJCP?z(2SX@wYgiBA1M*wv8Qgo^4AK_`zvge@V|Dwt3w1q%;d!pTYq z+On=)>d?VM|3maAxONCSbdLH?4i5YH%zHCC`(_)#U+pYaiW1SWhbRIaXu=ohhu<&^ zf8Zb-k%@e89QMH}sK5kVgtKrI9zidxLH_;~JePy=??y=fZ!htAow4^x#Vk}ND^~Awtpp;DehbLL4j%VbjT{un!RHkX6;?t$k`UF z%bUvfUeRJ-az;zW^h7Lfj2TIDCc(CpXs;4COnvUDs<;v>t7+A}sJgdJ_NGn-sPlZ+ aZq>=Xbl8$_HPSA($h~>!T%UF~iRC~0&rk#a delta 658 zcmZ9|%S+=>6bInbR^w}YE9wZtT?jrP8e{9D3d%4p#Knl{P8ZT#CD5kDv@)|&)M`}( zC0Y=L;uK|8Zgex_?fs8%$3-OM5cOlepG(vS?{aCL z#*owsL=`aPxZr3&5$}(k`3kraMLiJ z7=?)Pw~XiuEI^>i55qpd9;FDo30#Vb5xCUbU&v3#U9P&YHm%OYW;s*Bfmn!ZQKo7N z|HXA<$sIAC-7S+W%0rRhRFpF(jAd@OLW>*_%F9az*`In62Y_ zR#lrZx;zuco@dJE6Qv$e_OkX)zl_`~NrfXn#Zf+|>S|aMf8b0%lcjd7b&GNrlYD;J zd)k&`x+)&xo7UxtnOrpw)7IIa%*C!zC5#&pp=r?kduXjC?$;Ns#ebQ^e&+nYnb^v# grzl(Ze%ZQ6-d}BhSazz6v@lp{rjD$GjrWJpE4?hInE(I) diff --git a/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po index 8ff75d6bd1..a79f32cf7b 100644 --- a/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,25 +10,25 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 msgid "None" -msgstr "" +msgstr "无" #: admin.py:26 apps.py:134 links.py:48 models.py:41 msgid "Document types" msgstr "" #: apps.py:48 +#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -101,11 +101,13 @@ msgid "" msgstr "" #: models.py:29 +#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "Causes this index to be visible and updated when document data changes." +msgid "" +"Causes this index to be visible and updated when document data changes." msgstr "当文档数据变化时,将导致索引被更新和可见。" #: models.py:82 models.py:109 @@ -136,8 +138,8 @@ msgstr "当文档数据变化时,导致节点被更新和可见。" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not " -"as a parent for further nodes." +"Check this option to have this node act as a container for documents and not" +" as a parent for further nodes." msgstr "检查当前节点是否为文档容器,而不是作为别处节点的父节点。" #: models.py:134 @@ -162,11 +164,11 @@ msgstr "" #: models.py:156 msgid "Value" -msgstr "" +msgstr "值" #: models.py:159 msgid "Documents" -msgstr "" +msgstr "文档" #: models.py:204 msgid "Index node instance" @@ -210,6 +212,7 @@ msgstr "重建文档索引" #: views.py:51 #, python-format +#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -247,10 +250,9 @@ msgid "Delete the index template node: %s?" msgstr "" #: views.py:218 -#, fuzzy, python-format -#| msgid "Are you sure you with to delete the index template node: %s?" +#, python-format msgid "Edit the index template node: %s?" -msgstr "Are you sure you with to delete the index template node: %s?" +msgstr "" #: views.py:286 #, python-format @@ -279,14 +281,17 @@ msgstr "" msgid "Index rebuild queued successfully." msgstr "" +#~ msgid "Index list" +#~ msgstr "index list" + #~ msgid "Configure document indexes" -#~ msgstr "配置文档索引" +#~ msgstr "Configure document indexes" #~ msgid "Index template node created successfully." -#~ msgstr "索引模版节点创建成功" +#~ msgstr "Index template node created successfully." #~ msgid "Index template node edited successfully" -#~ msgstr "索引模版节点编辑成功" +#~ msgstr "Index template node edited successfully" #~ msgid "Node: %s deleted successfully." #~ msgstr "Node: %s deleted successfully." @@ -324,6 +329,9 @@ msgstr "" #~ msgid "Document types not in index: %s" #~ msgstr "document types not in index: %s" +#~ msgid "Are you sure you with to delete the index template node: %s?" +#~ msgstr "Are you sure you with to delete the index template node: %s?" + #~ msgid "Are you sure you wish to rebuild all indexes?" #~ msgstr "Are you sure you wish to rebuild all indexes?" @@ -334,11 +342,9 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; " -#~ "%(exception)s" +#~ "Error in document indexing update expression: %(expression)s; %(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -375,11 +381,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that " -#~ "index will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that index" +#~ " will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.mo index 03a37ef245200fd136cee98f13d2228c75545f61..0b869ea0b9a9ec46ab20ec7634838946b74a6667 100644 GIT binary patch delta 392 zcmXxdze~el5XSLK8h@m*q7@er$)*m0H)$;x937>Kn>Yz(=+cOaYY{sYhe8k+7jbaX zMaQnr;$-TetAmq&fcU*u51xE@!*S1x`|Y;g%g%)`B{EOiWSV>t9b<_sV~8`ji@KL$ z5zo=VOPsVsgzp4lPu#&Dkue-6rEJzZbn0m{$?DEo z=Gq%8wZK$@DD=ZxT&)DAYD{r!GuTc}8b^(^8LaOeC$S%y@P97~W3&3uv7aoj-_CFS L{ITE3ul3w7f50=b delta 359 zcmeywd6BdJo)F7a1|Z-8Vi_Q=0b)TQz5~P{puot$pb4ZEfwVA?_6E`*b@4!&3rN=h zX#pVJ4y5^j^b8;^1f-Wk<#z#TULgM{kd^|{m!b4KAbp>ap`L-031Y!ZW{3sCED#IS zfi%bh7a$F?z#mA1EJy&-APe%L@=ZV*WI->G23as0N^b+wKs&&I6H0^316l_LtU!{R zL7agBsE&aHBF4Z5q}hR(XR<0|(c}V_rpa, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:10+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -92,7 +90,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "لا شيء" #: views.py:71 #, python-format diff --git a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.mo index 92740389b7021de94ba2293f2306f22cf28784ef..e565044d0c963cafc2cb360e6b24b1616fda2338 100644 GIT binary patch delta 756 zcmZ|L&ubGw6u|M>W?MDYTH8cLEsTPt7E?D#Ej5Bgh=};3;>8|%3CY+jgaoolC8uhO z5lVcG zzXS0K_c5`C=D_y0Te!?2zi^8052!kgpYS@yyM-9VJZA6--p0>p8av)2#BRKR!+04_ zU>S!vUp!@CI(v;V+}wWuij%zmz>9cvmk{(JdPx&|NOMD`J2x~nBBTlPH|e(%Z0iL5 zh`pq_qzThhbeP9}^JXHeN~)%0LDh2kqAEzwoh#>R^{VoGX~p7&&NQFv`MmPHJM~hj zF~-d7)TL^*Qk8d$ZprMXh+CeMwc@`@otGy)aaA?sm2AcgZ&b?4e`rm1cMkFc>&4lL zgp*FBk}^4w8BZsiamR_?oKD)?uh7cPeP zbfDkpmj0+WB#)La?YO@d8T3~o>7ig}Nw}y387_tQbz5(QO%`sBvEuEhPXY7cy>3a} sHq|5r|5G@2xFsnO=yh`vhcB_AWp3$Tvt>`XtUu6zYtLJOAKEYf0O8QP9{>OV delta 377 zcmXZYze~eF7{>AUk~Z3CON~zcA{G=X1k=Mx%%tE_O8pB2ClOo=f>7uvxJW%j9h?PM zo!p&t(p6o%30<81UYZvkKHR;>y~ll5Mt=V%C|nCQO%_Ry%#bf)D^wzNT)|mvqdj+s zKK8JR=UBm84DccEzhIg5E6(F*?k`>{=}XBG>Cm`yMb>eMDF%h{pboCFKEWCea0#Dr z4nNQi9%6!jxQiP_5oTmn%C!$>TvoJY%HGI%nH=wlhZDs92JgtqysHDheRLMK_R?^* zYmS}7JUTb!W)yEndNXWnrMhYM-37aoL^=+&P8;#lsasX*-i*Au*(qL_nzw9PUe~;N FSN~9{Er$RA 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 f9bd39e1af..b9f65db9ca 100644 --- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:10+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:8 settings.py:7 @@ -42,7 +41,7 @@ msgstr "" #: links.py:54 msgid "Signatures" -msgstr "" +msgstr "Подписи" #: models.py:27 msgid "Document version" @@ -66,7 +65,7 @@ msgstr "Проверете сигнатурите на документа" #: permissions.py:15 msgid "Delete detached signatures" -msgstr "" +msgstr "Изтриване на несвързани сигнатури" #: permissions.py:18 msgid "Download detached signatures" @@ -91,7 +90,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "Няма" #: views.py:71 #, python-format @@ -134,12 +133,12 @@ msgstr "" #: views.py:187 msgid "Detached signature deleted successfully." -msgstr "" +msgstr "Несвързаните сигнатури са изтрити успешно." #: views.py:193 #, python-format msgid "Error while deleting the detached signature; %s" -msgstr "" +msgstr "Грешка при изтриване на несвързана сигнатура; %s" #: views.py:204 #, python-format diff --git a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.mo index 48243b4aff7f7bdc3f2a4345bcbba38421cbbafc..d03cc044d4c2b3c88e6f87a99573ac2cc14618cf 100644 GIT binary patch delta 384 zcmXxeJxjw-6vpwB8m*01YbBr}(oGyL+@!T&78mFGvN{Q7h=l}HT#F!rA~*!;Qt%T9 zf~$j{!0rx$P7clvo&29x4?OwhhC`k^D0RKgd)2)Yrc9Q}1(_q?M8`TJYZ%}>?xXHy z=-~~z*u@I=a0VZ+iqEKfebkOOT*9xB9T_W#{BT%7E%N!BUSJa!aTk4TV-e5)&R3{~ z_c)7>s0A;m#jm)4AE*}|AT=^U^g=pQvMNIFaK?E~6ZWJu{4y$>n03pK{IO9jcr)#?QEO9_$)a|veaxHoW@Ztw88&g7({mC>ALXg6kEwre3)i= H+r9k-_OvfB delta 355 zcmbQv^^3Fqo)F7a1|Z-8Vi_Q=0b)TQz5~P{puot$pb4ZEfwVA?_6E`*b@4!&3rN=h zX#pVJ4y5^j^b8;^1f-Wk<#z#TULgM{kd^|{m!b4KApMPzp`L-031R^Q3&dhAAT0@0 zXal50fpi#@&H>UOi<*EmKaidbq(KHR2GSr4Hv(x1AbkW#gB*AlNCWKv15PLnaxl<3 zFkl6e+zjFjAbS}&AYu$`K$;zhc_yne7EPYRc+S*R*T7QO$V9==%*qJJHZd^Z3h>tr rN-fJQ&dkr#bxABqwNfxLFa*k3=o%R)7#Ud^8g8D?^oVhCCrcjy&F?6* 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 92169603bf..0a04cf9ccf 100644 --- a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:11+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -92,7 +90,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "Nijedno" #: views.py:71 #, python-format diff --git a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.mo index aa11acc1a9e017a94fa6438092a87705e8732d49..241a4e64adc49c18c1079dd785bfb18c69fe132f 100644 GIT binary patch delta 118 zcmX@c{E|8Jo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlL9!3U+Fdz+*e+*;;5g35< m!hv6YUg|^(UtTj^17lqyLj^-KD-+|5lS~-dJoD01^B4dCw+}M_ delta 82 zcmaFKe2m%Ro)F7a1|VPrVi_P-0b*t#)&XJ=umIv7prj>`2C0F8iJ`u{rn&}}x<)1n OhGteqrW@CrFaiLKtqMT^ diff --git a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po index d910961399..4141877433 100644 --- a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:8 settings.py:7 @@ -90,7 +89,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "Ingen" #: views.py:71 #, python-format diff --git a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.mo index b2aabed9691665fa39502d1c423d30128719c000..9e70df4522e301f48eb4ce1bab22651b423e0e77 100644 GIT binary patch delta 66 zcmZ1_vPxvbG*(kHT?1oXBSQs4Gb}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhR2 PIwM0X1Ix{)S>ss%RH6}! delta 66 zcmZ1_vPxvbG*(knT?0#9BNGKfGbu*vi0k^J&(2764Yr5t{%2 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 0eb0de781a..33143260dc 100644 --- a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -14,14 +14,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-08 23:05+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:8 settings.py:7 diff --git a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.mo index 55a7bbc14587197518f0f05d27181c6fb6d950eb..cb6b81963232aefe2106e44e4e8e2abff66c943f 100644 GIT binary patch delta 26 hcmZqVY~?|w1>XPw delta 26 hcmZqVY~?}_1?K<& diff --git a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.mo index 316636590816a002a3333a90f848fbbdc9a8cbfc..46710d11dcfc19c7d3befad7647f65342ae5edbf 100644 GIT binary patch delta 66 zcmew^^j&DfG*(kHT?1oXBSQs4Gb}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhR2 QIwM0X1Ix{)S=TTF0DDyuZ2$lO delta 66 zcmew^^j&DfG*(knT?0#9BNGKfGb0DX88eE, 2014 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-24 19:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:8 settings.py:7 diff --git a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.mo index ae9c3124e6ff76331573ff697d4f7b4d26a33973..3bacda367a83b1b231161afcc44bb4fb56525839 100644 GIT binary patch delta 66 zcmew){7HC2D66TNu7RylWKYNcRgUkksEd=M;2?r74k~_sF%f*^cb|L5`}6y~mluPZL$!|sU3V32 zoY+hBbtrWhf1oaL zenFYn&)|bNi8Z-qxetm~y9n7>2JIlE$&qd$By%}Nu3L=|(&W_It(j=6L;lUHl2aKY zZx4!zVkew))z~~@vbj}1$Hg9se;;wp5Q1y*o z@k>RWD`l%i;{|CQtDJ0XgzklEskk*Ax05=VO3zHktr^RTo;w>qZ`Rz3Tk_(koxr5E zZ6({|>}1+He$=8xGfpLlFZ+&HDL6sNPwV--?^c3RnGEKa<}O}ZSk|-If8P?>yi;8> z!Ku}v;}#OxQt?DI(|FoF(Gj^&Eth?_X#Dzkcw|)Ps{d!I7On-x_l(Nab$Gb(t><;< E4-gG}9smFU delta 773 zcmY+?KS*0q6vy#vj8UVttua>n2cD?GD$l+={F{nXHwzXOM2g@m1PKHm= zitVDKn{?2@MHdGbaq3bKo!U)wsgof6{+@O4z|H60_vgHG?#*%2ZlZM77+o{O3&wLs zw8EH|c#ewC5o4a>7kq?UScCi6g@>r;FEN3wmAB8?sP{(k8P1^cFJdE>kvt`{$>bFm zeqb}6VH~e8iu%!qtFQr^u@gJ73CB zeKX61+$N7o7@#^^#$H^_7{rQSW`i4lJWiRYlQr*hGn@ zO$$R?qIk?uaz#CZV>M5-Ae8JbwB>w13>q>I87fX^tp5_H7jCy2(J|bG8dQXZ>*Ofv zUetZvh`8I8-y-k(ZD-ha`>gap#%12;IPrJm_C)q$F39-{_8YI5%~-CJ=H8I)I+p8Z s(oT;<#NT>B(Vi-J3qjs1`h|=&;eW^$iarKjA?NQTV(k?>x$57MfA;=Og#Z8m 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 14d1566842..ef8e9f52ae 100644 --- a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Christophe CHAUVET , 2015 # Pierre Lhoste , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:10+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:29 permissions.py:8 settings.py:7 @@ -144,7 +144,7 @@ msgstr "Erreur lors de la suppression de la signature détachée; %s" #: views.py:204 #, python-format msgid "Delete the detached signature from document: %s?" -msgstr "" +msgstr "Supprimer la signature détachée du document: %s?" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" diff --git a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.mo index 0155599c8af6f7af08410dfdd5ecc9a557580de8..8b04fc6a28deb283e3d76694080b280fd54e05ca 100644 GIT binary patch delta 118 zcmX@f{DwL7o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLentj{Fdz+*e+Fa&5g35< m!hv6YUg|^(UtTj^17lqyLj^-KD-+|5lgt^}f>U#IGZ_E{KMza* delta 82 zcmaFEe3IGXo)F7a1|VPrVi_P-0b*t#)&XJ=umIwIprj>`2C0F8iJ`u{rn&}}x<)1n OhGteqrW@CrGXemQ6belM 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 fff9abf61b..25da9991a8 100644 --- a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:8 settings.py:7 @@ -90,7 +89,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "Semmi" #: views.py:71 #, python-format diff --git a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.mo index 87c08ebceba3eb29b32ab7f42f9005a869facac1..a6fd193ab50e1de15868f78cf936b18adc89e075 100644 GIT binary patch delta 44 zcmX@ie3*GcE3cWZfw8WUp@N~Am5K4hNlSTr67$ka6Vp?z6f#pLn=wXDp2w&P05Pr& A$N&HU delta 44 zcmX@ie3*GcE3c`pfu*jIiGrb-m67ShNlPcYFh=qCB<7`;CZ?xaDP*Qhp3A5P05LfY A-2eap diff --git a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.mo index 2e96ab535d8cc496f06091e13a8bf23f671a8d20..b65cbd9ee6bc3227e0c969e8415e4c94711e69ef 100644 GIT binary patch delta 66 zcmbOyG*4(lD66TNu7RylWKYNcRgU, 2012 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:10+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:8 settings.py:7 diff --git a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.mo index 6cf747874a30dbeebe369d00647dfff8d282a5b2..055aa7279d72421a0751f7cfc0477c20005b6efc 100644 GIT binary patch delta 117 zcmcb~{F^!So)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlL`HTzlzs<7@Ap`7;l{9&dBPXnwrM|01HD89RL6T delta 82 zcmey(e3RMYo)F7a1|VPrVi_P-0b*t#)&XJ=umIxuKuJp=4N?OG6GMG@O?3?{b&X6E O49%>JOgFA~X9NJ7k_wCf 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 1b627100f8..25714f0a00 100644 --- a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:8 settings.py:7 @@ -90,7 +89,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "Geen" #: views.py:71 #, python-format diff --git a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.mo index c55d062b74c11724ff7e93eae8559f72f4ed13cc..c689f92cfbd5f91916b6b5957e90007b0e68f070 100644 GIT binary patch delta 453 zcmXwzJ4?f06oyY~yfkX5brXfG1p`T2i)NHU6-33wNg-&4T1=t0!KH&YDBX%6_zzq~ za1mS-H@A*%{s1=z2cJ{ZL*6_m-#K~T?f@-$DyMLKD8k^H->z1DJtdQ1^b|EF4RSEQoYu?!S>`_{OjdH86#n2ChO4+=3c- z0M+OW^2jAGop+%I-a!q#hr0I+HSir0D1(^a(2z1W;ZPT6&=eZg1WhvjP=irT((tcL zBMs!fGTvV@N~xpPX&5!_c35vzYEl2t$eP==DC}PuA1g)2%{w{I_KJQX@3;lmwRU%$ uy|7);U8fW@L*LH1-e@o9`R>|7H*sO4_whRk?BiN>=-(O|uh)Yr#^--XRy>9P delta 356 zcmXxgF-yZh7{>88@wBFzV(Vr*q@5HAG>0v1myR8D?k3LNI~EE>5X9{eTm-j%fG*-* z=_qs+KSDo%lm9n4UwHB(cNd-`Pv!S${!=s0!W@$ZnUN~_COSzVa)C`e#cR}acUZ<5 zp5Oyk@C9qQ^!pze^S;J2+, 2012 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:11+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -47,7 +45,7 @@ msgstr "" #: models.py:27 msgid "Document version" -msgstr "" +msgstr "Wersja dokumentu" #: models.py:34 msgid "Has embedded signature" @@ -92,7 +90,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "Brak" #: views.py:71 #, python-format 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 536de3752088f09cb66edb35b776a292e16fc9ce..c8215d844107c2421700d41b99916f52eac1e0f7 100644 GIT binary patch delta 434 zcmXxfze)o^5XbSkxQSlkKca|;Vj2S$2X~hkG@T-76r%V5LWBb&m_U-Vjg^9=5Dvk{ z&c;G46!ZmrfnaTGZ>6B%cO)73@!4ILncaK)%Wl7?&6QB2WR`Tu1oiMMF*0mtzPwbv`A@eTFfN6$|jVgHLWB5g^<{uh$POAc2t%Z2WM$TWWAJf@j4 zhCU{64JWaLQ@GzV#1#7u>VvLP2i_qASin3-1oW0AU#I!Z7{fZ*e3XOw;L!db{Rl7SB@dg}p7cZeux30oLln$;=PCB_& z=oPq?;w3ni;?)0J^TKm}oDXVYbLV8IU@e6P?J29OD6Q;|1!w8!X}g zYdFFRK4XZl+5IP$*-x>7-IYM|o*ZjQn|LRi|7ViN0@1%guZTN0x9-E7xP^Htr*Zo%ww);H e_H63LUQ 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 5c50277240..54697c054c 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: # Translators: # Vítor Figueiró , 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:11+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:8 settings.py:7 @@ -42,7 +41,7 @@ msgstr "" #: links.py:54 msgid "Signatures" -msgstr "" +msgstr "Assinaturas" #: models.py:27 msgid "Document version" @@ -91,7 +90,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "Nenhum" #: views.py:71 #, python-format diff --git a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.mo index 0a6d68ffbb489c6f97acab69fe2fb78c309a89e9..62948e7d5440235d7b5774f0d7193f8299db5e2b 100644 GIT binary patch delta 66 zcmZn@ZWG=R%4%w+YhbKvWT;?hW@TcmYhYqvz!l)H8S)7@lr|Xhfl4_-3WMBwW PXJlw)V7a-A^$#-uGLjKn delta 66 zcmZn@ZWG=R%4%w=YhbBsWTIebW@Q9qn-~~y1^DX*rIuwDXXfYWx+IpQS}7PA7y{)i Tbd3xYjEt-d4K{bN{$U0HG(!, 2015 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:10+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:29 permissions.py:8 settings.py:7 diff --git a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.mo index abbe598f62cecf22c8970b7633aa0c9d93a9cdc5..42fc2d062f7a0640ae3d8f03fbd1eea6255cb3a3 100644 GIT binary patch delta 386 zcmXxeKP&@b7{~GF+VkgH6tM~1--^=cWFeNfUPRKC%B6hSRGKU5$xP^8v z#R8tAi9EP%k~4e%4;34qX z9}s%*9^QiJ(jod2x^@%4qx;~upP79F@BRDVe*3rJb%n~29nvCe=a2?Ol zy{lseTbRdZT*V$1@HOd=aE1FjZsS+tAC8r@#ZQSG()e5u*~AI%V$qu~RYteaX<`jG zxL;!ypU@5HU, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:11+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -92,7 +90,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "Nici unul" #: views.py:71 #, python-format diff --git a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.mo index 62f789323a37f3a5716782163ee3fa983976f688..6b10ec943d04e4e76ac755eb1e3553dcc8172f03 100644 GIT binary patch delta 803 zcmZwD%WD%+6u{v-ZQ>)btyXJQTwE7Q1xF{328|0r;-VC+xDXd^LNYeNkU(alW>p_l z;{!K?AV}O81UHhR!Ko$9&Yf^)E9l-oKwRqYP9s|Jz?pC6KF+;oUdO+UFMXYiJQc() z@*vqEr^#am52A$!@Bz+X2an<>+>Jj_?~9KJaRO&BhLA`x9LFY3VhdTfB%W`) zh*vnq#0u&I2SY#OH2Iy(Fg_L)B854e#hZ8t-(V6I&g1Bojiwe**UjS;)=)RNjQcrX zw0Y4tdyjkZBkF=*FpWQlrnd?~vm#FF*iPyWnGQSDHAYDt`fqaIFxVCb_YylueHk6w z$k-7c6Z%U>&aT+5EsM6BFO=+}bjpj>yxXYTjwg*hQ^jza;YOigJI>WcrP4gk%#}0e z>h)S(-YAtTdN)PN)kW!+{#WX>JnV>hyD8^#S^avxR<*r*#>r@Skmnoi*^FtW%w$3) zGTC&>w9=LpyRcwhw6B+)a;<9S@~)kgNh|StT{4liPQ86N^2|8$ zYCX8aP;WTY4;}@}QVrBPg9GIUx0zZM>cyW`o*CIU5#0T&PM01dkFT+)Ma>oUL3Jq+ y+)}>Ww9aSX-}5+Vb@O??Zh9^!DYF(l3GSU;gjCByfk(atZ^J>o3@ delta 385 zcmXZYJxjw-6vpwBq>Z+<#a6WV2DgHPL!h}dQoFcxDFsJe1SfHGQG`IDW5L1YQtdYo z#X)eZ;O6F#Qb%zY#LwVAX%0O6xaZ`)ke|{+q5oaU424=C8>C0d*~toKtdkvo#grN$5Dx}+FOLAFFVN9JceadD2sf5S<8=EFM9cTYprX}8q& zg*mgE=Fz?@23~#7(+%bCwsc?)ob|ZV^mJWm-SYjHD`#YxFne9@v{f{YUMDw`LG+v) Laqb?PseAhm=gcv; 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 53f09c46a3..68abec0459 100644 --- a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Sergey Glita , 2012 @@ -10,17 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:11+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -44,7 +41,7 @@ msgstr "" #: links.py:54 msgid "Signatures" -msgstr "" +msgstr "Подписи" #: models.py:27 msgid "Document version" @@ -68,7 +65,7 @@ msgstr "Проверить подпись документа" #: permissions.py:15 msgid "Delete detached signatures" -msgstr "" +msgstr "Удаление отделенных подписей" #: permissions.py:18 msgid "Download detached signatures" @@ -93,7 +90,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "Ни один" #: views.py:71 #, python-format @@ -136,12 +133,12 @@ msgstr "" #: views.py:187 msgid "Detached signature deleted successfully." -msgstr "" +msgstr "Отделенная подпись удалена." #: views.py:193 #, python-format msgid "Error while deleting the detached signature; %s" -msgstr "" +msgstr "Ошибка при удалении отделенной подписи %s" #: views.py:204 #, python-format diff --git a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.mo index 18815d8012d94a536ffefe670fc8de026bf6b04f..02c0e85d6957d9933690ac8f509c9bce97fe0bc2 100644 GIT binary patch delta 117 zcmeBU*}xKdPl#nI0}wC)u?!IF05K~N+W;{L1OPD$5C;PB6-EYzFeqOer~$|Y1CU-g k@XOCjooM09Yo=>ptZQVbU}$D#V!Uxu4I`^lQEC+f0IT2*Jpcdz delta 82 zcmdnM(#K+PPl#nI0}wC*u?!Ha05LNV>i{tbSOD=Aprj>`2C0F8iJ`u{rn&}}x<)1n OhGteqrW@DSFaiK|qY7dG 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 9fbe08d516..3738321f2f 100644 --- a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:43-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:29 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -91,7 +89,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "Brez" #: views.py:71 #, python-format diff --git a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.mo index fcc3b93a7c8c417c50068282d530b19f67c37f60..fbaf5097d96d80e0bc8a104892b85cfd32377a42 100644 GIT binary patch delta 381 zcmXxeJ4*vW6o%om$$HtCc!>l-RAQQ7F)*`!Wsj;VS-&Y)d*N(&J+Twdg%9QosSO;~(k+E3{})i9?IZ zs6Vtbc7J?-j0@bKVhOKs6Q7Y9nI`(4&YYA*=pD`!XO^%h!SF_824_jGQ}E9GgQOLA zZoU3?&De?wUD4H|YQ@;9wVA`ZX~dV!^JdaAdnXrhR1B?~?1e6}yKi@?Yj5;M)_?j3 DO6eAU(rBC7`lBL(R7ndW9S$x>D{W?RaZp@3ibIhu3R;{B9UKa-p&%k; z5nSBd+;!~YDo)P+4Sv(!3lE>mdoTCqGk6U~KNWu>REbo{kgSn!l2xcg8d$@1Ji=`5 z42w9#RUG3oK41l3-2FS2`ToEy{Br)`qmq#X-h9DxPGp0DDQ@F0W(z!jzMzcR59~Ot z>mT9@{Vvw=0&94W?3h*HoW1AH3%DekBFss_H5V~YO3ALePM*}X)zYS;Z8MDaW6QZ| oO!4GcpZ0G1H~p(ieQ-YL#i2D3cWrG=Xl)#sx752+$)2D70}$dSqW}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 3012b4cd01..532c722d0f 100644 --- a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:10+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:29 permissions.py:8 settings.py:7 @@ -91,7 +90,7 @@ msgstr "" #: views.py:66 msgid "None" -msgstr "" +msgstr "None" #: views.py:71 #, python-format diff --git a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.mo index 8e46710ac5dcaecd9fa3a281afc71f9cebf34828..917bb3a127d99a91944714620ec4ad5223450781 100644 GIT binary patch delta 66 zcmZqYZs*>h#%yY)YhbKvWT;?hW@TcmYhYqvz!l)H8S)7@lr|Xhfl4_-3WMBwW PXJlw)V7WP(S%(P#AqEf{ delta 66 zcmZqYZs*>h#%yY;YhbBsWTIebW@Q9qn-~~y1^DX*rIuwDXXfYWx+IpQS}7PA7y{)i Tbd3xYjEt-d4L3(K>o5TTBE1kF diff --git a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po index 579c8a5083..e6c2051483 100644 --- a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-08-20 22:11+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:29 permissions.py:8 settings.py:7 diff --git a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo index 67ac21f0efebf070c3de9b7bb1c8a34af72f5626..a81b9a5a8af9d750a8b785b42af9d6ec0ebf0e11 100644 GIT binary patch delta 324 zcmbQq@{qOuo)F7a1|VPqVi_Rz0b*_-t^r~YSOLWBK)e!&S%7#Wl->rUL3(yW`GvL o&6XR>6>e++vKKPkSbk&UjmKd6S a7@AobnNC(=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:31 msgid "Document states" @@ -29,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "لا شيء" #: apps.py:52 msgid "Current state" @@ -37,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "مستخدم" #: apps.py:62 msgid "Last transition" @@ -57,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "تعليق" #: apps.py:95 msgid "Is initial state?" @@ -89,7 +87,7 @@ msgstr "" #: links.py:32 links.py:49 links.py:66 msgid "Edit" -msgstr "" +msgstr "تحرير" #: links.py:40 msgid "Create state" @@ -216,7 +214,7 @@ msgstr "" #: views.py:162 msgid "Submit" -msgstr "" +msgstr "ارسال" #: views.py:164 #, python-format diff --git a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.mo index 93333cc1348febfe9c65e7e19a0602053c907b99..9b6bad0570899d8902f4d209f35d57e292829e2e 100644 GIT binary patch delta 353 zcmXwyze>YU6o*f3tD=J<(y2pV;KEH>i)K}Eu~ii5ta!l;Nx()Yp(T@Bad1$OI_e@x zF(R#Xa1pn2U%+SacQHBe@twc-{uE!zz2BA6Eg@z>73_jVa0N^}fjRIDN+8Mn2Ai8n zR)4{R0?{|T3_3GJ75EIEhkLN;U&E{L9gOuIr2k)^Vtunk}t-&$b-7 zk&KrL9lqyJ{@|3SI^tOOi62qCa?E2i-gO_@lvCmdJ-}W}Jj8*SkMao`I>KVg2@WE7 FLVtbLV|4%k delta 101 zcmZ3-dXm}Vo)F7a1|VPrVi_P-0b*t#)&XJ=umIwIprj>`2C0F8iN}0-O?3?{b&X6E a49%>JOeZTaO2b7AOsxz}H+wMhGXel!xeZkS 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 b8206a4979..a5a385fa59 100644 --- a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -28,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "Няма" #: apps.py:52 msgid "Current state" @@ -36,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "Потребител" #: apps.py:62 msgid "Last transition" @@ -56,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "Коментар" #: apps.py:95 msgid "Is initial state?" @@ -88,7 +87,7 @@ msgstr "" #: links.py:32 links.py:49 links.py:66 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: links.py:40 msgid "Create state" @@ -215,7 +214,7 @@ msgstr "" #: views.py:162 msgid "Submit" -msgstr "" +msgstr "Подаване" #: views.py:164 #, python-format diff --git a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo index 64bf19195020fca6591ecf7fa3d0d33e7dfd1a73..5da4eb3bcd5af6cc384aafff4d10730765785fd2 100644 GIT binary patch delta 310 zcmdnM@`|rUL3(yW`G_zKqdr$41)on90N0y1G1DA#CFcl z%}vcKVQ@{!EMf4=&r4+pE=|e>vO|kgizZt5nwsev80#7tDj1qsnHcLDm>3vv1^DX* zrIuwDXXfYWx+IpQS}7PA7{b&U8Cn@wZroMIsNRdkO>s=&M(R=&dbbZ005YfIS~K= delta 101 zcmaFGx`D;wo)F7a1|VPrVi_P-0b*t#)&XJ=umIw3KuJp=4N?OG6OZ}wn(7)@>Kd6S a7@AobnNC(=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:31 msgid "Document states" @@ -29,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "Nijedno" #: apps.py:52 msgid "Current state" @@ -37,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "Korisnik" #: apps.py:62 msgid "Last transition" @@ -57,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "Komentar" #: apps.py:95 msgid "Is initial state?" @@ -89,7 +87,7 @@ msgstr "" #: links.py:32 links.py:49 links.py:66 msgid "Edit" -msgstr "" +msgstr "Urediti" #: links.py:40 msgid "Create state" @@ -216,7 +214,7 @@ msgstr "" #: views.py:162 msgid "Submit" -msgstr "" +msgstr "Podnijeti" #: views.py:164 #, python-format diff --git a/mayan/apps/document_states/locale/da/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/da/LC_MESSAGES/django.mo index 8b9c544c7f83be599a2cb86170127f0b0ed1ea93..1dcd3b0b4659a9b252b3eda429fca9631897d54b 100644 GIT binary patch delta 221 zcmX@cyqu-}o)F7a1|VPoVi_Q|0b*7ljsap2C;(!1AT9)AkeW&;T?eFl7#SFvfix!& z3ot?SNdaj#AYTDU1Es-wfJ`u829eJBxw)x%B@BM~d8rJc%*Cli6D@pA&2$Znb&U)a z49%=ejCBo63=Fse{B?s;%QA~I^Ye6F5=&C86pRcEVd{(wtqd$T?&4t-_lB64Sj6C& Qm!6u(;8awao?65J0G3E4EC2ui delta 100 zcmZ3^a*WyHo)F7a1|VPrVi_P-0b*t#)&XJ=umIv7prj>`2C0F8iA}z|rn&}}x<)1n ZhGteqrW5Z-!vzdXtqe^!voP{70svGa4Rrtj diff --git a/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po index 5a1a42584f..c3650cf1aa 100644 --- a/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -28,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "Ingen" #: apps.py:52 msgid "Current state" @@ -36,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "Bruger" #: apps.py:62 msgid "Last transition" @@ -56,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "Kommentar" #: apps.py:95 msgid "Is initial state?" diff --git a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.mo index 47eacb0d0126d0ea3770935ea48e3b96e736baf3..1a06f800280d11562f0b93557068ea74630980d4 100644 GIT binary patch delta 213 zcmX@5a8+T033I&y0|NsWKLZ0dkk$s$GC(S{YbwcICRk!mE%{T9llTc6d)lQEJ{~S^hk>#JsB1 L%=F2V`L_cAl4v4a delta 201 zcmcbra7tl=33I(L0|NsWKLZ0dkd_0|GC*1jNE-lYcOcCHq$_~52#{`s@~1)R`9N9} zD82$ngUs0nq&b1~B_It%40oXP8z3zNWYq8JSL&<&uVr7#Uj`8gF*xy1_D8i$9MeDYc|1F*&1T@;v_S00QG3w*UYD 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 679ebf0129..ce7803287a 100644 --- a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 23:13+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -122,9 +122,7 @@ msgstr "Workflow" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein " -"Status kann initial sein." +msgstr "Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein Status kann initial sein." #: models.py:73 msgid "Initial" @@ -134,9 +132,7 @@ msgstr "Initial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der " -"Fertigstellung in Bezug auf den Workflow angibt." +msgstr "Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der Fertigstellung in Bezug auf den Workflow angibt." #: models.py:92 msgid "Workflow state" @@ -196,11 +192,11 @@ msgstr "Workflows bearbeiten" #: permissions.py:19 msgid "View workflows" -msgstr "Workflows betrachten" +msgstr "Workflows anzeigen" #: permissions.py:26 msgid "Transition workflows" -msgstr "Workflowübergänge" +msgstr "Workflowübergänge durchführen" #: views.py:57 #, python-format diff --git a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.mo index 1f73279aea351a593dcbe8e604645d1a7ca12f1b..5a954563bc704c31c33d1cc5b75b415fc299915c 100644 GIT binary patch delta 23 ecmeyx^owai7q6MFfw8WUp@N~Am5K4h>5l5lrb5>@90tc^|u7Rvt00QGtbuK)l5 delta 44 scmX>rb5>@90tc_Du7Rblk%@w#nU#_0WL*wvxQKzNm7(e8P>vt00QTPsz5oCK diff --git a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po index e295e7532c..5fcf1f4c7a 100644 --- a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -123,9 +122,7 @@ msgstr "Flujo de trabajo" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Seleccione si este va a ser el estado con el que desea que el flujo de " -"trabajo comience. Sólo un estado puede ser el estado inicial." +msgstr "Seleccione si este va a ser el estado con el que desea que el flujo de trabajo comience. Sólo un estado puede ser el estado inicial." #: models.py:73 msgid "Initial" diff --git a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.mo index 7ac247d04d28f7356ea5aec6c2c14cdf6c871e7f..593afb1ef328f311e4e01fe19f77345c2b294441 100644 GIT binary patch delta 44 scmZ1_w@Pk<0tc^|u7R!o?0O}hGO8@`> delta 44 scmZ1_w@Pk<0tc_Du7Rblk%@w#nU#_0WL*wvxQKzNm7(e8P>!o?0PBDXS^xk5 diff --git a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po index 0cd456f28f..5caa34220b 100644 --- a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 @@ -123,9 +122,7 @@ msgstr "گردشکار" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"در صورتیکه این وضعیت شروع گردشکار باشد این وضعیت را انتخاب کنید. وضعیت فقط " -"میتواند وضعیت اولیه باشد." +msgstr "در صورتیکه این وضعیت شروع گردشکار باشد این وضعیت را انتخاب کنید. وضعیت فقط میتواند وضعیت اولیه باشد." #: models.py:73 msgid "Initial" diff --git a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.mo index c5d9011a1ec31b1fead7601dd147094ea6b7bbfb..81db875be13e872a53347e184fa49c81ff49a683 100644 GIT binary patch delta 1972 zcmZ9MU1%It7>3Vk5|d3*YqVOEYENw&W7A#pZxb}MCe;Riikc{Rqm#{SGIX=E&desZ zA`88#7PQ5|AMnD^t40u&pcc{gA{9g^y%9tO5wYS$OI1WG6!CetyD|EaZ=N|bXTHDp zY<}2qadYXrmYP=$HiU1$&nJx83qQG<3wEi-nDy{4cnxf+H6{sLVH4a6Z-qVZI`|0O z3^VXrcnGeAuft||yuuG*y)h+onwvUaoPpZ-B~+kumFIs#%ldDqL>t-6hh`Wm!ToRz zd;)gBEZho@z!vxc+z3C1^k9C5+J6B)PkwWm8+CSoiz++_Rlre5PIC+@(Q&8%C!jk2 z6wbphAR)}XRCOa9gIYfgHK}QM0}NmzJOtZd3_Hnh-sMJtzlEyod&r-;$VG)*g15kA z!<7#^pgJ3c<<6lB%);y898|)?kU#SlmsYq4-$CBfP*Mj}Q&L4oxTvEyVYyS7VtoRx zgFjW)m*LH}6} z{-dPjG$7(*V3nM3T!}!tK z!FaN^HRXkN-VgR=bN;*;tp=$+30EGm%Zp~>{k83--TBB3Y&7HAf*WL%)6d$>N+RAk zlrcl#aw;3Rg}@Ej7g{gRD(9#k8~NoJ)l_La5xO>CoSk%oE6Mz#!u*>h^rrJ^Gq$u) zn@A*AiVl}vt2>-%9!Pcdrh2+<_rOqJZ=9-co2WkN=^pAD?Cipl4?1C#8V{U&NDY24 zWJhKKFO2*GSw{Bkns|KoxV<~G@+_U1af)+pv~zlvF{f#9IDW4FT>rR6Y^PQYeaZ_9 ze%?cf>f{|SaLs*Q-pP4kx!-tS!{L@<-ez;fXZ39qI1(?u(C}O1@{4Ff#G;*wze+w7 z|C(Ia=x4m;MZ3IUGj6qdG#rP5Uo1=GOjD(6 zv#ScR&lFvPMs|6TtYvkU7bOonnT*Xj(kOnod3`EvA9K9W3oLc#{n^RDwPAS+M2!EW XNiU5x?nta7TloJT!=<^V^ND`|c|%yP delta 1246 zcmZA0NoW&M9LMpOE@_%HX>DWGE*fpDOB$O*V;8KTRVYO~)Sf&wflvxrAPH7P$f4-L zs;Gk~9#p7W=s|@j;z{YnlhA_*B5nmm5UdqE>-QJNOaJsgpUj(i^Zsw?O4o8n>0@)v zbwfnS4)UJEm|^Ux=0fz>7*mG>*no#{Gakovn87YAVH3`w7oXTJqKo?_bmBYId!Ld1 zC9`TjsIE08zymjGfDo$VDEjaO?!+Y0#mw66S5O7sK@B{QD(orpXI^n>#Mh{PA5arn z#%abkEBsJplU!Oci@HC@#f=xygEz1p=P-mXP#^q(D)1Mo;J>H>TvXMGZK!_z*o@<- z_b0KD@y#iIwBUL4<1MVmN7#nXah7d)gDPZ#hni6u!*~|gOYDaa11x#1oEmm zjT&bLS#)#L!}@C`w`sVH50TX~LzJz;j-V<{qCSvDUNO_CLpOs5ao%qKh8wy6jry*K zDzxTW!T2 zGD>Q;`bP?o3KgwFbj}nSzY;n~iXh1tm7-KR6RAWG*IlHF(N^prb!N2B`gcC%efosgt@kv=yPXjl;Q2CY3E(!P>m_pmxEU zaQ0f?o&NHfx++Kcs;lJi#>0_;aBN>7x_>Yhw>sVJd;hmY;)Bt6C_=c8B?`sxcs`LW zq!YzlelReWOQ!P092OG!shoAm{ncZSm6*z>ta;A`tJ&wb9yd6xRKt=r;yrrJ*Ij<* M>vNQSO, 2015 +# Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-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/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 msgid "Document states" -msgstr "" +msgstr "États du document" #: apps.py:47 msgid "Initial state" @@ -49,7 +48,7 @@ msgstr "Date et heure" #: apps.py:72 apps.py:99 models.py:79 msgid "Completion" -msgstr "" +msgstr "Finalisation" #: apps.py:86 forms.py:39 links.py:78 models.py:187 msgid "Transition" @@ -77,7 +76,7 @@ msgstr "Flux de travail" #: links.py:19 msgid "Create workflow" -msgstr "" +msgstr "Créer un flux de travail" #: links.py:24 links.py:45 links.py:62 msgid "Delete" @@ -123,9 +122,7 @@ msgstr "Flux de travail" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Sélectionnez si ceci sera l'état avec lequel vous voulez que le flux de " -"travail pour démarrer. Un seul état peut être à l'état initial." +msgstr "Sélectionnez si ceci sera l'état avec lequel vous voulez que le flux de travail pour démarrer. Un seul état peut être à l'état initial." #: models.py:73 msgid "Initial" @@ -135,7 +132,7 @@ msgstr "Initial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" +msgstr "Entrer le pourcentage de finalisation que cet état représente dans la relation du flux de travail. Saisir un nombre sans le signe pourcentage." #: models.py:92 msgid "Workflow state" @@ -179,7 +176,7 @@ msgstr "Entrées de la journlisation du flux de travail" #: permissions.py:7 msgid "Document workflows" -msgstr "" +msgstr "Flux de travail du document" #: permissions.py:10 msgid "Create workflows" @@ -199,7 +196,7 @@ msgstr "Voir les flux de travail" #: permissions.py:26 msgid "Transition workflows" -msgstr "" +msgstr "Transition des flux de travails" #: views.py:57 #, python-format @@ -209,7 +206,7 @@ msgstr "Flux de travail du document: %s" #: views.py:91 #, python-format msgid "Documents with the workflow: %s" -msgstr "" +msgstr "Documents avec le flux de travail: %s" #: views.py:116 #, python-format @@ -227,11 +224,11 @@ msgstr "Construire une transition pour le flux de travail: %s" #: views.py:215 msgid "Available document types" -msgstr "" +msgstr "Types de document disponible" #: views.py:216 msgid "Document types assigned this workflow" -msgstr "" +msgstr "Types de document associé à ce flux de travail" #: views.py:226 #, python-format diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo index 28272b089c60bbd87e8ba08cf600366f5460a402..aba4655838020f2740cc677a44aa67afbc0f65dc 100644 GIT binary patch delta 230 zcmX@fyqTr`o)F7a1|VPoVi_Q|0b*7ljsap2C;(!1AT9)AkeW&;T?eH585tOwfiyP| z3o}9V$pdL#AYTh< dI=r%&AviTRH`2C0F8iA}z|rn&}}x<)1n ZhGteqrW5Z-!vzdXtqe^!voP{A0svaD4T=B& diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po index 66ef0d8963..60bf125d19 100644 --- a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -28,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "Semmi" #: apps.py:52 msgid "Current state" @@ -36,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "Felhasználó" #: apps.py:62 msgid "Last transition" @@ -56,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "Megjegyzés" #: apps.py:95 msgid "Is initial state?" diff --git a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.mo index 6625fd8f81e5269c340c846771d3a97fc2afcf5d..1e01ac69de3aa0936ffc4445c1a6d493a2431f25 100644 GIT binary patch delta 212 zcmX@i+{IFVPl#nI0}wC+u?!HK05K~N`v5TrBmglx5GMjL3lL`laVH}KLmrUk0OB7& zHi%|q0%9Ny0zf7hfXrlY&d<$F%`0IDElw?B2q?zrC?-W2vcWdXk}ozaTh0}kas@F Q=tQ8osd?$?rFn@A0BkEK_y7O^ delta 122 zcmeBTIm~QvPl#nI0}wC*u?!Ha05LNV>i{tbSO9S+P|^}egVeyl#9UufQ(Xf~T_Y0( uLo+KQAlt;ifGfaXHz>6%vp6$9PuC@}B-Kj6$iNV$&cM{l&~)Q_PDTLDC=_D= diff --git a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po index d3dc3b4a6c..fe9107c2cf 100644 --- a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 @@ -36,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "Pengguna" #: apps.py:62 msgid "Last transition" @@ -56,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "Komentar" #: apps.py:95 msgid "Is initial state?" diff --git a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo index 5f4f0c43cbe43309ea8b646f2e9b8c37a210f1c2..150dbb09bce55b69cc3d92a1a761b6a8bf4c4f8b 100644 GIT binary patch delta 525 zcmX|+zfQw25XP^x6eud9EC`9g8)67b(o&#eYs&&Huamfq@5M z^IDPMl)^ZESwt@u%%eXfPob6wD0FaR+#%K^f;ENqVrI}+`*qd+_pFE!^gAw6!Az3q6t4mPx=-B>&xLx>RE&LVUR` jO+6i|8x=@mqk=m&MpB>Cbec#(g9)d2qMR@d4HBjw`N~~P delta 102 zcmcc4cAVMbo)F7a1|VPrVi_P-0b*t#)&XJ=umIv-prj>`2C0F8$%%}gL8gvZfaf$gG*{oYDp@COMY@GnD3gBS;F9#pO?xI zT$+>%WQP`~7BK`AtrN-fJQ&dkr# zbxABqwNfxLFodZyGPE+V+_+1g(H?4LVqy_PSZYyuW>yN&WVppispY9f*{OL9?x{cm UsGzu{w6qAwODZbO%m%6i0Qzi9PXGV_ delta 101 zcmcb{dXw4Wo)F7a1|VPrVi_P-0b*t#)&XJ=umIxuKuJp=4N?OG6TkWLn(7)@>Kd6S a7@AobnNAL1l!l8Km|7W{ZmwXIX9NI*!45qD 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 6616cac4ce..3bddcad090 100644 --- a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -28,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "Geen" #: apps.py:52 msgid "Current state" @@ -36,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "Gebruiker" #: apps.py:62 msgid "Last transition" @@ -56,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "Commentaar" #: apps.py:95 msgid "Is initial state?" @@ -80,7 +79,7 @@ msgstr "" #: links.py:24 links.py:45 links.py:62 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:28 models.py:25 msgid "Document types" @@ -88,7 +87,7 @@ msgstr "" #: links.py:32 links.py:49 links.py:66 msgid "Edit" -msgstr "" +msgstr "bewerken" #: links.py:40 msgid "Create state" @@ -152,7 +151,7 @@ msgstr "" #: models.py:129 msgid "Document" -msgstr "" +msgstr "Document" #: models.py:173 models.py:181 msgid "Workflow instance" @@ -215,7 +214,7 @@ msgstr "" #: views.py:162 msgid "Submit" -msgstr "" +msgstr "Verstuur" #: views.py:164 #, python-format diff --git a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.mo index c2de994f18f5a1feae0e3a5f06b502ed9e173d4a..6cadd6568fd59e7e4639b27418d7dd3ad8b1d4d0 100644 GIT binary patch delta 908 zcmXxiKWLLd7{~D^v58H!#-{#htJb%T5K)6~(xk-<1)=C*#nQn+r?kF8uqKhjN(G5f z98?e-igs}k6hvI!?hciLlP(S}#X)fFD!BOly}dlV&wbvzrgzWXy*rt3u(O@%Su-L_ z9w$pNv-3C`ry+XxmZ;3DDv24H$ICh$~WNK0+0nA$1)m$uUv|D|E!#?O{^a#Gay1VLB!4Tro)Mbh6}t z&Ucs>zP;VJxLmC*RTq{5?^a{+{@tM7_S!4WpcVd&KZ=(p^ZrD>SnvvymC{7sFZq7o z+_n6Cuv}}^8uk24wH;KvqF?C#u2`t}7s3yTOR9gclTCfZ&CL-8aOh<5Ur1v^%*mcGk!Ya3q$yg z&FHH$CW#SDV-DMJ30rW(TE=?jJNEmEogZV0^)uu-uDNE=z`_$o@D)e!69br}(|Q_J zNCB0oi0!z5L0m;XW}QxnH!+S|cD{=V=6g7X7Z@PFxo4mRkElXk?feZ}ng3ufM#yr@ z>5O8S`8!#3A~hVw5Y=Tciz;x%x`BFr8C9r@O<2K3@|yz&Sve|X4u)CO z&Sp`GOQ;7eqpn~LwZk&M2eY}X$>l*cf>y)}__T4sSzM8Jv_P02>iRoNnGL@ey7M#P& VVB&ve!YSsR>O-*Pt4@Yo|1W9!JxBlm 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 4e5eb53497..ffb6598704 100644 --- a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:31 msgid "Document states" @@ -226,7 +224,7 @@ msgstr "Dokonaj zmiany w obiegu dokumentów: %s" #: views.py:215 msgid "Available document types" -msgstr "" +msgstr "Dostępne typy dokumentów" #: views.py:216 msgid "Document types assigned this workflow" 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 3e3fd2faaf094c3e589801ec0331f7c689d677ae..0a9da86aa4201fa83368c01f02f9dc04aec3ab30 100644 GIT binary patch delta 382 zcmX@be2}&No)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~}Aj0_B6>WmDn3@kV95@56eS_!oA@WP_ZdX%n(7)@>Kd6S a7@AobnNId)l!l8Km|7W{ZZ2gMU<3eiMh)@+ 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 b23df6fb6d..560484855d 100644 --- a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -28,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "Nenhum" #: apps.py:52 msgid "Current state" @@ -36,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "Utilizador" #: apps.py:62 msgid "Last transition" @@ -56,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "Comentário" #: apps.py:95 msgid "Is initial state?" @@ -80,7 +79,7 @@ msgstr "" #: links.py:24 links.py:45 links.py:62 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:28 models.py:25 msgid "Document types" @@ -88,7 +87,7 @@ msgstr "" #: links.py:32 links.py:49 links.py:66 msgid "Edit" -msgstr "" +msgstr "Editar" #: links.py:40 msgid "Create state" @@ -112,7 +111,7 @@ msgstr "" #: models.py:21 models.py:67 models.py:101 msgid "Label" -msgstr "" +msgstr "Nome" #: models.py:58 models.py:65 models.py:99 models.py:126 msgid "Workflow" @@ -215,7 +214,7 @@ msgstr "" #: views.py:162 msgid "Submit" -msgstr "" +msgstr "Submeter" #: views.py:164 #, python-format diff --git a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo index 18aaffe298ea7a9dc2a1da1a8278787b81cf9a2b..6aa785103d0f8247ee94bd12ac17299f6a30ab97 100644 GIT binary patch delta 1146 zcmX}rKWGzS7{~E9y;Eb-n3`H^l3LGN|E5WEO$lwCR0OM_V4Yl~(o#B@3^{c3CUvk# zA&8(-hl*VUhv=Y#1s6dO99$ffDB@D^A3E#zcfRUbPC;S}z}^GFwS-CkcrC3p`t@d_%jC&72!w!B3p(%_~l2yq84pay=3gSd*S__OsFs-H_WvI`l? z^kJw>2l=A`s;CMkaVMU}y%->4n7gP%A7B}uA;p?C)SmuC4eT(BDomoD&moI!O7?sd z)$dr6^;f2+xNrl{*&AO`Tk#u}P$%W8;vVY&YDtIjAf7-ycMbIpEZXxW)Ho}sf}UI3 zxQ+9U6zi|b^Yl`tCG5q+n8mZG$^+EbaT(c(=tYF6X$#cIHR{`gCBi4Po%)bGLQP-F zFrlQ>G=J3eBB^Qrv~OBbcvE2lMrs*9fMA*;d=_cT&}2xl$bQ qJ-<3JT4^TZ`Tti&{E6~-s}lbh%N(V{Ox^QlX8CEDdaFAz<@^O7qhZYe delta 1095 zcmX}rKS/{~E9CecJqHAZ7is-{|NqDGU@2wG4<9E2_vor;r!=+M%F=u$!l2ZeSy zN(cW;c5*XNC`AZv3QFnFPL(PcTy$0!{r=9g4|(r%@7;UvJ@5NmR-?s8?x@D|*$^q( zBifqFm|>l}IS_G=F=d#*N=#!D4qy-`u@&E7HChr?xDv0yzA%8F()xD zoS`Q6d+#2I;{*C>jN=e8#LPO^U!xLxk9y$}Dj^H`nXeqGa0~U^57Yt*xPS*(YI4Sm zkXD!rFHjjyaVW<*tiXAU;s@-+b<~7=s00sDEBuQ}poooliFz(fmNl3`jUPcJHjW|Q zZ>Bk^#YObvM~vVX+@KuWs6<|JQ!ALnW}HJ!yn;_~9X0W;<1f^6Cyp1$ROT9$XbG## zDf3!R9%Cc6;~+A|%wP!LqP~wMWKrfDs)jqL2@g>#`;8iZitMhra{4!@=R#zo1S9wf zJ1W?J-T2N0m7su1=nrb8{~XUzTX~JoG0aVk8$;FpmD8U^&GQbmpk>D`d`SNQwPQt8 zqF0sde?2DwW@*4S)XE1@|AtYd0`{(e9r{QW`SBI7G?B~7Ss5_8NruveZXR&l|e, 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 @@ -69,7 +68,7 @@ msgstr "Estado Original" #: apps.py:107 models.py:109 msgid "Destination state" -msgstr "" +msgstr "Estado de destino" #: links.py:15 links.py:37 models.py:59 views.py:185 msgid "Workflows" @@ -123,9 +122,7 @@ msgstr "Workflow" 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 para começar em. Apenas um Estado pode ser o estado inicial." +msgstr "Selecione se este será o estado com o qual você deseja que o fluxo de trabalho para começar em. Apenas um Estado pode ser o estado inicial." #: models.py:73 msgid "Initial" diff --git a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo index 7ae7907f2bc30f8439000b5a76966d7ce973e1db..34c8cc60abddc0a7343b334e2834cf0b4b6aa3c7 100644 GIT binary patch delta 319 zcmZozmAYKW?EI_;wN^b+wAU(UG{6j$c zI3o}PX)Yk{XJTOB1k$sh^b#Nq5?=?UcLHgka(AE*1b_^K0iYZMGn50eloiBw&d<$F z%`0JWP01`_@XOCjWe6@!$_27Ri&KjxTKJlp=^7a88W}1Wnpv3`>l&CC7;pvn>jtHk zWfo`V=jpm6mZVxK7#SGC)EOCC8CY)I<<4jdG#Y4fVo_!(*!0xIsw2$|ewoRc3Z;3a cISe61nLv9|k1oz+C@sm%$*f8&$uD960E8txTL1t6 delta 101 zcmX@Y+Q?#YPl#nI0}wC*u?!Ha05LNV>i{tbSOD>Hprj>`2C0F8iN}0-O?3?{b&X6E a49%>JOeZTaO2b7AOsxz}H+wL;GXelvfen-Z 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 8dba452a7b..17ede563a7 100644 --- a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:43-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:31 msgid "Document states" @@ -29,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "Nici unul" #: apps.py:52 msgid "Current state" @@ -37,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "utilizator" #: apps.py:62 msgid "Last transition" @@ -57,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "Comentariu" #: apps.py:95 msgid "Is initial state?" @@ -89,7 +87,7 @@ msgstr "" #: links.py:32 links.py:49 links.py:66 msgid "Edit" -msgstr "" +msgstr "Editează" #: links.py:40 msgid "Create state" @@ -216,7 +214,7 @@ msgstr "" #: views.py:162 msgid "Submit" -msgstr "" +msgstr "Trimiteţi" #: views.py:164 #, python-format diff --git a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo index 57aa53456fcc1dfc9b19f63b505f6a2b64d8e878..3ece5e3e1e24c3d7d32b33f44b00ea6be4763f5a 100644 GIT binary patch delta 378 zcmXv{y-EW?82qAV1jRxN6%o7_SlGM7L$6h_@ejoZP~75*yAyL-2}f8ZCOztAb@^k|kZLFX}h&;rpWYzFgK4(t%_|6x8IGj1&oLlq^o zaS|l76Gw^;&W}U*!-_h)S=nCpge(cyu^rDZmxL@!IkC4Z_SHpD3F1hsA0^7SUFqaK z*YV|QvwK@OWYq8JSL2V3dZ77?@fanr`-BoX!XURL2dG 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 cd91190d4d..69d5be0e1f 100644 --- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po @@ -1,24 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:31 msgid "Document states" @@ -30,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "Ни один" #: apps.py:52 msgid "Current state" @@ -38,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "Пользователь" #: apps.py:62 msgid "Last transition" @@ -58,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "Комментарий" #: apps.py:95 msgid "Is initial state?" @@ -90,7 +87,7 @@ msgstr "" #: links.py:32 links.py:49 links.py:66 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: links.py:40 msgid "Create state" @@ -217,7 +214,7 @@ msgstr "" #: views.py:162 msgid "Submit" -msgstr "" +msgstr "Подтвердить" #: views.py:164 #, python-format diff --git a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo index 817a5a0390a283e58db160de73165dd1fbe5e5b9..2fef29b7f53828a5663c99f42388c413558b95eb 100644 GIT binary patch delta 208 zcmeBUxyVv~Pl#nI0}wC+u?!HK05K~N`v5TrBmglx5GMjL3lL`l@fAh}hCCq60mRNs z5OE(M4HO0gAQKEgW->VE=jNv7l`#0_=cO_P6y;~7CYR`Xrs#&H78PgaPxP`jHPbaP z)-^IzFf_9=G1fIOF)-i?@YfAWEz1Nd$kTO6EJ?LeFfuTNsWURPGO*mZD}<5HJ0E0p MViAK=QEC+f0Li{4e*gdg delta 122 zcmcb}(#K+PPl#nI0}wC*u?!Ha05LNV>i{tbSOD=Aprj>`2C0F8iMhU}rn&}}x<)1n uhGteqK(>j20at*(Zcu7jW^rbIo~}z`Nvf5Ck%1vhoq?&9q3Oo=A&da-?iCCG 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 241a60c252..d4c3f065a1 100644 --- a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:31 msgid "Document states" @@ -29,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "Brez" #: apps.py:52 msgid "Current state" @@ -57,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "Komentar" #: apps.py:95 msgid "Is initial state?" diff --git a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo index 2ef1e8f794983541216b282f02910712c0db7a76..97ea91606f5a20f48b0b23984cfbcf4a9af1186d 100644 GIT binary patch delta 265 zcmcb@{E(&oo)F7a1|VPsVi_QI0b+I_&H-W&=m266zY~aAfOsO5o(8371L;|e3=9i^ zG&c}iGeOL92ht$*zCfA}NCyFFpfUy^1-1($$IQT>0HmP6IX^cyHLrxhH6^oz!7o2A zl_9h^wP>P+uc?`?fw8WUp@N~Am5H&gfr)_uSAf56P-Kd6S Z7@AobnNIvE4HqylwK6o_tjH+E2mpGZ4ln=! 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 e03a54ee92..0eb78973a8 100644 --- a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 @@ -28,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "None" #: apps.py:52 msgid "Current state" @@ -36,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "Người dùng" #: apps.py:62 msgid "Last transition" @@ -56,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "Chú thích" #: apps.py:95 msgid "Is initial state?" @@ -88,7 +87,7 @@ msgstr "" #: links.py:32 links.py:49 links.py:66 msgid "Edit" -msgstr "" +msgstr "Sửa" #: links.py:40 msgid "Create state" diff --git a/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.mo index 030709e9b5e19325a51e860ef72990988005f026..ded9d38b0d76720a742548eb911d02f16160975b 100644 GIT binary patch delta 254 zcmX@de1WC@o)F7a1|VPsVi_QI0b+I_&H-W&=m266zY~aAfOsMhvjOomD1R=Hp2En$ zum~z{&cwjL3}o8@X^=W6DD4TPfyx+w6xc418X!;t8wzGR=jZ08=9Mt`<>#d`1eYe| zW|lC77N-_XwD2`G(={;GH8NB%G_x`>)-^COFyIRC*9}T7%Ph{!&(n2DEJ?LeFfuTN rsWURPGO*mZON3GK#rl>P>vl0bo4$bIS^tD5yOuCKpR(dv$94t)#S}3P delta 100 zcmcb>a*o;Jo)F7a1|VPrVi_P-0b*t#)&XJ=umIvIKuJp=4N?OG6BqjOn(7)@>Kd6S Z7@AobnNIvI4HqylwK6o_tjs9F2mo-v4if+X diff --git a/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po index 6793409dd8..1e5cdaec1f 100644 --- a/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 @@ -28,7 +27,7 @@ msgstr "" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "" +msgstr "无" #: apps.py:52 msgid "Current state" @@ -36,7 +35,7 @@ msgstr "" #: apps.py:56 apps.py:83 models.py:189 msgid "User" -msgstr "" +msgstr "用户" #: apps.py:62 msgid "Last transition" @@ -56,7 +55,7 @@ msgstr "" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" -msgstr "" +msgstr "评论" #: apps.py:95 msgid "Is initial state?" @@ -215,7 +214,7 @@ msgstr "" #: views.py:162 msgid "Submit" -msgstr "" +msgstr "提交" #: views.py:164 #, python-format diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.mo index 1f45b4b2dd17b693e655e78068c195fcd8502cfe..f192269e8938db4f3b9d3fc27d133ec2dd85916e 100644 GIT binary patch literal 5721 zcmcJRTWlOx8ONs(2)L!8E!T28g*vrq*4}lTkZf?PG#3cqBsg{uNKnSR$M(d#JFA&l zJFY6ET%0-<$^%j*9*UrZ)R#CHlQ@y{KqVwD65@@A8H8G15K^CbDMIi7zwgXt*N#)d z17pwr&*eMc{rk?m@#v85q2ySNc z1K?xeR`3b%{ot3uE#LqsdJKb)g5w}6Ti*je2A%;$k5|Bl!Rw&d^E&t>_%MeRxE*{1 z90cY32q<#L!4H8`pvb+D;19te=061oz<+?p!LLH}IavpV&#yu8@$W#fcN0H?Tlm3c z*5jbqtw6DFCy43Rx4|i}40eETfWmJxP7!upCgmnO?iu|LX0>1%137!N+&mVyW@CNvC@Gl^)wEhh$a5KRZ zx(*N(tY?z>SHNE8-vtq6y_~H73>3L{K;ieRWd0^7a^FgD3&D~7UhrGsVK5IafZgC9 z!B2y2B!TGP39@A6!Kc9IlKF`QUj)ZlzW@$`{{$WI2u|G#u7aZfzrcQQGf5zJ4S^p8 z$3fBi3@Gw1fKP+JNY>v1f57~0a5p%^VTs!>!H2-#fC~Hr$iMYAKO*PBk66|N;5J@) zRM1#?fy13W>08%=vv0b zZf_eUC)$`tIXZle|`NA^cOt$m~@&kfK^*%_}`S{>yYK0i(kJ?)anY~{dy3Bl?G z*R2XilyMuueX`j%rc2{~qiXG|Xj`11)u?CJ$DER{JYDy+59`ECln`$yzpfcH>V`VC z+kZ-x9lu_&r<7eQH+97i>)i#@MkVmOtbJ}(TqY=z{A>XG5vQVSc2!&ZJS|>H<)~n) zuAyAJnl04yWRo-ruy5@*el3@E+1js1Y@~w{-6n0!cHJr`wO{g_y7=7MpM=<`(43`d zW6KlngRueCt5j3CvHnrs|$cqyq=zWw*HzYrbX; z63>&Q6eFG5sEO45q;5y*=1zZ)YVXj(rISd->|zUrUrLtN5X8tlsY{JkpH|(nGcsl5 zyKY4Y96#_SNBzL{s3hwkQ8quS>QuE@63^;(Ft(mf`OXX4>Oa(fAPzvkebT8ms>;r4 zDXoN#_D;!DyHar{2lh^0$VD4(+#w=)Tr*qMgZ2 zy3m?6-}LW;lP~Pd<+ta03aYTP*xQ@S z_vZ5u<_L)+*WBH7J%wU^_tSZvwy%*oxk0(sxEfurs0LiJpQ;&fecN+f2x_AZEXWON zyINFxJ$u+GsgAKAs297tCnqPnOqX{?^vNzl*zLvVyzZ(Plhfs@-(5*~blYBcXPXpq z)8;}~zHJ`?<~qm?(gunu&?kd#?h~iBN0r8GkEYo-G>nkuU#KRtjJu+-B zr5MGc>F@>zUlJMf(YbI*6zH;ye%H`!Nsh~5 z=+J#8ydrc$j-bWxnurXSW0H(NdqywAd=WLSMbj})B;3HVjOT0S{DNT?oq@Aqb}^b! zFkcDpn0a(6npNRSbP6vfC;yA6?7Jp5PgI`8igOs3xMmr1X4p*^T2)1eG44jV%rSzs ziX(1iHge{*=(Ivd7%s{zTr!(XT0(%qi{UDsz~vUfx)a{EAjXR^r)jpxh}gGm<68(W z!Sg0$uS$&1u{M`v3&YDIOPDo@T35xso8d)RuFb0@+&@dAiBLv(LnATH&!)*mpwErFR&(~)hX z-2K;U%f-Cr(=20+;!>^e>`Xq>kb6_=O4`Onsb7vz6Qru7NzzPOB4vtxi3NI*sl!*2@FK(G_JJeQ)*+vJlGsvN z2$cRLi4rb0`-wE!t9O|ur=)wfmOe$B$`Xf&(bLhnEFIt@rEmCOF=cf*DJvX!9f7EL z52mL@(*IxmXqF_HH_d~f(&A2uPB;d|Hu|NK`Q>^N!T+RhrFt zX)1goL@#Cf#MZ{2uC1wU;S+O>-MfKpbk9jaaLpxEMLKb%wRD2kTN%n3d~!annT^%@ E5BZub2><{9 delta 102 zcmcbqGn2*Qo)F7a1|VPrVi_P-0b*t#)&XJ=umIxwKuJp=4N?OGlhe3;c};Z=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "الوثائق" #: apps.py:97 msgid "Create a document type" @@ -45,7 +43,7 @@ msgstr "" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "نوع الملف" #: apps.py:150 apps.py:174 msgid "Thumbnail" @@ -73,17 +71,20 @@ msgstr "" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "تعليق" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -112,16 +113,18 @@ msgid "Document type changed" msgstr "" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "صورة الصفحة" #: forms.py:55 forms.py:58 #, python-format @@ -130,23 +133,23 @@ msgstr "" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "إعادة تسمية الوثيقة بسرعة" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "تاريخ الاضافة" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "نوع الملف" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "لا شيء" #: forms.py:124 msgid "File encoding" @@ -154,56 +157,60 @@ msgstr "" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "حجم الملف" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "موجود في التخزين" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "مسار الملف في التخزين" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "Checksum" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "صفحات" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "نوع الوثيقة" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "ضغط" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "اسم الملف المضغوط" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "اسم الملف المضغوط سيحتوي الوثائق التي سيتم تحويلها، اذا تم اختيار الخيار السابق" #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "نطاق الصفحات" #: handlers.py:13 msgid "Default" -msgstr "" +msgstr "Default" #: links.py:43 msgid "Preview" @@ -239,7 +246,7 @@ msgstr "" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "تحميل" #: links.py:88 msgid "Print" @@ -269,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "مسح بيانات الرسومات المستخدمة لتسريع عرض الوثائق و نتائج التحويلات." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -332,7 +338,7 @@ msgstr "" #: links.py:238 links.py:252 msgid "Edit" -msgstr "" +msgstr "تحرير" #: links.py:243 msgid "Add quick label to document type" @@ -352,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -370,10 +377,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -387,7 +396,7 @@ msgstr "" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Description" #: models.py:165 msgid "Added" @@ -418,6 +427,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -427,7 +437,7 @@ msgstr "" #: models.py:366 msgid "File" -msgstr "" +msgstr "ملف" #: models.py:446 models.py:447 models.py:646 msgid "Document version" @@ -444,7 +454,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "صفحة %(page_num)d من أصل %(total_pages)d للوثيقة %(document)s" #: models.py:671 msgid "Document page" @@ -455,16 +465,18 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "مستخدم" #: models.py:799 msgid "Accessed" @@ -476,97 +488,100 @@ msgstr "" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "إنشاء وثائق" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "حذف الوثائق" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "تحميل الوثائق" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "تحرير الوثائق" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "انشأ اصدارات جديدة للوثيقة" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "تحرير خصائص الوثيقة" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "تشغيل أدوات تعديل الوثيقة" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "أعد الوثيقة لإصدار قديم" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "عرض الوثائق" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "ضبط الوثائق" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "إنشاء أنواع الوثائق" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "حذف أنواع الوثائق" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "تحرير أنواع الوثائق" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "عرض أنواع الوثائق" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "أكبر عدد من الوثائق الحديثة للتذكر لكل مستخدم." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "النسبة المئوية لتكبير أو تصغير في صفحة الوثيقة لكل مستخدم." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "أكبر نسبة مئوية (%) للسماح بالتكبير داخل الوثيقة لكل مستخدم." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "أقل نسبة مئوية (%) للسماح بالتكبير داخل الوثيقة لكل مستخدم." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "الدرجة المسموح بها لتدوير الوثيقة لكل مستخدم." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -577,16 +592,16 @@ msgid "List of supported document languages." msgstr "" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -596,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -614,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -643,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -652,6 +670,7 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -661,6 +680,7 @@ msgstr "" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -676,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -698,20 +717,21 @@ msgstr "" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "سيتم حذف جميع الإصدارات اللاحقة بعد هذا الإصدار أيضا." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "تم ارجاع اصدار الوثيقة بنجاح" #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "خطأ بارجاع اصدار الوثيقة %s" #: views.py:628 #, python-format @@ -723,22 +743,22 @@ msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "يجب أن توفر ما لا يقل عن وثيقة واحدة." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" -msgstr "" +msgstr "ارسال" #: views.py:715 msgid "Change the type of the selected document." @@ -751,6 +771,7 @@ msgstr[4] "" msgstr[5] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -789,14 +810,14 @@ msgstr[5] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "خطأ بمسح التحويلات الخاصة بالوثيقة: %(document)s; %(error)s." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "كل التحويلات الخاصة بالوثيقة: %s, تم مسحها بنجاح." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -810,11 +831,11 @@ msgstr[5] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "لا توجد صفحات أخرى بهذه الوثيقة" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "أنت بالفعل في الصفحة الأولى من هذه الوثيقة" #: views.py:1213 views.py:1222 #, python-format @@ -830,6 +851,15 @@ msgstr "" msgid "Document page image" msgstr "" +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -897,11 +927,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1037,8 +1067,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1052,11 +1081,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1082,11 +1111,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1103,19 +1132,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1172,11 +1197,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1200,11 +1225,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1222,11 +1250,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1256,11 +1282,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1317,17 +1343,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.mo index 2dcc5800679b96ac154f541f0fda037a9d00b688..507a9d0f7439e570d452ff9843481653210c3525 100644 GIT binary patch literal 6745 zcmb`KYit}>6~~7*wAAHUo~6*sQk>-4LY4PNYb6o2E`Agitl!y|#z$?kqF2 zanestQj#VDg(j&eh^8q5At8{QG$tFTaU>)vBoNH<=m!u~LMk8?Apu|D8^3e!%y@Ua z4nbn1+5gO)bI(2Je;)VlA8uRsg2VL?_b0f2{SL?334ZxTez+FaInIONIq)&?&)_5A zrgu8d4sbvCF7PTCf)2Iz7FmMZ|CE^G7if8)8J!A4g%LIQ9 zLY4CuQ2hNHD1NO&2-lnq-~n(H>;u0KioV|@_*+o?c@q?W{t1qPH$c`2V)!5^_Wk(X zj`J*d2TmLT&w}3t*E8u3@E714;M<_^{UgW}zJ3LcfPV!yfp_xpesB-C9h?X61YZX~ z3BCnB0Nx0BBKHu;kTV5}TnGwJCqaqNTcF7O3l#hBWl-Kn!HWqIknKxS#@_1MBUPw@MjwH{r&M!zDd5W#O6i20%7QI-8tqpE9BQT2ucYS!JS z(V=UZmatJO=`fsbR4NBhSM?jUNO|&oCeS)$6&3gqb}2X0Wml_XTqESit6`^Gk~P~k z@V&&s>KWg!ibjm_8_{*D8JpFmr^80o8LMblNYH8~aO<;PDO7>32RcM`;wDB28!D`8 z9vXEco%$WFS7k4(SKI^2t(8}7g@-&{C~Z`taL^g^t3sKetQ2MssGs&Ky5?53GZtuJ zC0$2F2kIKh&e3e3rsq~flK_X#xZ$;2)@5g0PrIxRN_1Cbt=iluGj&)Byt;7ij3*&B zCak=rX%uLlBw^Y^or$3;nI5W8M~yn~bG3@^Vp8&u8526&%U)!DvN2T;d?ForI4@sU zK3K~;#t;btNlJ0jtIb?@>h`5H_lH|lZ=V(|{Y1*DvmT1RR4lC_gjsXHE;ZUYt@>qe z`hZ#A_bVdcg;6Lu8b*FVB{@5YviVU}ud2lp`&M_O*}R+zy=SyD;qLdUjjD393QF_8 zueV>a)2&qeIa@HirA3i1s;rjwX{pClYpqe8qSE|nlHU|nU&$m|c|d7M*Wf-+&*^f1 zMu9C|UDal0TCAw_YX7sL-Rd@PX(Nmz7xsB&T1BKNTLz?Wr7;;N}`yv`m$j1HPz@)$Z#G`!N&*-DUPN_4l${A}1T z;$o!U=lP8=%@OCx##EKGo}|a5)h&xl&nYDxASrytaLqL0l2893V?-)7(kvhyIw>3p zi)R&Oi~6Q!6+Jzq2ug%*P*x5gjl1Tnst+0tB+*RwPxU){_Us&Y_Rw>ky+k`(H|aec zW1;g|zhQK`6;h>4`-_aR(_SEvk|-D_u_V*KEAYR7O@*E1!d|-x71e}$z^$q6;}cKz z?ACQZhzb+oj8`sfYs`d&Nx!Iic0E2>Fny0^RFIZdRHMTqn+n4Z6h=qX$fn}PjfLTj z!@~#`2#F_~+iJPdk>c>f8-}@h9wl`Old_qyA^Jg4?e@ujs%Ezzx`F2-P@8GsL19w6 z)uP(gsLU{qnSHZSR4)z<&CSgXn)dEZ>-~d7aVW4;gQ2SUQ_$sVI8;g03{A}p_4iEd zoY=nN_Q>FH&loXgA1F*x|3ww){m~E`iC5dAO0#Z2x7@mCaz|nFik#Vhbx_z|E74+V zGexy|%8N2{i)w17XIG^WxRt^Vw&}2_YIXA(ZXMmC?BmwHn!0;CsqniaPUKY1{Z<<^nJ0jnWC2e-}mhhmN8LcC$f zEG(=F_k<<=zJ{G^GZinS)}m>dmEg~~-`)5VPW%nTpjfPBO2UdTzu?3#65peEYTarh zE`AmHh1RotJIWkb5e{s`FBoy*`-Cu!Jp@dsL;c0XZ$lUvAhCl!ltF=rW$D6XOVOg$ zZNiufjEw;kWiCEQ8bjR@Pfcb^sxfBmTDG}l(o|edG7Bf>EeEez^D(Gtv|zdrfLxM8 z*vXsmu}#QiGfGHJ)^y@msE&&!l8O1rY{`lX$#dQfm|kmIUbMNkC}9xF+R8aCw0uHK zXiu-Iw{wzpHfCh6i64m?=PXrcC6+2l5L!{m9D6@^g?GxQS>^Rd6@RptB&5n?_ z=sYERoc*o6sb%{hJI$JVQM_Qz{?Z%q?zrihG+9a1#4wyqnoZ|;o-14S*sv%blCOuw za}trA5%w-)8zFJxZ}V^|zU-v`7?QX@Ylqt;ggT-8c(RG*^qggav8*+}TE#c{xFmfI z)6Fg<`-X&OWe=188>X_aN;zRMvdP}kz5OmzceunZNjbM~YWav-w$0w#ZHr}>>S~^x zEXaJbd0Jm(Cs{Tpfu`zXm9!Vj?o5a{-H@BB3XE~%s;SWAJJN}_?VUv=Wgn1@CEddg znk|Mw5*~gDq0n!Na7}06>;KL4K^wT0eG^7Z&1H4--&y_^MR9^wZ_?1T1M%P>x10j( zUW%jU{3JBu#;X3u3G5}5nDfIcod!^p^7kP5cZODYlDa0PGiCKoLc12PpMomUU4{W z9qYoa4ZrMotS!qWdl?l$=UAbFtgx0Q=|*K85nGjnL0Y5zKY(#7nF5XYA&wnIDjxvT z5ve!kk_I`p>|a+CNeR-TIjE4S^hhtWuu7QT6#fJ%3Z`x Zw%MEJnCZUrrhsy85IG5mgr>VA{{gBcY;gbp delta 102 zcmca`2C0F8$tK*syr#MambykJ b3WjD@MrM=yxTWDD2Bubqrkl5M^D_bff71>d diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po index d7ae61315d..f1c78717ad 100644 --- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,20 +9,19 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "Документи" #: apps.py:97 msgid "Create a document type" @@ -72,17 +71,20 @@ msgstr "" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Коментар" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -111,16 +113,18 @@ msgid "Document type changed" msgstr "" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Изображение на страница" #: forms.py:55 forms.py:58 #, python-format @@ -129,23 +133,23 @@ msgstr "" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Бързо преименуване на документ" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Дата на добавяне" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "mimetype на файла" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Няма" #: forms.py:124 msgid "File encoding" @@ -153,56 +157,60 @@ msgstr "" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Размер на файла" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Съществува в склада" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "Файлов път до склада" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "Контролна сума" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Страници" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Вид на документа" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "Компресиране" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Име на компресирания архив" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "Името на компресирания архив, съдържащ документите за сваляне, ако предишната опция е избрана." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Поредица от страници" #: handlers.py:13 msgid "Default" -msgstr "" +msgstr "По подразбиране" #: links.py:43 msgid "Preview" @@ -238,7 +246,7 @@ msgstr "" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Сваляне" #: links.py:88 msgid "Print" @@ -268,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "Изчистване на графичното представяне, използвано да ускори изобразяването на документите и интерактивните промени." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -331,7 +338,7 @@ msgstr "" #: links.py:238 links.py:252 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: links.py:243 msgid "Add quick label to document type" @@ -351,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -369,10 +377,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -386,7 +396,7 @@ msgstr "" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Описание" #: models.py:165 msgid "Added" @@ -417,6 +427,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -426,7 +437,7 @@ msgstr "" #: models.py:366 msgid "File" -msgstr "" +msgstr "Файл" #: models.py:446 models.py:447 models.py:646 msgid "Document version" @@ -443,7 +454,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Страница %(page_num)d от общо %(total_pages)d страници от %(document)s документи." #: models.py:671 msgid "Document page" @@ -454,16 +465,18 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "Потребител" #: models.py:799 msgid "Accessed" @@ -475,97 +488,100 @@ msgstr "" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Създаване на документи" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Изтриване на документи" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Изтегляне на документи" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Редактиране на документи" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Създаване на нова версия на документа" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "Редактиране на свойства на документа" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "Изпълнение на изменение на документа" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "Връщане на документите към предишна версия" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Преглед на документи" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "Настройки за документи" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Създаване на вид на документа" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Изтриване на вида документи" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Редактиране на вида документи" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Преглед на типовете документи" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Максимален брой от скорошни (създадени, редактирани, прегледани) документи, които да се показват на потребителя" #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Процент приближавани или отдалечаване на страницата на документа, приложен за потребителя" #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Максимален процент (%) допустим за интерактивно увеличаване страницата от потребителя" #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Минимален процент (%) допустим за интерактивно смаляване страницата от потребителя" #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "Градуси на завъртане на страница от документ, при потребителско действие" #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -576,16 +592,16 @@ msgid "List of supported document languages." msgstr "" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -595,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -613,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -642,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -651,6 +670,7 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -660,6 +680,7 @@ msgstr "" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -675,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -697,20 +717,21 @@ msgstr "" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "Всички версии, следващи тази, ще бъдат изтрити." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "Документа е върнат успешно към предна версия" #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "Грешка при връщане на версията на документа; %s" #: views.py:628 #, python-format @@ -722,22 +743,22 @@ msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "Трябва да посочите поне един документ." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" -msgstr "" +msgstr "Подаване" #: views.py:715 msgid "Change the type of the selected document." @@ -746,6 +767,7 @@ msgstr[0] "" msgstr[1] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -780,14 +802,14 @@ msgstr[1] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Грешка при изтриването на преобразования на страница на документ %(document)s, %(error)s." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "Всички преобразования на страницата на документ %s бяха изтрити успешно." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -797,11 +819,11 @@ msgstr[1] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "Няма повече страници в този документ" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "Вече сте на първа страница на този документ" #: views.py:1213 views.py:1222 #, python-format @@ -817,6 +839,15 @@ msgstr "" msgid "Document page image" msgstr "" +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -884,11 +915,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1020,8 +1051,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1035,11 +1065,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1065,11 +1095,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1086,19 +1116,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1155,11 +1181,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1183,11 +1209,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1205,11 +1234,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1239,11 +1266,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1300,17 +1327,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.mo index a9c0470c739760b2111dc0defb47a4e08547d8dc..12d51f1b068a91f2a6a0372c1b3200f2787b1b4d 100644 GIT binary patch literal 5160 zcmb7{%Wot{8Ndq?2$&@y4_+aJ3dD&`cI>ftvxM0=DEms5#aXj!TZ#l(wWrH=d8WHM zUESmLDB_Ysgd&hQAb}Jf$(cj`0ua(}4j|x!6r_-F11Sd{LQzhL-&g$@+lfMGx#w5i zUG>#h->b^6-*)2<71u-DcX7Y=0i`a&7jEE(>(v{TdJz5zJ^^p}kW!Drr{FpGbNCVX zSLoqC;7u_8aP@u&Z|Av$pM>9qpMXDuGT+N^3jPktxL2X{`wNtQZ^4hjoA~%~csslg z-UB}hABVTVOHlOKfVaT`L}m3I_!;;t6g^&mH^Y~qtmjwoUU)NuH9Q7yg{x4;Z$g=O z0Plc%Q0D!9%^$%vo?n8O;M;H=UZB&L~{ho)S=TD&6@g;aK zd>M-TKSKW08~lhKe}}T3x1q>8LJ-^u@2EKsMef((S@P_r!T-h6g{4WVz=iZUDR(NCQ+|Jk@F_}H2gOd zzaL={vc4|t!yXjYCg28ocuiPF1N1VeGqoIaY?vjeaGtd z{cwg`d@h&7_*`fagEa+W8_6HJB;Liga!IU9JS=jHeeU7@6t~2R_+73O+z)auaEr~v z?&5>y`bympyS3M&!=WBVg~|2EdTz_CGfq^#Cq&pA`(%?mBsrMb9&qK2fj?y z>7j|l2u5$^QMPUSUgsvujYo97Oq397XrCDxWfpoj>-P8S*!pZ3?dd3uC%R&X!{$P0 zIV}8~I_(lMnNVi(Z3FR}c4*QlG3s<~#461^y4cGMJrBNZU!-Pt(zSN5S7(A<phf4DU@92`}5|pw?n{K`D(4A?_JnK*D=@}zZ zX7N-du3DkUYq~W#L}%u_YWn4VnZW(-7)6y3b z6(bu{Gzv`u^Fk_Ew`ft5|q6qKCd75U=jwY+Ku&-!Yh zO~g?_24$~qdiBlH_6O}u7%3#{rH}*d>tK-xCC$jX(l^nfE|(h#0lrGLY4Thqm+I56 zYe8KCc*oL0N$xu;5wRn^8YRO7Qmg9}61Uh&P&=s$*{iAUo^f)>-nt4Mc<0rVt_(7xA)yje2#cWXrp?7u;)SqCG->6p z8X{AtDR5*DN7wG zZaux&T{zL{9_uVF=!Fx#8#4O#@6Wa zp1$OWezNA0^HFXc9n!6m6?9fjl=So|=TnQ4GgTv${Kri`Hd};a8qMmN?V`wf^YgpA zyK|xb+f8$I4(HD2mBf5Lk!5yFocQ@+Eq#8&Upe*Y{Opuu`NSX#bKR-ac%QwZvr3KV z>B3ws=Gkm)dQ$hdqnwJmw6=P#^U$PU*rQF}Ih*z=L+MseKeSLU0Pbu_uZ$Z*}Z3JVL^XQcQxI4eq?E}`SkG8acPDT z-G>*t`k7~{A@u3aGG>7>i?b)E)Md8CG#aE)OuDjdjO|W%!D+DqJbn$f^r`vD~g zt*v$&x%E+M=EBg)j@p-jUY>0~(qk!ZgMH@^UsC_F9drFf;(Q|G{5W-9mkczSp*V$+ za{NG?yba!;tGy5QvG5#`d5vq!n3o`}YF#4^LP8)0l6lMIC!7H1R)n zY8^kyBO)qg?%JVt($bgDuCA@LXOOnhh?X_3<+9~j{GJeQDbeWNh7B7{9UzlW?^M4X z)#$Gt%L&Lqq^p=l=>vW`9LD>0qyuM?Mhan|!wNBHWAN5RMHG%E=f|U50xXh~zXXvT zC#+<@UsfE4k{wG{WNup$Ks+VhkJ!Mgv&keLR>~p-d$T00-40tfLt>aJIO$#;T5QJY zV&F-aAvTQNc;tq`oVHHKefcCum`TbZNsmK@HR-iab2+oLQa9L7bZQ8$)NbpUL5SOw zO|fzv(;b!E+8WX&m7_~=prj5)$)ZH!L{jTOzJ~+M`&4@W$p57_XTYkuZLkw3dPj6> zR4O>U5NvVk)a9nU9X!MEFUX+GsB4FhG3CKi%;h0vLY7z8wNhQoyxD3VO(Wl^Q~B75 zb#QlD?zEby^_>5J+D8hvbSk!8OaN8IyHqPYp)XnT9(4qd5@9}y^XtEy2sHKUP~Do7 z%u!AK$0Y0rk#-q%5X8|2kxBWwIHDLe!H2)8;3G=pWGk4fPA(VfqODeHpTAoPtG_k! dB;(i3wdXL9>`AP3BsIHo0=YkOa{g};|G$GS*)sqD delta 102 zcmZ3Xv4O?no)F7a1|VPrVi_P-0b*t#)&XJ=umIw3KuJp=4N?OGlhe3;c};Z=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "Dokumenti" #: apps.py:97 msgid "Create a document type" @@ -45,7 +43,7 @@ msgstr "" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "MIME tip" #: apps.py:150 apps.py:174 msgid "Thumbnail" @@ -73,17 +71,20 @@ msgstr "" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Komentar" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -112,16 +113,18 @@ msgid "Document type changed" msgstr "" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Slika za stranicu" #: forms.py:55 forms.py:58 #, python-format @@ -130,23 +133,23 @@ msgstr "" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Brzo preimenuj dokument" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Datum dodavanja" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "Mimetype datoteke" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Nijedno" #: forms.py:124 msgid "File encoding" @@ -154,56 +157,60 @@ msgstr "" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Veličina datoteke" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Postoji u pohrani" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "Putanja dokumenta u pohrani" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "Checksum" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Stranice" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Tip dokumenta" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "Kompresuj" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Naziv kompresovane datoteke" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "Naziv kompresovane datoteke koji sadrži dokumente koji su za download, ako je ova opcija odabrana." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Opseg stranice" #: handlers.py:13 msgid "Default" -msgstr "" +msgstr "default" #: links.py:43 msgid "Preview" @@ -239,7 +246,7 @@ msgstr "" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Download" #: links.py:88 msgid "Print" @@ -269,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "Obriši grafičku prezentaciju korištenu za ubrzanje prikaza dokumenata i interaktivnu transformaciju rezultata." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -332,7 +338,7 @@ msgstr "" #: links.py:238 links.py:252 msgid "Edit" -msgstr "" +msgstr "Urediti" #: links.py:243 msgid "Add quick label to document type" @@ -352,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -370,10 +377,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -387,7 +396,7 @@ msgstr "" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Opis" #: models.py:165 msgid "Added" @@ -418,6 +427,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -427,7 +437,7 @@ msgstr "" #: models.py:366 msgid "File" -msgstr "" +msgstr "Datoteka" #: models.py:446 models.py:447 models.py:646 msgid "Document version" @@ -444,7 +454,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Stranica %(page_num)d od ukupno %(total_pages)d u %(document)s" #: models.py:671 msgid "Document page" @@ -455,16 +465,18 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "Korisnik" #: models.py:799 msgid "Accessed" @@ -476,97 +488,100 @@ msgstr "" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Kreiraj dokumente" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Obriši dokumente" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Download dokumenata" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Izmijeni dokument" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Kreiraj novu verziju dokumenta" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "Izmijeni osobine dokumenta" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "Izvrši alate za izmjenu dokumenta" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "Vrati dokument na prethodnu verziju" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Pregled dokumenata" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "Dokumenti SETUP" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Kreiraj tipove dokumenata" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Obriši tipove dokumenata" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Izmijeni tipove dokumenata" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Pregledaj tipove dokumenata" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Maksimalni broj nedavnih (kreiran, izmijenjen, pregledan) dokumenata za pamćenje po korisniku." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Iznos u procentima zumiranja stranice dokumenta po korisničkoj sesiji." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Maksimalni dozvoljeni iznos u procentima (%) korisniku da zumira stranicu dokumenta." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Minimalni dozvoljeni iznos u procentima (%) po korisniku da zumira stranicu dokumenta." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "Iznos u stepenima za rotaciju stranice dokumenta po korisniku." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -577,16 +592,16 @@ msgid "List of supported document languages." msgstr "" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -596,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -614,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -643,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -652,6 +670,7 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -661,6 +680,7 @@ msgstr "" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -676,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -698,20 +717,21 @@ msgstr "" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "Sve naknadne verzije nakon ove će također biti obrisane." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "Verzija dokumenta uspješno vraćena" #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "Greška pri vraćanju verzije dokumenta; %s" #: views.py:628 #, python-format @@ -723,22 +743,22 @@ msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "Mora biti barem jedan dokument." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" -msgstr "" +msgstr "Podnijeti" #: views.py:715 msgid "Change the type of the selected document." @@ -748,6 +768,7 @@ msgstr[1] "" msgstr[2] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -783,14 +804,14 @@ msgstr[2] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Greška brisanja transformacija za dokument: %(document)s; %(error)s." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "Sve transformacije stranica za dokument: %s, su uspješno obrisane." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -801,11 +822,11 @@ msgstr[2] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "Ovaj dokument nema više stranica." #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "Već ste na prvoj stranici ovog dokumenta" #: views.py:1213 views.py:1222 #, python-format @@ -821,6 +842,15 @@ msgstr "" msgid "Document page image" msgstr "" +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -888,11 +918,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1025,8 +1055,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1040,11 +1069,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1070,11 +1099,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1091,19 +1120,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1160,11 +1185,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1188,11 +1213,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1210,11 +1238,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1244,11 +1270,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1305,17 +1331,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/da/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/da/LC_MESSAGES/django.mo index ee18f58314c10bd0de6d13fb8a93eec51a889e7f..cf4f87a4b3c5da729d3bd77f59a2c7ed75661897 100644 GIT binary patch literal 4944 zcmb7{ON<;x8OIB3UP~|`JObvC3dtt3&d%(^&SJ(`$lixo!8-OnED#5)XS!ylJ^dJU zb%ftI7A46cpcz^KuAb%K>WVy$IPyM2(7L8 zcU4z?^}WAufA`So7ZlG5<3o&}zCo!?@C&E-;d$}2Qcr{503lIrL8OEGT@O10Mp-39hO$1!{FMik`Xu-lunjg4W)lV0H$k~S0!7bX0-pk31Lwd~F!eCl1jSX? zL9S4npq%?`IS)aR?>TS>{0g`W{u&f}wJ^Gtbx`ba2NeB%4;23YT;e~<@BanQvVIz& zTi_$$7`z6Gy?zXeTz>;`QT0!dBkDgOs#Xuc+|%G$5OX=60Vlh}!y_``5#JR*5*qS| zPUZPX0jgP|_{?JYzEYy-M|2~6icIo|?r?E6&k%bEk8fnmGUO54$n!Wu_^ck0=>rVd zcX1%RKgtlFeUgD1>t~5K(X~7uW}IVOV2Gc{BX$zoE-*xQ%M5wMUZQK!lV)IIb)Mm# zD`BWZFEgngo74tLti7JhvO!>V5*xiAu%lzNZ$gt9UuQ|uQgSLA7(Md(MrWxP+g_4J zUdDN=dDVW>%_9?MZ9Qw}^}rh&XqdRBV)Jg-Sli3P@DOrQlE;}2_X)69G@&$4Kb$e~2((s(Uq-PsOsLWxcf?Oe-(5tpp;lpO` zJTTpSTAfki2faggf0Bf7d z=Fe+`T?{x5%)asGYGoAhYa-)LRuK!yApXA@yc3F_*RavK{ zt}#{DC0)%nBx~J5tU2GM1|*wpWMrH0mVB|YEKAklIa?eIA~BSsLB=azt-6s1-C=zb zN^)_!?cBd!b{g?u(u{*7x0Sc3T{27++j6U9oNgKaW!STZOfC&~6S5CZBfBc@9A(MR zW!Q*4f`U+eTjC;ClhG}4(8Xpgxj98!j5yIz0y^Qv*Ie$e=&QZG%{8@0##J{lbA4}_ zd5*1F^|>T>G`$cX@kxG}W40HhVj@w$6B15p`q$IsHas;q{pQW01hw^+cj(1>eQj%J zX4{OCG;40ze&9E+=6&1TP1<_q`ZK#tm-R?RO-X2Ny}Y=z(p)^>Twc;kEA0yxnu`|} z7undv7J-zud-p9bwHH7B)FRK!XYiTku9Py$VUo7>c7odzF58Lq(jZ|&+|QAqxofF&TwNtBoOb~lZ|; z=uTbqg>e|br_lqh-Ahemhlep@<6*Jncc-eFeGVl3viigBn3GkrghU)Gia+j~w$!JK z`tPOkHcEr&=;f4jGaRBQazyNnWAzL%Ev2x~j+BY?#2O2@rj8HmU8NnR>?gu`@96Gr zlc}AI&csW7wSy7s%>~J0OHjOO>@daPp*7U!$>nM{@WTL$Nd767%iDC{#CGU)Xf4VQ z!dUr=Mtln=AsS=(Q_}UwPfdiyZHh}D4NTTbiue0gaDDHQRBf2sA)ZVdf|Qko#H(mj zYg@RE4qKgY)u{@gr<*?!1x-3@7rK%&;9WNo@lbNYJid(uk%m_? zmvje(hoESQ@n!#DTF`MtbeiTlBrzDk@Uhp%K&!l91)< zPLf(dv+5FBdQGgP2jnfu?NgUUIT1Y|Vqga$`YpPCax(vLah2|oTZ>H30w;w?bxYAI tTy-g$W`2C0F8$x7V5yr#MambykJ b3WjD@MrM<1xTWDD2Bubqrkj^=^DqJca4HSO diff --git a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po index 904ce22a77..70f1184795 100644 --- a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,20 +9,19 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "Dokumenter" #: apps.py:97 msgid "Create a document type" @@ -44,7 +43,7 @@ msgstr "" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "MIME type" #: apps.py:150 apps.py:174 msgid "Thumbnail" @@ -72,17 +71,20 @@ msgstr "" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Kommentar" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -111,16 +113,18 @@ msgid "Document type changed" msgstr "" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Side billede" #: forms.py:55 forms.py:58 #, python-format @@ -129,23 +133,23 @@ msgstr "" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Hurtig dokument omdøbning" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Dato tilføjet" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "File MIME-type" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Ingen" #: forms.py:124 msgid "File encoding" @@ -153,56 +157,60 @@ msgstr "" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Fil størrelse" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Eksisterer i opbevaring" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "Filsti i opbevaring" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "Checksum" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Sider" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Dokumenttype" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "Komprimér" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Pakket filnavn" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "Filnavnet for den pakkede fil, der vil indeholde dokumenterne til download. Dette hvis den tidligere mulighed er valg." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Sideinterval" #: handlers.py:13 msgid "Default" -msgstr "" +msgstr "Standard" #: links.py:43 msgid "Preview" @@ -238,7 +246,7 @@ msgstr "" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Hent" #: links.py:88 msgid "Print" @@ -268,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "Fjern grafiske repræsentationer brugt til at fremskynde visning af de dokumenter og interaktivt transformerede resultater." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -351,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -369,10 +377,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -386,7 +396,7 @@ msgstr "" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Beskrivelse" #: models.py:165 msgid "Added" @@ -417,6 +427,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -426,7 +437,7 @@ msgstr "" #: models.py:366 msgid "File" -msgstr "" +msgstr "Fil" #: models.py:446 models.py:447 models.py:646 msgid "Document version" @@ -443,7 +454,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Side %(page_num)d ud af %(total_pages)d i %(document)s " #: models.py:671 msgid "Document page" @@ -454,16 +465,18 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "Bruger" #: models.py:799 msgid "Accessed" @@ -475,97 +488,100 @@ msgstr "" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Opret dokumenter" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Slet dokumenter" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Hent dokumenter" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Redigér dokumenter" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Dan ny dokumentversion" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "Redigér dokumentegenskaber" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "Udfør dokument modificerende værktøjer" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "Bring dokumenter tilbage til tidligere version" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Se dokumenter" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "Dokument indstillinger" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Opret dokumenttyper" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Slet dokumenttyper" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Redigér dokumenttyper" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Vis dokumenttyper" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Maksimalt antal seneste (oprettet, redigeret, set) dokumenter der huskes per bruger." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Procent zoom ind eller ud af en dokument side pr brugerinteraktion." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Maksimal mængde i procent (%) en bruger kan zoome i et dokuments side interaktivt." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Minimum procent (%) en brugeren er tilladt at zoome ud af en dokumentside interaktivt." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "Antal grader en dokumentside roterer pr brugerinteraktion." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -576,16 +592,16 @@ msgid "List of supported document languages." msgstr "" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -595,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -613,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -642,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -651,6 +670,7 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -660,6 +680,7 @@ msgstr "" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -675,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -697,20 +717,21 @@ msgstr "" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "Alle senere versioner af denne vil også blive slettet." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "Tidligere dokumentversion genskabt" #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "Fejl ved genskabelse af dokumentversion; %s" #: views.py:628 #, python-format @@ -722,18 +743,18 @@ msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "Angiv mindst ét ​​dokument." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" @@ -746,6 +767,7 @@ msgstr[0] "" msgstr[1] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -780,14 +802,14 @@ msgstr[1] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Fejl ved sletning af sidens transformationer for dokument: %(document)s ; %(error)s ." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "Alle side transformationer for dokument: %s, er blevet slettet." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -797,11 +819,11 @@ msgstr[1] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "Der er ikke flere sider i dette dokument" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "Du er allerede på den første side af dette dokument" #: views.py:1213 views.py:1222 #, python-format @@ -817,6 +839,15 @@ msgstr "" msgid "Document page image" msgstr "" +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -884,11 +915,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1020,8 +1051,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1035,11 +1065,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1065,11 +1095,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1086,19 +1116,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1155,11 +1181,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1183,11 +1209,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1205,11 +1234,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1239,11 +1266,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1300,17 +1327,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.mo index d3c520c7181be3344c39fe700a1ea9fe22651eec..d54396443190318ad35d44fbd4dbd63307a83508 100644 GIT binary patch delta 3968 zcmYk;c~DhV0LSrTJQOh$B^4y|p-{-aDO;MPpn|!Jq7tG}5+(|`A^IXUb4kj*!pwx+ za_c!-=A_t6O{v+wO=(S&rI|KN_Lt-I{k?l=I@9lc&bi#>Z1>uox+{x3m%6#O7|Ky{ zFKO~O<|f8<;)n8kXJfYERSdxTF2=ZVEpnH?m!3kJLI~}X>7i0F1E*osPmSgZoCP5 zV-x1%S=$ccr2A;cB7Hac7|iocF%^w;E@}j|7>6r#0vbf%9u0~zA26f-<=n12;kIMb{KK8+Dn2LctowXi}TFVkt&&yE{sKW%@ zh%C2hL3QLa+rEw(&~4Op{-MTvgQ4icze1UR>gEuf z-WY;kX`?_433Vq})gG3<}$QET@P z_CpstimHi5%|tHh{4!KWm!Uek5jCJj%)ni!x9WS;0PbQ3YUYAaZBG~#^*j=_1Tmi)O!Nep2W+{a^_QqStHRc@hpSi}5Ub{fIvuV4cI+}qR*;v$rr=!j*#}u50OK>;pzP%&# z+Iv`ADjG=%YNX}1y$IFwdej;=A+u;cM$N?UsF}Ed+Vyu(n<|WpbUYTd6xr4x)?Cz{ z$;VKhZzfRDuAhV2^-rUE+<=;iv#1L`#>RGhsPHoFd2DSxXe_8Zj9U zU@rcMnxTHY>-m_7o(HMaQW=FO@NsmpWAyq|puPhqu?TOVZZIO+S*nTHLc0W)Vgx&v zH_q%p&FBeKhgwjZ_Y>4o{ee2qFNXP7rFV=o1L^3dU4ThA2Q|VSs1Y4R-QbkUkRK0Xdk3`KUEs zh3eQg)a$ngwTVxmmhuAX0YBpabj3S=&qD370@Of?JXCa}`KTM$qb}HlTx&i;H~xb; z*pp$h3Z@7rk)PZp_4!sQdnndM#avPTP$^w3ATRc?MJYkxC&3VjAeC65_Nt$Y9M*maoBi=hM3mwf2Wm@BcNV&nAFj^ua9Dj7>$&%rev`dn>9#Cs70X2(^S4kr%*p z9Y{xczR9Mdp5>v|W&*ayQq&D+qc&l^ZLdYm$Zpigyx0}rMUDId>OSA1I(!9vdm!C8 z&yCtcDd^GKPNhn>eJjmoB7w&CU8KzH66n+2Safhs^>MxESl9Ag6~;B$9A-r zkkMoYQ7IusM6;Dg*t5R!D!&@}B*Hc@d$j&XiHdrxqD`Wr2Wd3rYS=QYt%7^WCfn9* z?I8M`KS@Rr-bi2P;lGkkO-rCsMLZg{)>zZ5GKW0st2sX-K$~bb@l7QzBCnC1q>?;G z63Gih|5UdXKC1eEeBVDlci{s2hrt*?R_Og#*-o^sjbtiWPM#+R2wTCp$tu!Tv^2BG zO7g5dIMLdMmTNe9+#Yz^x(%br6TY_deETP7lho7F?p1lo!M9lwZ2e(mUzyi!yB97a z^T=eoZtm>tZOGPY#kuvYU)2 zO9|g5-<;~LPy@!@`IoE?Vd$`-rVpYf3L^g&lNN< zJ}EUmCE1-kFe@!>)8WYQ)V3oj$yrI6u}PG`QKi*2@e`{`=T^@tt*NZaa*wZ^Syok3 kiPfc5<(1wpQG5KoS7VA@-sZ$Wm-n~S&;7lvnd@Eu0wb+}SO5S3 delta 4469 zcmZwJ3vg7`0mktI2_TRJNeCDo;f5Fj<{ch^2*@i^FbM?_L0Vw5T=Lp%V0R-WJQf67 zKv8Mrji4w6OG}ld$Ybn))Y>VvFyo-pf~B<5fevjMDZ>nQYX9HfV@o@p$+y3AcJJf7 z?u9=u`PcI3?^6>u8_F@#mt5*#%on(;D<70~-Hh3a>+wF!y5ATFA3_c_k6|)S!y=rA z!|+AyjPGMLp2KmN+1;2&aXwBpCTjLmsp5+}n2Qyu#>~JbR3F|$-S{`S96!MxI3vxN z46Mg6uEBJ?gPky$gLGax@|DTNo>+?fnaO;lbAL0J3Y{|%)C@d}gK#f)!Lz6levG=o zXGmYoUDS<|__7##U`MP#9aqVRu3LlsFpN`hlWkwZOzv;)QejXggYM~seALKCqed_p z^KrWUJ&NkkOQ@0U#uPkk+o!QN?F(3dH<4SI%wFDkLs9MV7|o_Ki%KCbM_uS3sv{>* zQ+yT&;#KUANe>t^1oP3s`KYyCjT*>vs2l7?UH1sGeaxRw9lK@QDH+VaMwrQ6bYd=k zg5{WqsT|F*rWY~@Q;Zt%BveP|pf22i>R2mkbL~LQ;1x{5zoM4vF6w^m`*;KB+K2hC z=8H%8;z4`?n=ytCX0su*))P@3nu(hFIo5h)8<-`i8F(JGXSSej{F?p#5bDOqP*2Ti z+x{SG4>*rG{O~*5){c3Cb{CwE^KmA|kX0~UGL0FG15h2RL@ni0$R*55)Qs#z9e)zl z(T`9ay@nc4^m8gBsN6w4e#M-n5zInOq2IQfQ9W-(EyXI-lx{`cU=OMz@1Tx*AGI`R zQ8&DZy6#nEa?MR-k3>z9<4x579Ka7nsLeASb)!0K6dP!7L0!0AmbXc}qb@uE)u95^ zo*9OW$y6ivGEJz*b0caqzl^=~{GX(vk$!|)v&*OhZ(u3j!lgKn-s!@x;vhVZ8rdIF zBfnwWcacAn$a-i=bCFduRj8S1L=9ju_U8U(H5F~LUG|4VsI~c-^^EnGs7>@Csv{qx zo`%1po`wW=usWQInu!Y3@l|-J9s36_)9%3V)q$%REu?aribnn*8$cH-!4e#c6&OOz z&@r5XKgUtnjcKUFN?eHBu^P2A^?sO&vvCdT{7+F!bsbORKL#`Z8p+Xzycf+mT&4qT z+s*T)IEw1vderXTg4%R3vhQNnuDn0&!djNj!F1W)b%@a@p4Q>EqRsZ zUp zXKEk|QRl5k-o{b0kBUZq3N>{XkmWaj!)choPU?=0))lA@zG&T!Wwc+%$#@Yp(ww2* ze_ZCEu6GOX$4q|IV_1YKdj5w|(Fi7DI?h0?Sp#;(C76n9Fa@`uMzqiR7Ivb25_R4g z)D6$0*8B^cgo(qwS9&F?y%)3f{QrfDHbn}<(2HU+GHa$5`{Q=h)E!67&?V%NH@8t8 z${68|Xb_I0U5GqkW)Z5RJ5U|lhgzb;*bz@*^Z_a#P*G3+fNEby%}9F|Tq8?GEkSS8 z1@loCDnoU+0=1@o)NxVF#ZC760N)N8~8#~6hlqv zDb(7ZLrwKX2yO@ZlQ8WDu)FwU`rIJDA zx2UPVh3Z+-7-QHLraz|POlt$SqpdRCBmNxQs(Id47GQ&|@5XtyJ{9-d`U))2XqlCG z*}>-z$t@UW%JZHPP1iHc^@2 zVRqp(vdOk5VV14eS)ah=pT(pzsUfXIWh~i7 zlF3BEd(imFY_g23Blng$w(%`2we_PIJ;28+L=Q?4X(o9@uZk_CgrpIb=g4C6G#N>r zAu1KbN4~3uE&2Ep(w(@ZANetPmb^iFk$R0On~KT^GKCx>hl$El9;O8&wq9nh z`6*E;B;(1WYJ62s&J-;QB&Nq|SBz_lMZw)Xx$+I{rFe zu(oYadheXb(nYSbxTW6T=mdNH|bEw>@@z`|F%q_sko?1#T!(*j7?DFzw!-m{2$1*2bC(G7|GDLg9!T2)IFKfg5%n_tyn! u)wr#?NYD+1%kP<}WhIw8v?Z4H?faizIP^*, 2015 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 23:13+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -34,9 +33,7 @@ msgstr "Dokumententyp erstellen" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da " -"Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert. " +msgstr "Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert. " #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" @@ -79,14 +76,17 @@ msgid "Comment" msgstr "Kommentar" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "Neue Dokumente pro Monat" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "Neue Dokumentenversionen pro Monat" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "Neue Dokumentenseiten pro Monat" @@ -115,10 +115,12 @@ msgid "Document type changed" msgstr "Dokumententyp geändert" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "Neue Dokumentenversion hochgeladen." #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Dokumentenversion wurde erfolgreich wiederhergestellt" @@ -184,14 +186,15 @@ msgid "Compress" msgstr "Komprimieren" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese " -"Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. " -"Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." +msgstr "Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." #: forms.py:197 msgid "Compressed filename" @@ -201,9 +204,7 @@ msgstr "Name der komprimierten Datei" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, " -"wenn die vorherige Option gewählt wurde." +msgstr "Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, wenn die vorherige Option gewählt wurde." #: forms.py:217 literals.py:23 msgid "Page range" @@ -277,15 +278,12 @@ msgstr "Papierkorb" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Grafiken löschen, die benutzt werden um die Dokumentendarstellung und " -"interaktive Transformationsausgabe zu beschleunigen." +msgstr "Grafiken löschen, die benutzt werden um die Dokumentendarstellung und interaktive Transformationsausgabe zu beschleunigen." #: links.py:151 -#, fuzzy -#| msgid "Clear document cache" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Dokumentencache löschen" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -362,10 +360,9 @@ msgstr "Alle Seiten" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben " -"werden." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben werden." #: models.py:72 msgid "Trash time period" @@ -379,15 +376,15 @@ msgstr "Einheit (Papierkorb)" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden " -"endgültig gelöscht werden." +msgstr "Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden endgültig gelöscht werden." #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "Endgültig löschen nach" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "Einheit (Löschen)" @@ -424,10 +421,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das " -"keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener " -"Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." +msgstr "Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." #: models.py:184 msgid "Is stub?" @@ -435,6 +429,7 @@ msgstr "Inkomplett" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Fragment, ID: %d" @@ -451,10 +446,8 @@ msgid "Document version" msgstr "Dokumentenversion" #: models.py:632 -#, fuzzy -#| msgid "Quick labels" msgid "Quick label" -msgstr "Schnellbezeichner" +msgstr "" #: models.py:650 msgid "Page number" @@ -474,16 +467,14 @@ msgid "Document pages" msgstr "Dokumentenseiten" #: models.py:782 -#, fuzzy -#| msgid "New version uploaded" +#| msgid "Version update" msgid "New version block" -msgstr "Neue Dokumentenversion hochgeladen." +msgstr "" #: models.py:783 -#, fuzzy -#| msgid "New version uploaded" +#| msgid "Version update" msgid "New version blocks" -msgstr "Neue Dokumentenversion hochgeladen." +msgstr "" #: models.py:793 msgid "User" @@ -506,6 +497,7 @@ msgid "Delete documents" msgstr "Dokumente löschen" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "Dokumente in den Papierkorb verschieben" @@ -526,10 +518,12 @@ msgid "Edit document properties" msgstr "Dokumenteneigenschaften bearbeiten" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "Dukumente drucken" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "Gelöschte Dokumente wiederherstellen" @@ -567,16 +561,13 @@ msgstr "Dokumententypen anzeigen" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"Maximale Anzahl der letzten Dokumente (erstellt, bearbeitet, angezeigt) pro " -"Benutzer." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Maximale Anzahl der letzten Dokumente (erstellt, bearbeitet, angezeigt) pro Benutzer." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." +msgstr "Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." #: settings.py:51 msgid "" @@ -603,16 +594,16 @@ msgid "List of supported document languages." msgstr "Liste der unterstützen Dokumentensprachen" #: views.py:67 -#, fuzzy -#| msgid "Clear the document cache?" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Dokumentencache löschen?" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "Löschung des Dokumentenbildcaches erfolgreich eingereiht." #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "Dokumente im Papierkorb" @@ -622,6 +613,7 @@ msgstr "Das ausgwählte Dokument löschen?" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Dokument %(document)s gelöscht." @@ -640,6 +632,7 @@ msgstr "Das ausgwählte Dokument wiederherstellen?" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Dokument %(document)s wiederhergestellt" @@ -669,6 +662,7 @@ msgstr "\"%s\" in den Papierkorb verschieben?" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Dokument \"%(document)s\" erfolgreich in den Papierkorb verschoben." @@ -678,6 +672,7 @@ msgstr "Die ausgewählten Dokumente in den Papierkorb verschieben?" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Dokumente des Typs: %s" @@ -687,6 +682,7 @@ msgstr "Alle Dokumente dieses Typs werden auch gelöscht." #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Dokumententyp %s löschen?" @@ -702,18 +698,14 @@ msgstr "Schnellbezeichner erstellen für Dokumentenyp %s" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" " -"bearbeiten" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" bearbeiten" #: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" +msgstr "Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" #: views.py:547 #, python-format @@ -730,6 +722,7 @@ msgid "All later version after this one will be deleted too." msgstr "Alle späteren Versionen dieses Dokuments werden ebenfalls gelöscht." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "Diese Dokumentenversion wiederherstellen?" @@ -752,6 +745,7 @@ msgid "Empty trash?" msgstr "Papierkorb leeren" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "Papierkorb erfolgreich gelöscht." @@ -760,10 +754,9 @@ msgid "Must provide at least one document." msgstr "Es muss mindestens ein Dokument angegeben werden." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" @@ -776,10 +769,9 @@ msgstr[0] "Den Typ des ausgewählten Dokuments ändern." msgstr[1] "Den Typ der ausgewählten Dokumente ändern." #: views.py:794 -#, fuzzy #| msgid "Must provide at least one document." msgid "Must provide at least one document or version." -msgstr "Es muss mindestens ein Dokument angegeben werden." +msgstr "" #: views.py:814 msgid "Documents to be downloaded" @@ -812,26 +804,20 @@ msgstr[1] "Seitenzahl der ausgewählten Dokumente neu berechnen?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s" +msgstr "Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s" #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" -"Alle Seitentransformationen für Dokument %s wurden erfolgreich gelöscht." +msgstr "Alle Seitentransformationen für Dokument %s wurden erfolgreich gelöscht." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" -msgstr[0] "" -"Sind Sie sicher, dass Sie die Transformationen des ausgewählten Dokuments " -"zurücksetzen wollen?" -msgstr[1] "" -"Sind Sie sicher, dass Sie die Transformationen der ausgewählten Dokumente " -"zurücksetzen wollen?" +msgstr[0] "Sind Sie sicher, dass Sie die Transformationen des ausgewählten Dokuments zurücksetzen wollen?" +msgstr[1] "Sind Sie sicher, dass Sie die Transformationen der ausgewählten Dokumente zurücksetzen wollen?" #: views.py:1066 msgid "There are no more pages in this document" @@ -855,22 +841,14 @@ msgstr "Seite %(page_number)d von %(total_pages)d" msgid "Document page image" msgstr "Dokumentenseitenbild" -#~ msgid "Quick rename template" -#~ msgstr "Dokument schnell umbenennen" - -#~ msgid "Quick rename templates" -#~ msgstr "Dokumente schnell umbenennen" - #~ msgid "Document type changed successfully." -#~ msgstr "Dokumententyp erfolgreich geändert." +#~ msgstr "Document type created successfully" -#~| msgid "Document type filename created successfully" #~ msgid "Document type quick label created successfully" -#~ msgstr "Schnellbezeichner für Dokumententyp erfolgreich angelegt" +#~ msgstr "Document type filename created successfully" -#~| msgid "Error creating document type filename; %(error)s" #~ msgid "Error creating document type quick label; %(error)s" -#~ msgstr "Fehler beim Erstellen des Schnellbezeichners: %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -939,11 +917,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1075,8 +1053,7 @@ msgstr "Dokumentenseitenbild" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1090,11 +1067,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1120,11 +1097,11 @@ msgstr "Dokumentenseitenbild" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1141,19 +1118,15 @@ msgstr "Dokumentenseitenbild" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1210,11 +1183,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1238,11 +1211,11 @@ msgstr "Dokumentenseitenbild" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1263,11 +1236,9 @@ msgstr "Dokumentenseitenbild" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1297,11 +1268,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1358,17 +1329,15 @@ msgstr "Dokumentenseitenbild" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/en/LC_MESSAGES/django.mo index 7758c36b1475344133a5ff292b9bddb92cde8fba..7d23239bf23bcf2ab404ec349165847bf018117a 100644 GIT binary patch delta 26 hcmcbqdQ)|SDmSm0u7R;P!n2L}KE delta 26 hcmcbqdQ)|SDmSmGu7Rblk%@w#nU#^*W+U$9>;P#+2M+)M diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/es/LC_MESSAGES/django.mo index 55449caeeb8eb90064e70a6e59af30ae9947bd3e..d24447fdb1ff2ea501d8c216d7debbc9103d4538 100644 GIT binary patch literal 13236 zcmb7~3y>Yfb%q-F?m&tlN5OsiOY%e z{oOr}dv`@(O6UI5J^eU+`kd3J&+2<;o$#>X`7(4qwEje6{uLjm;Lu2fbXFEZ{Rz@liqI3+294B+OGroWUdFbu3JDYX&w~c z_ke2mAjm)S+x%$!-v`%#N5PZ8S3$LV4b*t2oy8pBg&wZ~FQj}c$Un2lkJ{Z2YCT^7 zCBG+q{qKUBe+d--FM^21{Jkl&&JPvN8Hy#!SI4ZeIGsP-QQHBSRP7yKxADfkHZ zZt&~i<>2=~?Z;UNhoQ~+pvD~q5xE%$HQydzZh_+WZcy#-1789k2TuSybbc4O2ukjs z0hz))35u_;fg1N4p!oPJP;&S&_%`qqI!VswfSTt5a2I$f_%mP^48X@gL~fn|HSeE- zlEb$=ejkJ-^Dm&*_m-b>`+FLwdEN!8egM=wqoDNmDqp_Vf4>eKp#DZ*UI6z{z6YEH zUjp}n?_trrntQ+@@KMn2BX|kr7eVRSe}Y=~S!{~huLH&B2SD+2JE--<;8kD(UIsn^ zND7_yBwceee?4M5fcns7$ zhy3>=;3DOxL5;H>p$&o)p!l5!wVu0u`2kS;eIC?4Jp;=AUIw+^pMc``L@Hs`oC8X4 z)__(HpyWO2@n(;=fzpc*6d(IQ>G8dw^!O2Q9e4=Ty1xUe{mbB|k2B^KU*6B+-%I^H zpuQglwco!7j)5biX z0zU^n0c!uRLHV>lQ=ru^5RsS|WNPzCQ0)$ZsE+wMsD1qlQ1Hlwm>i>){zX)pFe+0$vk3sQy5{vsGcpi8Xcrwfd;OU^`G73r` zcY@+`7L-3-1SO~YLFwmHzW$Fu>Cd-8>Hl}Z4}(7hN5LKMasGS}lspcDCxg#}(%%a$e+4Lexfawqr$M&P+~>a^0X5!NLG^zH)ObGu zr9Wq_#rDB-LD}nrpvHLu)H=Qiitq1&XMnGOgW!)q&2z~*r*{*e_}K?a|1(hX`7EgY z{0gZ3cnLfK{2!0Uvw4!=$)NW83{d^f^>_s+K5hiB1n=6jkrYW|GyG7r54k}Ow2*Frm?Ux%il44Q#bD1sh?WcR-W zNe>W*^*h?D8k9fR@Uq?)ByahM-|%I@m!bDVH$$UP{_NxB<9Pv;jZ1&ORH>WbeH$b_ zYC+qf26QH*=MMXe?ShlgXCV2QMM%%*pe@j+p!Y%fBfHRZJG21FK0goDA^FVPpx=b@ z=N4WzLQUusc_k=)mG6)py@0lEnKBs2iU&?C^>p?5%f-VI6j z=Tz`d0$%3de-``&|9&<2Y3NeuAaow2=T7K8`{sVm0lw(Vp9K&2cfmOH^S=Cx;1$q? zzHBzvYEhO&b+fr%5AN#5wL61GI2|>DP8!tHTDKV`ouISWiqt^O8jYep>n#Q8OwgH& zGuu2^h-o<;1@)*Ab)q`sr6aa|BkV-&U_NSRahe3-j7qj!nncI$)e2`LH(zHi3RDU@ z?J&t^(sncKFj5xqTCg@23}mZ=xo|#$hbSqy$hvmDGu=jG5q6qsm*vI!KHH8WSWkm? z+JVC$EXH!PwP3TG@e?O-9M&{vbp*cGB&!2y+SG_JlXg3AZWswLZZfwO%EDY+n=81; zdd15O5(F~H=K7^pu=OU!%eSkU&fCo@M;|d;=fXtt)_iD!V zQmw6XQSHvG+caAnQ7CPQg4uT1V*Odrj#}*~L$ZFC*#jw4khLOSx-Hu}=ODW*sK;5W z5iSN{QZKg(HR#tC2JJRFV#Lkat4wBV+LY=GHGfvTFzHO(h?1}g-|eVRRjj4>>YOQO zJ}Xr+sv9A1T2v&_LLt`NRx-2A&SvelzxNgRIy?(ao+5w(Q5Ewy4lP<}0&JWtE%q=K8u! zgE45ZriXp9C)vTTMwW-YOeP%gw?nK)W zZ#{GNe+jCNuNVN12J3!RLs{-5*==9f_r3HD*6UPU3L`GWM;bBV9-uX{ci-=g1u{>gqlfFNLC&-+DZQ8w`>(7K4R3ohzP?IGLrkRQJ{PG-_gNaf=SQkU5j2 z_S4;@PObI1VPhd&%&N=Hf{=ezj^uDg%s6^we~RIPR-tu$AEZxK#_CkIS9R9g)EE0l zD$8>BIsb0RW~;O4H+H;y-(o(wpyudxm-Z*nvuZ7j)`%1oJ@rK<7T%RghdFG2Oxt3LpmSBMk8Ht5eua}D(R1E zieP3wQb3fCnsl4fggWrkj%-vj=)LA@@7-1h^KrBg)rSf;UF;M!Bij>Z?A#0)CvTe3 zl>(=JPKi^3iwClcwN@#Xbu^pIgz8s3S}cRhTGCn0%uIB(6YX?9t`mQC0)hfr5YI2l((}rLvF3(HL(k6T_TN<#7-1u-cH=D%w9Rg85_QN? zY~)N>L$Ke|F3V;VTCtbzw`j)Ds`ah&qm;`0by;+8ZnT$`d>$0lhGeeRUSTrd#1(o5 zD54QF8P&o@t*c9k^G!8f2~@3MJ|DfmoKeAsNvb<9oO=_Uur6t<%CMAFhmY1Yc&r%%*j z0rqsNq1&O3aa!fVurv1@&qOzFpn{wJV>7Cc*qN)d=Hux@8>54g6l(&lKD#5Elef|k zzm$Y=!%W$05&>_WjkBe!6E<6BO6E{>@Z+$UDC8>T47IOGVXCj!iu1U44C^zdY#5Yt zml;=%I1*$0cQrinpKL6S%TUzn8rvEhv`*wk} zlf9=dGq`X2W~e@T}5FIgHGb3{y?pW5HyKH^cW&rdfzU zY2eP(;i)KWjs-Wh!X)NuJUG|sw8ln97Zw&qI_e(JMEgfj_|dlO*dA?aHN#Q8nT_U0 z?P!#Z4z1E@TP}L-$eLAKF$es@ur_Nf=-{PCxopPC)d8`48;`JY&(!wetIBrvRvER2 z^N?sPxN17?6wHnVQMPJ#quUM}!`r!QWn)3ovc+uUx~l{Cx^XZGF4`EZ9lCmzP1n@p zdTKT=Jr&mDHWt&I#$Y;2hg)$?r#|_S3M|K+7zu_p;GTD)|`W|W9tI8=AleI4y8x+bVn^5Am+2!n; zk;8UvE}oZ8lab;Z_AC!ex=fPoaz;A|mr7gx&H#nYSL&@%6(3yssm!9{9o!U2H=0K} zr9D@N%gpu&_s8WaH>i+g>g>`HU%wd4anI^0SfxqkmkwhW$lPh+|KB1A%x-(3oZ&=D z&5nAUvg!ilh76vfAKIP>h$qPA4&Qn2zu zoBA3Ry?fNXr&XV!_Ne(Lvm5Vw7#}T}dDG<08@f~TJxT7^j?utp#9ZrbKD(2e;>{+- zP^jI7Z!H()?zD1v71vw&?ECbJFCR&@Rg+)E+IhBo^>a+;V2C(QfnTcl!IeP58(pY{p z8K|$bIH$?b&&lqnz7fk%mjfwN738rF3rLNH9)_K>p2nUe2~w zH$n$X>u3kr(vb$6+a=epD5cr!$^Nl7-uN%~-Az0Mmf^U!ufd~bd1S55z^WH=wGGSv!IFkdk` zJIP+oBC(h&$FoQKYBmvDcH()?F*JmX87HH27cT2Yc;Q`+J5KvgFQzQqgFQt1IH;)o z$~nDQ$#d-^Ds0c0Jjf~*@6vl*M!FI`^5i+b$#7E2Ds zsG=u>iDL9;FKtym-B3ob=fjb*qsw3}?^_8{%AGU2ypGX6=V_8OfmOC#M)@RUAj4VI z1#e>gSI&n!G$*=TSP5eH#$5SyS#YP)azC51Y%^gYY}r`7UA$DpS=3nvT?vY8+A|N3 zR&u5s;tFW^zY0qSTM7?Ypi2b!`vP|mmk>aR{svK0#L(9LNqAbM~pU_QLeEuH94cHoNNELqsA?~m*VP6Cy7pko*4=6Qvt*U29B><@7 z4xc?*HhVn-%hRY_sV4P*JxCf=wgO9243eKa%22Q{Zep}1qv$O$KEQvFiEua7$~w7A zZa@6dOV?xT+43t};q}X~Cbd^2n{cqQ3UmR+G%=KK?g2jLv73-Sd$g`)3yIPR4 zu^HCFqWYbTO_IpV6b+B%XO_1tILchEMZ@gQ6=FOgI_cZAs>0+AN#_vikf|w?Kjs*B zsAV_M6)#fDTIt}-Q?)h$lqYFncdyIa_TOw=4CXg`rAUu{<%VSBfb}Q9MVlvMr@d|T b#tyQ26rsA2n|->;{wXKnzgyXylP~=rFvR&9 delta 3263 zcma*od2AGA7{~FqmtaK-v=j;jrcl}fZrPS@r4_6cQBa@-ITVYs>@K~w+uCgvL|IT# zG?Jh%CQ72liwKB9R@4NeQL2Ox5n~WkFdWfDQ8ZCPL`nSqcBdZy`DUK^yfdA7kLP`7 z`)1=GGh^QjN`J~w))M)ObYphPzMLqBGmTO8Gt9uR@Jc+16Y(7SaO4%n)ZqeLfG;D5 z`JI#A&**1N4)(`99D`9~VrD9p!Q9x5eQ-bOg--u3)Y9Dt>$f!82o zF%8IJ8ab)GZuH{)cp1KqdVdcNpnr3a${=nWPuwu(XVl0||KvdWp*k9j{K*ud23CO_ zW~O_+7>9A)ihAy0R7aa}3~ombbBL4LJArxhZ_ZIE!oFF?T#ge_1FAv}Gn)N`BgD87WOo>@)nLvbxCbI+g#ybCpe9^_H;ImSj&IYUJ=P8(KN)zN9xlKg<$glWt|OP(2{qLG%N zQa=^-z)h$Z=3xo8pax=51AP`X&>g6bccb>m2dE`E?t04gJ5;96qT2lp8H&`Zsf_Xl6lFY92ymU>9nJdr=)6L2b6Ps0LC;BnOs@8jyo$(TAF0 z0i$!U1bM~GLgr>xpa!-MV|)q5Qc>!*qBhe()cvnfYkdy2=`P?z%wV*W(1%RQG^6&+ zdSn&NM$~|}qS}2IHQ-aI_RpgRkm0!B{}3nHk%M|*92R30D)oL;1Ffi3#!wx+h+2|& za55gi@t9hW%!mgyky=!T3sDnlL=C*7AeJ2Y>_I))gX;Jb)LuA++Dzw= z!(8N~8Rs)92Ysjx7onD<*}YzaYVQfu57`#?`n?zx4>$IsUO10xAd{!Gh9gkBxe&E^ zrl1BGKnL8&1Y5ZCL1G9^i3Vs6!3>sF@r-asZ0OQdr#7dI31VP+BkE}C66p-)N! zQK=_Z6Wv6FP*Ii~RVY^xHxk-Q*AaIU%HACW^GxiW+wp#V|Jp#e5v@cjp`z5Z5%&@L z(daD|RQyD`dqbboGU8rB>5mfnWET;vqzMusqPI+ND+`g2$+XkIsU`G%dWllvRwA+X zxPq8RXjf~0sAySKe1tY%Z_y4fCpw8HVhu5gP??z|an|~;B5okm|KDW^wOfd#MELK! z$;wSImnb9V6Z+?)Qj)|pVkR-xy`F~mxOM$zEO+a5Sm4$nX6F2JVVbF@5&8mDT8J5h zMyc;xzX{sK(}@mZCDBD_!>%P}69FQZxRYogt|82{Kp+&2hJt2VFsO4l>;&5b-EAS8 z*1y%(XVuxCvN}qVw<29mz#nJ|nd#w>ztibz3c1hr{-GwmXh3y}eP>|At{b$&)@GOF zI)NsCq%jn9qTPv}R&v>4p}U)- z&FvA-_5Q9wV7at1k1!TSw-n*!ZZ;_HaR=eWswwjvKwcJ`_$&Y2P*{7;>81 z_Px*;iiD!N=$&$V)YP_jb~4}p^K5+U=#43MRpA=@M)?r?z}Ro?gGE(^|7nj7+m<)` zgY8bBJ>u-!wz9daz0@qQ*G|f{pB6RQ4aNEKy~UNOwr>2z0Uy3UBjSYpPKUoE6b^Oz o?aB#@>@v?3n^rnH?kNqY*e@qOYUAE6`)t`9+fqKmUMhe4FY5(`>i_@% diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index 16b23ccf09..48c0f0341f 100644 --- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po @@ -1,23 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: -# Roberto Rosario, 2015 +# Roberto Rosario, 2015-2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -61,7 +60,7 @@ msgstr "Activado" #: apps.py:187 msgid "Date time trashed" -msgstr "" +msgstr "Fecha y hora de envío a papelera " #: apps.py:192 msgid "Time and date" @@ -76,28 +75,31 @@ msgid "Comment" msgstr "Comentario" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" -msgstr "" +msgstr "Nuevos documentos por mes" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" -msgstr "" +msgstr "Nuevas versiones de documentos por mes" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" -msgstr "" +msgstr "Nuevas páginas de documentos por mes" #: apps.py:407 msgid "Total documents at each month" -msgstr "" +msgstr "Total de documentos cada mes" #: apps.py:414 msgid "Total document versions at each month" -msgstr "" +msgstr "Total de versiones de documentos cada mes" #: apps.py:421 msgid "Total document pages at each month" -msgstr "" +msgstr "Total de páginas de documentos cada mes" #: events.py:8 msgid "Document created" @@ -112,10 +114,12 @@ msgid "Document type changed" msgstr "Tipo de documento ha sido cambiado" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "Nueva versión subida" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Versión de documento revertida" @@ -146,7 +150,7 @@ msgstr "Tipo MIME del archivo" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Ninguno" #: forms.py:124 msgid "File encoding" @@ -181,15 +185,15 @@ msgid "Compress" msgstr "Comprimir" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Descargue el documento en el formato original o en una forma comprimida. " -"Esta opción se puede seleccionar sólo cuando se descarga un documento. Para " -"múltiples documentos, el paquete será siempre descargado en un archivo " -"comprimido." +msgstr "Descargue el documento en el formato original o en una forma comprimida. Esta opción se puede seleccionar sólo cuando se descarga un documento. Para múltiples documentos, el paquete será siempre descargado en un archivo comprimido." #: forms.py:197 msgid "Compressed filename" @@ -199,7 +203,7 @@ msgstr "Nombre de archivo comprimido" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "El nombre del archivo comprimido que va a contener los documentos a descargar, si la opción anterior está activada." #: forms.py:217 literals.py:23 msgid "Page range" @@ -273,16 +277,12 @@ msgstr "Papelera" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Borrar las representaciones gráficas utilizadas para acelerar la " -"presentación de los documentos y resultados de las transformaciones " -"interactivas." +msgstr "Borrar las representaciones gráficas utilizadas para acelerar la presentación de los documentos y resultados de las transformaciones interactivas." #: links.py:151 -#, fuzzy -#| msgid "Clear document cache" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Borrar el caché de imágenes de documentos" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -343,11 +343,11 @@ msgstr "Editar" #: links.py:243 msgid "Add quick label to document type" -msgstr "" +msgstr "Añadir nombre típico al tipo de documento" #: links.py:256 models.py:633 msgid "Quick labels" -msgstr "" +msgstr "Nombres típicos " #: links.py:260 links.py:265 views.py:399 msgid "Document types" @@ -355,34 +355,35 @@ msgstr "Tipos de documentos" #: literals.py:23 msgid "All pages" -msgstr "" +msgstr "Todas las páginas" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Cantidad de tiempo tras el cual se enviaran los documentos de este tipo a la papelera." #: models.py:72 msgid "Trash time period" -msgstr "" +msgstr "Período de tiempo de envío a papelera" #: models.py:76 msgid "Trash time unit" -msgstr "" +msgstr "Unidad de tiempo de envío a papelera" #: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Cantidad de tiempo tras el cual se eliminarán los documentos de este tipo de " -"la papelera." +msgstr "Cantidad de tiempo tras el cual se eliminarán los documentos de este tipo de la papelera." #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "Período de tiempo de eliminación" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "Unidad de tiempo de eliminación" @@ -412,7 +413,7 @@ msgstr "¿En la papelera?" #: models.py:178 msgid "Date and time trashed" -msgstr "" +msgstr "Fecha y hora de envío a papelera" #: models.py:182 msgid "" @@ -423,16 +424,17 @@ msgstr "" #: models.py:184 msgid "Is stub?" -msgstr "" +msgstr "¿Es un recibo?" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" -msgstr "" +msgstr "Recibo de documento, id: %d" #: models.py:357 msgid "Timestamp" -msgstr "" +msgstr "Marca de tiempo" #: models.py:366 msgid "File" @@ -464,16 +466,14 @@ msgid "Document pages" msgstr "Páginas de documento" #: models.py:782 -#, fuzzy -#| msgid "New version uploaded" +#| msgid "Version update" msgid "New version block" -msgstr "Nueva versión subida" +msgstr "" #: models.py:783 -#, fuzzy -#| msgid "New version uploaded" +#| msgid "Version update" msgid "New version blocks" -msgstr "Nueva versión subida" +msgstr "" #: models.py:793 msgid "User" @@ -496,6 +496,7 @@ msgid "Delete documents" msgstr "Eliminar documentos" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "Enivar documentos a la papelera" @@ -516,10 +517,12 @@ msgid "Edit document properties" msgstr "Editar propiedades del documento" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "Imprimir documentos" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "Restaurar documentos en la papelera" @@ -557,29 +560,29 @@ msgstr "Ver los tipos de documentos" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "El número máximo de documentos recientes (creados, editados, vistos) a recordar por usuario." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Cantidad en porcentaje a acercar o alejar una página de documento por cada interacción del usuario." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Cantidad máxima en porcentaje (%) a permitir al usuario aumentar la página del documento de forma interactiva." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Cantidad mínima en porcentaje (%) a permitir al usuario disminuir la página del documento de forma interactiva." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "Cantidad de grados que se va a girar una página de documento por cada acción del usuario." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -590,31 +593,32 @@ msgid "List of supported document languages." msgstr "Lista de idiomas de documento apoyados." #: views.py:67 -#, fuzzy -#| msgid "Clear the document cache?" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Borrar el caché de imágenes de documentos" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "Documentos en la papelera" #: views.py:121 msgid "Delete the selected document?" -msgstr "" +msgstr "¿Eliminar el documento seleccionado?" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." -msgstr "" +msgstr "Documento: %(document)s eliminado." #: views.py:152 msgid "Delete the selected documents?" -msgstr "" +msgstr "¿Eliminar los documentos seleccionados?" #: views.py:174 #, python-format @@ -623,16 +627,17 @@ msgstr "Editar propiedades del documento: %s" #: views.py:190 msgid "Restore the selected document?" -msgstr "" +msgstr "¿Restaurar el documento seleccionado?" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" #: views.py:223 msgid "Restore the selected documents?" -msgstr "" +msgstr "¿Restaurar los documentos seleccionados?" #: views.py:255 #, python-format @@ -642,7 +647,7 @@ msgstr "Pagínas para documento: %s" #: views.py:283 #, python-format msgid "Image of: %s" -msgstr "" +msgstr "Imágen de: %s" #: views.py:325 #, python-format @@ -652,21 +657,23 @@ msgstr "Visualización del documento: %s" #: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" -msgstr "" +msgstr "¿Mover \"%s\" a la papelera?" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." -msgstr "" +msgstr "Documento: %(document)s movido a la papelera." #: views.py:373 msgid "Move the selected documents to the trash?" -msgstr "" +msgstr "¿Mover los documentos seleccionados a la papelera?" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" -msgstr "" +msgstr "Documentos de tipo: %s" #: views.py:425 msgid "All documents of this type will be deleted too." @@ -674,8 +681,9 @@ msgstr "Todos los documentos de este tipo serán borrados también" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" -msgstr "" +msgstr "¿Eliminar el tipo de documento: %s?" #: views.py:443 #, python-format @@ -689,8 +697,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -702,7 +709,7 @@ msgstr "" #: views.py:547 #, python-format msgid "Quick labels for document type: %s" -msgstr "" +msgstr "Nombre típicos para el tipo de documento: %s" #: views.py:578 #, python-format @@ -714,6 +721,7 @@ msgid "All later version after this one will be deleted too." msgstr "También se borrarán todas las versiones más recientes a esta." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -736,6 +744,7 @@ msgid "Empty trash?" msgstr "¿Vaciar papelera?" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "Papelera vaciada con éxito" @@ -744,10 +753,9 @@ msgid "Must provide at least one document." msgstr "Debe proveer al menos un documento" #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" @@ -760,10 +768,9 @@ msgstr[0] "Cambiar el tipo del documento seleccionado." msgstr[1] "Cambiar el tipo de los documentos seleccionados." #: views.py:794 -#, fuzzy #| msgid "Must provide at least one document." msgid "Must provide at least one document or version." -msgstr "Debe proveer al menos un documento" +msgstr "" #: views.py:814 msgid "Documents to be downloaded" @@ -796,14 +803,14 @@ msgstr[1] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Error al eliminar las transformaciones de página para el documento: %(document)s; %(error)s." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "Todas las transformaciones de la página del documento: %s, se han eliminado con éxito." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -834,7 +841,13 @@ msgid "Document page image" msgstr "Imagen de página de documento" #~ msgid "Document type changed successfully." -#~ msgstr "Tipo de documento cambiado con éxito." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -903,11 +916,11 @@ msgstr "Imagen de página de documento" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1039,8 +1052,7 @@ msgstr "Imagen de página de documento" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1054,11 +1066,11 @@ msgstr "Imagen de página de documento" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1084,11 +1096,11 @@ msgstr "Imagen de página de documento" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1105,19 +1117,15 @@ msgstr "Imagen de página de documento" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1174,11 +1182,11 @@ msgstr "Imagen de página de documento" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1202,11 +1210,11 @@ msgstr "Imagen de página de documento" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1227,11 +1235,9 @@ msgstr "Imagen de página de documento" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1261,11 +1267,11 @@ msgstr "Imagen de página de documento" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1322,17 +1328,15 @@ msgstr "Imagen de página de documento" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.mo index 21b781efc8d187aa36532b819320ac0b70dbb9e2..b6be54ec059c736e2684ff2b0b8d8b3375eca71c 100644 GIT binary patch literal 9226 zcmcJSdyHJyUB^!!r0q7m+NMn(&{NuNc8OfD_BF=*4tU4w_~Uu%4aU44Tmyd$ zd-cN?g62SCxE1>X;*ASN+i0e=$wI;i~@ zL;rbD{Qm)b6Zl>5wcroI8$l6$EAVzu@=Sr^vx7g;I{>~LEQ8Yfv!LjG9^4E57Wh8! zJD>$$&!(RS$3gMg3c||V8E`Ksdw&9y+z*4Y@25feeE}5xGhzNwaFqU6L;pGOApPgT z{op9ZxEDMMzE|U*=zb3r|NjJU17D3$H-TG0@hgM!Pb2gn0mc6mC_O(9z770MQ1U+! z<}ZVy|3{$c`~~<<@NYr+>0dxZGuL5kSev(kT6YtuIN1csZ?}Wu|49(nn_8GZ1|FmT z8BqTD0XPP}8Rv-a9iZgd75X!v^n4&-Ip91fJJvzbISleMU*Zo}nco99f#*T#`y#0I z{{$|)%9xix>Hn)Jg-Yg8kRh`K-U+?%#|>{MN5J=jq8ous znR!t2$3f}+r7-`yp!9nTl)t_Sir!y=lKUS)$@3DZxVe#}5}i9i<-=Z3>l&c;e+HCa zzYNOX-vFiOpMtl6FM!hH9R!Q~Jq3#Yw$MKa{v7>TQ1nlM+W#0R`}{e`&t&{bp6`R= z`!0+mzij|N1l|g60Dlb}2cH0Chi`#e_s^i@{x?wiyy0g&zqf&s?*pLt?E$4n1ZrO` zjCa6E`o9j!ub06ufX{(n2M-|h7r}oA6<>=eBYw|-lJ_scec<1LlCxwzzxx9=K-uL4 zDE?moA#END_-CN#y#UJ3-vcGb4?y|%I-G{7%?+UZH^ra$?gypUEU5Xzpz6?XfD_>F zgQS}I7N|J*E-3#01ulalI7jxn0Af1xC!p;0ZBXmK4~qU92~x@RZcusoeo%C72DN_+ zC_Xzt`S;_X_8kU)3H)4`|4tZx349gfzf7~V2WcB=dgPabH0hr|vdwnd4jLl4=Z=66 zfwGaFLmtel!8+|zwA;g&HV@ zKHm`uGl~~IJ87?>5yI|KJlsnw)9!O4gMTsI3he_l z#rFL)JqKvhwEeWZXdj|Y(zel5>px2Sd77S4n&Rvuv?+amCzKsp!8}vz4UWsmG0WI@q(xoNdon zQ`?z#&&ReI9g1zc z6*bbiq*agF>`yJPg+SAGG~Hn5qr)+r<3_SlW_j%1M79%@C+`D!_}t+?5WQ`iKR5lHs5X*1@f({!r~r`%*K)wEfQj@hVD>B)^v zhD`_2POY6z5!f{7D7a?|z#n#l;FlR?GGKMF1AGl}BEw`68DL{yo@d-945(5<5 zoW!tmlf|e8(sHZXl*7%A5b(u|EjwK*y#dAMV9!?T*Nj0nkaFRb+Og5fc;8qnA)wk- zLNcyY$(r7j3zA~9%doNwpP@B<9D*r(H1eEl#k?se`}3k$)}xTxG;VjAy%`0aQaU-( zs3nogK`xO`dTsSn#Y>+>ccPNfUomEzg~CG%+6LzMMM!m*JaZyDK%p`)$w$z9UY5BWt?pCm5?96xBl}_= z*JHOcFW-=?HvZ3ou2;#2CGE&^t>kdE!r{@j6mJ=jlPtH}gxMP(4QAiVgxRMGH9DpU zdk_W3EAGTV$I-DihfwW7&7>OEP)=q%9o~p#@iGUml@zdy%o@f=(Hd#ieAzHJV4X6w|S84lL`@RG(lXv^V%3+EbR zc+%Zp$_a-qDX3Msu#WRU72IH}o=_o8;?51rT_~lhl&Q57j`P6yWO0goIG;m$b`E@Rp;WP6NJrV%WrH=)}>7;uGG`X zyiiWgMU&$rs+B#ZH%?5AY$vF=SC!T!yy~b<7&@o2v)u)^y5PWq3oKr=-9-_y*>ZMSTLvhHCF{|? zvWh~hXtO$D!u*xT;e4ul(iTk6dRdFQC!xDyoldJdhgo(4vn*w67FfHofFM^Epm;93 zh>5N|ZnH~R=}B)2bd@!bZaEA%k&%22UZMhl>!7g4cNG{1-YyCV|vS&mbNxUPB8(b~BAvpH1sDRY$fY2HOAjh(7;~e!r?#HU9#mUhm#EwIou(H^CjaNiGg>B_D z77-Xj(hYjc5R+@!lLjh!5glojoxggq*A%T0T5O!ZC zpf2=fNEmh*BZ7TKA*UH3B8DgZHxPU-A<890>Fu-K)AWfLXCCQ?!&z0hX`rVJ$y2}w zIu09lY|n2&RvGR*HRK}FDr~8OCx{euS55K;!K#JvP4+cq#6TGK`KE6rDdO^|2zn8b zO)vyvokS7LaS@gj3$f_Q+Q+SLvFdl<&fcPaGnxJlRd^k<4lWtAp}X4+lIWAm+iY-p zy|DqVgY4Fo$a=QNU4=X8qOH5w`#@vQH?pPPH`Z`z3L(9Ijqkrg2SUEG4S0Ug;Z7Xf zb=C);{HrSND%U_r2IW=m&U$~UXc8djD4Yu_S*|V>FE&5J{fAuf>6U#>GLcL94zFTC zNPd_1-HDQ~QOKNj=QQOxoKglsImHOH<)V-fvdBYCQW?+JX`c_rP;R>Z_@x$;3e340 zq%t3L^oghIjEW1gkYi8igplBuvQ>TX4TuSap@Yw6%NU8v2f@!VTO62-Lt{;G^>XLn zvWw+4rBHDeas~`aqZt{B)G880>%Hm5dR0F=V+R6R1=)o}wk%6sJu@DTL4W*Wp1$MO z4yq!ZWK11J3mo-}P6RCO@;j8}S75UBE(ZUPHtU|?$n=*S=VWI9G;y|bWmhGT3gt8i zk)uVJScmT-d%4C)+3qPSSiVAgR3q2Aivu6JSPeG}f9JZv5N3m4yg9)h5&zLED#M@4 zI$JqGke-mtgS;n4Zw$!@U+E;}+)C(i_Vr%F!5a>CM|6oemt~aH;aCp$Io+JR^?cRH zjX>F7R+4cK!#vLh@Rg2q>^tquV0VBVX^(9=pPrIET{^nkMScWY6PV{AZdfOATn2=& zH*Sm09_d1$`_F5A=ougL{u1re7Zr;^or?Vgm$4bd!-c(1Lw{jLV_l!UwriA6Y@;ES zQRRn(qsqbOB(Gu$b?B{N0ZOdyht6hxlv^7KrDMOlsBHb;?s_3#FKS!=f2rTRip5QWcVlmm^%5X^&P|RAp*IjF-eLJoR9c*dXC5TMpZT;e=sq{XQOflXi@96i({f6$ l9y2j~#^4=)miVyOUEcBMqrer4YwEtqO@R+p81$WD{u@WPNT2`! delta 102 zcmeD3IKXUiPl#nI0}wC*u?!Ha05LNV>i{tbSO9SwP|^}egVeyl(2Bubqrkl$}*cbtPR1P8l diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po index d71bf547f1..c3c83a7163 100644 --- a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,20 +9,19 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "اسناد" #: apps.py:97 msgid "Create a document type" @@ -36,7 +35,7 @@ msgstr "" #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" -msgstr "" +msgstr "برچسب" #: apps.py:111 msgid "The MIME type of any of the versions of a document" @@ -44,19 +43,19 @@ msgstr "" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "نوع MIME" #: apps.py:150 apps.py:174 msgid "Thumbnail" -msgstr "" +msgstr "اندازه کوچک" #: apps.py:158 apps.py:184 msgid "Type" -msgstr "" +msgstr "نوع" #: apps.py:169 models.py:627 msgid "Enabled" -msgstr "" +msgstr "فعال شده" #: apps.py:187 msgid "Date time trashed" @@ -64,25 +63,28 @@ msgstr "" #: apps.py:192 msgid "Time and date" -msgstr "" +msgstr "تاریخ و زمان" #: apps.py:200 views.py:825 msgid "Encoding" -msgstr "" +msgstr "Encoding" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "شرح" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -100,129 +102,135 @@ msgstr "" #: events.py:8 msgid "Document created" -msgstr "" +msgstr "سند ساخته شد." #: events.py:11 msgid "Document properties edited" -msgstr "" +msgstr "خصوصیات سند ویرایش شد" #: events.py:14 msgid "Document type changed" -msgstr "" +msgstr "نوع سند تغییر کرد" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "تصویر صفحه" #: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" -msgstr "" +msgstr "تعداد صفحات سند (%d)" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "نامگذاری سریع سند " #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "تاریخ اضافه شدن" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "File mimetype" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "هیچکدام." #: forms.py:124 msgid "File encoding" -msgstr "" +msgstr "فایل Encoding" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "اندازه فایل" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "موجود در مخزن" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "آدرس فایل در مخزن" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "چک سام" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "صفحات" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "نوع سند" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "فشرده سازی" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "نام فایل فشرده شده" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "اگر انتخاب قبلی انجام شده، نام فایل فشرده شده که شامل کلیه فایلهای که قراراست که دانلود شوند." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "محدوده صفحات" #: handlers.py:13 msgid "Default" -msgstr "" +msgstr "پیش فرض" #: links.py:43 msgid "Preview" -msgstr "" +msgstr "پیش دید ویا دیدن" #: links.py:47 msgid "Properties" -msgstr "" +msgstr "خصوصیات" #: links.py:52 msgid "Versions" -msgstr "" +msgstr "نسخه ها" #: links.py:63 links.py:101 msgid "Clear transformations" -msgstr "" +msgstr "پاک کردن تبدیلات" #: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" -msgstr "" +msgstr "حذف" #: links.py:72 links.py:105 msgid "Move to trash" @@ -230,19 +238,19 @@ msgstr "" #: links.py:76 msgid "Edit properties" -msgstr "" +msgstr "ویرایش خصوصیات" #: links.py:80 links.py:113 msgid "Change type" -msgstr "" +msgstr "تغییر نوع" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "دانلود" #: links.py:88 msgid "Print" -msgstr "" +msgstr "چاپ" #: links.py:92 links.py:120 msgid "Recalculate page count" @@ -254,11 +262,11 @@ msgstr "" #: links.py:133 views.py:81 msgid "All documents" -msgstr "" +msgstr "کلیه اسناد" #: links.py:136 models.py:814 views.py:651 msgid "Recent documents" -msgstr "" +msgstr "اسناد تازه" #: links.py:140 msgid "Trash" @@ -268,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "پاک کردن نحوه نمایش اسناد که در زمان سرعت بخشی به نمایش اسناد مورد استفاده قرار میگیرد." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -282,56 +289,56 @@ msgstr "" #: links.py:163 msgid "First page" -msgstr "" +msgstr "اولین صفحه" #: links.py:168 msgid "Last page" -msgstr "" +msgstr "آخرین صفحه" #: links.py:175 msgid "Previous page" -msgstr "" +msgstr "صفحه قبلی" #: links.py:181 msgid "Next page" -msgstr "" +msgstr "صفحه بعدی" #: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 #: views.py:822 msgid "Document" -msgstr "" +msgstr "سند" #: links.py:192 msgid "Rotate left" -msgstr "" +msgstr "چرخش به چپ" #: links.py:197 msgid "Rotate right" -msgstr "" +msgstr "چرجش به راست" #: links.py:205 msgid "Reset view" -msgstr "" +msgstr "ریست ویو Reset View" #: links.py:210 msgid "Zoom in" -msgstr "" +msgstr "بزرگنمایی" #: links.py:215 msgid "Zoom out" -msgstr "" +msgstr "کوچک نمایی" #: links.py:223 msgid "Revert" -msgstr "" +msgstr "بازگرداندن" #: links.py:230 views.py:414 msgid "Create document type" -msgstr "" +msgstr "ایجاد نوع سند" #: links.py:238 links.py:252 msgid "Edit" -msgstr "" +msgstr "ویرایش" #: links.py:243 msgid "Add quick label to document type" @@ -343,7 +350,7 @@ msgstr "" #: links.py:260 links.py:265 views.py:399 msgid "Document types" -msgstr "" +msgstr "انواع سند" #: literals.py:23 msgid "All pages" @@ -351,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -369,32 +377,34 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" #: models.py:107 msgid "Documents types" -msgstr "" +msgstr "انواع اسناد" #: models.py:159 msgid "The name of the document" -msgstr "" +msgstr "نام سند" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "توضیحات" #: models.py:165 msgid "Added" -msgstr "" +msgstr "اضافه شده" #: models.py:170 msgid "Language" -msgstr "" +msgstr "زبان" #: models.py:173 msgid "In trash?" @@ -417,20 +427,21 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" #: models.py:357 msgid "Timestamp" -msgstr "" +msgstr "علامت زمان" #: models.py:366 msgid "File" -msgstr "" +msgstr "فایل" #: models.py:446 models.py:447 models.py:646 msgid "Document version" -msgstr "" +msgstr "نسخه سند" #: models.py:632 msgid "Quick label" @@ -438,154 +449,159 @@ msgstr "" #: models.py:650 msgid "Page number" -msgstr "" +msgstr "شماره صفحه" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "صفحه شماره%(page_num)d از%(total_pages)d از سند %(document)s" #: models.py:671 msgid "Document page" -msgstr "" +msgstr "صفحه سند" #: models.py:672 msgid "Document pages" -msgstr "" +msgstr "صفحات سند" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "کاربر" #: models.py:799 msgid "Accessed" -msgstr "" +msgstr "دسترسی یافته" #: models.py:813 msgid "Recent document" -msgstr "" +msgstr "سند تازه" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "ایجاد اسناد" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "حذف سند" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "دانلود اسناد" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "ویرایش سند" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "ایجاد نسخه جدید سند" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "ویرایش خصوصیات سند" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "اجرای ابزار ویرایش سند" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "بازگشت اسناد به نسخه قبلی" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "بازدید سند" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "آماده سازی اسناد" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "ایجاد انواع سند" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "حذف انواع سند" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "ویرایش انواع سند" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "بازدید انواع سند" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "حداکثر تعداد اسناد تازه (ایجاد، ویرایش و بازبینی) که جهت هرکاربر بوسیله سیستم نگهداری شود." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "اندازه بزرگنمایی/کوچک نمایی یک صفحه از سند جهت تعامل با هرکاربر" #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "حداکثر درصد(%) اندازه بزرگنمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "حداکثر درصد(%) اندازه کوچک نمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "مقدار درچه چرخش یک صفحه از سند به ازای هر کاربر" #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." -msgstr "" +msgstr "زبان پیش فرض اسناد (in ISO639-2) میباشد." #: settings.py:78 msgid "List of supported document languages." -msgstr "" +msgstr "لیست زبانهای پشتیبانی سند" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -595,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -605,7 +622,7 @@ msgstr "" #: views.py:174 #, python-format msgid "Edit properties of document: %s" -msgstr "" +msgstr "ویرایش خصوصیات سند : %s" #: views.py:190 msgid "Restore the selected document?" @@ -613,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -633,7 +651,7 @@ msgstr "" #: views.py:325 #, python-format msgid "Preview of document: %s" -msgstr "" +msgstr "پیش نمایش سند : %s" #: views.py:333 #, python-format @@ -642,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -651,22 +670,24 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" #: views.py:425 msgid "All documents of this type will be deleted too." -msgstr "" +msgstr "کلیه اسناد از این نوع حذف خواهند شد." #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" #: views.py:443 #, python-format msgid "Edit document type: %s" -msgstr "" +msgstr "ویرایش نوع سند : %s" #: views.py:473 #, python-format @@ -675,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -693,51 +713,52 @@ msgstr "" #: views.py:578 #, python-format msgid "Versions of document: %s" -msgstr "" +msgstr "نسخ سند : %s" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "همجنین کلیه نسخه های بعد از این نسخه حذف خواهند گردید." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "بازگشت موفق نسخه سند." #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "خطا در بازگشت نسخه سند: %s" #: views.py:628 #, python-format msgid "Properties for document: %s" -msgstr "" +msgstr "خصوصیات سند : %s" #: views.py:634 msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "حداقل یک سند باید ارایه شود." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" -msgstr "" +msgstr "ارسال" #: views.py:715 msgid "Change the type of the selected document." @@ -745,16 +766,17 @@ msgid_plural "Change the type of the selected documents." msgstr[0] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" #: views.py:814 msgid "Documents to be downloaded" -msgstr "" +msgstr "اسنادی که قرار است دانلود شوند." #: views.py:823 msgid "Date and time" -msgstr "" +msgstr "تاریخ و زمان" #: views.py:919 msgid "At least one document must be selected." @@ -778,14 +800,14 @@ msgstr[0] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "خطا %(error)s در زمان حذف تبدیلات سند %(document)s" #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "حذف کامل کلیه تبدیلات سند %s" #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -794,25 +816,34 @@ msgstr[0] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "پایان صفحات سند" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "شما در حال حاضر برروی اولین صفحه این سند میباشید." #: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" -msgstr "" +msgstr "چاپ : %s" #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" -msgstr "" +msgstr "صفحه%(page_number)d از %(total_pages)d" #: widgets.py:100 msgid "Document page image" -msgstr "" +msgstr "عکس صفحه سند" + +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -881,11 +912,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1016,8 +1047,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1031,11 +1061,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1061,11 +1091,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1082,19 +1112,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1151,11 +1177,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1179,11 +1205,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1201,11 +1230,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1235,11 +1262,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1296,17 +1323,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo index 2578d64c4329b34d73f33f01e1e92c80e80a6fc3..21f096aabe87d24beb10a25f56fedde244ee6f8f 100644 GIT binary patch literal 16227 zcmb`Nd5|1eeaAb-SJv40;xJ%n3xsx&c6HbYc@)O^n1Bej1j2r0pOP~%(yZUU#k)4>H$?OqG2-*ZH z&Sb~IOF*iE>p^`NyXPF#cW(qW?t8$Cz-90S;0pL$@W!LNZ@&!2#zBY2kO z(`gPb09mr&5>WHr3Q8`n0yW;XuKwkq#+w192e-QC+uZxx!L`)i?VcY35A*ymcn};x z_>O=#gRm%g7#ss11+{KJ2cHL?iZF2-jDq6B6sYzwC^}yYiq3a}n$P>dZQui-^ywc! z(SHiUC%&Bx>iHs2bUz;y|6d4-k2^v2zZVo85vX=4sP!m7jdu^Ie(nXCQt)0-a`8D( ze0mgI1O7dz{(lMH0$#u*)XyED`&N$^#Wzu?FGNZ&?6E3fB) zqH`Olc^v>X?oFWDCEymY3od~l0@d%umsow@3ThrlLCrI9&x@ewz7y2?JqW_W;47f` z@Iz4a{{%#Yf?t7>r;GSV_3J^c!*+*PIh+C|FV}#g;}9r$Z-J8c*MXw21HTB0&u5|JH-XOvRlfwj8vJYU zmEgK{L2v_j7dQ@n3w#Cmq)|JsSApuk1AY^{6MQRp1R@|U_!m&?aK;PmdR_pcg28h@ z@oAgGL!kKC0VTh00r?9a;Aawi6x2GNvEHuBg&4A489-S1%3}yyEROfB@8CPv%s6cGr@WAdhj+->-q>NK0XFYAO9KD zy8jxKe4mFgl)jFFSAy4pn&+EAeYXsXAD;)s$8UmK{~v&K5&Sne1&(dB^GLxfcz!!5 z`TrYG^ZW@Yefv*P<6gMQwp$OXJ^{t=dq9nIKX^9yS@-@C@Dk+dyP)Rz>&=$GXKt~4 zm;g220Z{#SLDBsN(5w@9i04Pa^TF^^yN;KFT9-Yb`aJ-~;Emu*z%PNX2T!@o&i5Wr z<9rs>ci#Xn0KWrX2>ujA#DY^_WcfS}p2PDFQ1jUjY8`HJ&r6`jeFJzp_;yh3?*m2m zM?mrKF;IH&9Z>XbLx_%o9{^=He+5bpUi@M!A8!Oho*w{Fz2M6rsuBDE6u+OsN1Dfa zP;^}jo(A3sGDL6`)I8n|o(p~vd%>pNnv#g2D4Z z&FcWD`P>MOfO8-!5oDmoc>r7segjm$|K*;agtA@C^BAagekrK-87Mpapu=TQ`u!!E7{W3qP)u7*`Gat_&86IeCk@H+)w!+C8hiU1+x>po$?%tzc8`JR!)JZPzv_~ zRvKR4<(}UI%0|AA@(Riwl($koPC-14p4|ibOY6~~+)ep?S2^v_1L_*QlrrloUgz*W zaFjCVo~t1HawlcXRsOL<$%|x8*Gnj#FRgzyqkiU znClR~Z=guVKS6m1Me?R=f$}zU7X(d*uLpbXUa*UD8|9Of=TkmJIY{|k%4L+_qdc3U zYait_%0rY6<;|2^DX*mb83j`ne3uf1ZJ7I4=4x3Rgnu+o_oGE%?CkPalo6Xf?x`SRW^y zUYun`w-+~EvoOsxN<2$_zj7goO#eF%?41a9HX3oB$IW18vl-r2B#m3cRx}g0!d}`Z zuea2V)j-W!t+GC^KZWTm{X&$Qhl>dmxHjJq&PNMyFOEAU6?tLiJ6p6`OOVq} z3l=2N`?)NRAw3PVvH<+8nfC1?;Bd(+takI9w8=W-71Ux_}z$s zNt>|^Qx@lw#(X)Wyv|-m5F_A0K0nColB_4tpI@$ax?mQo-#fka!d4vRJp_~W^kUpD zs9}L~7P!F*PXxQ>qmI@^bV&q^JoFospPqcnyx&wJxNAOc+?p5dU>Ect+DOw0r9m$} zdFALk{!d@${&V#`mqlF`DG#%_o5eZH??e$nk;I32H#T}_$n>1c*M-d_@3x{Pw6@uo zCuDU{r0KM1^~41;;epq|uCy(SBGmYKdBdQx7M-XK)3SI#o{c)YYEP6|G2gaUNw2mC zUt3mm;>D7yUZKmERa;WkOf!(wGq~E2Wvq(5g&7im_rg6{5y$eFHby;+(5oh%jbM+* zl9n7B)0rz|BSz7ay@#&fdg|O~TUKbnJqyZ7?C{O? zwlZZVIBM+Z7-ncT!z9!`4cDw4^%Y089Ao*KT317)*3mUorjbhjTJ{55l%(R1rfE$| z(MiOpypbhcnXce!r^n?@*oYcTq9I93I&;h>E|8kb;mv`pTm30a+N z8p*yYZ%Q5MzpEKeLpmawX31RAiCRvfWH>1{Kw3Jt;OLV6IuR@XR z@kB6%RGXi&yRciz{J;yzr&$tx)Nilqyx!D34))Z4mMix3_q(jvD;Xs3F|b7^X|jT; zcDJ|W#Hn(>Bbe%l$xX14HeqZqm1QuqDT^dNi-Sgu2VB}<5LZ!^?I;d$Y?_VX4{di= z2i2dSoOeSshAC*|QW-J#+xW;O%JXEdgS1qFG;tThK~P9AsAZ1wq!F^b;l5~zAbaZS zeTT4=y?72Oyd68`M;1}X;zohN^;Kb;xz8?{`KDh{BBR-79O$LYwv7>y&&)uotPv814wJQ&`Wh^^Dy3 z53hqL2}oXayQxfCe*)f*GP!+w_f6R#VPAACX&3D?9+`obCwrsb0^koVOuxRZBjWO%L`dkVaP*k|v@5uvmK{ z*k28`#J*fk9s%q0=Ibw=7dqbi!Funs{JxUTjyZwak1-4mNT}A1YRIE3%~;dyYFM4M zqdhiCt)qq*RjbNN{#ZWvA#3Uz)xNXsY@}euvg>cF+2ElgsD-s1%aumOmJN0H%) zFp6N_rv=ld7h18F_P1_R1;|1S`+p8CibD$K^Zy* z2g}&S*+LW2)T$*jB3%1?RDsD2m9HJY$w$PDP#_KS6B&HYslclnebcRi3XeW;seWu4 z9G}7yyf(BTiaoj)l)W0wiO>#KS*z&8)i*N=h^2Pb%*bxuTk$Mi*?WS8`Cf3Sm}%pB zr(tMm$;8j7L%zkb)pcURp}w&)pLo~kn-2JO=8WE&P@sWEMhdYQ$n(`qq81C`VeFXY z#0Fy&MQZ71&deRf^41-izAZ zU|LFCe&G6HGBKM0XI=)Hlx#XtD}tYTAI8#6n;6zpmk0JaCWuG|b{g)L+3sQJw41Sw zO^w;iOv^nUKD_tp;4o>K;D}8q<>igI=7%!MeFQsE*0{}Htu7C4Obf%-sKxfC$^N`& z7IL=qvUVw|EPjQ}_XGy<9x@!akPsQ)+Z=Z^O;%!uk%O_E?D)QXE@_Uxq?pUcr_;%B z*QsZjc>Ya(4QwPZJ{?Ex$#6GTj3pnP@AbNq8#gX4 zE>86Hbut?tn?T+-X7;;mV_SjHc-(B~8-0ARaW>mHHX_C9&w2C2rjcD}0~TgnYc(16 za4j3jdnBFhA^WZj+j7O>>D}Yo`t3|gFV4n&+&CF-n@M^lt&;?%BL`YV7PZEAvzyN+ z!%o*c=2vXl9@^V0Mmyn^;pVaJBf()s_b%<)jY!b77#(%NmW4&-9eKhA6}%t;yRs}) zaWmq+WnT$oG_qnKL>5gY-qsGcIF(IAx z=t|v{R-v2bP?jZe0RuEEF+Cn{Btv>q#F-^+akti)Tpre;-@B1So4!HrwQII+v6~if zrEh6NDLR`t(F+wOq;&&?W{tIfUilcK9bq%>;$evKIP z<%oqSdPytE(bFQUcBW3`Q{}Upg^hiqg$RO-WyzA2kI7nVsNtR43FTp>fAIzziR^VV zXlK4GGkJ8_>xJ8J#IG2wmX(X768$9?CTX0B$;X$gSu*~K_U)trfkclb1ZLrDV~{T{ z@Ei$4S5>T;vZ-2msK@kkv<3?ak5MebW;RJuCde}q2jBd>>P?C0SGBD%q1G`|vkB?4 z=ird?rAD|Bk!*6JRz+&0lc5_`Mb8a7C^Sn%G z{Rx{CcNWq_cD1V4C);XenT&bQCIQ5?suan=px0^;jz)0ZWXsF!Icf7l)?CL~|IS#U zA-pV`*3Hz(X+dcS2G}IYJ_&7Yty}F1*_*m_yaZ}cW`?EXy~@fQoX9pntQVoWwL19@ zs;jU{m!0W1KE#-9&Uvt$gf@vh91_^G&S6!H;o1I})TqRky#ujAy5#iRCjYDQOb&_w z2nVUn4}upFSrE+)_|dCIgwG1-p+yGc#CG zQev7yBpo^4lzWoeln%zYmCR|f3!m8N5>BoxHw~w&e0f5xLqaqhYyn$p%hhL5HC5vs z9T9B50h6v|b71L0x`en5*qvJMm9J~xG9~_zp_TOC_ty$O4aO)X4Q8Q@s+#Samo$!s zR>`DaUvm~DF0Wc$V&>Uoj*WxD4i<;b%hl=k%=C~jAJSv!w8{f(IbCm1eHt)!wU+Xl zen>m%973FtEl)Iv5_8!b)zf|*GC7}+R_wdJcp_w&Mk&1d$rYS8*YT85+Dxs@wNAUIr3`9Yy>L9AOB5Nm(8}L(sYOe8aQ7$ zNhcH>VIM~78*e$Boad!_>t?Qg6I7~@-U9!CBLVlWvjW1oGb;<=;A zRZPL)F-(7yf<&k{X$pcK&!$v981`$9*Yh-qJXw)`e`L4YZcC{}FMX}ig#kh< zGK9c5Z)dV0oDC(M4Po|NWXL}Xpxbt$ygv=d*&TR(zDD6tk)wq+Yyhs!W^WTcf)7faWc6ya#6bFy4Af;;I2EVdL zS3^GR>zfRZ6lH&bIA#3jq_w5kfSf}~>8uMgP2c`73)wGORcfr4&o~QqV$4=PN~2Zn zWNoUUB9thR#y9?EAQUO9-8g**YYw`Gd0T6q55|O2=49C=6)VKB8*>>)(hMf$$PxFd zDyP54+xi|H%nq1X$42RnizY`id>=+kZ(=?2RzFO)yXfOEWca5H0{*o$tvbGu9lr_<7i- zV?I~a%*ZmvmI4bzB_W+T;G#2s2tUq$fFtz2iF-XlD_&JKLYP>`%$?5*AGGM zaBxM6KdNh+h)de$e<`vJ{GSH7G#9H^b=Dk0)TEOC5AwtJH9pwe3OnmKio(LM9_#Rn zN~}9$tId;QaVK;Hhx|hen}cAFl1CwtkU8($lV&M5#za{iF^BM_S<;Q~gAQ#-<}9~S zsj~Sn`+edshWES6r=+ow*7MXI)}S9M+vC8=QVr~Dt4R``2C0F8$(NLTc};Z, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "Documents" #: apps.py:97 msgid "Create a document type" -msgstr "" +msgstr "Créer un type de document" #: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" +msgstr "Chaque document téléchargé doit être associé à un type de document, cela permet à Mayan EDMS de catégoriser les documents." #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" -msgstr "" +msgstr "Libellé" #: apps.py:111 msgid "The MIME type of any of the versions of a document" -msgstr "" +msgstr "Type MIME d'une version quelconque d'un document" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "Type MIME" #: apps.py:150 apps.py:174 msgid "Thumbnail" -msgstr "" +msgstr "Vignette" #: apps.py:158 apps.py:184 msgid "Type" -msgstr "" +msgstr "Type" #: apps.py:169 models.py:627 msgid "Enabled" -msgstr "" +msgstr "Activé" #: apps.py:187 msgid "Date time trashed" -msgstr "" +msgstr "Date et heure d'envoi à la corbeille" #: apps.py:192 msgid "Time and date" -msgstr "" +msgstr "Heure et date" #: apps.py:200 views.py:825 msgid "Encoding" -msgstr "" +msgstr "Encodage" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Commentaire" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" -msgstr "" +msgstr "Nouveaux documents par mois" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" -msgstr "" +msgstr "Nouvelles versions de document par mois" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" -msgstr "" +msgstr "Nouvelles pages de document par mois" #: apps.py:407 msgid "Total documents at each month" -msgstr "" +msgstr "Nombre total de documents chaque mois" #: apps.py:414 msgid "Total document versions at each month" -msgstr "" +msgstr "Nombre total de versions de documents chaque mois" #: apps.py:421 msgid "Total document pages at each month" -msgstr "" +msgstr "Nombre total de pages de documents chaque mois" #: events.py:8 msgid "Document created" -msgstr "" +msgstr "Document créé" #: events.py:11 msgid "Document properties edited" -msgstr "" +msgstr "Propriétés du document modifiées" #: events.py:14 msgid "Document type changed" -msgstr "" +msgstr "Type de document modifié" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" -msgstr "" +msgstr "Nouvelle version téléchargée" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" -msgstr "" +msgstr "Retour à la version précédente du document" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Image de la page" #: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" -msgstr "" +msgstr "Pages (%d) du document" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Renommage rapide du document" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Date d'ajout" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "Type MIME du fichier" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Aucun" #: forms.py:124 msgid "File encoding" -msgstr "" +msgstr "Encodage du fichier" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Taille du fichier" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Présent dans le stockage local" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "Chemin du fichier dans le stockage local" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "Somme de contrôle" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Pages" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Type de document" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "Compresser" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" +msgstr "Télécharger le document dans son format original ou sous forme d'archive compressée. Cette option est uniquement disponible lors du téléchargement d'un document, lors du téléchargement d'un groupe de documents, ce dernier sera toujours téléchargé en tant qu'archive compressée." #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Nom du fichier compressé" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "Le nom de fichier du fichier compressé qui contiendra les documents à importer, si l'option précédente est sélectionnée." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Ensemble de pages" #: handlers.py:13 msgid "Default" -msgstr "" +msgstr "Défaut" #: links.py:43 msgid "Preview" -msgstr "" +msgstr "Prévisualiser" #: links.py:47 msgid "Properties" -msgstr "" +msgstr "Propriétés" #: links.py:52 msgid "Versions" -msgstr "" +msgstr "Versions" #: links.py:63 links.py:101 msgid "Clear transformations" -msgstr "" +msgstr "Réinitialiser les transformations" #: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" -msgstr "" +msgstr "Supprimer" #: links.py:72 links.py:105 msgid "Move to trash" -msgstr "" +msgstr "Envoyer à la corbeille" #: links.py:76 msgid "Edit properties" -msgstr "" +msgstr "Modifier les propriétés" #: links.py:80 links.py:113 msgid "Change type" -msgstr "" +msgstr "Changer le type" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Télécharger" #: links.py:88 msgid "Print" -msgstr "" +msgstr "Imprimer" #: links.py:92 links.py:120 msgid "Recalculate page count" -msgstr "" +msgstr "Réinitialiser le comptage de page" #: links.py:96 links.py:124 msgid "Restore" -msgstr "" +msgstr "Restaurer" #: links.py:133 views.py:81 msgid "All documents" -msgstr "" +msgstr "Tous les documents" #: links.py:136 models.py:814 views.py:651 msgid "Recent documents" -msgstr "" +msgstr "Documents récents" #: links.py:140 msgid "Trash" -msgstr "" +msgstr "Corbeille" #: links.py:148 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "Effacer les représentations graphiques utilisées pour accélérer l'affichage du document et le résultat des transformations interactives." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" -msgstr "" +msgstr "Vider la corbeille" #: links.py:163 msgid "First page" -msgstr "" +msgstr "Première page" #: links.py:168 msgid "Last page" -msgstr "" +msgstr "Dernière page" #: links.py:175 msgid "Previous page" -msgstr "" +msgstr "Page précédente" #: links.py:181 msgid "Next page" -msgstr "" +msgstr "Page suivante" #: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 #: views.py:822 msgid "Document" -msgstr "" +msgstr "Document" #: links.py:192 msgid "Rotate left" -msgstr "" +msgstr "Rotation à gauche" #: links.py:197 msgid "Rotate right" -msgstr "" +msgstr "Rotation à droite" #: links.py:205 msgid "Reset view" -msgstr "" +msgstr "Réinitialiser la vue" #: links.py:210 msgid "Zoom in" -msgstr "" +msgstr "Zoom avant" #: links.py:215 msgid "Zoom out" -msgstr "" +msgstr "Zoom arrière" #: links.py:223 msgid "Revert" -msgstr "" +msgstr "Rétablir" #: links.py:230 views.py:414 msgid "Create document type" -msgstr "" +msgstr "Créer un type de document" #: links.py:238 links.py:252 msgid "Edit" -msgstr "" +msgstr "Modifier" #: links.py:243 msgid "Add quick label to document type" -msgstr "" +msgstr "Ajouter une étiquette rapide au document" #: links.py:256 models.py:633 msgid "Quick labels" -msgstr "" +msgstr "Etiquettes rapides" #: links.py:260 links.py:265 views.py:399 msgid "Document types" -msgstr "" +msgstr "Types de documents" #: literals.py:23 msgid "All pages" -msgstr "" +msgstr "Toutes les pages" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Temps après lequel les documents de ce type seront déplacés vers la corbeille." #: models.py:72 msgid "Trash time period" -msgstr "" +msgstr "Temps avant déplacement vers la corbeille" #: models.py:76 msgid "Trash time unit" -msgstr "" +msgstr "Unité de temps du déplacement vers la corbeille" #: models.py:80 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" +msgstr "Temps après lequel les documents de ce type présents dans la corbeille seront supprimés." #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" -msgstr "" +msgstr "Temps avant suppression" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" -msgstr "" +msgstr "Unité de temps avant suppression" #: models.py:107 msgid "Documents types" -msgstr "" +msgstr "Types de documents" #: models.py:159 msgid "The name of the document" -msgstr "" +msgstr "Le nom du document" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Description" #: models.py:165 msgid "Added" -msgstr "" +msgstr "Ajouté" #: models.py:170 msgid "Language" -msgstr "" +msgstr "Langue" #: models.py:173 msgid "In trash?" -msgstr "" +msgstr "Présent dans la corbeille ?" #: models.py:178 msgid "Date and time trashed" -msgstr "" +msgstr "Date et heure d'envoi à la corbeille" #: models.py:182 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 "" +msgstr "Un document parcellaire est un document avec une entrée en base de données mais aucun fichier téléchargé. Cela peut correspondre à un téléchargement interrompu ou à un téléchargement retardé par l'API." #: models.py:184 msgid "Is stub?" -msgstr "" +msgstr "Parcellaire ?" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" -msgstr "" +msgstr "Parcelle de document, id : %d" #: models.py:357 msgid "Timestamp" -msgstr "" +msgstr "Horodatage" #: models.py:366 msgid "File" -msgstr "" +msgstr "Fichier" #: models.py:446 models.py:447 models.py:646 msgid "Document version" -msgstr "" +msgstr "Version du document" #: models.py:632 msgid "Quick label" @@ -438,384 +450,404 @@ msgstr "" #: models.py:650 msgid "Page number" -msgstr "" +msgstr "Numéro de page" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Page %(page_num)d sur %(total_pages)d de %(document)s" #: models.py:671 msgid "Document page" -msgstr "" +msgstr "Page du document" #: models.py:672 msgid "Document pages" -msgstr "" +msgstr "Pages du document" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "Utilisateur" #: models.py:799 msgid "Accessed" -msgstr "" +msgstr "Consulté" #: models.py:813 msgid "Recent document" -msgstr "" +msgstr "Document récent" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Créer les documents" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Supprimer les documents" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" -msgstr "" +msgstr "Envoyer les documents à la corbeille" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Télécharger les documents" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Modifier les documents" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Créer les nouvelles versions de documents" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "Modifier les propriétés du document" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" -msgstr "" +msgstr "Imprimer les documents" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" -msgstr "" +msgstr "Rétablir le document supprimé" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "Lancer les outils de modification de document" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "Revenir à une version précédente des documents" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Visualiser les documents" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "Configuration des documents" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Créer les types de documents" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Supprimer les types de documents" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Modifier les types de documents" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Afficher les types de documents" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Nombre maximum de documents récents (créés, modifiés, visualisés) à mémoriser par utilisateur." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Valeur en pourcentage du zoom avant ou arrière pour une page de document pour les utilisateurs." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Maximum en pourcents (%) de la valeur du zoom avant interactif autorisé pour l'utilisateur." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Minimum en pourcents (%) de la valeur du zoom arrière interactif autorisé pour l'utilisateur." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "Valeur en degrés pour la rotation d'une page de document par l'utilisateur." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." -msgstr "" +msgstr "Langue des documents par défaut (au format ISO639-2)." #: settings.py:78 msgid "List of supported document languages." -msgstr "" +msgstr "Liste des langues supportées du document." #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." -msgstr "" +msgstr "Demande de nettoyage du cache de documents mise en file d'attente avec succès." #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" -msgstr "" +msgstr "Documents dans la corbeille" #: views.py:121 msgid "Delete the selected document?" -msgstr "" +msgstr "Êtes vous sûr de vouloir supprimer le document sélectionné ?" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." -msgstr "" +msgstr "Document %(document)s supprimé." #: views.py:152 msgid "Delete the selected documents?" -msgstr "" +msgstr "Êtes vous sûr de vouloir supprimer les documents sélectionnés ?" #: views.py:174 #, python-format msgid "Edit properties of document: %s" -msgstr "" +msgstr "Modifier les propriétés du document : %s" #: views.py:190 msgid "Restore the selected document?" -msgstr "" +msgstr "Êtes vous sûr de vouloir rétablir le document sélectionné ?" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." -msgstr "" +msgstr "Document %(document)s rétabli." #: views.py:223 msgid "Restore the selected documents?" -msgstr "" +msgstr "Êtes vous sûr de vouloir rétablir les documents sélectionnés ?" #: views.py:255 #, python-format msgid "Pages for document: %s" -msgstr "" +msgstr "Pages du document : %s" #: views.py:283 #, python-format msgid "Image of: %s" -msgstr "" +msgstr "Image de : %s" #: views.py:325 #, python-format msgid "Preview of document: %s" -msgstr "" +msgstr "Aperçu du document : %s" #: views.py:333 #, python-format msgid "Move \"%s\" to the trash?" -msgstr "" +msgstr "Etes-vous sûr de vouloir envoyer \"%s\" à la corbeille ?" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." -msgstr "" +msgstr "Document : %(document)s envoyé à la corbeille avec succès." #: views.py:373 msgid "Move the selected documents to the trash?" -msgstr "" +msgstr "Êtes vous sûr de vouloir envoyer les documents sélectionnés à la corbeille ?" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" -msgstr "" +msgstr "Documents du type : %s" #: views.py:425 msgid "All documents of this type will be deleted too." -msgstr "" +msgstr "Tous les documents de ce type seront également effacés." #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" -msgstr "" +msgstr "Êtes-vous sûr de vouloir supprimer le type de document : %s ?" #: views.py:443 #, python-format msgid "Edit document type: %s" -msgstr "" +msgstr "Modifier le type de document : %s" #: views.py:473 #, python-format msgid "Create quick label for document type: %s" -msgstr "" +msgstr "Créer une étiquette rapide pour le type de document : %s" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Modifier l'étiquette rapide \"%(filename)s\" du type de document \"%(document_type)s\"" #: views.py:519 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" +msgstr "Etes-vous sûr de vouloir supprimer l'étiquette rapide %(label)s du type de document \"%(document_type)s\" ?" #: views.py:547 #, python-format msgid "Quick labels for document type: %s" -msgstr "" +msgstr "Etiquettes rapides pour le type de document : %s" #: views.py:578 #, python-format msgid "Versions of document: %s" -msgstr "" +msgstr "Versions du document : %s" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "Toutes les versions postérieures à celle-ci seront également supprimées." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" -msgstr "" +msgstr "Êtes vous certain de vouloir revenir à cette version ?" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "Retour à la version précédente du document effectuée avec succès" #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "Erreur lors du retour à une version précédente du document : %s" #: views.py:628 #, python-format msgid "Properties for document: %s" -msgstr "" +msgstr "Propriétés du document : %s" #: views.py:634 msgid "Empty trash?" -msgstr "" +msgstr "Vider la corbeille ?" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" -msgstr "" +msgstr "Corbeille vidée avec succès" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "Au moins un document est requis." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" -msgstr "" +msgstr "Soumettre" #: views.py:715 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Modifier le type du document sélectionné." +msgstr[1] "Modifier le type des documents sélectionnés." #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" #: views.py:814 msgid "Documents to be downloaded" -msgstr "" +msgstr "Documents à télécharger" #: views.py:823 msgid "Date and time" -msgstr "" +msgstr "Date et heure" #: views.py:919 msgid "At least one document must be selected." -msgstr "" +msgstr "Au moins un document doit être sélectionné" #: views.py:942 msgid "Document queued for page count recalculation." -msgstr "" +msgstr "Document en file d'attente pour recomptage du nombre de pages." #: views.py:943 msgid "Documents queued for page count recalculation." -msgstr "" +msgstr "Documents en file d'attente pour recalcul du nombre de pages." #: views.py:952 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Êtes vous sûr de vouloir recalculer le nombre de pages du document sélectionné ?" +msgstr[1] "Êtes vous sûr de vouloir recalculer le nombre de pages des documents sélectionnés ?" #: views.py:1011 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Erreur lors de la suppression des transformations de page pour le document : %(document)s; %(error)s." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "Toutes les transformations de page pour le document : %s ont été supprimées avec succès." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Êtes-vous sûr de vouloir supprimer toutes les transformations de page pour le document sélectionné ?" +msgstr[1] "Êtes-vous sûr de vouloir supprimer toutes les transformations de page pour les documents sélectionnés ?" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "Il n'y a pas d'autres pages dans ce document" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "Vous êtes déjà sur la première page du document" #: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" -msgstr "" +msgstr "Imprimer : %s" #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" -msgstr "" +msgstr "Page %(page_number)d sur %(total_pages)d" #: widgets.py:100 msgid "Document page image" -msgstr "" +msgstr "Image de la page du document" + +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -884,11 +916,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1020,8 +1052,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1035,11 +1066,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1065,11 +1096,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1086,19 +1117,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1155,11 +1182,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1183,11 +1210,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1205,11 +1235,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1239,11 +1267,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1300,17 +1328,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.mo index bcc569a4cef3ed44fd21084208ebfa04342c86f7..8bab807a6ba0d48bcf5c8b53db8c33b49a0b98e6 100644 GIT binary patch literal 5183 zcmb7{ON<;x8Gt*9Nni;H1QK2elp*Wv63;#y$C$A!Fy1wBZ-r~`d?M^#|QR(GvGSR{V?~-cLc$w;HA6x$F;LB2%dyp_ze6pJOTd;Pr*;T zDG1&SzYHz>8oUSYyL-@nFMKEO55foGJbXL+IF$L;;S5a5?>pu9=iysv{~mlB{2@F5 ze+J(IUxD|-zd@P*Kkxx~7n8pSJ_KdnMR*@P2}S?2@KLx675oK!2mC9Pd0vI@g7+X) z=6Sf}0eGJGC3qHo30{D|haZ-9I%ASx10IDJp{(ocCBFkPP4ELKc6bpUfHzS;x1atm8-U5PS)K6<_@Wihn+TZxF1&pTLXoRjA=P7A50<3cmn<3B|6b z5hm+B58n;z@I&ykkiX!&{Cfyqh2pOp@cr<&Q0((h$kKzmae~PQTQ~I?uTE5GVc3O{QDA|g};KL|G%KD=T4MZ zgZII&z)Nr){uxUDBMcV%UxH$n8Wg>5Ktu$;F2BD5AL0Eka0%|icsuY(DE4^~ihq6s zW&YnmS;wECtYaU>5xpOQcR;a`*g>v?-1FShPcD%ow)}{^a4m8_$}RD<%q?~l-3du= zGtplzLd9R=H@UDZ+WU7|?;-BP+_F}& zlU!mSxkx!5TNSt<4P27b65nDwiSPGvi=D+LAK)HcC*oMe+L>H+Om3qrRk|T>ZZonf zOO4u&=utB&G_i3eR4&UF0vY8tjcV(rQ7+f1ZDe_(9pkOyQH5E(NKERgYStc9o4R9= zVbYNlTh!~u+C~w_UBo3>kvbL0_hxR4WfqlZ4!x8f$r{YoM!CZBFG|r<*JaL034E_J zvFc@6A`($1E8K00Ik{=-En6hP$=GNyf>F&}w>P7@Rk>;B#v;00CQ67klx-Uxini}P zT(^Bpg^_K?x~p^=j&;Qjd(DN=B6fBmIGH74GNH_5M-PZ^M6pSAVuF*o5vvU6QLfuI z^qg)THKb;H+_iMD4OYBe!_b7miudZc&p_OsRz?_G&!e{3I#?-P>!%*S4Z|llJV~HT zx_HzLQRQ%}tZ_w~_w6*!G^&&jBV}x`8b)sPs@i#mb6v!Gr#}poo@%2@o=Y6c`l7UX z+tE5VwCub+re^1iNSVhu195}JiM(OAVcO7{Id@FGnDkDPg;AsH=g+cOIz-l42}|p; zoa6~k;aHVKiIGJN-rCx2-qOWJJrk^*URxcQeNFE~Ns%Z$%A8@`&&|$DRO&d+wg-vA z+b|jSCetW~I!5wvC^apT8X1-~2zsAPb9EnJ;X!3^iGiKSY@2X?WQRe@n#A~#!z4vy zl)hm_Un^htYFbz)0nv#M*I;C1dV3Pe6lKvxFrSZ_-sLD z&aoDEnyDm%e(@4(zT6Mx2j|b9UJ1@qWP=O1c{FcXY^K_5a4{>qOdS&=A@$CAWgAg0 zE)w(mMWV?_{(7Emp;P5_Sh+CRb*gGjcXg^(SJuwWoHgw%ca=5UjKaz%i>9q?WK}h@ z{_IA@7dom?MQT`89a>sGQdxSUa%fpCAE_QbTvO9KmkTwfeP}wj#sj8=nv`IT^&TTr^t}ZTaZ*MR7 zdLA{*&H`Rs%m+jB#YEOqF=1jC<5JAxX0bRwBS}17_VU8g%t?Gq;je5^0;ZlYPF0SM`}qym zzuM!6j;X=p@wrs(KdzSNkIhJuhHTEJSGfLes#^W)9phT2ck{ADZ7=FylR$F)>v{ir z%oY|K+hfmFc(moW`68*#DoY*naiXBV5UX2WLfpS%jj~aTSfs9= zPz@7rYTHZuyD{^aH0?$lAzCd&$UJCsg)L5*m~%x_yEO89`EcHhte5GWGR>|+cpLdO z!;xT>_pyG1Uds0RyFE>}R%TVIn_W?F*ACR{@UB|y^-=2Euh{;T)U=3hzIXMlGsJAl zH!tU6r~Y+od!`v|42-lT2N#YGji^QH_jhZE=w&feWi9PE5oJup%A4IRx9DKCnp&1h zOmmCGO+`P^!zrM2uRKb$T>olk(!>M7)LR+X?Dps_x+J2G7cuc>oKubd?pB=kuXKX` zx3?zkgy1$RV|8rhN18od_Ph>5Bv`@YY)NRYLl&yp(T85b^IocikPm?AZ^OnjrhgSf z$su9S$jO#rNR}}~;F9aMrwO3g1!I?It*I9dpwdIuB+8vJC=-iuCuMV5C|k{Bvnyh~ z6>_-k?>4g*QDpKKu_>dc`wf=)y5FZiJQdaS_>3{_|H-|mjNSj6P~>dShrJgn`~1j) zLwk*_RN6oiT?YBH%Y@03{uU&oW1G$dTF|+#H55azYlzZktik& zN#C)#aBm`qD`G`9PwGX2;t2;)l8^d$tyYUv#25^x=2)Q1&1Tli99cbbFBx`_)iQ@O zEjhY4H-9@7NtX2n3ebsgiyv&vLZxg{)plz&U!*2h;}(K*CP|{;L~jsAl;LtwQ>P+t z&5ZHXaQU?~br>o~MpDDe(fqL6bASq-^<`hmb@}Ktn<<7&yTKXVCLJeY%ojc>U@502 zsaA%whGa20B_V?f<5f`nZ(g3*jo3~wIblY!mKAPP)07Cr_z5RkgbWkQe; z^>m!*9$QKyYi?=zp(LxZxqm&(>z!)i}q#eA`2C0F8$#1!QO-*$TEOm`c y6b#L*jLdWmObiUT0{nG@Qp+-nGxPIwT@p)DtrUz53}NaFOsxz}H|KNnGXelN8x-gO diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po index ee22709580..82d9f5ae25 100644 --- a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,20 +9,19 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "dokumentumok" #: apps.py:97 msgid "Create a document type" @@ -44,7 +43,7 @@ msgstr "" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "MIME típus" #: apps.py:150 apps.py:174 msgid "Thumbnail" @@ -72,17 +71,20 @@ msgstr "" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Megjegyzés" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -111,16 +113,18 @@ msgid "Document type changed" msgstr "" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Oldal kép" #: forms.py:55 forms.py:58 #, python-format @@ -129,23 +133,23 @@ msgstr "" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Dokumentum gyors átnevezése" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Dátum megadása" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "Fájl MIME-típusa" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Semmi" #: forms.py:124 msgid "File encoding" @@ -153,52 +157,56 @@ msgstr "" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Fájl mérete" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Létezik a tárolóban" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "A fájl elérési útja a tárolóban" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "Ellenőrző összeg" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Lapok" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Dokumentum típus" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "Tömörítés" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Tömörített fájlnév" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "A tömörített fájl neve, amely a letöltött dokumentumokat tartalmazni fogja, ha az előző opció van kiválasztva." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Oldal tartomány" #: handlers.py:13 msgid "Default" @@ -238,7 +246,7 @@ msgstr "" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Letöltés" #: links.py:88 msgid "Print" @@ -268,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "Törölje a grafikus ábrázolásokat, hogy felgyorsítsa a dokumentum megjelenítését és az interaktív átalakításokat." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -351,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -369,10 +377,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -386,7 +396,7 @@ msgstr "" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Leírás" #: models.py:165 msgid "Added" @@ -417,6 +427,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -443,7 +454,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Az oldalak száma %(page_num)d nagyobb mint a %(document)s oldalainak száma: %(total_pages)d " #: models.py:671 msgid "Document page" @@ -454,16 +465,18 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "Felhasználó" #: models.py:799 msgid "Accessed" @@ -475,97 +488,100 @@ msgstr "" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Új dokumentum" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Dokumentum törlése" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Dokumentum letöltése" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Dokumentum szerkesztése" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Új dokumentum verzió" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "Dokumentum tulajdonságok szerkesztése" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "Dokumentum módosító futtatása" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "Visszatérés a dokumentum előző verziójához" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Dokumentum megtekintése" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "dokumentumok beállítása" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Új dokumentum típus készítése" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Dokumentum típus törlése" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Dokumentum típus szerkesztése" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Dokumentum típus megtekintése" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "A felhasználónként megjegyzendő dokumentumok maximális száma amit az utóbbi időben (létrehozott, szerkesztett, a megtekintett)." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Egy dokumentum oldal százalékos nagyításának vagy kicsinyítésének aránya egy lépésben." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Egy dokumentum oldal százalékos (%) nagyításának aránya egy lépésben." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Egy dokumentum oldal százalékos (%) kicsinyítésének aránya egy lépésben." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "A felhasználó ennyi fokkal lesz képes elforgatni a dokumentumot oldalt egy lépésben." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -576,16 +592,16 @@ msgid "List of supported document languages." msgstr "" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -595,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -613,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -642,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -651,6 +670,7 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -660,6 +680,7 @@ msgstr "" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -675,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -697,20 +717,21 @@ msgstr "" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "Minden ezután következő verzió is törölve lesz." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "Dokumentum verzió sikeresen visszaállt" #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "Hiba a dokumentum verzió visszaállítása közben; %s" #: views.py:628 #, python-format @@ -722,18 +743,18 @@ msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "Adjon meg legalább egy dokumentumot." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" @@ -746,6 +767,7 @@ msgstr[0] "" msgstr[1] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -780,14 +802,14 @@ msgstr[1] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Hiba %(error)s a dokumentum %(document)s oldal átalakítójának törlése közben." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "A dokumentum:% s minden oldal átalakítójának törlése sikeres." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -797,11 +819,11 @@ msgstr[1] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "a dokumentumnak nincs több oldala" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "Ez már a dokumentum első oldala" #: views.py:1213 views.py:1222 #, python-format @@ -817,6 +839,15 @@ msgstr "" msgid "Document page image" msgstr "" +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -884,11 +915,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1020,8 +1051,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1035,11 +1065,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1065,11 +1095,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1086,19 +1116,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1155,11 +1181,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1183,11 +1209,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1205,11 +1234,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1239,11 +1266,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1300,17 +1327,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/id/LC_MESSAGES/django.mo index 5e388fc63ca4107b3b265c93a1bdf990a3bfc4f1..92975aaf22e2f601d89ee4e369f251a594a74238 100644 GIT binary patch literal 4843 zcmbuCTWlRi8OI0Oaxs^d5L%!>rWdz1@gCbDZPODXk=QXL#3gm?h(3k!+3`7(vzMct zT{|wNNEH$SBqXZxg31G`kPrx7!UIUW^cf-b9jW4p7haH%Kq@c%zS)a?Vh};BH0QrF zJNsS#-#2^SK6dX971t8uQ;gT&rPPYt-@^~r+`URY1bd>MQL{3`e;q>%a7!Fli<@blo~yo?HEK#?=yhgZ}q z;3MFxpv3>z;4Scvpu~R@BSilNr5`fkgLb|bhsmS z4YnY0lh{bSB&H`Aa*6+1ZkkK%dzA5HGZ+1+Qzse1{m(MwlK6>D5?{H*-X(_QL2@aV z`0^Qs)Rg!yK0eI&B!f_eYk}W)GiK{)_bc&kuSISMk$R9JaTD%*oFOp|*ZCyTi79QN zcWvQao@uiqvvTCT&NHj`96PqHj%{K~8|yO9drICaM^;bF(CV@ z2UTjbvae_Tf*zS&iwv7}QhYTSSnqeLB-uw?npat=oje~F)_Sz)A}_H^n@(1(ZGv%? z=f`E(X$GS6umqkDP^@3f^Hd~aOkS0DDP|?HMtrw=SeVJk4ZJSwq_7@|jd$plAZS0a z+*FgWyLHz;sbl9SiP_gCiw{i1{X3(C&?+f?Pp#ysL`qOJ`R)esJ1()ANv&EbtOTRg zqs#q?W#{y2w~*PrgRM6CkQF?MA)ZCsmLV@pv8tHf-V4ey$Jb8W!p{aHObXGO|9 zF|WndHjBJ=TU!KdM&~U%s164`&11K-AN1#WA{(49y^ze8c|j?tHS!gHbm~$oQLSg* zy=c`HlMO4`wQg>?v`V$vaPdE`4# zH&nvhAkZXU(3U`3aM#&A8_#!c*Y##o8{TXy43RGTpAG$Y#dfEql`r+A$ah^#eV3Y| zV?mltn}?pdDxGC^P8!S&JerR~730+GTuEa{Zpafa%d*tIH}C5gT`F-7GH6cCtyj-i zZZPhY5T8(68-cpratMaOKD+Dk%D0qIn{crUWDvt`^j3%R{wkny-iK1JczK%>{vCWVudrFgP#73vIfUueP=>t*R}Wqqrsz@}U9V4zzFs%`Ces&J z*RRcN*hyZL(YhbHIJ!^`eYBbP^~}|;Y(}9|(MBR^LVbN|Y5D1B>2uMkWxf1#|Mcl- z>GaYP8zXYzXC>DiM@Tr*doOSCDc4kuS$^z}v#q}V-xxB;9xlvh8`iqNudwadmk=>5H)gz6IMg4BEn2JM@jZ?pvG;$VQyf{Czerf&U zf#1u$rI{6yOzVy|DfGTB?X7Z=-tV%rdN4ADx8=F5&9&&v!M<=(+9JA`4d^A=u&>W- zyRx&luU$NIHK_`dL~9(VzOS=MnEG?eXLWshZt3idx@ObL)YOD1+cu${gjTFEeh4$1 zHe>vCW6r+Vjm!il->inF*Svag9C;TVo^V(vCgoL5TpSFM5KTq4@waq4J@w^W4t-O|jU4+|LnB!tINL^iRbQ%kFeR*BYo&4Ik2&(O=knC9Q16|ChbS=S z&@hQZdXKZcwr?wotC0%7?JMdUp_8L?+LLy*RljaLBx8zbyFqDsJizYP`Kq`3()q_5vynG0RN)GJX&J!EBx^0FB#WF?4x-R}>8F)J| zg=s4e1|C&k=PqiZpyy(@4f7Uo(buVy+k{q9&TAo9BtN0kVDq60Zkjpw5PeW>64vxqnrB5h&e!xd}GucJ4`M0#n33)cB3v+ zY-1yxt6^d*J!?T^0pq8Yf?O#W!nyml; delta 102 zcmaE@dYIYbo)F7a1|VPrVi_P-0b*t#)&XJ=umIvtprj>`2C0F8$)Q}nyr#MambykJ b3WjD@MrM=Ob4kNR3{0&IO*dcX;$#E>g@q1m diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po index 82059150e1..4d923fd288 100644 --- a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,20 +9,19 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "Dokumen" #: apps.py:97 msgid "Create a document type" @@ -72,17 +71,20 @@ msgstr "" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Komentar" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -111,16 +113,18 @@ msgid "Document type changed" msgstr "" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Gambar halaman" #: forms.py:55 forms.py:58 #, python-format @@ -129,19 +133,19 @@ msgstr "" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Cara cepat mengganti nama dokumen" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Tanggal ditambahkan" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "Jenis mime berkas" #: forms.py:121 forms.py:126 msgid "None" @@ -153,11 +157,11 @@ msgstr "" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Ukuran berkas" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Ada di penyimpanan" #: forms.py:137 msgid "File path in storage" @@ -169,36 +173,40 @@ msgstr "" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Halaman-halaman" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Jenis dokumen" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "Kompresi" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Nama berkas terkompresi" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "Nama berkas dari berkas terkompresi yang mengandung dokumen-dokumen yang akan diunduh, bila pilihan sebelumnya terpilih." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Jangkauan halaman" #: handlers.py:13 msgid "Default" @@ -238,7 +246,7 @@ msgstr "" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Unduh" #: links.py:88 msgid "Print" @@ -268,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "Bersihkan representasi gambar-gambar yang dipergunakan untuk mempercepat menampilkan dokumen dan hasil transformasi interaktif." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -351,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -369,10 +377,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -386,7 +396,7 @@ msgstr "" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Deskripsi" #: models.py:165 msgid "Added" @@ -394,7 +404,7 @@ msgstr "" #: models.py:170 msgid "Language" -msgstr "" +msgstr "Bahasa" #: models.py:173 msgid "In trash?" @@ -417,6 +427,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -426,7 +437,7 @@ msgstr "" #: models.py:366 msgid "File" -msgstr "" +msgstr "File" #: models.py:446 models.py:447 models.py:646 msgid "Document version" @@ -443,7 +454,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Halaman %(page_num)d dari %(total_pages)d untuk %(document)s" #: models.py:671 msgid "Document page" @@ -454,16 +465,18 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "Pengguna" #: models.py:799 msgid "Accessed" @@ -475,51 +488,54 @@ msgstr "" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Buat dokumen" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Hapus dokumen" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Unduh dokumen" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Sunting dokumen" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Buat versi dokumen baru" #: permissions.py:28 msgid "Edit document properties" msgstr "" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "Jalankan peralatan pengubah dokumen" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "kembalikan dokumen ke versi sebelumnya" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Lihat dokumen" #: permissions.py:51 msgid "Documents setup" @@ -527,45 +543,45 @@ msgstr "" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Buat jenis dokumen" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Hapus jenis dokumen" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Sunting jenis dokumen" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Lihat jenis-jenis dokumen" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Jumlah maksimal dokumen-dokumen (dibuat, disunting, dilihat) baru-baru ini per pengguna." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Satuan dalam persen untuk memperbesar atau memperkecil tampilan halaman dokumen per interaksi pengguna." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Jumlah maksimal dalam persen (%) yang diperbolehkan bagi pengguna untuk memperbesar tampilan halaman dokumen secara interaktif" #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Jumlah minimal dalam persen (%) yang diperbolehkan bagi pengguna untuk memperkecil tampilan halaman dokumen secara interaktif." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "Jumlah dalam derajat untuk memutar halaman dokumen per interaksi pengguna." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -576,16 +592,16 @@ msgid "List of supported document languages." msgstr "" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -595,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -613,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -642,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -651,6 +670,7 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -660,6 +680,7 @@ msgstr "" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -675,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -697,20 +717,21 @@ msgstr "" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "Semua versi sebelum versi yang ini akan ikut dihapus juga." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "Versi dokumen berhasil dikembalikan." #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "Masalah dalam mengembalikan versi dokumen; %s" #: views.py:628 #, python-format @@ -722,18 +743,18 @@ msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "Harus memberikan setidaknya satu dokumen." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" @@ -745,6 +766,7 @@ msgid_plural "Change the type of the selected documents." msgstr[0] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -778,14 +800,14 @@ msgstr[0] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Masalah dalam menghapus transformasi-transformasi untuk halaman: %(document)s; %(error)s." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "Semua transformasi-transformasi halaman untuk dokumen: %s, telah berhasil dihapus." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -794,11 +816,11 @@ msgstr[0] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "Tidak ada halaman lagi dalam dokumen ini" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "Anda telah berada pada halaman pertama dari dokumen ini" #: views.py:1213 views.py:1222 #, python-format @@ -814,6 +836,15 @@ msgstr "" msgid "Document page image" msgstr "" +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -881,11 +912,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1016,8 +1047,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1031,11 +1061,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1061,11 +1091,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1082,19 +1112,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1151,11 +1177,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1179,11 +1205,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1201,11 +1230,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1235,11 +1262,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1296,17 +1323,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/it/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/it/LC_MESSAGES/django.mo index c83f427c85b414eee598a3bee392f708cb234a86..e20e2b24197e2cc599558248e2ce8844a7349a8a 100644 GIT binary patch literal 8615 zcmbuDTWlpqna3+^fG~ux5D4L3S#ZWCb8L?@2{WEdU^1Qohw;qB_6&p#3GH**c9A~a zCw=i;!UN*=0)YnzVprlOkN}Yft}A7=0z`xa5+Z099`<3gNV}0h0s%sR1mg1hS6BBr zJ~k1Tmh1ews_XjISKs%QAA9!Y4;r4F^dizj|6t5V;4M$(hv)N8Gv*5T1^8t6@9-J$ z>u?5s7v2Q_08haKdyF{>-vLj+Z^Ea;EBR4B*TMo`2cHWcgc|B|;ro~1)#U#JJ_mje zs@~)9AK~wy=6U6n#?ZByf|}0(sD5sPv+#EK6nH;W`?o{2|1hKr^I53*d?l2B6{?>{ zp~n9ocoqCb$m`<^$Ug_F-V8tL_Xt$I6{!B#;PtS8h{XIWd?x%9RQoT7{G(9g|1W$t z{1Lny{tjLX)#)|h`B3wjg&JppAN98aUkbZW>wX7RfA4{(;0NK$;r~Gkub|Ph;1tw2 zhap3mR|lSglJ{Lu^S%#CzV}1z`@5m~e{cByAe?)DF~aP%{5T<_Co2&9MrxYf*SwLkgYdK_y(3{rN4NgjcgU8uu2c z`J4#(Rj75|9oP-rgpy+)s-G>$pLst&Y?b*WoP%G4TJPgf^?wQr$@MO%c73S%Uw{YU+n~mK7`_;O10q86Lnt}_5=xHd`E@^gpvHY6 z6V!_emTkY9t+@3%tj>nEUvUx1Rwe?s;D|8N%m2CDx_4x#GLL9ORDsQPz8&G+7r zFQDf8E~xpw4_*f!3iOX>#Qw7!k+oAOKy-@8w06Xv#;rpZT0{Q=jYjBxGDE}2mk(qu; zz3$gR&GSw0m2e$S!H+^z$b1WGUmt^#)6byBy$s`{eZB&+6mvDy_Zg_~N5l8m2ChJj zdpDFk?}w7#zd*Hn2&%uYLap!H@J9GwP~$(<*7|lWRK2}$0Oz3Q`AK*Kd>E?z<52Z} z7V^J^lJn(kqWCnZd0qvz{^vrr(7Xh)L~{sA{%?TV*FKbfd6|r>)_9DxK>DXpcuU~DP-jWcMh){M*eAV(bSRWb44-`D&7$H;^RXJ4mk~9VSWNbyk~4`ygMUeLFyUJxP0}ebRHB zMEK(UqVm$WbEGcmPSW@jQ_v$x?`2!wNYb-HnkOxjj*?zWnjsw_Nw-dtUP00`L6RML z9ch+yf|QbOBk7SYo%V0oV0bf0dU|Up+Y9%RZVGw9h4*XW?cx1Rf#ztp8y7{~Ge>(p z{U(X+W!v^=n$g2z zb}6L!_R_W>jn5C;2fZlFg5M6WbM-5WDIFs&#Oo2$ZrC<0Y=Sr|>BuBIvAA;j<{J-n z=Az%6%^gv4Yc8AAt-$NV!M7VyIZ{*E%b4PANl zD(vJ$Z)&70&rqn+p^|aWacYL2yppty{R!)O^%<)(GC~mLu#e`<MGWu!D?4Vun*at08r+Js+v9gdI z?`fEqS?UF;*IlO3TEg6qr`@dQ(hYMw&t*iU0c8DY`b$jBWYg%ua|Jb;hxr%I`Q{mOa z=LS)^Io`?^?vk43Md|g%&R z5X63p59W+4)WoDT>>d_4)$<;MHBL;HIHBYoeJNC|qNbavV!R=eX)0}NSJ$hJj~}a+ zVqJ`hN0U@cf2b(ZYq;Z_`0rU&)GBi(XX(`C*Po&@!=pQV-QkVR9hK|e+X{ny^j>4R z-p*!mW-MP&fa&p@%d4zaK--hw=LpfW2FavVP=kR&bwnbw}-NGVeDmu~30k>0)cA{m5E; zGiuYHKIAA5Da~v@gI)u4h<#i%QjznJMlLa{9C`2Fdw5BoE6S)pFslkB&YoRdFlPx` z%(*(qD%zJFdwdQBXjc|o;kL5E+?iE=a#4cM>k(CyUL5PKHK`ZGTHA@fv5tm}C#MLt z$=-q(I*YwdnA5yniY`W}J-)ECvS&G#vFR)o8?M*6t=cF$tJ%EWbLRAF#|I7g;EsZT zc{?|||K`r@jh(sucK^-u2M%;*56sR|v4fU41(ZAM&F!C`J#@n?&mP&i&Z@#3g3v6V zx62u)2)neL6;bXoD%2LSvl>VJdArDQbWCz`vn&VmGc)JUpP%+Ylv|H4Orth4dEGFd z>1#EexYsXc8bdkb%9*J>vX#R{@1LICa}1>-uIgyB=52{}m?2zq>0ygU&(ZrMXID>j z4i4-2xGc^)jl-I^2iIKLPIlgsIg?a*lypuI>=g4h9r$c|J30< zKBVteWoC|UY&b&U%&b;r>8xva(CsWCsQViL7vW{a35&vBh@;nzr-Foc@2LGoD69^ym4gn3h;}JaZz}N zYDd>8##PpVK0V)2MQQ0u#$#k6X@2DllE_E;8pZcap2Ox+9Mb48X0b1g%yb5WL#raD zM5QEnF|G`*KXBcy%M!<#t>|O7uIgd;)_!9+?p~ZfYC!BA_19eFWjb;R2tt)8xdmWX zeE44rht;gRE*7aOUE(fXk{qw7cm$o^Wb#jyn40JL}Y{Lq3e zr+dQ4W@w7_7LR>sE(lqDF~B6{u{o7tnPgyFtD0FK`PW**HZ)d(W*C$|SKQQczE)U) zvuTxakqO40zF5Ps=3A1XPghT-%Gk zJk)oFti42VduW8vzF3#+Hu*+YZHM6|Q7@qln6u$qeVNGQm3LD_ZV@^Ljc$cVHZv!8 zKOuEDW5=exXDlhibX~76c<8jXBYc3b8Uzlq zz^yTC&b!LCon@#zs4? zHsSvY?dRkCW24JrWJ+x!YY{iMAsw7_)Z*a4bXw%%TaVF?io*4Gcn)2MBm=yZOu0M; zPA+%>9Un%*q4u88mEesKp!(K7qhze{bW34C!u&XALwsn>|3GwA@|v(ujr_sab!nSZ zm>NB}2n_G&x>??n3(;(ACpF?s`?^L&<8JY9UEGM#P?tN`MmUq!qGD4sd~AD&u}r~U z2A}V?B5qnmAwS%F+IGuA#^X0EDaiO0OD1^OuD)dLY|3^AyDUX%mFHBw2h^|4wOQ0o zZRrx+l=xZ4<|rRHImmM4Rr6_V1p)Aczw>EA1OVN*r+~q%DA11r+M8HyyA)^tdGoRC z(v1BZ3w3a&N!A_y?`o()BbK&SDrfxFK*0!?E381C%JMEZCO}#<+)~^H|D0sF;H_oc z+Epx9+|BqmX@Nc!*eKH!^e{1G&xDAF?iUm8MNLp435`V;iiC7etD{Stax1}Y4uY_e z^Sn13)Yfr07yHO({4Gu8#0%5yfZKM1z$Ud_SI3?{sP#L{g3~4}ZpZciY=}w%a&tOY z0OErY-Pyt|4WnV|Tbd678;6N}>kHeMoAkSUu06T3sbkI#pF8~A%tNk|*w+yQqkvMP Tp_%ixv8kBV7d4j-FKmATfDKc- delta 102 zcmZ4Pe4N?ho)F7a1|VPrVi_P-0b*t#)&XJ=umIv-prj>`2C0F8$zO$ic};ZQ0D&y{1E&dl==}?DLyY^z#bbfj40TK7w*Y-ldZ3Q1*8X%KjpF1bzd)gpGd=zbO6L z#CiBEly$rTSKxgNV(H#h_$x=;;N> zmc5tZC*V!^5%?N>Km0S4`QCxj{~vH39zcl9+k}VUF(~~mK+(%a`96f7<~@V5p68*g z=Oz^SzlBf3Kf)(q6JvfB8YuqpEEM~{1o`uR!jH&*6|z{G5U6mY+?NAVB2 zBo4$@a*2+`zaHZj|9F^N>@B*Ld?MH5+=}}cx9D2zhgs?i7jU*&s9ShA9fm6OGo7lj zPOV8|<@e+*8yKsSSgVPl$Cg%s4t1sjl_g2rjmidEjr_h=S?b5Om!y%OG2SX3RgiS^ zNXJ=6&D#Yv@W&b%IIO9u`cD;vWnS8EH1bF zn3#3?U72%M0^hq#tag(m5{WD($+O!Ovog@#q0J+2CDgtsL92f1j|Qe|RjNm+wummb z$s$A>%8oP-`N;LI_H7TVz}Qjf?TRfqLpeMmFZO4Y8g~yOsvF-m24U5a_^L)jgltp;))XbVwn+_*l0hK-+F= zMxuIewX}5o;FdIftK2HpJc$F%n!fIa%uY++9uU1EPLWcz2*RGd{dZ{ohQ;O)3{qf&pcP0oST#dmF%q(qo^7VEno6`4rOj*7RDpAGi+Q`YQi zZ|(frnZgij{tXl5k@D*pt0JT^-xUA#!!Vf?A;nu2Hv7Y_j<&Iuh^?f?d9+0=COyK# zgY2yERq3;&i`&XLVOuS=k0+LCl2y7Z8 zvsKn(9E zG8Dcey{bjJ2_%P?p(JK8g`j%U#D%jW>s!L1i|N`jbBfZq<3vRXbUF~1bLT@P-`m(Y zzv^v}mAy@@UC&!)r#)@fyO!imrXS)e0SPj5i|v_IEG1TOn`9-m{L5*w&6-;0gVtto zOm)UG8MxDjQ$z;-YM}g_-8*S{lm=;3P z#YlG6(m`Yw8RP^m#^Lpg7Z#gy64+B6EVq~DRxminMr)n4&{3Jbku7rWnE0gX4*Zm4 zdTL|+Z0p3dpF6H~+By?=$vkntqfTs@tX_LZxw+;phk5FUt+O2LmbQ_5wWp4pRK??| zMywt>rIwo~=cFFcWd;zBaXFt;JSL0iU9EOG<~jV6WT+-d8t_PuiP;WNo)i=G62lw% z&z_D*7$>(B6T4=c%;@TeaT4y8|x693ChCaF-CI=h5Y*1O55YlllC+Z~Wm7>a|kHP+KJv=K@@s-RGmuHywN1itAl z7DDV6df77DYM?Wx!B{)3l|riBOten>Qcod&Ce`g#9JY|60+**YD(ed0Pm79zBZNHU zJ*jObE*blN#4=n);giNbglBhPG>dgzre`y%K&0~hIP!8$5NK)z8>=vcoNx}9!^+jpyjRbka`kZ&R+Y@-UZAyUy4w7YPQE{x*lIY zI6?Ir<1B`ldK6`4-gk>irTQoe*}Zd-WP7Ghd{A)ErLI(}zSB$_ds`fT=^kYntk3%V z(FpC_^10gPEgxn(pT~nl#1L=t&dM<;o-?C@%J*(BtY(fgHB-^3_EffbrPBP`mvt&{LlO)B0YxSz zp7@7sxlV-=xv~ztTQb8r!c%G%NxXY1AIUlU%O12nTlT1G;54UIEu4wk49mB}*1Jk3 zn=XN)Fit4{VsBjnZPuOYSmWg2-!Br;I7x|?DrIa+hRE}je?TgSDAJd#R~+=erZE*z zX;AG>J-|iOm{!TeqBI)NPMM4Qx~i8J7)CWB%SlMSWKB#-y~Jr@nX@dI$ei*ofN}>E z@xbZEN3pfj@L{VYyNcJ&{^wHEPUorv3D+N*ZA!-JD$9gWhmu>hbV7w2=mAsXkI6{J NFab8N4%7Wp{Rb>y8Z7_- delta 124 zcmeySd6U`Vo)F7a1|VPrVi_P-0b*t#)&XJ=umIxuKuJp=4N?OGlh<+knwshwSn3*? yC>WYq8JX!Cm>3vv1^DX*rIuwDXXfYWx+IpQS}7PA7{b&Um|7W{ZZ_bNX9NIGEELoL 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 96635358f8..e3aa525074 100644 --- a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,20 +9,19 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "Documenten" #: apps.py:97 msgid "Create a document type" @@ -44,7 +43,7 @@ msgstr "" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "MIME type" #: apps.py:150 apps.py:174 msgid "Thumbnail" @@ -56,7 +55,7 @@ msgstr "" #: apps.py:169 models.py:627 msgid "Enabled" -msgstr "" +msgstr "Ingeschakeld" #: apps.py:187 msgid "Date time trashed" @@ -72,17 +71,20 @@ msgstr "" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Commentaar" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -111,16 +113,18 @@ msgid "Document type changed" msgstr "" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Pagina afbeelding" #: forms.py:55 forms.py:58 #, python-format @@ -129,23 +133,23 @@ msgstr "" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Snel document hernoemen" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Datum toegevoegd" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "MIME-type bestand" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Geen" #: forms.py:124 msgid "File encoding" @@ -153,56 +157,60 @@ msgstr "" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Bestandgrootte" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Aanwezig in opslag" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "Bestandspad in opslag" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "Checksum" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Pagina's" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Documentsoort" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "Comprimeren" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Bestandsnaam gecomprimeerde archiefbestand" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "De bestandsnaam van het gecomprimeerde archiefbestand dat alle documenten bevat die dienen te worden gedownload, als de voorgaande optie is geselecteerd." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Pagina bereik" #: handlers.py:13 msgid "Default" -msgstr "" +msgstr "Verstekwaarde" #: links.py:43 msgid "Preview" @@ -222,7 +230,7 @@ msgstr "" #: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:72 links.py:105 msgid "Move to trash" @@ -238,7 +246,7 @@ msgstr "" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Download" #: links.py:88 msgid "Print" @@ -268,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "Opschonen van de grafische afbeeldingen, die gebuikt worden bij het versnellen van de documentweergave en interactive transformatie resultaten." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -299,7 +306,7 @@ msgstr "" #: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 #: views.py:822 msgid "Document" -msgstr "" +msgstr "Document" #: links.py:192 msgid "Rotate left" @@ -331,7 +338,7 @@ msgstr "" #: links.py:238 links.py:252 msgid "Edit" -msgstr "" +msgstr "bewerken" #: links.py:243 msgid "Add quick label to document type" @@ -351,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -369,10 +377,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -386,7 +396,7 @@ msgstr "" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Omschrijving" #: models.py:165 msgid "Added" @@ -417,6 +427,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -426,7 +437,7 @@ msgstr "" #: models.py:366 msgid "File" -msgstr "" +msgstr "Bestand" #: models.py:446 models.py:447 models.py:646 msgid "Document version" @@ -443,7 +454,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Pagina %(page_num)d van %(total_pages)d in %(document)s " #: models.py:671 msgid "Document page" @@ -454,16 +465,18 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "Gebruiker" #: models.py:799 msgid "Accessed" @@ -475,97 +488,100 @@ msgstr "" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Documenten aanmaken" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Documenten verwijderen" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Documenten downloaden" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Documenten bewerken" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Aanmaken van een nieuwe document versie" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "Documenteigenschappen bewerken" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "Document modificatie tools starten" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "Terugvoeren van documenten naar de vorige versie" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Documenten bekijken" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "Documenten configuratie" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Documentsoorten aanmaken" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Documentsoorten verwijderen" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Documentsoorten bewerken" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Bekijk de documentsoorten" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Maximum aantal recente docmenten (aangemaakt, bewerkt, bekeken), te onthouden per gebruiker." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Percentage in- of uitzoomen voor documentpagina per gebruikeractie." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Maximaal toegestane documentpagina zoom percentage (%) per gebruikeractie." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Minimaal toegestane documentpagina zoom percentage (%) per gebruikeractie. " #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "Aantal graden documentpagina rotatie per gebruikeractie." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -576,16 +592,16 @@ msgid "List of supported document languages." msgstr "" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -595,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -613,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -642,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -651,6 +670,7 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -660,6 +680,7 @@ msgstr "" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -675,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -697,20 +717,21 @@ msgstr "" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "Alle recentere versies na deze zullen ook worden verwijdert." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "Documentversie succesvol teruggevoerd" #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "Fout bij het terugvoeren van de documentversie. Foutmelding: %s" #: views.py:628 #, python-format @@ -722,22 +743,22 @@ msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "U dient minstens 1 document aan te geven." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" -msgstr "" +msgstr "Verstuur" #: views.py:715 msgid "Change the type of the selected document." @@ -746,6 +767,7 @@ msgstr[0] "" msgstr[1] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -780,14 +802,14 @@ msgstr[1] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Fout bij verwijderen van de pagina transformaties voor document: %(document)s ; %(error)s ." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "Al de pagina transformaties voor document: %s, zijn succesvol verwijdert." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -797,11 +819,11 @@ msgstr[1] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "Er zijn verder geen pagina's meer in dit document" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "U bent al op de eerste pagina in dit document" #: views.py:1213 views.py:1222 #, python-format @@ -817,6 +839,15 @@ msgstr "" msgid "Document page image" msgstr "" +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -884,11 +915,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1020,8 +1051,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1035,11 +1065,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1065,11 +1095,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1086,19 +1116,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1155,11 +1181,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1183,11 +1209,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1205,11 +1234,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1239,11 +1266,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1300,17 +1327,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.mo index 985a22cbd38956fbd9442b6b8c493f5fb3c88ffe..ff377a08e0d220b22ed43e8a5764ba9ea25ddc5e 100644 GIT binary patch literal 6102 zcmbW3UyL199mkJQ1y?~pL{z||P;5)@{%e7D+XZQN3oYGt+3vQq3OaZ0?C$KncjhvG zdV6mmK`3c7goG$2wK1ZJyqIXP=!+yqx@&^^1aC-;iBBeqzL1~~>gPK%ckb?%8so`5 z^O-qw&hP&@cm8nQh8GOYq2ENm?Q&zDhFd?xg|_2LWB8e!Ts{c*z^mW`@FVaj`~g;nd2d0@`#Y4}f5T6~YcPsivju((ZZ9|i zrEeBq2OohOU<=*|Qz(7ULCO6A)cTj9{P`8s`qyCy-+=OW56(!=ER^2kkXOcqihBUH zE-BtWQSc0uzt6*4;rF28dI5eG{tnvdprxDiTz1xnxDPH{oY^ehoG?DZimu02^IeX1&E%j=MBkj3sGRJ)VDov!`&DBaT4WM{8Q z_ZWQ>UG=LrMVAe-yVt(R%|7}b`UL$jUG^NHtKCDti>})4wJ#Mn%Cp)G{VViwy3X+Z zbhYF3S^6RR4!W9rQ+%~2v$}#hPbd$wi>?@`DfYL}@27v2u6Az@vlkwv57L!ewViau zzt@xlwae(L%Tf9?UF|-)YUvB~-SqX%VL&yjys9QtClAuqCh2$6zf4!%s69eIK|i90 zqEQan|B@cH&qwGF(Y4p+=&FG`=xW+OYPZrK&hGLW+r~ZV&+7UZR6UscT-S?ZuV(J6 z)pTt%Y%O%trWYi!*}Lcj3!Y6nEzj(2cur)K$O+>4Flsu99|p__o0=-NA_SSek>@0y zbxJA4>U_8-`qG1?gx=J0An@9Kp(nj4&J38yv}LyEw?WM&e$zAAlkQ}5yohfT-n^4G z64>w(CS>S~l$Y`PQ4PdyUjkV3I#-gz0 zMTzgl)~or6?Ced?;=bm|x>-in%~_?Ph)Z8aF<>K)yVcVBi((slN!lvc#94Oqz8y3| zN6PY>GFGvf#MJCkj@ee}$hsGKV6~#0oC{d9Byg$?oSzKbu;vE~W)gclHf_lQuU4+K z%`{GIl?sbve<9$_x>DO}(c|O8qGzj4?7Oz@bnKMVaRNIzF?GbcRLnvc`CTGjD?%L) zn#ogsoW#}-Y@CFVvbfK0XRj*+VvN=*sJm~aZOzoeV%xilpJW1t+ zdGVPk8BKsr`ZX+1EPIK8Fz`wX2F;<>^({5Ar7&zW43fpQFN>UB>izohUJ3MKiLg_J zBZn}-Ory*CO?i^t25GbEMfpA3y%>(oG&SUV?VMqXnrunrv;U`c9kUxXt5?tFq11Ql zrH7PY;IJ`gJlAQsX+s-V6094hNMM+Qq@2C}Ic9(|wV4GoSur!Bnl6`+^N?!b96IUC zyuxoY6DHEt@aEBy-$(w!Vq%V@)h1;;OQn>Fv*EmTf{vgHDnqT|QWHyvQQ-IuGpiHE z;n1m}BYTPyr`a;IDC!@jnWM2X?>X*bk<)ckN>%@D)JqziFnHXO49(}!m(*}nxRYelE^m>nG+xvMg~tui`d zNA4QizP&QMeR!CO6*BGXyuWzf=*Zac&O3%_1KNg_S^Ys#TVXV2XF}?jnwSY=C-Ork zp9IaI~_Lsc+qZJOp?~v&``VG9?bsU{CV%xpc^)aqI_L6)YR!w@oLR@s8Prm zYBh#752$SVK939z5A0>TQpXjgWXvY)G-f(}uuDgGL?GMoy!$kN@3x%m%IOF&^Kxi7UibbBg0S6To3+^oOa2<6)S0$1?)i>B5ghB=g|OE3 zgYwbsINgN`|pL}4Hs^Qmb*(ARMBK>k5-Y~?9u<(%ucLtXppdn!7%+YD=+ zdA}ZF9Y@uwOvu3hV}0MKOn{=j+VErR26~q0i0*dU(S`Fao|dubP%go|zd%8|$mzwZ zBTLt6nhvYJM|l-2eeLk!(MhPb9JYOlko4YPlsVQ(buaev>U~8iSj*42wtr+71k(^Hq~t7 zRv2G6U$u1(O1@q?U4qolGL}-M{g0eMvp-Idw&XF~a+?0~S=Tqy4ZqGmV7KY>CEwy9 zHPZyL9d{i*dQ^61GU>426UQ7_KHKfo&0+K-sC=)g(V@qgpKaWgb9j(#4@Vz4e%$4` z=HRCr+Q3GH<>cJZ|8;gRwwDt6AcwsCDZZpuUhO2Dl>vL^n2N~bgQx0{kc*CuV!S86V-B!? qJ+{VD%4R0Ft$ddeoot)w|Bg*u+D)>i{tbSOD=cprj>`2C0F8$u)ewrlz_EmbykJ y3WjD@MrOJOCI$vv0sgu{sb!hPnfZCTE{P?nRtiQ2hA?#ordEcgoB#2-F#-S`X%$fb diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po index 3fa08de54e..d787ab8023 100644 --- a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po @@ -1,144 +1,148 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "Dokumenty" #: apps.py:97 msgid "Create a document type" -msgstr "" +msgstr "Utwórz typ dokumentu" #: apps.py:99 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" +msgstr "Każdy przesłany dokument musi mieć przypisany typ dokumentu, ponieważ jest to podstawowy sposób kategoryzacji dokumentów w Mayan EDMS." #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" -msgstr "" +msgstr "Etykieta" #: apps.py:111 msgid "The MIME type of any of the versions of a document" -msgstr "" +msgstr "Typ MIME każdej wersji dokumentu" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "Typ MIME" #: apps.py:150 apps.py:174 msgid "Thumbnail" -msgstr "" +msgstr "Miniaturka" #: apps.py:158 apps.py:184 msgid "Type" -msgstr "" +msgstr "Typ" #: apps.py:169 models.py:627 msgid "Enabled" -msgstr "" +msgstr "Włączone" #: apps.py:187 msgid "Date time trashed" -msgstr "" +msgstr "Data i czas umieszczenia w koszu" #: apps.py:192 msgid "Time and date" -msgstr "" +msgstr "Czas i data" #: apps.py:200 views.py:825 msgid "Encoding" -msgstr "" +msgstr "Kodowanie" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Komentarz" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" -msgstr "" +msgstr "Nowe dokumenty miesięcznie" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" -msgstr "" +msgstr "Nowe wersje dokumentów miesięcznie" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" -msgstr "" +msgstr "Nowe strony dokumentów miesięcznie" #: apps.py:407 msgid "Total documents at each month" -msgstr "" +msgstr "Liczba dokumentów w każdym miesiącu" #: apps.py:414 msgid "Total document versions at each month" -msgstr "" +msgstr "Liczba wersji dokumentów w każdym miesiącu" #: apps.py:421 msgid "Total document pages at each month" -msgstr "" +msgstr "Liczba stron dokumentów w każdym miesiącu" #: events.py:8 msgid "Document created" -msgstr "" +msgstr "Dokument został utworzony" #: events.py:11 msgid "Document properties edited" -msgstr "" +msgstr "Właściwości dokumentu zostały zmodyfikowane" #: events.py:14 msgid "Document type changed" -msgstr "" +msgstr "Właściwości dokumentu zostały zmodyfikowane" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" -msgstr "" +msgstr "Nowa wersja została przesłana" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" -msgstr "" +msgstr "Wersja dokumentu została przywrócona" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Obraz strony" #: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" -msgstr "" +msgstr "Strony dokumentu (%d)" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Szybka zmiana nazwy dokumentu" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Data dodania" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" @@ -146,7 +150,7 @@ msgstr "" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Brak" #: forms.py:124 msgid "File encoding" @@ -154,11 +158,11 @@ msgstr "" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Rozmiar pliku" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Istnieje w pamięci" #: forms.py:137 msgid "File path in storage" @@ -170,20 +174,24 @@ msgstr "" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Strony" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Typ dokumentów" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "Kompresuj" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -199,55 +207,55 @@ msgstr "" #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Zakres stron" #: handlers.py:13 msgid "Default" -msgstr "" +msgstr "Domyślne" #: links.py:43 msgid "Preview" -msgstr "" +msgstr "Podgląd" #: links.py:47 msgid "Properties" -msgstr "" +msgstr "Właściwości" #: links.py:52 msgid "Versions" -msgstr "" +msgstr "Wersje" #: links.py:63 links.py:101 msgid "Clear transformations" -msgstr "" +msgstr "Wyczyść transformacje" #: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" -msgstr "" +msgstr "Usuń" #: links.py:72 links.py:105 msgid "Move to trash" -msgstr "" +msgstr "Przenieś do kosza" #: links.py:76 msgid "Edit properties" -msgstr "" +msgstr "Edytuj właściwości" #: links.py:80 links.py:113 msgid "Change type" -msgstr "" +msgstr "Zmień typ" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Pobierz" #: links.py:88 msgid "Print" -msgstr "" +msgstr "Drukuj" #: links.py:92 links.py:120 msgid "Recalculate page count" -msgstr "" +msgstr "Przelicz liczbę stron" #: links.py:96 links.py:124 msgid "Restore" @@ -255,15 +263,15 @@ msgstr "" #: links.py:133 views.py:81 msgid "All documents" -msgstr "" +msgstr "Wszystkie dokumenty" #: links.py:136 models.py:814 views.py:651 msgid "Recent documents" -msgstr "" +msgstr "Ostatnio przeglądane" #: links.py:140 msgid "Trash" -msgstr "" +msgstr "Kosz" #: links.py:148 msgid "" @@ -272,10 +280,9 @@ msgid "" msgstr "" #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -283,56 +290,56 @@ msgstr "" #: links.py:163 msgid "First page" -msgstr "" +msgstr "Pierwsza strona" #: links.py:168 msgid "Last page" -msgstr "" +msgstr "Ostatnia strona" #: links.py:175 msgid "Previous page" -msgstr "" +msgstr "Poprzednia strona" #: links.py:181 msgid "Next page" -msgstr "" +msgstr "Następna strona" #: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 #: views.py:822 msgid "Document" -msgstr "" +msgstr "Dokument" #: links.py:192 msgid "Rotate left" -msgstr "" +msgstr "Obrót w lewo" #: links.py:197 msgid "Rotate right" -msgstr "" +msgstr "Obrót w prawo" #: links.py:205 msgid "Reset view" -msgstr "" +msgstr "Resetuj widok" #: links.py:210 msgid "Zoom in" -msgstr "" +msgstr "Powiększ" #: links.py:215 msgid "Zoom out" -msgstr "" +msgstr "Pomniejszyć" #: links.py:223 msgid "Revert" -msgstr "" +msgstr "Przywróć" #: links.py:230 views.py:414 msgid "Create document type" -msgstr "" +msgstr "Tworzenie typów dokumentów" #: links.py:238 links.py:252 msgid "Edit" -msgstr "" +msgstr "Edytuj" #: links.py:243 msgid "Add quick label to document type" @@ -344,7 +351,7 @@ msgstr "" #: links.py:260 links.py:265 views.py:399 msgid "Document types" -msgstr "" +msgstr "Typy dokumentów" #: literals.py:23 msgid "All pages" @@ -352,7 +359,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -370,16 +378,18 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" #: models.py:107 msgid "Documents types" -msgstr "" +msgstr "Typy dokumentów" #: models.py:159 msgid "The name of the document" @@ -387,15 +397,15 @@ msgstr "" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Opis" #: models.py:165 msgid "Added" -msgstr "" +msgstr "Dodano" #: models.py:170 msgid "Language" -msgstr "" +msgstr "Język" #: models.py:173 msgid "In trash?" @@ -418,20 +428,21 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" #: models.py:357 msgid "Timestamp" -msgstr "" +msgstr "Pieczęć czasu" #: models.py:366 msgid "File" -msgstr "" +msgstr "Plik" #: models.py:446 models.py:447 models.py:646 msgid "Document version" -msgstr "" +msgstr "Wersja dokumentu" #: models.py:632 msgid "Quick label" @@ -439,7 +450,7 @@ msgstr "" #: models.py:650 msgid "Page number" -msgstr "" +msgstr "Numer strony" #: models.py:655 #, python-format @@ -448,65 +459,70 @@ msgstr "" #: models.py:671 msgid "Document page" -msgstr "" +msgstr "Strona dokumentu" #: models.py:672 msgid "Document pages" -msgstr "" +msgstr "Strony dokumentu" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "Użytkownik" #: models.py:799 msgid "Accessed" -msgstr "" +msgstr "Dostępne" #: models.py:813 msgid "Recent document" -msgstr "" +msgstr "Ostatni dokument" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Tworzenie dokumentów" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Usuwanie dokumentów" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Pobierz dokumenty" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Edycja dokumentów" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Tworzenie nowych wersji dokumentów" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "Edytuj właściwości dokumentu" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -516,36 +532,36 @@ msgstr "" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "Przywróć dokumenty do poprzedniej wersji" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Zobacz dokumenty" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "Konfiguracja Dokumenty" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Tworzenie typów dokumentu" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Usuń typy dokumentów" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Edytuj typy dokumentów" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Zobacz typy dokumentów" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." msgstr "" #: settings.py:44 @@ -577,16 +593,16 @@ msgid "List of supported document languages." msgstr "" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -596,6 +612,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -614,6 +631,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -643,6 +661,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -652,6 +671,7 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -661,6 +681,7 @@ msgstr "" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -676,8 +697,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -701,6 +721,7 @@ msgid "All later version after this one will be deleted too." msgstr "" #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -723,22 +744,22 @@ msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "Musisz dodać co najmniej jeden dokument." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" -msgstr "" +msgstr "Wykonaj" #: views.py:715 msgid "Change the type of the selected document." @@ -748,6 +769,7 @@ msgstr[1] "" msgstr[2] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -757,7 +779,7 @@ msgstr "" #: views.py:823 msgid "Date and time" -msgstr "" +msgstr "Data i godzina" #: views.py:919 msgid "At least one document must be selected." @@ -805,12 +827,12 @@ msgstr "" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "Jesteś już na pierwszej stronie tego dokumentu" #: views.py:1213 views.py:1222 #, python-format msgid "Print: %s" -msgstr "" +msgstr "Drukuj: %s" #: widgets.py:71 #, python-format @@ -821,6 +843,15 @@ msgstr "" msgid "Document page image" msgstr "" +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -888,11 +919,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1025,8 +1056,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1040,11 +1070,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1070,11 +1100,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1091,19 +1121,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1160,11 +1186,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1188,11 +1214,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1210,11 +1239,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1244,11 +1271,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1305,17 +1332,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.mo index 4379ddf5b5bb2c82c237fedc031cff6c04a64a84..4e9cd09b8427ba775dfac3a6ed1de64713c7d935 100644 GIT binary patch literal 5041 zcmbW4ON<;x8GtJgLRcONNq7VZsX*-PCZ2uSG0s>P3cG8x$eV1|yCy-hquS}(nM%65 zhJNhY78iuX0Urnwh(nBoWh8_|I5{x&1qe>jd{Fxc_*YQcuIH@8pB)wcC|?9R40Y1@C&7QcuDQ@HG5B zyc50-bNF}oZW!HBy^rCCcrM}H@CuZ5uEHt!b136)LjKfm_>l3xgEIav@V)S#@cr-( z1|Np^!S}$E@GiIlMUO3b54-?TS$!FP6z;-%;Wyz2;B_eW+<*_m+nB83VfaD#c_{Or zgR<@gcpr?Rtov1nsp?Ao{4Kb}^UH7pz5&m{Wd?s*-b0c1ODMj+3B~?@*SwPlk#{c? z`|pQh=N!azbq-F$^HAh`z2+4tcD)3}t{=cf_$qvfSpFG)mgl|qDfKM;8GHubjZsg) zZ7Azqg$29;#ov!04As<8ct1P^B_3ad55YnG{0)c;)yoi*)phuB_+uz>_!Sg+e}LlG z*Wsh^9}v~l!vs(AVGhc;Gw{RkStxdUsNpXB82m02IXB>!;7vFKA4EB^dlh~Jeg%p? z--cq}_n^f2RVe;?4T>NC3dPPh;0y3yFoHWQBG12u5{Kg$Bl?_&pMen+J+4BL{}U+d z-Gt(w-@*?3TmAk478N;%p{%=aX@)V^i2n@7gSPKGkMNo{E9XwNI_ybBx%wIXTeZ&A$B!1i9u z%S0{3)`%0V?q_B=aJ^h-c9_{5(Y2WPpW(DJ1mhS81P`6D`V`7kz@v`M3puK3}g zyAWE&MLw&Rd?GFr%1XIf%B*;xk*SMIL;I$;?TggzjfU32%++%6VHDX&E!!Q#N>CzM zV>G3bUj5j$&By6rGT)zfpG+oBxuyqCt_pjrK8 zY}u8_6-qwZcY2t4f?GIzF!@8J`NTVhWSQil*y_^$Th7+$#@jRbNquPAij*0GQ;DlA z6nV|CX4^2BH80v;IUcdZM{eg*Sl|0t2DrS)B`x#9XKWsI+Qrp}PF!NelJJULF9rw4 z>D*nm>Wta8v07VQTdBgZW-hvkSu;^63|Mw(x}es?&&w~lyp~tZfEW< ziHAWG34bWVjVfwuYjs&|QT)_7eBO$$3&X^_Ts`N@Ak)MIETRq-VH51QO#CIjz|Kke z>zRMS_KMDG)HzpmgRWjPmrSZxmeo%v()^9=0Z7$;rk&Epmqy7NywHqSM6h5&XprK`}H zeAd+)o*X21H+*g~=NXXpODyPYT9b73I$D+elH#nV2SqXL&du%Z?ahWl>vrtL*`814 zvTANNmxw_f8zuQ%T+5jo7IQOGvZY3LFU-zQEqQuOiY{!+t}g7wVvdsT(v!M3Fd0Sc z)Yj(d&WX{u&f6=BVro4uGZS}C(=hX{PKV(!Kec#LS6@#} zr~08&dST||l-l%>$u)mcV)uVaV;uUNw&zF^-fNo|Mi(a8-v3cTQO)+Rdu?NvxYRIl zb~Jy~boPH3CFieYsoCqu4jUHb;c!VCB7Rq?%MW#wtr0q<`hNoQ>DJ?(JL~Ug4J%@Ra%bs>w0=s ze+swD%yA2=7EZqGUn4+O8z&SQecZ`m!V$a43H2|nkEEB&(A10UHs*M$9U=`qSZkt6 zLrPL4aaSu<+%uXCF>|+Gu=%Z(*EIObX`ARcp`wyHP)DnsgGbS=aFH2LinhIb%<$=s z>yzh|6DPbBP824~Y~N(#-$yo9{heQ>rQ;51{F$?niAef!Sb6boxg|Wkdu1*Icx^fKtGQ_S*@>YYfBLYV4aI~ORaGVS_g_A;)ya$YwLqq5d zhBNl%&|%WTb57_DtjoL#Q40qGGKIvh-Yyx+z##0i=AHDHNg10aF$V_GEa_ma%!!RD zCyHeM8V8QHY>f7>HsQ#RZS^UGQ2p0xz;EGShWcnMyNNcv|BJ+C^uVyhWG2c!mIDYW zz!AhzG$>MX1gXB!R!UP9lYE9P%wV5UkB)@uF;a4}&{X!k!nx#D_C!)hWhec=_AIkc z#LN`UNn;yhnoX$!9M{^kz-*fi_@86Fu9_1^6#R7XcoJSU(>b23%E<(QZQWI?@~_b@ zC0Y`xF2)>VD)~95lavtGdy`r?l%34TMy9XNFX-I9s*9w=v&n5EtI&zUF^2yrGU7+d z5B9I=#PHu^v#?HSQ{&RBV@zB7rN-Q%I)>My_0<=Uiy%IwXJwq09et}_1obD^_z%(l B%@6

    ?=@|x-zSn3*? bC>WYq8JSJC=azyd;zMTzkvn(JNPzuo|dW*$z#o8cj-_D7-GKMbjAVyN*dpZ^3@ zKTko8{~PcY_y_*`8vG%?UxcdnFHrsdH&ngb$W;G#!*|2|5LK8*;9Fn_)xPxKPeG0U zS$Hda2JV7ihPT6O@a^!MQ1W~iYMfpCsK49bJK=7qc`ris_aHn4SKzzg=b(jOhi`@7 zfg0ykNSCfN@fJFjzVC#RdjU$nhoIK|I8^^9effE~hwqF2`$>47@2B8d_>b@cJcv?u zD<7)g=b^^`6L=8*DbzTxLaocq2&wN|p~k%nYJR)n55jw(t)Y>_53#|y}b(6&n^~I>vLFQ;ov8i0pyZ#22jD^fok6Y37DNT+X{h?Y3pL&sAu2b23}t`c zfbW1WL8fAEWbnJ-?NIi10IL2^L8_P(N*^DGYX50?5BzI2 zUVzfmKS0UNK`+6&s z{O^FM!W@N~*M~hHhidmERKK5s9r#(O@%{p8{a*6r{{cVB_YJo0=Lx9&`bnty{vnhd z4gL3DLhZkAdVULPoR^^V{W8P^%qvjqaLbR>dVDwB&-Z;${l-x9E#M7MV?IE7h_p!R zk~T$n@7?Dt~IYbIb?<1{}n&)Km0;N0I zub!0DC&`Y+pM!i{AoWN;?hE$9pCBcqW2EDx=DD4hBcz}48L~g^@#fKb+)bJzy@xbI zI!n^}h9s@u66r%EJ=$;Yb#K@m{4hzjw(j$^U$m$6oF>hZF6x8lX3}FM*@`8-ne=|r zO(Z=(MtZw@!{>)8)m&K ziPEx|{Ic1aEjQxAmX`;S-HNHX8rd-FM`aY+GRtON{eDnJx!sKNBF<79tm(@&%hLa) zRk;z_L9ia#G7r*XEz6Ujq3R`vUr5hBT|w6w9x z*YhYs;LPS(iCi{l`>ID9AY4`O6Q{@-^fcyp50v-NguRkwiF!nstSVn)H;WrVsu`g! zv$zrU9xJNEEcT;73W@A`9t<|(USacSkVgf>_$ech^l6Jh#7i}BwcAB`j}7Bu&<`%# zAPq-yqm%8bqtmKi7PHNmlbSV)S)x@IHGa{)Fz8y`kJ2DP?mUv-n$i7au9Hdg$=o(0 zjkZSZyJh+ zkR^Jw&78yx=L*|gWfZ+U9%#YMk~jGF#rE7>!cm57bMni^$&Ng_^<6phD(v*0aAqto z&oHPm#w4RKX4j00oRPGR-45$H^VwEsYy_{$Q6J5o%Ol>jC&%|iTW!=sVT-7&2BQ)g zowjtgmG-kh?x2yV-t=l(7qu^A8a>98jDFfYJ7_1otw0mhZoW?Twmkp2y{FN)+*0VZ zUU!)Wt9@iYmiDqRPS?$`JeL!Z1@P&1(`#`x(@n24#UZ3=47xM_4%#$3omT}gGymVH5g>hMq25c-Ng)-Pb?p+clvU0DNd@y2CYwR zJmU188JSDa?`K=J3+1bEliS^F>s>b^dFZCsv`SX-y~vYC&dpByeYe-|kG*y?j<%w3 zrd4w7%%dc7EgSbumvQ>K1-+gp-!5q-&E?r<9CCP+7UwMma*{QAn>DAROJ41#C@^Q_ zq4rG6!Y(qwnb4gW%yG|j$syFgsFFh2%4)iqDe8u`Q*nLN+NrZ~-B^gSsfX#Im4-X) z-<4-oQJcbu((8e!eY6FzOPjq8qDX)<>TSR$JOAJM~e&bpB``DWCnKNaMd0x8XGl0mng+LA8H z8LNnOr$O8|D{NqQScjZ>?yD$+WMEbl7@R+UV#%B*1Th!tkf~^2cC73Lmc5;sKiDSn z3iF|?a>50DPOy*|p>*n4YkfmKA?Df&`bZty7)SPmEaXwt&^Zxyyi8rY99#}kdu(a> z+|=1fuA{SDtjA&JXtiE+R9(1S&4$A zYtJB6wO(P1cKT=@T#5TLc6y^M2i>{3t*xzD7aqlH(WO~TXfCfi$>$QytP_PvG1s`j zxj}jH=-IiMDLKNC4i;wTrxvj>f~Jnvu4_xS{v5GboF1|q*E!qZ@cEVFor9x#F6fH# zPIDS{?ZMT!Y-R6SH`dgdew7FP&T)d7qHEKE`z#LcJ7nwE!_%pKzg?I)G-Uz>>_M2B zAdGt`QLigmm=%`4C4UlT#VD^?X^O+B;7}^#0nufY4?maL=u)p=4WCnUjB<7OY=ZGu zVdnOzDhx83pzhoTgW>Z;F6u#zua4S|HO<1Hu>6gJ(c$k6zeL1?104*nuE!~UAjkuo zwHAo=D6S`v3zD`^x?q_U!Z2H|78im(B1DP8X6M`JVm;1@rK^MLh z358Wr4X-kpSzKL^mT^dwqfV)+0|@_`NKki<@jBi$8|yW8yP&+C@d|%19`}0{t)o=cEo@cB{rE~CT{>m4=6&ubtN{v&SL1p@;~~HAqCUUMc+>T- z_#gAoW*=?%j1xYOk_;!jW0iCVKo3qw#(CN}iSznqz#AIOMh=;XKSrb#SrbZYwd3<; zWp3Hq0$mBzVn;@rNnQjh8dDjof-fPSKx1J&ZG#&{4R!;2;YbW+#^&_+{Lq=pwSD3( z-53%(O{#ASS$lQh&TvfD&jdZ)l5Ll{DH|8bT^{_BHapHNHE&!WV$^QU^~}eqRbHtp|Endgt)pk5?JfrIgtphn4bhR49mk4ixB0g3(PXXxvrOMZr?fzrW7nUUgO|KAf_!jov;DOZquuN_2vCL5(0;R3hPc5PDo95f3L$>TGjgiMRwbGk9HDud{zfA#EpbK zc^H_9+%V1~yq>%8@!z}LoMu~dT^jBD@mED8{F4?VwThuOgO~$GDpTk?CerqEV=o5I zVUi7M^)~|A;j_O_96vr(LD+zlkz)h^ul){z 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 56daace4d1..fb0627472d 100644 --- a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,20 +9,19 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "Documento" #: apps.py:97 msgid "Create a document type" @@ -36,7 +35,7 @@ msgstr "" #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" -msgstr "" +msgstr "Label" #: apps.py:111 msgid "The MIME type of any of the versions of a document" @@ -44,19 +43,19 @@ msgstr "" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "Tipo MIME" #: apps.py:150 apps.py:174 msgid "Thumbnail" -msgstr "" +msgstr "miniatura" #: apps.py:158 apps.py:184 msgid "Type" -msgstr "" +msgstr "Tipo" #: apps.py:169 models.py:627 msgid "Enabled" -msgstr "" +msgstr "habilitado" #: apps.py:187 msgid "Date time trashed" @@ -64,25 +63,28 @@ msgstr "" #: apps.py:192 msgid "Time and date" -msgstr "" +msgstr "Hora e Data" #: apps.py:200 views.py:825 msgid "Encoding" -msgstr "" +msgstr "Codificação" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Comentário" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -100,129 +102,135 @@ msgstr "" #: events.py:8 msgid "Document created" -msgstr "" +msgstr "Documento criado " #: events.py:11 msgid "Document properties edited" -msgstr "" +msgstr "As propriedades do documento editado " #: events.py:14 msgid "Document type changed" -msgstr "" +msgstr "Tipo de Documento mudado" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Imagem da página" #: forms.py:55 forms.py:58 #, python-format msgid "Document pages (%d)" -msgstr "" +msgstr "As páginas do documento (%d)" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Renomear documento rápido" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Data de adição" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "Mimetype do arquivo" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Nenhum" #: forms.py:124 msgid "File encoding" -msgstr "" +msgstr "codificação de arquivo" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Tamanho do arquivo" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Existe no armazenamento" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "Caminho do arquivo no armazenamento" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "Verificação" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Páginas" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Tipo de Documento" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "comprimir" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Comprimido o filename " #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "O nome do arquivo do arquivo compactado que vai conter os documentos a serem baixados, se a opção anterior é selecionado." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Intervalo de páginas" #: handlers.py:13 msgid "Default" -msgstr "" +msgstr "Padrão" #: links.py:43 msgid "Preview" -msgstr "" +msgstr "Visualizar" #: links.py:47 msgid "Properties" -msgstr "" +msgstr "propriedades" #: links.py:52 msgid "Versions" -msgstr "" +msgstr "Versão" #: links.py:63 links.py:101 msgid "Clear transformations" -msgstr "" +msgstr "remover transformações" #: links.py:68 links.py:109 links.py:234 links.py:248 msgid "Delete" -msgstr "" +msgstr "Excluir" #: links.py:72 links.py:105 msgid "Move to trash" @@ -230,19 +238,19 @@ msgstr "" #: links.py:76 msgid "Edit properties" -msgstr "" +msgstr "Editar propriedades" #: links.py:80 links.py:113 msgid "Change type" -msgstr "" +msgstr "Mudar o tipo" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Baixar" #: links.py:88 msgid "Print" -msgstr "" +msgstr "Imprimir" #: links.py:92 links.py:120 msgid "Recalculate page count" @@ -254,11 +262,11 @@ msgstr "" #: links.py:133 views.py:81 msgid "All documents" -msgstr "" +msgstr "Todos os Documentos" #: links.py:136 models.py:814 views.py:651 msgid "Recent documents" -msgstr "" +msgstr "Documentos recentes" #: links.py:140 msgid "Trash" @@ -268,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "Desmarque as representações gráficas utilizadas para acelerar a exibição e transformações interativas resultados dos documentos." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -282,56 +289,56 @@ msgstr "" #: links.py:163 msgid "First page" -msgstr "" +msgstr "Primeira página" #: links.py:168 msgid "Last page" -msgstr "" +msgstr "Última pagina" #: links.py:175 msgid "Previous page" -msgstr "" +msgstr "Página anterior" #: links.py:181 msgid "Next page" -msgstr "" +msgstr "próxima pagina" #: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 #: views.py:822 msgid "Document" -msgstr "" +msgstr "Documento" #: links.py:192 msgid "Rotate left" -msgstr "" +msgstr "girar para a esquerda" #: links.py:197 msgid "Rotate right" -msgstr "" +msgstr "girar para a direita" #: links.py:205 msgid "Reset view" -msgstr "" +msgstr "redefinir visão" #: links.py:210 msgid "Zoom in" -msgstr "" +msgstr "mais zoom" #: links.py:215 msgid "Zoom out" -msgstr "" +msgstr "menos zoom" #: links.py:223 msgid "Revert" -msgstr "" +msgstr "reverter" #: links.py:230 views.py:414 msgid "Create document type" -msgstr "" +msgstr "Criar Tipo de documento" #: links.py:238 links.py:252 msgid "Edit" -msgstr "" +msgstr "Editar" #: links.py:243 msgid "Add quick label to document type" @@ -343,7 +350,7 @@ msgstr "" #: links.py:260 links.py:265 views.py:399 msgid "Document types" -msgstr "" +msgstr "Tipos de Documentos" #: literals.py:23 msgid "All pages" @@ -351,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -369,32 +377,34 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" #: models.py:107 msgid "Documents types" -msgstr "" +msgstr "Tipos de Documentos" #: models.py:159 msgid "The name of the document" -msgstr "" +msgstr "O nome do documento" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Descrição" #: models.py:165 msgid "Added" -msgstr "" +msgstr "adicionado" #: models.py:170 msgid "Language" -msgstr "" +msgstr "Lingua" #: models.py:173 msgid "In trash?" @@ -417,20 +427,21 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" #: models.py:357 msgid "Timestamp" -msgstr "" +msgstr "Timestamp" #: models.py:366 msgid "File" -msgstr "" +msgstr "Arquivo" #: models.py:446 models.py:447 models.py:646 msgid "Document version" -msgstr "" +msgstr "Versão do Documento" #: models.py:632 msgid "Quick label" @@ -438,154 +449,159 @@ msgstr "" #: models.py:650 msgid "Page number" -msgstr "" +msgstr "página número" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Pagina %(page_num)d de %(total_pages)d em %(document)s" #: models.py:671 msgid "Document page" -msgstr "" +msgstr "página do documento" #: models.py:672 msgid "Document pages" -msgstr "" +msgstr "páginas do documento" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "Usuário" #: models.py:799 msgid "Accessed" -msgstr "" +msgstr "acessado" #: models.py:813 msgid "Recent document" -msgstr "" +msgstr "Documentos recentes" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Criar documentos" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Excluir documentos" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Baixar documentos" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Editar documentos" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Criar novas versões de documentos" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "Editar propriedades de documento" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "Execute as ferramentas de modificação de documento" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "Reverter documentos para uma versão anterior" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Ver documentos" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "Configuração de documentos" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Criar tipos de documentos" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Excluir tipos de documentos" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Editar tipos de documentos" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Ver tipos de documentos" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Número máximo de documentos recentes (criado, editado, visualizado) à ser lembrado, por usuário." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Quantidade em porcentagem de zoom em uma página ou documento por interação do usuário." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Valor máximo em porcentagem (%) para permitir ao usuário aumentar o zoom em uma página do documento de forma interativa." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Valor mínimo em porcentagem (%) para permitir ao usuário diminuir o zoom em uma página do documento de forma interativa." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "Valor em graus para girar uma página do documento por interação do usuário." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." -msgstr "" +msgstr "Os documentos padrão linguagem (em formato ISO639-2)." #: settings.py:78 msgid "List of supported document languages." -msgstr "" +msgstr "Lista de idiomas de documentos suportados." #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -595,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -605,7 +622,7 @@ msgstr "" #: views.py:174 #, python-format msgid "Edit properties of document: %s" -msgstr "" +msgstr "Editar propriedades de documento: %s" #: views.py:190 msgid "Restore the selected document?" @@ -613,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -633,7 +651,7 @@ msgstr "" #: views.py:325 #, python-format msgid "Preview of document: %s" -msgstr "" +msgstr "Pré-visualização do documento:%s " #: views.py:333 #, python-format @@ -642,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -651,22 +670,24 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" #: views.py:425 msgid "All documents of this type will be deleted too." -msgstr "" +msgstr "Todos os documentos deste tipo serão excluídos também." #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" #: views.py:443 #, python-format msgid "Edit document type: %s" -msgstr "" +msgstr "Editar o tipo de documento: %s" #: views.py:473 #, python-format @@ -675,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -693,51 +713,52 @@ msgstr "" #: views.py:578 #, python-format msgid "Versions of document: %s" -msgstr "" +msgstr "Versões do documento: %s" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "Tudo versão posterior após este será excluído também." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "Versão do documento revertidos com sucesso" #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "Erro ao reverter versão do documento; %s" #: views.py:628 #, python-format msgid "Properties for document: %s" -msgstr "" +msgstr "Pré-visualização do documento:%s" #: views.py:634 msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "Deve fornecer, pelo menos, um documento." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" -msgstr "" +msgstr "Submeter" #: views.py:715 msgid "Change the type of the selected document." @@ -746,16 +767,17 @@ msgstr[0] "" msgstr[1] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" #: views.py:814 msgid "Documents to be downloaded" -msgstr "" +msgstr "Documentos a serem baixados" #: views.py:823 msgid "Date and time" -msgstr "" +msgstr "data e hora" #: views.py:919 msgid "At least one document must be selected." @@ -780,14 +802,14 @@ msgstr[1] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Erro ao excluir as transformações de página para o documento: %(document)s; %(error)s ." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "Todas as transformações de página para o documento: %s, foram excluídas com sucesso." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -797,11 +819,11 @@ msgstr[1] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "Não há mais páginas neste documento" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "Você já está na primeira página deste documento" #: views.py:1213 views.py:1222 #, python-format @@ -815,7 +837,16 @@ msgstr "" #: widgets.py:100 msgid "Document page image" -msgstr "" +msgstr "Imagem da página do documento" + +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -884,11 +915,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1020,8 +1051,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1035,11 +1065,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1065,11 +1095,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1086,19 +1116,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1155,11 +1181,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1183,11 +1209,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1205,11 +1234,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1239,11 +1266,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1300,17 +1327,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo index a138f614821f8d928705bdfa7dd11133aac5dba6..1474b355e63ee9f9c09420f20956c1048781de95 100644 GIT binary patch literal 5203 zcmb7{Pi!4W9mkh8G+^3>CP1JRm_VJrNBrz(Ck^R~Ow~FGM8rvOoJc)D81K%rr`bPG zJG*vlqF$mN;J~dwL?H+c+)xi3kU-+l1|k6`E(Jm1h5#Ypf+#0Gzu7;}c0mfOxBH!) zo%#L${pR=H*uUqcfa?VJW8A-eTM%3TU%sCQ*Xw(N;7Rb;;CXQ0+k@a4@blmq@Y~=! zz(0Zx{5!Z8j2@`wWAFg)CHP+OOW?b~+o14!1)KnX3Ch0LL0R_)P}cnud>6Qvj}L(d zz{B7n@SWhN!F}KoC~~ZT`@w4jE9()em1S7Bmz5xooy%1;uZF2Ic$TK#9+PgA!*42(nr55QzJNDQ>xB z&!it!57{I9MJJI@F46M{_lM<$OY|38ODcbmTlmRENO&8GymE;?Gk#R%l5{;+s-g}CXQ9C3zMsLlRKNGN)P3&ShG%LsZkr26)Q$X zCN_nMRFP%Vepj(()JU%yRpdH#!z@p9!G5P0swfM~#H7VQO}Z(yrq>NLOxjX$Wf&Ug zhGiUYLN3Y5v`|*Quja-$xTriUkW1;7R>f_EaHZp6Q{>d4@Z3&;?;(uUR+c3~5n-~j zxJNPzYbLzr$|P8bjTR#qwVLbEnhl-G%_uhx(zTihA=XfCWEhkqzq--eJ)t7&MzP*h zI*rD%Vu#)4f@m2RZaP@V5;2*eaB}Sc@)l|8{?(5 zgI#dS+ckCn-8IWjB<3%`npZZMCmq{noQ_Sb|p@A9A_I<>hRX2 z$L{oMvufQ)W;RsQGFc(#vLR{U)2kEukc+02!TbhXw`Rjc-PRaY5}U;MolV+8(x(5n zp#Lp{cS~BjLZV{bMih-gk-$ty1#7%B9h~PixF|JivLpV#idx;s*9SD4>=cxo_^Nzy zGA&ch=B}$Y+C&`XX;Aj+p$k4++VEP-2_yMrUGh25PJ4@Jgf#0mD_s*U!KHE~A;6cZ zHcg%jbE!UIT?^_Gz#OXik{o7KB4S5YH9~p@Qmg9}61UijP|Gy)*{i7Tj&uld-L!Dd zF&cN8sU!ov4J73JIndA#E?+)-D!5Gb4X)trmTz5!cFeipxvcawbxf#46vDy_JG8lY zO1$8eM3R>N#XNf+nR;iV-j(V&8mL9RsZ(|O)Z(RyB{RzMqPOT)ZPa_VTy?$WY@jAC zURdt=3P@S%NpTyfx&G|&UjJxsZdT169~?W@>mTd)S=hrRR*t#1uA7@3^q)G?=bAW2 z==7H5SmS8S@_|~)h<>tWDRVlv84J?Y5)FFGMkn$)(WynsPCe?X&RS871~W4o8ynNU z;@hFQK8-tP@`^@2lZawH6D4jYuIcgd>e7Xo?u6v^*aWlF{fPzq&FRovrYa0nVXhZ5 z94|IKslqj#Q$y!3FQ4h17_alEvdMd=(~!cGt`5|R6(}qHE}U6a~=22aDKai zN=N?H%^y9fs^NSmou8k5xnC*5? zP6W%D95MbVC?x~=l_RZmC`qZQ6;$J)Rd;T4gggITJ1RwLG{NZi5+Brwc*k)`SYm;^ zY~w|`3pJ&5NzXw{-Mv+j3(NY@;Y>BYkGS()+iv!hU%RO~uYNz3(>*d>WgOxTvp93M z;FEl*%gfzwSTxWInq^^QyCnfp#?vHiqWwZ@j#R|$`)e_^N?yB}TdN!rCN{itn=-FT zx}4_d9M`b_!2ruiqUTv0d@74A(o}uO7952(2113Q4O{lDo?`Bh6o(}X?%pE3$Hm^n zc;N0Wp|-{OkGG&Smd3ke+^FQ%cPH>9`pc>>vFH|@r^&;ScWzq_2VbkGk5n={qLP&D z8Sh^tL$@$)HjWF{FtN+2(w;D@BVDe_C^(y1{HNpK&bRQdG@N!+=2kWDbyq?O^Nbtg z2EKxL=QUGhT#Cj+&A|+dHcnbWO>jw?k=8-R)7E*27}EPxBWW(YF241sw32=#w+6Dv z$|>HisihrH&^=^QYGYjm>?(rmaaSl_RRs37lV?}&(d?G~Bek*_QcbRnT`bD_MucMJ zDj_jO>^)6b`EJCb5wc1nf;}Ycb-rfT(e?}xgHydl8wUpqnkX4kKk+tagI}xZ5puef zCJg)zDPL8FB+{1DwA)OfBbmbOd14)(#(8BWD(i6YsUymbqmm{b4Xm6U)CR?QUdpO6 zR-TJ5Gj(PeRW~SAe?ojqgR)g>pTT5&Ztzno{h9Af+SINSJCP>kUd8rd)rf7wySGU5 zosvUox9rQgSt+SX)hW!`NUo|;NrtD}O9V>V&@xlT(sk@?Tqx^r=~}9}CgN#Z&eE}1 zDPfh_tdK#w29``@XoH9&#XlVz;d^OYQeSHbtZnJ4i{tbSOD>Hprj>`2C0F8$!Xlayr#MambykJ b3WjD@MrM-_a7)8Q3{0&IO*g;bc4q_tccKo+ 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 8345c66649..fd48713e8f 100644 --- a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,21 +9,19 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "Documente" #: apps.py:97 msgid "Create a document type" @@ -45,7 +43,7 @@ msgstr "" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "Tip MIME" #: apps.py:150 apps.py:174 msgid "Thumbnail" @@ -73,17 +71,20 @@ msgstr "" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Comentariu" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -112,16 +113,18 @@ msgid "Document type changed" msgstr "" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Imaginea paginii" #: forms.py:55 forms.py:58 #, python-format @@ -130,23 +133,23 @@ msgstr "" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Redenumire rapidă" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Dată adaugată" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "Tip fişier " #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Nici unul" #: forms.py:124 msgid "File encoding" @@ -154,56 +157,60 @@ msgstr "" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Marime fişier" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Există în arhivă" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "Cale fisier in arhiva" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "Suma de control" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Pagini" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Tip document" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "Comprimă" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Nume fişier comprimat" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "Nume fișier comprimat, care va conține documentele ce urmează să fie descărcate, în cazul în care această opțiunea a fost selectată anterior." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Pagini" #: handlers.py:13 msgid "Default" -msgstr "" +msgstr "Iniţial" #: links.py:43 msgid "Preview" @@ -239,7 +246,7 @@ msgstr "" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Descarcă" #: links.py:88 msgid "Print" @@ -269,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "Goliți reprezentările grafice folosite pentru a accelera afișarea documentelor și rezultatele interactive de transformari." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -332,7 +338,7 @@ msgstr "" #: links.py:238 links.py:252 msgid "Edit" -msgstr "" +msgstr "Editează" #: links.py:243 msgid "Add quick label to document type" @@ -352,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -370,10 +377,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -387,7 +396,7 @@ msgstr "" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Descriere" #: models.py:165 msgid "Added" @@ -418,6 +427,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -427,7 +437,7 @@ msgstr "" #: models.py:366 msgid "File" -msgstr "" +msgstr "Fișier" #: models.py:446 models.py:447 models.py:646 msgid "Document version" @@ -444,7 +454,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Pag %(page_num)d din %(total_pages)d din %(document)s" #: models.py:671 msgid "Document page" @@ -455,16 +465,18 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "utilizator" #: models.py:799 msgid "Accessed" @@ -476,97 +488,100 @@ msgstr "" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Document nou" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Şterge" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Descarcă" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Editează" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Crează o versiune nouă pentru document" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "Editează proprietăţile" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "Lansează uneltele de modificare" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "Reveniți la o versiune anterioară a documentului" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Vizualizează" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "Setup documente" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Tip nou" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Şterge tipuri " #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Editează tipuri" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Vezi tipuri de documente" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Numărul maxim de documente (create, editate, vizualizate) reţinute per utilizator." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Suma în procente folosită pentru a mării sau micşora un document interactiv cu utilizatorul." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Suma maximă în procente (%), permisă utilizatorilor pentru mărirea interactiv a unei pagini ." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Suma minimă în procente (%), permisă utilizatorului pentru micșorarea interactivă a unei pagini ." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "Ce rotaţie pentru pagină (în grade) este folosită în interacțiunea cu utilizatorul." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -577,16 +592,16 @@ msgid "List of supported document languages." msgstr "" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -596,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -614,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -643,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -652,6 +670,7 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -661,6 +680,7 @@ msgstr "" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -676,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -698,20 +717,21 @@ msgstr "" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "Toate versiune de dupa aceasta, vor fi şterse de asemenea." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "Versiunea documentului refacută cu succes" #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "Eroare la revenirea la versiunea documentului; %s" #: views.py:628 #, python-format @@ -723,22 +743,22 @@ msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "Trebuie selectat cel puțin un document." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" -msgstr "" +msgstr "Trimiteţi" #: views.py:715 msgid "Change the type of the selected document." @@ -748,6 +768,7 @@ msgstr[1] "" msgstr[2] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -783,14 +804,14 @@ msgstr[2] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Eroare la ștergerea transformări : %(document)s; %(error)s." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "Toate paginile transformate pentru document: %s , au fost șterse cu succes." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -801,11 +822,11 @@ msgstr[2] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "Nu mai sunt pagini în acest document." #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "Sunteți deja la prima pagină a acestui document" #: views.py:1213 views.py:1222 #, python-format @@ -821,6 +842,15 @@ msgstr "" msgid "Document page image" msgstr "" +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -888,11 +918,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1025,8 +1055,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1040,11 +1069,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1070,11 +1099,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1091,19 +1120,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1160,11 +1185,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1188,11 +1213,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1210,11 +1238,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1244,11 +1270,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1305,17 +1331,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.mo index 45e4f365d14fdbf1d79013350d8a6b42d92f2aab..34bf891265e1a161772a1a3469d51aa15ebaf3f7 100644 GIT binary patch literal 6629 zcmcJSTX0-;9mfxHlL(3^f{OA-nvzI2*`x*9Eh#O%%rLg4mbB`O4zt}oNsjF9**WKI z(_+;4Z$;gFC_NS=HO1}|s7~Bfp^fAZzA^07>pGS!R z{5MzyC)iv9{{r3y7BJ>X@Y~?$!1qB|IXB`A0~#<7ZUB41095R}0DcMlBPjd73$6e! z$B5dO2bpqqgP#Y-!2);))c#p;0DKda{O^N0cO8pg09S(R!0n*UJqhN(KY*h99(WwQ z8YA2f{sfer{{(&&ycVb78s{ERdaVZ~-#5T(!J{B9ah?VbfWH9$3Eqq|j)MOMcYsGZ zjOm;|gX_V!!8^cZH{lC#D=2v?p!k0u+zGx8itjZ9NjeU@w7f3xNZm+6ZjEwnPQ7p!mW;QjgTL& zhMdKcc(zkuy#!tO2JJUP7!<4quCp<4WtEJNiT2lBb}pW6P1M}Ug{`TBLuZqS8yRbJQ+cC>Y zH!KBST{d?%r7pH2EPQ2Q6u68OFzv2xZG%*LJT##jHR^m%)+&Axk*S3NF-l0$Cg@gPX%>12Z4f9%6hf&4;{jNnYsJJwWhbv6_tKGmXJ#{ z6}@a*mP>4g_dd7OXt!-4H&u@fTv^Wnn_EZV~!mX5aqUo<6b#;e`7q%jrs-Cv*W?h zoUMeEr<{sh!3^hz?#|^`=7xvN(A|Yqt8)2O`8*qQxWrStTe@#}sE}WCXP&2LE1{Dc zRePgF`a!|$^of45W~Uz(1J7qeZM=a7xly-RWw{ZC9zym_L{YskI5;^uIbh4ZH|Fje zz=wlDaxfUIN}HTpu7-n^l*nMv80_y+CNC&GG?4Gvh==J5xl!ss!9?!9XpqL@)z+HQ zL@}Uxj_exUl3Ts7&-PiLJjkY*c*d?VWTR<5**wg~*W!5&H;=@pn@5_5jRx_Qr8L(( z(V~8_c@Wz3Y&^*7Sw_&BXZ0Gg;So4H|#03_B`S?5(XE{3uw<+CyV1Wb| z5$ZSu<~ukJIPtTVmc%)f=rSG8Gc_*)U3qmdL1TlmVu<31d7jY>0>dqyHB6m}UuOcT z;P$d5{a7NQguz^>Khu0%Q&z!l`YqupqhDw~k=aJftrchC@pIM?N1W`Qxp)fmKvt%i zji;RWCD_e~55I?-Pnh^MN!~n)m>4iKsI}aAYmH1cYnIF}ueU^AVtO2gQ7&PZ=85Jp zOl>Wb(Q5N?d@j{N!ls^N?@WBoiBDq6DT(aFFT}G}t7HaM6+wur zO(n^ZI4O}oiTB0vV5QGCTUSY(P6_O;m#_eyU*Pd88D;5a#C;}9kuQkg}Z5x29F`x)XZ^VphK9!L|#2{7V~SYH?K4q{O1xxumAeH~+uYy$f@kLB3O| z$w1pl5<{ugQtt?Fb!yw7DZG7rFBC?)Zu8g*73y|BWV4DNou@KkGs_9oD^jWwU@)+m!+@C4~#!(I`L_0jaWtw7Y% zu6eMi5UFygF@4x>{UW^7p^ou;+Pd3bAfyC}DvoR{X`KNQol<#D_RcLa5n8>dx|gmi ztlKU!$hPQzA-QD9e?p7$Q$0|9Gr1+D-PqQ%cDhMbnX!IJ?ox9dhUySR2cE`hX|+}i z>0)!n>Mz^l=|uS@8meh@Hih(t(NPi7HkMrjPLn^nf|0_?qqbVYl}QFu;#)CrgKXaF z|E-3PQkS?25SF^daQ&o%*gUltP+LW8GMu)Q)0;&S!%4GY3W12=F8#E50=kqWfMbJ{cng<6QLp0bzws4nDZJu0pAG1{{xi-%(F*UW${tsx) zv*acy1HHUBc|Z96(|N$AY5RrRHd%_eIuPMzl;K%;*bdqeSc=8AYkx-wa7X(euGF^- delta 123 zcmaEAe38ZCo)F7a1|VPrVi_P-0b*t#)&XJ=umEClCI$veAPrIj1C#5xeN9bu4J>ty yOcV^wtc=Wb4NMFSxB~ojgHp>fi!<}{bX^ilQmqt>3=CoF3{0&IO*ipOX9NKKYZO)h diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po index 61036e3b47..4073ac8ced 100644 --- a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,22 +9,19 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "Документы" #: apps.py:97 msgid "Create a document type" @@ -46,7 +43,7 @@ msgstr "" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "MIME type" #: apps.py:150 apps.py:174 msgid "Thumbnail" @@ -58,7 +55,7 @@ msgstr "" #: apps.py:169 models.py:627 msgid "Enabled" -msgstr "" +msgstr "Доступно" #: apps.py:187 msgid "Date time trashed" @@ -74,17 +71,20 @@ msgstr "" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Комментарий" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -113,16 +113,18 @@ msgid "Document type changed" msgstr "" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Изображение страницы" #: forms.py:55 forms.py:58 #, python-format @@ -131,23 +133,23 @@ msgstr "" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Быстро переименовать документ" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Дата добавления" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "Mime тип файла" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Ни один" #: forms.py:124 msgid "File encoding" @@ -155,56 +157,60 @@ msgstr "" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Размер" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Существует в хранилище" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "Путь к файлу в хранилище" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "Контрольная сумма" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Страницы" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Тип документа" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "Сжать" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Имя сжатого файла" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "Имя файла сжатого файла, который будет содержать загружаемые документы, если выбран предыдущий параметр." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Диапазон страниц" #: handlers.py:13 msgid "Default" -msgstr "" +msgstr "Умолчание" #: links.py:43 msgid "Preview" @@ -240,7 +246,7 @@ msgstr "" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Скачать" #: links.py:88 msgid "Print" @@ -270,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "Очистить графику для ускорения отображения документов и интерактивных преобразований." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -333,7 +338,7 @@ msgstr "" #: links.py:238 links.py:252 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: links.py:243 msgid "Add quick label to document type" @@ -353,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -371,10 +377,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -388,7 +396,7 @@ msgstr "" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Описание" #: models.py:165 msgid "Added" @@ -419,6 +427,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -428,7 +437,7 @@ msgstr "" #: models.py:366 msgid "File" -msgstr "" +msgstr "Файл" #: models.py:446 models.py:447 models.py:646 msgid "Document version" @@ -445,7 +454,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Страница %(page_num)d из %(total_pages)d %(document)s" #: models.py:671 msgid "Document page" @@ -456,16 +465,18 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" #: models.py:793 msgid "User" -msgstr "" +msgstr "Пользователь" #: models.py:799 msgid "Accessed" @@ -477,97 +488,100 @@ msgstr "" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Создание документов" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Удаление документов" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Загрузка документов" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Редактировать документы" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Создать новые версии документа" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "Редактирование свойств документа" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "Выполнить изменения документа" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "Восстановить документы до предыдущей версии" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Просмотр документов" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "Настройки для документов" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Создание типов документов" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Удалить типы документов" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Редактировать типы документов" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Просмотр типов документов" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Максимальное количество последних (созданных, измененных, просмотренных) документов, запоминаемых для каждого пользователя." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Процент увеличения страницы документа пользователем." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Максимальный процент увеличения страницы документа пользователем." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Процент уменьшения масштаба страницы документа в интерактивном режиме." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "Градус поворота страницы документа в интерактивном режиме." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -578,16 +592,16 @@ msgid "List of supported document languages." msgstr "" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -597,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -615,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -644,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -653,6 +670,7 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -662,6 +680,7 @@ msgstr "" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -677,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -699,20 +717,21 @@ msgstr "" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "Все более поздние версии после этого будут удалены" #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "Версия документа восстановлена" #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "Ошибка получения версии документа %s" #: views.py:628 #, python-format @@ -724,22 +743,22 @@ msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "Необходимо указатьть хотя бы один документ." #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" -msgstr "" +msgstr "Подтвердить" #: views.py:715 msgid "Change the type of the selected document." @@ -750,6 +769,7 @@ msgstr[2] "" msgstr[3] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -786,14 +806,14 @@ msgstr[3] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Ошибка при удалении страницы для преобразования документов: %(document)s; %(error)s." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "Все преобразования страницы для документа: %s успешно удалены." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -805,11 +825,11 @@ msgstr[3] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr " Нет более страниц в этом документе" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "Вы уже на первой странице этого документа" #: views.py:1213 views.py:1222 #, python-format @@ -825,6 +845,15 @@ msgstr "" msgid "Document page image" msgstr "" +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -892,11 +921,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1030,8 +1059,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1045,11 +1073,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1075,11 +1103,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1096,19 +1124,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1165,11 +1189,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1193,11 +1217,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1215,11 +1242,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1249,11 +1274,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1310,17 +1335,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.mo index 592318dae883bef8a01501f41c40cec699a64412..69c1fed9e92790f9c5a57e9eb8b5c0c7c60725f0 100644 GIT binary patch literal 4983 zcmcJSPi!4W8NjEsg<@I?1q!7=2dG<{=Go6qsDeWTZQ_8{rZI^f2_%%xdpq`<_jY%- zJNwp&RaHQd;1VGY2qZ*lE=X`dASxs-y^tKZ^?-y5f}Y{P1q2rk{J#C?=cI>nV3qan z?d;4q-~XNb<-R+eJA{XW)j)Ln27 z2KY7j4*1Vz{6Fx0Jm2|tr9J>3fbW6JQ1<&goP%F&-jAC1FTi&({vCJ^{2_b<{uI6w zz6S4we}uCC-{5`lAMiu)?IBKKR(_)Adi`2{raH}F~bAd3d@c_?vt z1B$-4lN_IgcR{ghz2SK%dR~Gbg*$K_eiMq^pF#1*-6$b)9)pq}eaMz-9cp+H-Udad z4|B_PgnN-&{3n;Jm$ec%xt6&f<`zBW61`+^Qcpd~E%_ps_*E{6lUxsSqgEAP@s;MD zy;ga6+suIY?J;ig=R@4$ce$j#Zm)jTe?9?LxQ}v6Y{fpg#4mD*pD?qE_mT{7NexRp z``nLkON>cP^>J?TTX#JX$2vBJ&2?$>;C!mhjyx437qm~U-gC?tSRL8e7B6hBJTV39gXX7>{BWAsv{=*g;fNlY(jvpAos=*g4s8fK(>T6@xWrG> zLOXfCn_C;$Md!XiFKs$m^==u;O#^>iik@aDd(KMW{g93IzW0epL>WIV-lCXOBRiag zX`)WW)`%0V-px%ma>Jl=o8>kjx-k=e2mh~IIsO-*9esoaWJ+I@6!C9}*tJlYMUcJE+n6X2juSALBm z8>!P(R1fCV;%*vcg$={pW#Vgfx(RKy^}$n{KDp(WB+6`vyJ?7OmIobdG0k}1OJi?P zrTNh*6V!U-itbToxhJ@V!`{O$YNZd2F(uC>55+#0?!M)0U1&YK7*6Q<1uIe(2~I7p zHcsTV)7r9OGJ9UO!|7~v5+AvpE7ktq$1=f%B1l?>!sir^IzwP};u0%H)K8fyMz>4} zZr`f28)w&Rx1TkaT{2Cy=_;qq`-S;M$x0K)ey=VRp4wu#xtO{dDy`IED>a=a11ik# zkn~kCEexv!i;ieZNGvR!-LuhR=ZCsvZDOmHZIL3{Z&t52YdQ^uBt+>VT125K zR|ceCwSieu&+w==r9;gxNTa%hS&LEC4X|u}p`gLUm*h>5VHs){FNS)dOC&~>44Pc? zGpH|3-Eh+Fgp;b$JYQvgH(YtdprkFGpN2M3)D}&pEoa$Pn#`~%`KHnt!=|e94m}Nr ze34nLc9mpl$xX#bJX|fP+s#+Ss%heZ5*QM*CD}R0TimJFiHDW(l517FZ{@4)?Typw zA`$MkZ2HWhv7o-}rcSGw-NO&)*qZTeb!tt zsa`*Q_QKqGoB6!xoejG#>ODE#4ZSVDrsp=#ZS|@iM+53f`&!eh{guai{iD6r6}|HK z+OcE3{;__ai9N#L!^OwX=WF`BC*!G<^FEl|c_yU0 zQ!MChS(B{k3$ZV4>QHl`{kf2Q4*Hp zM&fdaFJ0JJUYwI^K5)XyQh)9g!R8Cl+oBh&>B3$vmidIZ^n@OcOisT%xxIC!cl=;p z_2spBZ#^B-Y0}*_eSF}GPWd%m?KQUCR2KmiS~WY+%nL0)TY0F zl`jFURL&PW?)p^(;=w2srgTMVk7!iHtF^p%Y{oQkJm)KCuufEU6T?`$yDz1XbGy%J zf}EBoIUr36SEkr=aO}Y3CH0h-vxdplg~Fku+DODAepa?c2q^5ts;6=*4%LOrq~Fwb z`ciF&qNGl`p=RQk&QcPUDg%7?*6?wU3?W1=hpP=qha1=2EmC<=jkg7$dC)y9`I>NMW2$_Ce#qP5R` zL}ej7uxldqAw|(DM*zr{e zxD2burM-T2?DYPvHO1MaO6*FN(n}q66*HMu3Eq^PmDbSJSlMY_l~TQf)i6jc}nAGX&Mo09NeniLSSLSzPOZvIdVkd|4kaDU@hzT=VNUfTL-6cW)UpC;^+zu!R zY|JPP(yI(+tmS`5O~R@tDP^its_*dmCA#J8(ylRwGDuw@N^N_UfZN?B>uRx1ebE)U zm%QZsN#P#K5ouCVXqu+QjH{Vp|k zM6;-?*me(EY(|GNRoR%7X8#P%A*I@iDfuuaotvihVP#WdJeG#iy%7Vd!PYw#vq_p) OIsS-A)X>cz3H4vo(ZLx2 delta 124 zcmeya*2iLTPl#nI0}wC*u?!Ha05LNV>i{tbSOD=Aprj>`2C0F8$v3!sO-*$TEOm`c y6b#L*jLdWmObiUT0{nG@Qp+-nGxPIwT@p)DtrUz53}NaFOsxz}H%D=YFaiKa9~DFZ 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 a2605805ab..9ef3728a1a 100644 --- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,21 +9,19 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 msgid "Documents" -msgstr "" +msgstr "Dokumenti" #: apps.py:97 msgid "Create a document type" @@ -45,7 +43,7 @@ msgstr "" #: apps.py:112 apps.py:196 search.py:18 views.py:824 msgid "MIME type" -msgstr "" +msgstr "MIME tip" #: apps.py:150 apps.py:174 msgid "Thumbnail" @@ -73,17 +71,20 @@ msgstr "" #: apps.py:204 models.py:360 msgid "Comment" -msgstr "" +msgstr "Komentar" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -112,16 +113,18 @@ msgid "Document type changed" msgstr "" #: events.py:17 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:21 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: forms.py:41 links.py:201 msgid "Page image" -msgstr "" +msgstr "Slika strani" #: forms.py:55 forms.py:58 #, python-format @@ -130,23 +133,23 @@ msgstr "" #: forms.py:88 msgid "Quick document rename" -msgstr "" +msgstr "Hitro preimenovanje dokumenta" #: forms.py:110 msgid "Date added" -msgstr "" +msgstr "Dodano datum" #: forms.py:114 msgid "UUID" -msgstr "" +msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "MIME vrsta datoteke" #: forms.py:121 forms.py:126 msgid "None" -msgstr "" +msgstr "Brez" #: forms.py:124 msgid "File encoding" @@ -154,52 +157,56 @@ msgstr "" #: forms.py:130 msgid "File size" -msgstr "" +msgstr "Velikost datoteke" #: forms.py:135 msgid "Exists in storage" -msgstr "" +msgstr "Obstaja v shrambi" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "Pot datoteke v shrambi" #: forms.py:140 models.py:375 msgid "Checksum" -msgstr "" +msgstr "Nadzorna vsota" #: forms.py:141 links.py:57 msgid "Pages" -msgstr "" +msgstr "Strani" #: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" -msgstr "" +msgstr "Tip dokumenta" #: forms.py:188 msgid "Compress" -msgstr "" +msgstr "Stisni" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Ime stisnjene datoteke" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "Ime skrčene datotteke, ki do vsebovala datoteke za prenos, če je bila prejšnja opcija izbrana." #: forms.py:217 literals.py:23 msgid "Page range" -msgstr "" +msgstr "Obseg strani" #: handlers.py:13 msgid "Default" @@ -239,7 +246,7 @@ msgstr "" #: links.py:84 links.py:117 links.py:128 views.py:889 msgid "Download" -msgstr "" +msgstr "Prenos" #: links.py:88 msgid "Print" @@ -269,13 +276,12 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" +msgstr "Počistite grafične predstavitve, ki se uporabljajo za pospešitev prikaza dokumentov in rezultatov interaktivnih transformacij." #: links.py:151 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "Error clearing document image cache; %s" +msgstr "" #: links.py:155 permissions.py:47 msgid "Empty trash" @@ -352,7 +358,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -370,10 +377,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -387,7 +396,7 @@ msgstr "" #: models.py:162 search.py:21 msgid "Description" -msgstr "" +msgstr "Opis" #: models.py:165 msgid "Added" @@ -418,6 +427,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -444,7 +454,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Stran %(page_num)d od %(total_pages)d dokumenta %(document)s" #: models.py:671 msgid "Document page" @@ -455,10 +465,12 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -476,97 +488,100 @@ msgstr "" #: permissions.py:10 msgid "Create documents" -msgstr "" +msgstr "Ustvari dokument" #: permissions.py:13 msgid "Delete documents" -msgstr "" +msgstr "Izbiši dokumente" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:891 msgid "Download documents" -msgstr "" +msgstr "Prenesi dokumente" #: permissions.py:22 msgid "Edit documents" -msgstr "" +msgstr "Uredi dokumente" #: permissions.py:25 msgid "Create new document versions" -msgstr "" +msgstr "Kreiraj novo verzijo dokumenta" #: permissions.py:28 msgid "Edit document properties" -msgstr "" +msgstr "Uredi lastnosti dokumenta" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" #: permissions.py:37 msgid "Execute document modifying tools" -msgstr "" +msgstr "Izvedi orodja za spreminjanje dokumentov" #: permissions.py:41 msgid "Revert documents to a previous version" -msgstr "" +msgstr "Povrni na prejšnjo verzijo dokumenta" #: permissions.py:44 msgid "View documents" -msgstr "" +msgstr "Poglej dokumente" #: permissions.py:51 msgid "Documents setup" -msgstr "" +msgstr "Nastavitveni dokumenti" #: permissions.py:54 msgid "Create document types" -msgstr "" +msgstr "Kreiran tipe dokumentov" #: permissions.py:57 msgid "Delete document types" -msgstr "" +msgstr "Izbriši tipe dokumentov" #: permissions.py:60 msgid "Edit document types" -msgstr "" +msgstr "Uredi tipe dokumentov" #: permissions.py:63 msgid "View document types" -msgstr "" +msgstr "Poglej tip dokumenta" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Največje število zadnjih (kreiranih, urejenih, pogledanih) dokumentov za prikaz po uporabniku." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" +msgstr "Znesek v procentih za približane oziroma oddaljene strani na dokument v uporabniškem vmesniku." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" +msgstr "Največji znesek v procentih (%), ki je dovoljen uporabniku za približevanje strani v dokumentu." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" +msgstr "Naamanjši znesek v procentih (%), ki je dovoljen uporabniku za približevanje strani v dokumentu." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" +msgstr "Število v stopinjah za rotiranje strani dokumenta ob uporabniški interakciji." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -577,16 +592,16 @@ msgid "List of supported document languages." msgstr "" #: views.py:67 -#, fuzzy -#| msgid "Error clearing document image cache; %s" +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "Error clearing document image cache; %s" +msgstr "" #: views.py:74 msgid "Document cache clearing queued successfully." msgstr "" #: views.py:99 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -596,6 +611,7 @@ msgstr "" #: views.py:144 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -614,6 +630,7 @@ msgstr "" #: views.py:215 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -643,6 +660,7 @@ msgstr "" #: views.py:360 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -652,6 +670,7 @@ msgstr "" #: views.py:388 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -661,6 +680,7 @@ msgstr "" #: views.py:427 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -676,8 +696,7 @@ msgstr "" #: views.py:494 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:519 @@ -698,20 +717,21 @@ msgstr "" #: views.py:592 msgid "All later version after this one will be deleted too." -msgstr "" +msgstr "Vse prejšnje verzije bodo tudi izbrisane." #: views.py:595 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" #: views.py:605 msgid "Document version reverted successfully" -msgstr "" +msgstr "Povrnitev verzije dokumenta je bila uspešna" #: views.py:610 #, python-format msgid "Error reverting document version; %s" -msgstr "" +msgstr "Napaka v povrnitvi dokumenta verzija: %s" #: views.py:628 #, python-format @@ -723,18 +743,18 @@ msgid "Empty trash?" msgstr "" #: views.py:645 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" #: views.py:680 views.py:984 msgid "Must provide at least one document." -msgstr "" +msgstr "Potrebno je podati vsaj en dokument" #: views.py:699 -#, fuzzy, python-format -#| msgid "Document type for document \"%s\" changed successfully." +#, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Document type: %s deleted successfully." +msgstr "" #: views.py:711 views.py:1223 msgid "Submit" @@ -749,6 +769,7 @@ msgstr[2] "" msgstr[3] "" #: views.py:794 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -785,14 +806,14 @@ msgstr[3] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" +msgstr "Napaka v izbrisu preoblikovanj strani za dokument: %(document)s; %(error)s." #: views.py:1020 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" +msgstr "Vsa preoblikovanja strani dokumenta: %s, so bila uspešno izbrisana." #: views.py:1032 msgid "Clear all the page transformations for the selected document?" @@ -804,11 +825,11 @@ msgstr[3] "" #: views.py:1066 msgid "There are no more pages in this document" -msgstr "" +msgstr "Ni več strani v tem dokumentu" #: views.py:1084 msgid "You are already at the first page of this document" -msgstr "" +msgstr "Ste že na prvi strani dokumenta" #: views.py:1213 views.py:1222 #, python-format @@ -824,6 +845,15 @@ msgstr "" msgid "Document page image" msgstr "" +#~ msgid "Document type changed successfully." +#~ msgstr "Document type created successfully" + +#~ msgid "Document type quick label created successfully" +#~ msgstr "Document type filename created successfully" + +#~ msgid "Error creating document type quick label; %(error)s" +#~ msgstr "Error creating document type filename; %(error)s" + #~ msgid "Document tendencies" #~ msgstr "Document edited" @@ -891,11 +921,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1029,8 +1059,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1044,11 +1073,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1074,11 +1103,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1095,19 +1124,15 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1164,11 +1189,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1192,11 +1217,14 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" + +#~ msgid "Error clearing document image cache; %s" +#~ msgstr "Error clearing document image cache; %s" #~ msgid "Comments" #~ msgstr "Comments" @@ -1214,11 +1242,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1248,11 +1274,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1309,17 +1335,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.mo index 5644cdb709922a60bab563aae1ea10d698df07ab..9f16cc510bee019ed61474d70f32a64cbeaf4591 100644 GIT binary patch literal 2980 zcmb7^TZ|M%6oyLyFQcM>7rdY)hPWHIXJ!Ej&PoFA#SoYUm)VskNz+~1)6!ivbXU*r zl8_JxF@XoOQDcyp>}EpTfxm>4~UBmpxXlO2RDMH)NX;az6{d( zYRYrqINmRTW8jbA1h{JhV=s^$go%9u?gf`XiuV@~7yBI@Jkz?zaZ}vXC_aj{)gHwI`Ft=nJPVR< zs`vA_x8tUm6J3DRP;RyjH|sU8YGsqr_fUksV5?7r zRU|ccCAWnW2oZ9vc%ZbY1vj~^tjHG_ub7VD6%p_#MCVE^0@Kp2lG!c~7`JHh8Kr#k zr~@U?mV?$OZ#JL9|2AGZnGQ8nU4zQri|b8xoUdeDVx1h z{F699HOT{!oK=sNl-cg%0^tg<>WV30_jV#r6d`<(tZZojE?xP*16@lFD)izsJb$GIsX!{yl}=yN&$rd>#{xF;R8N z@9KFw`wRJ3Udp3o4x=PS2`Pl0sZ~(mV+yAVHH@jy3|xf?(ut71Q4*$K;K)K#PNCpE z^vp+1znAxvwXPI$xv8nCtR`pfq?pcH%FhK&H$l#)+zes+Va`ik=Bnaqjp`wK5y~cvyJ){>15flMtzo7%FU7B_5~j=@e(apysR3v zTNc;lh|6-L{w}$>qVMRw+cCEq_3I{=&NrVm>L0t@j=!MY2Fq~`{^CWe%tqrIl9d{@ zdBsm5$_r6<#OXj+4s6tk=a5@DzUlL7Jf~POiH5XsTmujXLzsOLdsosguLML=?H~eUS+D~qS@@%iX<6c<|_F)reRFdkMa;z202pI zu39{?b$*ho&&tCzNrzLrraAp7t+Jv6yir+E`mR&G!y%?p@M!A=B(}`8ljx(h52`n> z`glm`_VHQ;@?f UN#9`m+k~#WzY%s^_{)a>0dZEYc>n+a delta 102 zcmZ1?eudfMo)F7a1|VPrVi_P-0b*t#)&XJ=umIv&KuJp=4N?OGlhxRKc};Z32+IN;P1eXf-gQE%r}BhV%!2g1sdRIz%G#V^@A1Qr2cH_m24Pn0>?qpThM$6k{|!6`2>_e6nh$^`G_8G)#LB#@sB`~lLE1o*?RtG zAjRXD{{Kxqe?yOF^mq{@`M=kEPtX4Yq&)l&_+@Ytf==>wfwVpalHS)qEMbShr@_-8 z*?k*?tJoa)0{9znJNUjHZ%0y+yq|)U`sYCM(?yW>{{bX_{TWn#0x50}LDI7h$wTuT zd>PyTlDuw^;&uk4|A#@ccN8SKcfn`CMG#?AwgXBg)yLOqfJU+?uSfO(Wy~hlW*W!Rhtxd^4TVI_EI{{ z(}pV?-YFbu+7>t3Y2>C%$!$yUE)y&E3!W5d;ff@8ZM$0Sa#Mn5jSj(G$FO9(?PLrW z`z6OGPuhuGMp$l~SIR1$GCBoh2rHB#bBTnIvOSkhcSBsp&RH%u>HiK#2nj9Rv0d23 zjZjvgEeqpv5SF9g%f}glK(C7(w3PGArr2<1|m zg2Ua^+I3u-2L)@{(bA++fwdS1%uFuBjj*Ij1re!?Qo0)HwA~d{5JsgcSzBdcadiqR z(2`Uum)Vcfv)fS(s>&h>m3hf3E)W+1cABC~B%`4-f?5_Cp>~$47a~pT|2Fi074lk3 zbJC@(=rohKJ6w)B#spntrRY?%ofxv+bahomDE|9!tY}hQ6F6CA#Kp~%-bepPnx?7J z=BNxdni&d|l7ZV#e@gap&P==-YJ!tg&9YaoO*LRU?i z9XJi$vU$b^l@BQ8)N@dh&-U!u(a84T5@vf5?NG12j8@G__Cq_TWEyFtN)q>>tBh?o z9f}l1K^+p7gz|Sg_D^6_Y)3M-H+Yreyv67?EZ)@E@=8Uk$l8t@YmpshGPXU}A!BWJ zoLB7L)fQ71A#SM{-EnbVUt701R=Y7)U&re<$2VN?AE^^-qt^{Dr0v9ctBveO)wJ5ua7-Hutd1N`5Ni`gCe9mDriB-RN9epr(oSF=sDkhQ{S(DbnY7VCMHSDa3R!~u|oWHKRwxR*S z#tRW^!z~-CqIJdHDD7V#Z<-zB++N~ALzdcbH==Vo%<>x28Qzr{=9QFr#{E>lR z(wjb7ymHg)A6vdS!Tj@m{`i~p_G6VdbiqGyWqJJ9{<&#y=9h)}A;15WckFU$?VX|g z?2Y`~M1Jl};p}z4e%k_PMu(0|0QpJE|68Y zJMWDiUo`~}O|Sf~yvqEUd05~NPx>R5v6vjWX8+0*^M{6tOK^vBH2kDq;Z@7^K*{!d zuXqzD0=Mfu8pWx_!on2G&%(zG8o^FhxPQL5csdw(cSrr6YpbU8smfQavKrAZyERuO z!NlF-y~*$$W!gG*6rD`L3d#I|YsK-wz=r(Nlz;XeZ)VavGQ+%)>)!1P-l6MA7Wx>u zP6vYXHNuCpd|?=&;>;ay@vvTsj6trbCsdzF>r*KS-;#b^TvBAH%Yv^{;VZ-e)Jmz1z=S{o;gM+s! jhy@FLtb-9$W%(4#FN_5@6tX512pxr6w{QeVgRShpsQQBo delta 102 zcmaE?e2&@To)F7a1|VPrVi_P-0b*t#)&XJ=umIvIKuJp=4N?OGlU=!ec};Z;Pf|Al?bYW|?n0clYneHKVdf`lFe86X4xPOMaB zWS=;9I!kDAYSCn4MqgetT?1oXBSQs4Gb=*#H0l delta 203 zcmeC;c)?zOPl#nI0}!wQu?!IV05LZZ*8njHtN>yIAYKW?W9uqn*gx|kT1f_zz`3leStI=kX{RS)7@lr|Xhfl4_-3WMBwXXQ69kpkQQV MWnj7a6r(W{0Js?*, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:16 msgid "Dynamic search" @@ -43,7 +41,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "مستخدم" #: models.py:26 msgid "Query" @@ -90,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.mo index 780298456434150a5ccc86369ec516cd8da12590..3a183459af76e133c50dff6c4be47f4d1f7089a3 100644 GIT binary patch delta 416 zcmX|*ze~eF7>2L0RZ$TX7s25a2N6;(v8~d@rHeyV`~fZw!A2S}X=zf?$(T_DE!DZ; zUr?1|{L#8QeK)!Yu7dxAZ>;*kbI-lseRs)6BIrMUAB|rzR3DfC8(MGw={R569sgd=8etHu9Uo*j9Aj)1AM7XOSE56k~hr6`L_MzF^$>uf*>z zdK5=L75!xNalFY`-Z-@Es?80%RCPS=nnq=($cvWea<9a9O%KU%3cO&s<$dEQSt~D( ztapbzvtqk!(={u#c0Qd^#hj{ZT+3urDOIF|7+76V*USUUwMvefGdwfPb)o&u=~`Ck zcZ)GKrbxdYD%0bf?y1S?g*x;|O@v#lZE7X!dF66}uBjz`dZrM)kYj0b8OT%V%M)rv SbBr3)LCZ(Hp-=|!6Z-~l;d8G5 delta 202 zcmZqTc*t6RPl#nI0}!wPu?!H~05K~N#{e-16acXq5ElY58xXGmVm=^V55)b93=I2# zbOaFlF+s$a18FTFe;benN`uV>G8veG7z}(9D>8FSa~1MRbCXhwCjPLW?8)e3YN~5s zscU4SU}$D#WTtCiVqm}(;IA8$T9#RynV+ZYl30>zrC?-W2vldGYh<8cWMpMvx%m{M KF5~1-=28H}cOt(4 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 0bb1812815..248aa14679 100644 --- a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -26,7 +25,7 @@ msgstr "" #: forms.py:21 msgid "Search terms" -msgstr "" +msgstr "Термини на търсене" #: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" @@ -42,7 +41,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "Потребител" #: models.py:26 msgid "Query" @@ -66,7 +65,7 @@ msgstr "" #: settings.py:14 msgid "Maximum amount search hits to fetch and display." -msgstr "" +msgstr "Максимален брой резултати от търсене за показване." #: settings.py:18 msgid "Maximum number of search queries to remember per user." @@ -89,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.mo index 83d197c9849af1c2902ae22c61f62b9976d031fc..95d40d077241fb9485359f13c0c4765c92788d79 100644 GIT binary patch delta 207 zcmcc1{+qr2o)F7a1|VPuVi_O~0b*_-?g3&D*a5@_K)e%(&4Bn75VHZXA|nF>ACT4n z(mX)g97wYOX%`^<4TwE~*apaVU}j)&2hz1bngd851=2!5`W%oJU|`^4cnFpFG_g{d zk$vLa=`5kesYR2G8GU)pbPbGkjSLkG&8$pJCigN*!$ph?tqhDdZ)MbA;`Gih$}G;y H%w_-pcB&t} delta 203 zcmey(ewV%eo)F7a1|VPqVi_Rz0b*_-t^r~YSOLTaK)e!&&4Bn85QEeTGBPmm0ci;! z%>$&>f%G>ZHUVNAAYYrAfx#U}X8>sqAiV)d3jyh!Kw1Dup8?W9r4##Q85t(7oj%!< z(Z|$O*T7QO$V9==%*x12*TBTUfGfaXHz>6%vp6$9PuC@}B-Kj6$iNV&&O+D7K*7k! M%D{5-DMk$@02|UDX8-^I 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 c27b2daf7f..772dd95cd8 100644 --- a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 msgid "Dynamic search" @@ -43,7 +41,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "Korisnik" #: models.py:26 msgid "Query" @@ -90,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.mo index 4101618f5991dceb563620c11255f1edbdc9a4f8..34a52a7b8f1e28d3cfd41299a4034b554eeb1e0f 100644 GIT binary patch delta 119 zcmX@c{E9jBo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlL9!3U+Fd)qa#E*e&AOZuB oUN{IXPA!^f;md2LYhbKvWT;?hW@TcsagqrmyHinVdTJ2^0277}yZ`_I delta 82 zcmaFGe2m%Ro)F7a1|VPrVi_P-0b*t#)&XJ=umIv7prj>`2C0F8iJ`u{rn&}}x<)1n OhGteqW*gU=FaiLL1PVg{ diff --git a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po index 612a3af920..af8cb45611 100644 --- a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -41,7 +40,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "Bruger" #: models.py:26 msgid "Query" @@ -88,8 +87,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 2eb8cae6959be5c86bad596f13400bc5fa8245a1..cf0eff77db94750af6bcf7c80415c7ba81b84dc7 100644 GIT binary patch delta 44 tcmX@fb&_kt0VZBET?1oXBSQs4Gb, 2014 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-08 23:05+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -72,8 +71,7 @@ msgstr "Maximale Anzahl an Treffern, die angezeigt werden soll" #: settings.py:18 msgid "Maximum number of search queries to remember per user." -msgstr "" -"Maximale Anzahl an Suchabfragen, die pro Benutzer gespeichert werden sollen" +msgstr "Maximale Anzahl an Suchabfragen, die pro Benutzer gespeichert werden sollen" #: views.py:25 msgid "Search results" @@ -92,8 +90,7 @@ msgstr "Typ" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.mo index d32c94f919d5d3c5aa1d5f0a281b562feea49c2a..9e8d42aa175297570a107853e328dd646820e4fa 100644 GIT binary patch delta 26 hcmX@lcAjlR10%1Qu7R, 2014 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-24 04:35+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -92,8 +91,7 @@ msgstr "Tipo" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.mo index 8c72f517bd1174de7f548aaa5dc4542246f4747f..7b5e70bf859cdbf474dfe61cc7aac1a390e41ac5 100644 GIT binary patch delta 44 tcmaFK^^$ADLMC1_T?1oXBSQs4Gb, 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -89,8 +88,7 @@ msgstr "نوع" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.mo index b57be87c64d85cf7c4ef185a0edee0c51fe33677..87c952794c396481add9a5bdce86c1ea07dbcd7b 100644 GIT binary patch delta 516 zcmX}nOG^S#6u|Krv4_t@d!Z6j&?ZqvGZ#ZdVnK_D2yIo1VH_Gm9h(^=SJKk8w28hz zP;R8JQ(vKN(4zkh^}w0m<<33lp8FPj4D~m-M07WzU_lI|ad0ZGIygipR~Nx8 zgR37vS4Y9!QE(FcKNRu7%kS=T@A2-;x;Oi;b>mtQHaSIJkxjCy`4ERF|GGGer)c0g z`gn;UKH>m=Vhz7g>a3DdgXmxtXK@7QfA)Q~#zGpd|GJ466z^c2^S826llXyBXmh!P zGZ^764&e>T{aYNv2OP#H9LE=wKJVDT3ey_OVloz>+, 2014 +# Christophe CHAUVET , 2014-2015 # Pierre Lhoste , 2012 # SadE54 , 2013 msgid "" @@ -12,19 +12,18 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 msgid "Dynamic search" -msgstr "" +msgstr "Recherche dynamique" #: forms.py:21 msgid "Search terms" @@ -91,8 +90,7 @@ msgstr "Type" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.mo index fe511c4bd5f77e7721c058b0f3500c5e15e6a9a5..0b781dac9200f29b1f0bb421f2b5b755ba179a30 100644 GIT binary patch delta 212 zcmZo;U&&s7Pl#nI0}!wSu?!H005LZZ_W&^n>;Pf|Al?bYW<2qc5+Su7RkPl#nI0}!wQu?!IV05LZZ*8njHtN>yIAYKW?W?Khs%v1WYh, 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -42,7 +41,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "Felhasználó" #: models.py:26 msgid "Query" @@ -89,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.mo index e24fdffc6091bad11b79be74ff90e0b345e40843..f7644ef2bfae18d47775ffa80bde09d069e16ea6 100644 GIT binary patch delta 121 zcmX@i{E|8Jo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLPDTcXFd)qV#1DXMAOZuB qUN{IXPA!^f;md2LYhbKvWT;?hW@Tcsagre;XFzIRdU|PIA_D+22M~b( delta 82 zcmaFKe3;qdo)F7a1|VPrVi_P-0b*t#)&XJ=umIvtprj>`2C0F8iJ`u{rn&}}x<)1n OhGteqW*gTVG6DdLK?*ql 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 feb30b0e23..94a04c5008 100644 --- a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -41,7 +40,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "Pengguna" #: models.py:26 msgid "Query" @@ -88,8 +87,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.mo index 36b68647410ab78185cb6c7d87a44edc9b23bf7d..b1dac221f99a7d21d76e3cba77a4a7bf86ea40f2 100644 GIT binary patch delta 235 zcmaFOwvfI4o)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~}-8fcPX3n*s4JAZ7z%Lq-M$J|JxY zq$&>fpjkrn*gyrkbj7Yfx#L`GchwTumWj2AT180U4S%5Uks22DxElA5+n;`?43S2 zj?u@|RM)^#*T_V{(9FunOxM7~zKTp>su_V<>!N|Z6sLn#y$Uwo! N$jZQS^L@r`i~x*d9#{YX 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 33fe8d5091..44dbe3faba 100644 --- a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -44,7 +43,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "Utente" #: models.py:26 msgid "Query" @@ -80,7 +79,7 @@ msgstr "Risultati della ricerca" #: views.py:32 msgid "Type" -msgstr "" +msgstr "Tipo" #~ msgid "Results" #~ msgstr "results" @@ -91,8 +90,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.mo index 20f015d208cf9a6e6230345a873d19036f7711fe..4626000b94626467860e262c037fcfeca8d9494a 100644 GIT binary patch delta 208 zcmcb^_M5H#o)F7a1|VPuVi_O~0b*_-?g3&D*a5@_K)e%(&4Bn75VHZXA|nF>ACT4n z(mX)g97wYOX%`?pABa7HSP95~$;80m3Z!|MA@V^$8l*2ANOOTu8j!&W6eyfnsm#be zaqe`M(Bjmh$;OPnyk@!v#=1s^3WjD@CMJ`68KvPOMut`fMw_=XE@$L&PfaQ+&CE_M GVgLZ=w;o^s delta 203 zcmey(c89J0o)F7a1|VPqVi_Rz0b*_-t^r~YSOLTaK)e!&&4Bn85QEeTGBPmm0ci;! z%>$&>f%JSJHUVNKApZ&z1A{A&{tl#BfV3?$M7trN-fJQ&dkr#bxABqwNfxLFa)Zz&^0npFfy_- Lu-tr#aXBLZ=))f} 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 83cd303c57..d661e899cd 100644 --- a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -42,7 +41,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "Gebruiker" #: models.py:26 msgid "Query" @@ -89,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.mo index 20a982d07c09f396035917348f7202fed760715a..10e3c4e820edb6bfe60212b04ed53cf359a1496b 100644 GIT binary patch delta 588 zcmYk%O-lkn7zglKvlp#QBzwUQbLmnjYGNQ!3Z0^tOB6vKrfte`-@@J6){BQC@Vo?( z(%CLv>ML~a8&tQxM2G$pTlB!Qzu9MJo_Y2)+8b@XCBnA^5l7A;yU1y|R`5Vv!U^a> zxu*?d@E(TYBh11+EW&p<2&Y1XjKeu7&o96sSb}4)0@0^Mwu3?y%7*no3x1-R17}e` z#7Eia0?GkzU<5wEW!Qsj@FS>GOp(O>)&65Y4zs^Dsk?xRzaX_jkig08q3 z_uqT@)L=r-sFtz%^cC7r4uboeCa11vH_tWUGE;DZ&L@JKf{`tz*`C34lTlr$%_Byg ipKmYM^w`3omyRpAqszS%d$@*~1kd<8;iTUQKYs(7-)J@f delta 470 zcmYk%y-LGS6u|Ms#;<-@DM~5r5EK_B7^4PTL=nM39g64!Tx+4x(nyk0>e59KTpXg4 z;H-0Bz`-gABECRZAHk{M|6&mjoc!)Rmve6JL+m5k>ZY_?g-DV)@`g;4ag`5IL3!rj zI5ttkD>U&MZG6H({Kf?KQ1-u3TA%JB%-^* z4~%_J)cmRlT(6+-xrb#haM2f@&MR*rDmz3 QyGQ<6{X}%m!>;!B1Ei@zApigX 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 96b114a31b..b167afea3a 100644 --- a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po @@ -1,31 +1,30 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 # mic , 2012 # mic , 2012,2015 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" +"Last-Translator: Wojciech Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 msgid "Dynamic search" -msgstr "" +msgstr "Dynamiczne wyszukiwanie" #: forms.py:21 msgid "Search terms" @@ -69,7 +68,7 @@ msgstr "Ostatnie wyszukiwania" #: settings.py:14 msgid "Maximum amount search hits to fetch and display." -msgstr "Maksymalna liczba wyświetlenia pasujących odszukań." +msgstr "Maksymalna liczba trafień do wyświetlenia na ekranie." #: settings.py:18 msgid "Maximum number of search queries to remember per user." @@ -92,8 +91,7 @@ msgstr "Typ" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 4323224f8e8073e66ded4ba7aae413276f2336aa..19c3bed3d97215edbc541b4a80afa296ddf677e4 100644 GIT binary patch delta 458 zcmXwzu}T9$5QaA~F_Hu|DXc{11uop3F+vI@Xkn8W)F6V*db^T^++Ez=3u=>BFo;$* zR>4{;!77bDf{hPi<$t0BAK&fn%*{W|zZAw_)!ZFJEr3;U3QFJsr1cJ#zz1-_Cuo3T zhOv3L1uw#Ta2Y;^bFhGKfC3eqzq5>aaCwfgO?V5&&M_O|V+9vuxC-CHMfeHEEGvMt z(q(DoLAoHVG&KIp(268t#G^n8GLq|{&)WP_g-J*}jFZUz-BMp!LpG*!X@frTQY1(y zGaT@%+GNv136Mg#gVhit!$F- zdjEaC*L3~o?aXp!r>o;2(VSYyHk)$6S!ebdN*z-;dqlpNgd{CZGO%34hB%!iCg7SR ig|V@k>)LH6d$M+fKzK&;P@0QG8P0lE4b(NJH2VQIfn=5d delta 203 zcmdnOzMQrGo)F7a1|VPoVi_Q|0b*7ljsap2C;(zJAT9)AHXvRB#C$-!9*8F}GBE4| z(&j+y&&0sM0i@f3v=~SZNCTz8<^q`v%s>nVzKIo?xuv-Zd8N5YsYR0|80{x#GWwXB z>Ka(;8kr~jtHkWfo`V=jpm6mZVxK7#SD>)mi8o87LSTSs7Sv Ne#I!jIN6Rl0svrJAxQuL diff --git a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po index ef103cdd86..8156467484 100644 --- a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -27,7 +26,7 @@ msgstr "" #: forms.py:21 msgid "Search terms" -msgstr "" +msgstr "Termos de pesquisa" #: links.py:7 settings.py:8 views.py:56 views.py:70 msgid "Search" @@ -35,7 +34,7 @@ msgstr "Pesquisa" #: links.py:9 views.py:77 msgid "Advanced search" -msgstr "" +msgstr "Procura Avançada" #: links.py:11 msgid "Search again" @@ -43,7 +42,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "Utilizador" #: models.py:26 msgid "Query" @@ -67,7 +66,7 @@ msgstr "" #: settings.py:14 msgid "Maximum amount search hits to fetch and display." -msgstr "" +msgstr "Número máximo de resultados a buscar e mostrar." #: settings.py:18 msgid "Maximum number of search queries to remember per user." @@ -90,8 +89,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.mo index e74f9f4bad259fa8aa872add6f41a26345287631..dc8119b4b47d7cdfe0932c6e0efd81facaf31280 100644 GIT binary patch delta 44 tcmZ3%wSsHILMC1_T?1oXBSQs4Gb, 2011 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 @@ -90,8 +89,7 @@ msgstr "Tipo" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.mo index 755ab49123b2926e768201ab915e4db2b37ab509..f127633595331967fe203454a3208c95423943b0 100644 GIT binary patch delta 209 zcmbQozK^~Bo)F7a1|VPuVi_O~0b*_-?g3&D*a5@_K)e%(&4Bn75VHZXA|nF>ACT4n z(mX)g97wYOX%`@U9Ed%E*b>MWWQNe*KpJF6E07ig(!D?$sGo~r36Q}B6xckmQkju` z;@s&hp~b01lZ_dDdChbUjCG9+6%5U+OiU*CGD^cmj0~*|j5cp&e96dNT9TQQS(R9l HU&H_a&AcCV delta 203 zcmdnTK99Zro)F7a1|VPqVi_Rz0b*_-t^r~YSOLTaK)e!&&4Bn85QEeTGBPmm0ci;! z%>$&>f%I`8HUVNwApZ{&gf?SlU|Kd6S7@Aobnduss7#MH``0ECxmSq-a=I80UB$lLFDHs_T0@YdQ8W|`U8Ce-v KZa&5Mk`Vx-(H~3z 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 59e788248d..b8f0c8c8ca 100644 --- a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:16 msgid "Dynamic search" @@ -43,7 +41,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "utilizator" #: models.py:26 msgid "Query" @@ -90,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.mo index b1408c4d29374ffe0c3b1bb5f0babfd81061fbc5..e647b6e6722ed836575c1ffec48711e6608e6884 100644 GIT binary patch delta 223 zcmdnS`Gm9no)F7a1|VPuVi_O~0b*_-?g3&D*a5@_K)e%(&4Bn75VHZXA|nF>ACT4n z(mX)g97wYOX%`?Z&cwjr38Y(r{6uC3hFL)RIgsW8(oH}`ia@#-NK1o+)&m(5K!MW} zE0r19C(fPD5?Y*EG})NZm)A_!z*yJFP{Gj5%EV-HFQYVE#K_Rfz-aSUMn-1I3-d4R XyRiFW&xP$kdeems7n?3@1@RdGyyq=? delta 203 zcmaFDxs9{_o)F7a1|VPqVi_Rz0b*_-t^r~YSOLTaK)e!&&4Bn85QEeTGBPmm0ci;! z%>$&>fwVXi1A_^WZUypvm>C#m0qILXnhQwhvM?|x0_h4MEe)h+0coJpiT$#S3=`K* zpX|x#V`{2vV5w_lqF`udWn`vnU}9jv72vNMlvylWKYNcRgU=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:16 msgid "Dynamic search" @@ -43,7 +40,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "Пользователь" #: models.py:26 msgid "Query" @@ -71,9 +68,7 @@ msgstr "Максимальное количество отображаемых #: settings.py:18 msgid "Maximum number of search queries to remember per user." -msgstr "" -"Максимальное количество поисковых запросов запоминаемых для каждого " -"пользователя." +msgstr "Максимальное количество поисковых запросов запоминаемых для каждого пользователя." #: views.py:25 msgid "Search results" @@ -92,8 +87,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.mo index 857e8a349a6e742bd299d0d3925f876525b62ad5..dcefb90a87f4ce09a0fec48d01191154109f2ae9 100644 GIT binary patch delta 47 zcmeBU>0_DD%4?=;V61Cos92 DP8AN; delta 47 zcmeBU>0_DD%4@1?V5w_lqF`udWn?yS(x%BFj8XhPiFxUziRr0U3dK3`!Jd=XGA055 DP9qNP diff --git a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.mo index 11051b4f1a1466e7b7ba24ac26cd16cac54d3aec..7a207f8a02bb347e6ed9d923348ac8b233367102 100644 GIT binary patch delta 225 zcmdnb`kJ-=o)F7a1|VPsVi_QI0b+I_&H-W&=m26fAnpWWHXuF##C$+}9Ee$f_!r4Wu1`xQvN`fg4Eg0Mg<>`UsE)slNlHfy%)404WA$5CJk0D9*q#F*lGUv^ceB z;$B}lOE97qGD!R7*)49q|b2EK_EnYpF83VEfuNvTB>r`u1w?PF@H zYhbBsWTIebW@TiiYhYqvz!l)H8S)7@lr|Xhfl4_-3WMBwXXQ69kpkQQVWnj5E IhOvPW08tAega7~l 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 9759fa07fa..73a72d8dab 100644 --- a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -42,7 +41,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "Người dùng" #: models.py:26 msgid "Query" @@ -89,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.mo index 9fa56e742d49c06ff21194d11096fc9fb792848b..15f6ee1f7ee95ee70fa1c76e30b0596e4037d7f7 100644 GIT binary patch delta 205 zcmdnRc8#t6o)F7a1|VPuVi_O~0b*_-?g3&D*a5@_K)e%(&4Bn75VHZXA|nF>ACT4n z(mX)g97wYOX%`?p1&BR?SOv(x$Hc&(3#6HuA^Hq~G)TP#kmh7y;9_uvO88H#RAywK zICnZrXmM)MWMf8OUNc<-V_hRd1w%6{6O+lkjM8usBSR|#qs?0xTN&A(Pg(J-V><%? DA21!@ delta 203 zcmcb{wu`O)o)F7a1|VPqVi_Rz0b*_-t^r~YSOLTaK)e!&&4Bn85QEeTGBPmm0ci;! z%>$&>f%Ft0HUVN4Apay21A{J*eg~w%W-~+7DFbOvptu2$1}dG{FU!a, 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:09+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -42,7 +41,7 @@ msgstr "" #: models.py:24 msgid "User" -msgstr "" +msgstr "用户" #: models.py:26 msgid "Query" @@ -89,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/events/locale/ar/LC_MESSAGES/django.mo index fac29ba78c3a9dd052def15254e2779ad345477c..ff24ad2f0d1f2346a7c3b6d7063917a329784a43 100644 GIT binary patch delta 172 zcmZ3?@|LCko)F7a1|VPtVi_Pd0b*7l_5orLNC09kAWj5g79h?6;+KpJ423`%Bp%Jg zz`zEi(||Nk7z{vWfdEj5fx)#bHLpaWq_QBD!7nj4l_8)gKPxr4MAtJ#H!QViqPrch gnXZAcu92aFp_!G5$;L?&8HJGa+*p2N^UYQU0DAWy`v3p{ delta 82 zcmaFMvY5rJ%r>5y$Or(HwhI*i diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po index 4ddd68d4a5..32a4e87fc9 100644 --- a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" @@ -42,11 +40,11 @@ msgstr "" #: models.py:13 msgid "Name" -msgstr "" +msgstr "اسم" #: models.py:20 msgid "Event type" -msgstr "" +msgstr "Event type" #: models.py:21 msgid "Event types" diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/events/locale/bg/LC_MESSAGES/django.mo index 4983d93de36af4bc513095c513b40b65039f6880..a02b200244dada38faf911dbc000088f92d1a1e9 100644 GIT binary patch delta 192 zcmcc2ypg5;o)F7a1|VPtVi_Pd0b*7l_5orLNC09kAWj5g79h?6;+c#L423{i4v4v# z7#P@qv=)#C3WEX2ED!(+F)+B6rRJ3=lvEa^GWaFtrZNN+8 zHPbaP)-^IzFf_9=G1)lDkx}i!q6<4N>{qz3_reB+i;Wk%E^NH8<6;v~Y%7r5$8cfB Kg*_LxG5`ROL@(q3 delta 82 zcmdnUa+%rUo)F7a1|VPrVi_P-0b*t#)&XJ=umIwjKuJp=4N?OG6AOHKO?3?{b&X6E O49%>J%r>5KWCQ?%zY1so diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po index 681724587d..a85eab02ed 100644 --- a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 @@ -41,11 +40,11 @@ msgstr "" #: models.py:13 msgid "Name" -msgstr "" +msgstr "Име" #: models.py:20 msgid "Event type" -msgstr "" +msgstr "Тип на събитието" #: models.py:21 msgid "Event types" diff --git a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.mo index e5cb6e9f5939e3ac5ac9606522bcd07ee58ffda0..f83374badf33ce1f8b6d6164a0a2f293aadeb820 100644 GIT binary patch delta 172 zcmdnR(!yGQPl#nI0}wC+u?!HK05K~N`v5TrBmglN5GMjL3lQf3F#{6=Lm`mj1>zzg z8>F`ZNHYRy5CHK(04T)3;98cNSE5i-S&+)$mzbN%5Kxq#m6}|l>zSe(mRdB?-Hz8x n*T7iU$WX!1%*w=My#Zr delta 82 zcmZo+-Nj;YPl#nI0}wC*u?!Ha05LNV>i{tbSbzv71_nzY1yTb86AOHKO?3?{b&X6E O49%>J%r>4{!3Y3WnhEm& 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 f2e06d2925..2f22e47446 100644 --- a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" @@ -42,11 +40,11 @@ msgstr "" #: models.py:13 msgid "Name" -msgstr "" +msgstr "Ime" #: models.py:20 msgid "Event type" -msgstr "" +msgstr "Tip događaja" #: models.py:21 msgid "Event types" diff --git a/mayan/apps/events/locale/da/LC_MESSAGES/django.mo b/mayan/apps/events/locale/da/LC_MESSAGES/django.mo index 7feb42b840f4ad471c11f1ce6814e17bc2c6afba..4212a5d75f2b1e05622c4a8232cb25ff1d194214 100644 GIT binary patch delta 174 zcmcb>Jcp(Jo)F7a1|VPtVi_Pd0b*7l_5orLNC09kAWj5g79h?6;%STw423|N4~RLK zAmZXc8Ym0~AhSRKD8#_vT9%quqEJ#J%r>5~V*~(ulnP1! diff --git a/mayan/apps/events/locale/da/LC_MESSAGES/django.po b/mayan/apps/events/locale/da/LC_MESSAGES/django.po index a1a43442b6..78f3bf25c8 100644 --- a/mayan/apps/events/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 @@ -41,11 +40,11 @@ msgstr "" #: models.py:13 msgid "Name" -msgstr "" +msgstr "Navn" #: models.py:20 msgid "Event type" -msgstr "" +msgstr "Hændelsestype" #: models.py:21 msgid "Event types" diff --git a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.mo index 45403cbe818cc20bb80581c2294d91f2aa17e69d..c0423b3275c0c6dd2e04064a9d894f400e292a13 100644 GIT binary patch delta 205 zcmdnSae`w)OX@mC28OFZtj55=(8A2Xzy_pO18Hs`y$MM30_lA~nhQvu0n$Q1`Z|yn z1JbX6Gz*Ys1QH;c4M>3WaRX^>AT16Rci#BYf|1uu*T7iU$WX!1%*w=MvL2JPD@?@5 z(8|C_+W-i-d=iUGbVG^~^NMp4OY)1X6nqm)GBOj36`WEtigHpFY;qy|B!^tfV!foy LD!a`!OuHBXYF8)+ delta 187 zcmX@Xv5jLwOX?g(28OFZtj55=P{ho@zy_pe0%>j_y#Pq_0_inCnhQwp0@6Z2`Y4bV z1JXBuGz*Y^52e2VX^_63Kw29}vjQbS@`f8Ka(;8kr~\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.mo b/mayan/apps/events/locale/en/LC_MESSAGES/django.mo index e3c453f40d0c149930225d912997a40dcc07ee46..5aa7081ec4aafab0473994e66ad59e1342289b2f 100644 GIT binary patch delta 23 ecmeyx^owai7q6MFfw8WUp@N~Am5Is3>5l5l03KakV diff --git a/mayan/apps/events/locale/es/LC_MESSAGES/django.po b/mayan/apps/events/locale/es/LC_MESSAGES/django.po index fb23609f2c..9fa8d6608f 100644 --- a/mayan/apps/events/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:07+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/events/locale/fa/LC_MESSAGES/django.mo index cc9318e2c27aa5a876e77e0c3c28d6a293a1cfed..a6e9dfde8ca96c41e5f425c9c6cb85b987508612 100644 GIT binary patch delta 44 scmcb?af4%nA``Efu7R, 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:07+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/events/locale/fr/LC_MESSAGES/django.mo index e5230264bd2d9b35be079fbe35cbe34995166168..f87b6844053cd5ab846caaaa15d360eda82dfa28 100644 GIT binary patch delta 228 zcmdnRahGF4OX@mC28OFZtj55=(8A2Xzy_pO18E^3y$MJQ1L>ncng>YV1k$2F`WcXx z0MdVeG!QX}vM?~P0%=Jg%>|_8fwT^g)`E(MZ+vON$ZMu+V61Cos9Kw18+-1|o(}K!O!We*@B7K>81m)&bJ&ED&*%jV~=2c};Z1uvtPISx4S;~lC$YFhH>4;ruQ(^MB)`Z?At*m7wWuT?NEas-W#(_5&t%8Q KxMK1>=6V2R*d{mt diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po index df0c3450e4..2cac68c428 100644 --- a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po @@ -1,27 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: -# Christophe kryskool , 2015 +# Christophe CHAUVET , 2015 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:07+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" +"Last-Translator: Thierry Schott \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" -msgstr "Évènements" +msgstr "Événements" #: apps.py:55 msgid "Timestamp" diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/events/locale/hu/LC_MESSAGES/django.mo index 48a4dc0056c05a7b259e0fc274fd3fadaf0470aa..51e6c0d24fb9fe1df3700e5f8194bee2efdd9b56 100644 GIT binary patch delta 44 zcmcc2e3^MdE3cWZfw8WUp@N~Am5Is3N$Yrg67$ka6Vp?z6f#OD+cQQ_Ue2fk065(a A8vpKd6S P7@AobnQdlfv}XhWpJfUQ diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.po b/mayan/apps/events/locale/it/LC_MESSAGES/django.po index ccc4357dcc..ea02647d56 100644 --- a/mayan/apps/events/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,21 +10,20 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" -msgstr "" +msgstr "Eventi" #: apps.py:55 msgid "Timestamp" -msgstr "" +msgstr "Timestamp" #: apps.py:57 msgid "Actor" @@ -41,11 +40,11 @@ msgstr "" #: models.py:13 msgid "Name" -msgstr "" +msgstr "Nome " #: models.py:20 msgid "Event type" -msgstr "" +msgstr "Tipo evento" #: models.py:21 msgid "Event types" diff --git a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.mo index bd9221360a6f2fcba20fcf7f569ac01652e89f24..91b54f06f32108af31770f5e453cddd8381b1b90 100644 GIT binary patch delta 117 zcmaFN+{zMqPl#nI0}wC)u?!IF05K~N+W;{L1OPD$5C;PBN=62TFeo3S0muadkX|_O jOUzB3XyMCirfXoVYhi{tbSOD=#prj>`2C0F8iJ`u{rn&}}x<)1n OhGteqW*gTBG6Dd4>Iyah 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 f612817407..dc1a665890 100644 --- a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 @@ -41,7 +40,7 @@ msgstr "" #: models.py:13 msgid "Name" -msgstr "" +msgstr "Naam" #: models.py:20 msgid "Event type" diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/events/locale/pl/LC_MESSAGES/django.mo index 08de0c4c7d00a8297bd6dda5233e338a943b48f7..99bac955165df507bbcc64f26e53805b79c1c3e4 100644 GIT binary patch delta 44 scmcb|agSqzA``Efu7RCIIrr39, 2015 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:07+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/events/locale/pt/LC_MESSAGES/django.mo index 13d2b76c27e652ac628dd5c00fa3d816afea2f18..88ac37510f80608d41681d13ca1cb05998c190c9 100644 GIT binary patch literal 1031 zcmZ9KPjAyO7{)Ug{{rIAxFYa`kT!vrw2Uz_idNQCn$(Q4WxH|k61NRBc4WKjCdQS^ zZb)3<##cb%!Uy2Okt5=>@HlNZn59=gzpvjse(OGeW~M(nSXU6Y5Qm5xh~Egi$du#U z24}%@;40{XP4F`K5~k}|dEEZif9LFQwd=H%v?I{=s^FdeBSO&yxzliCY;>@6*HkiQxRll-C{fD$#A(f?Iagq9qzK=$_ z$@em=d(!ua`pdNHlgg98e|+D^a$8Ir8Y?DrpW!V6(%f#f$VNR1$Jjn<>^27@_h~8H(t?anOGr7k15SfZ98t#<&!>pV}~mm zibSTF=munYH#5ic2Ba` zG+@ffATM2Gi{tbSOD=Xprj>`2C0F8$-5YRc};ZwU-~a#s diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po index b54f1a6387..57dae54075 100644 --- a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,17 +10,16 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" -msgstr "" +msgstr "Events" #: apps.py:55 msgid "Timestamp" @@ -28,43 +27,43 @@ msgstr "" #: apps.py:57 msgid "Actor" -msgstr "" +msgstr "Actor" #: apps.py:59 msgid "Verb" -msgstr "" +msgstr "Verbo" #: classes.py:17 #, python-brace-format msgid "Unknown or obsolete event type: {0}" -msgstr "" +msgstr "Tipo de evento obsoleto ou desconhecido: {0}" #: models.py:13 msgid "Name" -msgstr "" +msgstr "Nome" #: models.py:20 msgid "Event type" -msgstr "" +msgstr "Tipo de evento" #: models.py:21 msgid "Event types" -msgstr "" +msgstr "Tipo de eventos" #: permissions.py:9 msgid "Access the events of an object" -msgstr "" +msgstr "Aceder aos eventos de um objeto" #: views.py:31 views.py:90 msgid "Target" -msgstr "" +msgstr "Destino" #: views.py:75 #, python-format msgid "Events for: %s" -msgstr "" +msgstr "Eventos para: %s" #: views.py:98 #, python-format msgid "Events of type: %s" -msgstr "" +msgstr "Tipo de eventos: %s" diff --git a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.mo index 64f9a51f435740fbc5b98576dc7484ad93150d3b..d25bc11aca7b136dbd7814df1f07b2f848649fea 100644 GIT binary patch delta 44 scmdnMv4LZQA``Efu7R, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-08-20 22:07+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.mo index a949c22e119d5798a23c9ec5b5d638b96326d939..b8e2e8b9e6964956b9f353da2124e469ef17ccee 100644 GIT binary patch delta 173 zcmeBXxyDj|Pl#nI0}wC+u?!HK05K~N`v5TrBmglN5GMjL3lQf3@kK@khC(3C3&hS$ z5b;1D4HO0gkXaxA6k=d-ElbTSQ7EY_NM-O#%uQtoD9X=DO)k;(OwkQXEt=?V$7`l* kV61Cos9JInUnx)<08+ah(f|Me delta 82 zcmcb{(#>LVPl#nI0}wC*u?!Ha05LNV>i{tbSOD=wprj>`2C0F8i3PsArn&}}x<)1n OhGteqW*bjcG6DdC&\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" @@ -42,11 +40,11 @@ msgstr "" #: models.py:13 msgid "Name" -msgstr "" +msgstr "Nume" #: models.py:20 msgid "Event type" -msgstr "" +msgstr "Tip eveniment" #: models.py:21 msgid "Event types" diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/events/locale/ru/LC_MESSAGES/django.mo index 577cd2587ad0bd830fcc86f2ae1df02a3997e456..43dce4c222b51dc204159da49653390a9947d40c 100644 GIT binary patch delta 183 zcmcc3vVpb!o)F7a1|VPtVi_Pd0b*7l_5orLNC09kAWj5g79h?6VnrqfhC(1M3dECv zY&Iah5=b)wX%GOJ1p+`J1_sx%)VvaflFEWq2EWAIREB_}{H)aE5?#*}-LTZ6iSBm1 zX1WH(x<-ZyhGteKCL1T6WR$(I=)#T*`xP!WUf6eG}R+z`tCbd3sv diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po index 1aba619f35..a702e85619 100644 --- a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,15 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" @@ -43,11 +40,11 @@ msgstr "" #: models.py:13 msgid "Name" -msgstr "" +msgstr "Имя" #: models.py:20 msgid "Event type" -msgstr "" +msgstr "Тип события" #: models.py:21 msgid "Event types" diff --git a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.mo index 3bec0f2411cb25f077db4ba6404309a967bd9ce3..8fc32202a62b05550313b4ef16694a89291b9073 100644 GIT binary patch delta 116 zcmbQivXdqBo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLdyEVWVL+N0h)sbSfLt&D m>4gKo#N5=07QVb@x(3F&MurN8W>zL98z;3fvUujEG5`Rm;tl2i delta 82 zcmdnVGK0n9o)F7a1|VPrVi_P-0b*t#)&XJ=umIwFKuJp=4N?OG6GMG@O?3?{b&X6E O49%>J%r>rXV*~(wSPF^& 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 845e97e7a3..ed15ca2c8a 100644 --- a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" @@ -42,7 +40,7 @@ msgstr "" #: models.py:13 msgid "Name" -msgstr "" +msgstr "Ime" #: models.py:20 msgid "Event type" diff --git a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.mo index 440c5a4a01fdc1b8b8bef0c050a72a71b4269359..c9727e3b438c947583302c89eb13266edc543674 100644 GIT binary patch delta 178 zcmcb|ypE;*o)F7a1|VPtVi_Pd0b*7l_5orLNC09kAWj5g79h?6;w6j>423{i2#Cd) zAmW-p8Ym0~AhSRKD8#_vT9%quqEJ#J%r>6#VFUn(5(\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 @@ -41,11 +40,11 @@ msgstr "" #: models.py:13 msgid "Name" -msgstr "" +msgstr "Tên" #: models.py:20 msgid "Event type" -msgstr "" +msgstr "Loại sự kiện" #: models.py:21 msgid "Event types" diff --git a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.mo index ef6cd393909d99fb76138ebb1471d61b8b44497d..c256d67e5056bd203c7d204baeedce593bf49eae 100644 GIT binary patch delta 174 zcmcb?yo9Cxo)F7a1|VPtVi_Pd0b*7l_5orLNC09kAWj5g79h?6;(3e=423|N2Z#lj z7#P@qv@DPY3WEX2ED!(+F)+B6rRJ3=lvEa^GWaFtrZNN+8 tHPbaP)-^IzFf_9=G1)lDjZx&uuI?whw>{su`{}%HhNlyHpD*9Q004(kBa;9C delta 82 zcmZ3&a)a68o)F7a1|VPrVi_P-0b*t#)&XJ=umIwDKuJp=4N?OG6AOHKO?3?{b&X6E O49%>J%r>5KV*~(!{0eFS diff --git a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po index 0f9daff88d..0098115ce7 100644 --- a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:44-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 @@ -41,11 +40,11 @@ msgstr "" #: models.py:13 msgid "Name" -msgstr "" +msgstr "名称" #: models.py:20 msgid "Event type" -msgstr "" +msgstr "事件类型" #: models.py:21 msgid "Event types" diff --git a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.mo index 935ceae21e4e8d51d09eaa959971736ec79e6cc1..38b88bd856b6a3c14224509d50108028c432391b 100644 GIT binary patch delta 443 zcmXxgze@sP9LMqJ{8gz)Ikc2uHU!1hotcCX6j*Cg4G~n7IvA;t77l?F2GLeWtUD>T?g9!>RZrtDHuN)B!{Gryb?8GO^8_> z!g1WjX*|aWK4A}jp$os!gFo1XPKOY~=)+N*z!0wCyC$ll!o@N-RynN}H!+1DID&Dv z5CPmkFXpiuE7*%iIENQFgD*ISL0ZtEQ;t`3Mx9sXR8cif^$Duw|ER_4PpI(`b_r`m zdk!Uw>HU1RP%er2Os*^zio2QY-XA5a?ijGH9QCQVZcOS?Gi=5av6ybe48xmR)R(dc zxl*oJ(34x`Y$6;r%>U=2X2LWdcbuD=weAjC{qE0*Y}hsXRNl#kys?jkyp{K|WuM8G Puuo*uuE_^0?P>o4*$+<~ delta 633 zcmYk&F=$gk9LMp0o{2_n#X4DP;Z&-vwK1tpseytnZh|0PTr~7uL3paS03f0vGTTp2OdG7|#YGmv9ml-oYbS!{naF{qt8iF0vtC*!-Y* z53f-0IZG4nV=~}YPUJRj;zj(1dHjQOm}lw*T*Q+Y;tj0hBJSWc{zAscQF4eRD=$kT z$JuaKx|o^%ivGv+<;g#Dj0_Rp$n9!nEedt4R;v$nSWy$^vZ_Y0u7>MMKYCzl#@^42 z+J(%AyEoH9=|SaWuXD<%P)E9^m5$@JI5|i+Q|5o^pd?hLzPzlBS*b_SdZAxnY#|u4 z6T!>j@=WpC%aA3h?=fz`=_o|5c@GZZtK~-(LtlQcW%eMp+7C_C_9oneN`QNxqIuIy-PaEwR~gH Rnoer_O}EYHj(w8b{R`-$qQL+F diff --git a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po index d0bedefb38..2191565e1e 100644 --- a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 #: views.py:104 @@ -32,7 +30,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "الوثائق" #: forms.py:34 models.py:44 msgid "Folder" @@ -60,7 +58,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "تحرير" #: models.py:20 msgid "Label" @@ -87,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -95,6 +94,7 @@ msgid "Remove documents from folders" msgstr "إزالة وثائق من المجلدات" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -176,13 +177,13 @@ msgstr[4] "" msgstr[5] "" #~ msgid "A folder named: %s, already exists." -#~ msgstr "مجلد باسم: %s ، موجود مسبقا." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "تم مسح المجلد %s بنجاح" +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "خطأ بمسح المجلد %(folder)s : %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -221,11 +222,11 @@ msgstr[5] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -258,12 +259,12 @@ msgstr[5] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/bg/LC_MESSAGES/django.mo index c5a8c76e7c130d4c54f3af4ff40aed0f8cd42517..25f6106c44fd9c68c8e58d1bcd42bda635f31217 100644 GIT binary patch delta 412 zcmX}m&q@MO6vy#1&S;t%5!s>$DqEDGH6|8P(L!CfmfEBe(I3GK+8MQoRuwmbc0EF& zLPh!jwYjtEDOv~7qVI@xVECMKXYQHbN7xBnP1n~%WYQ2x;1(|7HBR9h2JjOt{6Zi8 zU>}+ukthZ+hI2TM1-#^&V=OTHxx9`=%wZE3@!OKR4ACULA|sf?e%$D}jd|uOx{IE1 z8HY*1{%$z_(Jl9$8_o^tmdWFW{3}0As5b>L=0nv`ziMF{5)r*VZld=#8iq->9WK&biw3%^C@{>bv^|q(Dz* delta 598 zcmYk%OH0E*5C`x{O??Y`Q$*QT1r-~tv{j2>RVp4mdoq|U2vH%cV7=5T__`gqql&BL{;2NyM1Z>5t zK|Te83l`x5e1N#0Ig0H;+p*8&QMmTgc3=h1rOfVyv)dTijv0<_@>A zY)nis({{LN6&XL=7W=~8)CSx+&EHrJ3#kDr#~Ym!f?3?=`i$}a5EwPN`Fc$ zCJwf?xDbT{+b$Z-0^u5w+n#h{dOk6eV#!Q)CgZBe;BRI+olT~zUy)udcQ0S0uTJDE zlXdAa`6fNAXXzp5HKvypRGdqnsj|9Kmk7!@tf*5Qc&@3(tK)i?HvIV0N%D95_fu|3 m&rJQ#3npvwNu8);Sqt7`>Qt5Sw688O$*bWOqNA>g9)AOAk*Ll9 diff --git a/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po b/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po index 5b7430995b..2b96910d4b 100644 --- a/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -32,7 +31,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "Документи" #: forms.py:34 models.py:44 msgid "Folder" @@ -60,7 +59,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: models.py:20 msgid "Label" @@ -87,6 +86,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -95,6 +95,7 @@ msgid "Remove documents from folders" msgstr "Премахване на документи от папки" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,6 +109,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -128,7 +130,7 @@ msgstr "" #: views.py:141 msgid "Must provide at least one document." -msgstr "" +msgstr "Трябва да посочите поне един документ." #: views.py:175 #, python-format @@ -168,13 +170,13 @@ msgstr[0] "" msgstr[1] "" #~ msgid "A folder named: %s, already exists." -#~ msgstr "Името на папката: %s, вече съществува." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Папка: %s изтрита успешно." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Папка: %(folder)s грешка при изтриване: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -213,11 +215,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -250,12 +252,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.mo index 9c52cc27ba747220ddeddeda76148834ba23027d..a8cb3771f2d1cf377a91f9a63790b3e4c0efbcd6 100644 GIT binary patch delta 433 zcmXxgJxjwt9LMoXpVUSN9aN~rR2LDVNo-3A2vVwpix23ao7xQVp^+vQ1)*<2Idm6H7Rr{ST<2 zI;>!^cSDvTZt1hZ4tv*2=+OI(d>QAWBY0eOGM|&$a zf}@KwuN8%2wdqGQ$jsCKlr{reE1Q diff --git a/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po index 1e4b6bf599..c2dee7fe43 100644 --- a/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 #: views.py:104 @@ -32,7 +30,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "Dokumenti" #: forms.py:34 models.py:44 msgid "Folder" @@ -60,7 +58,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Urediti" #: models.py:20 msgid "Label" @@ -87,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -95,6 +94,7 @@ msgid "Remove documents from folders" msgstr "Ukloniti dokumente iz foldera" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -170,13 +171,13 @@ msgstr[1] "" msgstr[2] "" #~ msgid "A folder named: %s, already exists." -#~ msgstr "Folder sa imenom: %s, već postoji." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Folder: %s uspješno obrisan." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Folder: %(folder)s greška brisanja: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -215,11 +216,11 @@ msgstr[2] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -252,12 +253,12 @@ msgstr[2] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/da/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/da/LC_MESSAGES/django.mo index 46642258cc46c1ba3520b612ad979ded59b2c147..26ff8d9f64c6c78bed42059bc12d9e760d99f716 100644 GIT binary patch delta 400 zcmY+nCe>GoeT<29bBAT zbaHXgt^NdEofIc$-<#^-fscpWoO@1kp1(EwZYtYQ%tv5qTv zinI8D6Znc__>MXJ#5w%N1uW?zGq{dtoHcPxq%U6?5r-GPF&ey!C7!R)#Cy!*BdP_@ zXyXv)@dL|f(ZpOCC(KSueVDpKOIob@S2?jpf38l|GPNk#(O#x%QSRw(oj>eZCiX-d#JB Y*OF`FsZfjd)A>x^Y;?O}a+7WU0JJYUumAu6 delta 600 zcmYk&KTpCy7zXgSSVa*AaY8gX|0SS6fCy108FbRbX!rmPJqTC|=@lZ035%nXjm#!a z4jL2V=45no@(VcWV4|y|@wtNNg}1*e_xA2-uY4!|&Pz}|C5!-S8g+!4Kz*R(NGe40 zFa_6P0VZG{W66N7J zjKeo551Je%nu1#pKPuxAfi)O}T_^)wKnAbj0(^#H_yutcjiH86a*R@eXdDx)xdUgp zoAhtp;S5w>u4l#mlqZg)4`M(Tmi zNbkw0U^+Lr%^A0>x+NFfNmTr`{b(pM5$>Q?S%8G+y^r8I_und z!h?U3nOrJ!^Xl;{%Nr&Fw#;&+#Z6Yz8V%ly%J&5_atkk@83xq3lT<^FSG~+{%QkYa cZmL0CfwVR+@v8AZtlKDeWxaJf;XJ6-A1jY{(*OVf diff --git a/mayan/apps/folders/locale/da/LC_MESSAGES/django.po b/mayan/apps/folders/locale/da/LC_MESSAGES/django.po index ed245b9f79..9f2b651ef7 100644 --- a/mayan/apps/folders/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -31,7 +30,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "Dokumenter" #: forms.py:34 models.py:44 msgid "Folder" @@ -86,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,6 +94,7 @@ msgid "Remove documents from folders" msgstr "Fjern dokumenter fra mapper" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -167,13 +169,13 @@ msgstr[0] "" msgstr[1] "" #~ msgid "A folder named: %s, already exists." -#~ msgstr "En navngiven mappe: %s, eksisterer allerede." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Mappe: %s slettet." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Mapper: %(folder)s slettefejl: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -212,11 +214,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -249,12 +251,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.mo index 8c7e630d1646196653c53e5d8a0cdc08d094b7fa..da3d7addfd8d00c0a0da8fd190a5bdaf829eeca6 100644 GIT binary patch delta 869 zcmY+?Pe>GD7{~Ev*FU3ew*GBPv!=Df5}M5>OG<GkVSrRW{3*K!(M!W?f41jv4)y>j9FL6&Lm!B{Dawj9BeY{!t2gi)PWYAOUPx<-T1W| zzsDr&+h=Y%u;xDa?%c)8Joh;EFkZzRK0;;WBXZdWol?4u2T)xnB(M#AR7SGSVbu4d zSf<%cx&Wt93p{hZG$MNQb7Fbgq@O8F}!AyKxpksg{ds8B5^D4QrdOtBYQT(uPa z|C8M4^g2;DP5(^kRw#`mA=F|9KiACYO8Kprk4LIUu&9XyQrkB5~hY7OtZo+U1HpM>c%LkwMh=HxB*zv2Q+aX5PH_e($|~P<^FtVY#B{ zsv?>x+bAOiN_FA62p8gLp;C=_43n708oZ60@F|wz>(F<&k^7HWjNh>wRgqFr*o^YN z2Dd7;pmtM{j`~m<9>IP*g)-nxOyL`hW63(DO0f;Au?u;nMp61XjvH_SWxyQn!854w z7Rtn)V*}%>msI$vPh1-D3(5yoeBFWva63+81ztcOucHjSk=|s$O1#VJX_Se+Dj_Lc zL5)dfy#>cY4VE*$Ix7{tgtS#R!uvbn{Uemjo?#`v4d1^H{fY;99*rs0gTvU3=TRo| z1Zkp{ktJ6jke~X+Wub~nY(4ve4Mh^ zf%|ck{(a2hMU(_rQ4)%jvHq-Bu>5=*%u)uFh)`rzB;zKEY=LY~Jw-xO=qCv2RL+8Q zD#4ixLMAIA2Uhl6LK2jy4X(2OL^DNZEVGr6?BrC-KSK6w2St`r_FqEweOFLhJI!@r zU67Sj19~!-wT-JCYsT2Uy2;zCt*mP-drq6#jOTkvHDKF%>1U)cGQ|6qwf3!^woTUf zMjO}7x$+{Yw0i1L(4lk{HnFvrPp6INP3E)Nx#ZGn(P%-@3D3BTL(!9EU5WOdMCU%; z(cRnGy?8HLKltZKs<*wnt(}OCSe~C4cP+=uTD}Z7Xk2Gb@1GF*tR*Husi-${V`@(jAv->xp|2lEWe~Qo3 k(|XEeUp(~E)BaK_cDkT;&^UR2-nc4kZ#nZOGi4n08`pxd&j0`b diff --git a/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po index b876f2b09b..3c4e22c4d0 100644 --- a/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -14,14 +14,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 18:06+0000\n" -"Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -90,6 +89,7 @@ msgid "Edit folders" msgstr "Ordner bearbeiten" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "Ordner löschen" @@ -98,6 +98,7 @@ msgid "Remove documents from folders" msgstr "Dokumente aus Ordnern entfernen" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "Ordner anzeigen" @@ -111,6 +112,7 @@ msgstr "Primärschlüssel des hinzuzufügenden Dokuments." #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Ordner %s löschen?" @@ -170,17 +172,14 @@ msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "Ausgewähltes Dokument aus Ordner %(folder)s entfernen?" msgstr[1] "Ausgewählte Dokumente aus Ordner %(folder)s entfernen?" -#~ msgid "User" -#~ msgstr "Benutzer" - #~ msgid "A folder named: %s, already exists." -#~ msgstr "Ein Ordner \"%s\" existiert bereits." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Ordner \"%s\" erfolgreich gelöscht" +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Fehler beim Löschen von Ordner %(folder)s: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -219,11 +218,11 @@ msgstr[1] "Ausgewählte Dokumente aus Ordner %(folder)s entfernen?" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -256,12 +255,12 @@ msgstr[1] "Ausgewählte Dokumente aus Ordner %(folder)s entfernen?" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/en/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/en/LC_MESSAGES/django.mo index 87a387aeb551d7508e58434b6c11895b21833466..856045576aa6caf890fde2bd1fd94e1133fcf79a 100644 GIT binary patch delta 307 zcmXxfv1-Cl7>40Lnph2WadBu1p+zWyVxnl{B*oF2kk-vMP;|~E6gjwvqc>2x>LLyn zdJXQe{&H_v10f%^t3(VmL zFK~x<_>EOe@CL6kBJbQo?D74TO?$Dp_J1%$4ZfiU=cvIYYH)=b+@l6hNKYJ=XLQq_ z0HG}fy>PU})AVRh`q9($W%N4fdX@WU^JBYaY;DcfiOexGD7I^jW-ahNzuj%MJ|D9k K%N*?T`N88ZTyPupibfk$BIzImb7TKopkBsCcS{toI)Xf(6nMf=;AIKbSZ+j zAg)fLllM>@6}$%Vf0EpS2OfS2=e*|$xpAH{!|}X*C#)=4CRb#R{1CHTOJp5OxQ`7i z;yv!+JLd2gCvhz$vWa zsP?Jv>8?6y9&4|rHi9kH^t-z04V1p<1ic`1t;O&&{pzrpj}M2d_L8bcb7n$$+Sfhp rsi5C#=^$wLeSc64NA`JGO&w-;3U0Mf-d3ebtz3D&P3>B_|84yPXwhBH diff --git a/mayan/apps/folders/locale/es/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/es/LC_MESSAGES/django.mo index 9c3974748fe8a8316b50dc57ef99ce9cf9875c62..49e11618c37bebf997440988cc078570ce311296 100644 GIT binary patch delta 727 zcmXxhKS&#K6u|M{*_hPW#QHC>w&GzCrRm9CJVTo zA_}6Dh#;j~ms>itG}2NK9F;Di(50(_e>SDxcTFC7_qlhu`~7=s@p4<~cS~SX5qHUZ z z0}sAo91k#ne^4g;i!$IP%0yS#jrF`#kG*&w6Zil#*pKtrg?re7`{?2kuClood_2PZ z>KCK8^G7G6H=~JB96_0Q0_AjGRcjYJsTXh*x9~Am@Cn9l{$EfQ!_>1VC%cF;-VVxw zK46IX)n{(_sWO)Y9#rcK?5Dm)Il4ZM=^?&E+3_;U!aw2?ensh;ELJwsNXmo~ZKSlV z7Pq*OZ%eWhIcC|htd=npt@5LTE1U9zQ}_GZTCHnH%OqH%x^Qnp zoP7T#UvPD|s81DVocvpP?48uDXx{h0b8RCU92-g*=AeGU_dJM(7VypM^e1FJv#W6upGsbZTllTi|elIUav4E$rjQ#Ad z))>@yv5Cx89qh8sE%cz=#1_#n;TJqC-`kZsh=bUJS(JlK;|aXB_gu!~JTG7oALA5$ z#q$^^+a&v|83vtbP)e|f5^x>+aT6uOmzc*lID|V$EY-&1v)G67d;v$Xh;r2)j^T5Z z8`(xlGBRO@HE+vur%hgJK6LdAB=Y6+g0`1vVQz__?a7^27VC>3@ zHp@;}3p4e*(HD^-pGKQgQ=zUH*VK$QLEs1Sp)p8>>S`mFMA@5C(cx0LY{GDU$#qvU z^*=4Mkyt4-!N&FYY(Ag1rqa1_ot-G;CeqfpWp&QoOy4pOozU^U^cA~i3OZ+H_vcyp zLN;IDj(0~=CC}DnJ6JR|^gV4{?fKPv0ShFB6}x$Qlc|4i-HmkqJN?FP+sM%6=E}xF fjq6k$&#pA%e0sg?)cj2SL;G5!y%a9lf#a*cJN=7p diff --git a/mayan/apps/folders/locale/es/LC_MESSAGES/django.po b/mayan/apps/folders/locale/es/LC_MESSAGES/django.po index 67c594d9ae..7225888d67 100644 --- a/mayan/apps/folders/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -89,6 +88,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,6 +97,7 @@ msgid "Remove documents from folders" msgstr "Eliminar documentos de las carpetas" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -110,6 +111,7 @@ msgstr "Llave primaria del documento a ser agregado." #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "¿Eliminar la carpeta: %s?" @@ -169,17 +171,14 @@ msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "¿Eliminar el documento seleccionado de la carpeta: %(folder)s?" msgstr[1] "¿Eliminar los documentos seleccionados de la carpeta: %(folder)s?" -#~ msgid "User" -#~ msgstr "Usuario" - #~ msgid "A folder named: %s, already exists." -#~ msgstr "Una carpeta con el nombre: %s, ya existe." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Carpeta: %s eliminada con éxito." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Carpeta: %(folder)s error de eliminación: %(error)s " +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -218,11 +217,11 @@ msgstr[1] "¿Eliminar los documentos seleccionados de la carpeta: %(folder)s?" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -255,12 +254,12 @@ msgstr[1] "¿Eliminar los documentos seleccionados de la carpeta: %(folder)s?" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/fa/LC_MESSAGES/django.mo index 7989a9a992b5e760ec08fc345b381e34e53c9d98..8d60ca44791f07f50298ff666be2181c4c0f5fd4 100644 GIT binary patch delta 656 zcmYk(&r1S96u|LOcP%UXVU|HjWds&ku1biPif-YhgLLswQJsQEvw-B8uoB z7zhyy(aHXS{s4>c)FFt@UHiUelOFr_Gc)jZX5ZWej{=28Ks#5&069dyljG!-ix&}h zD>aPTbP%y8_&>-Wt_(rz-2t;CpOSv{zZ}eV3?1J84R(%T4B)3!VZq&3G%2i zuN+o!3f-Jy5od4$_plAGQ4UhU4tzm5$g4B|!5-#Xt5Q+yN2!~`1pBKc1`BwAQG7&?Th;=^@q39x>c{3TfV1XQJ6t2 delta 909 zcmYk(OK1~O6oBEIOj6s#`l$68A6HAIDQU>V6b&dwp$INqwM#KHQxT#qnHE|EV}#Tq z-3@Ns2ySAeT0?xS?8=qYjiAn`hzkW#5J5L?#Q#iV^^kkNnLD}noHIWQB=mt{v00Ub^`Y) zRaSK_I#^i7t@sK9_zfk|50rxp7W*-T8Z#&fM{p0G#vZ(c^1oZS3!h^beno!jH`6RH zX9Sf>lV4rq^dt|KP&)9vWhbXgLH)Q1kKtY%K`Ce&hp~(?e2K@=->y^?hcJW_D1}|b zwRjVyum!m%zk0?+8egNvFzwigG3>)5n8LG|!yB#jcesuFAXy~QZYEyL3)vrLP?Hy1 znB{ZHXO@scB+5IOq|NIXa!5CWj;{taDL$dsI{B{BiNCR#3n@T?TGVz1UG=&q9g>jN ztDGJiFBZ&_zK}m}7P7k6is^i@WabMUGuoU!XH8o1X2L)33-PRP<-fMii0C12n{3bp zvuIA51#L}@j+&M=HdQRn#O;Sh)c$B(_77WjK5(itGmtnmkUF4~gW1%e{Ui`sT}foJ z$xQQ8pv{+dmz;(>=gvBd?p5v7-p*_1wo}tA)ZD71a;xr~v%py7vD0+!#G7A&`~4^W z6&JO%bI*CaviYua->t|qvs4-{MJ?rcE8a0~#l52cPblwV8|{bflkJbfZ|a=iAbUgo E0R#-GApigX diff --git a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po b/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po index 9f78b2bba2..4bc9f756cd 100644 --- a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -62,7 +61,7 @@ msgstr "ویرایش" #: models.py:20 msgid "Label" -msgstr "" +msgstr "برچسب" #: models.py:23 msgid "Datetime created" @@ -85,6 +84,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -93,6 +93,7 @@ msgid "Remove documents from folders" msgstr "حذف اسناد از پرونده ها" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -106,6 +107,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -163,17 +165,14 @@ msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" -#~ msgid "User" -#~ msgstr "کاربر" - #~ msgid "A folder named: %s, already exists." -#~ msgstr "پرونده ای با نام %s موجود است." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "حذف موفق پرونده: %s" +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "پرونده: %(folder)s خطای حذف: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -212,11 +211,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -249,12 +248,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/fr/LC_MESSAGES/django.mo index c361e0b8cb3cc72fb95870fa220bac0a0a95cc13..7c6526145f9a2abbdd7a2a21af254c9a4e22e058 100644 GIT binary patch literal 3146 zcmb7_%WoS+9LI-HC>RQ~KzWqM5L!qI>qiom$Y}^64-|;i;FuhN&F(nfu--K@vrdeF z6I_66k&rlq8!iWKNC=4o7JooFa6&}_iGP3#<;3^5Z>LErMqYnBv%mSx?=?SPJ9X?b z!x+W$7@p^EVXOpR9KjdHKVT8O4n7Qy-OAX#;5>K&d_Cq{;60eP!QO&S43a%xfRBQEAo=kFNOAZXq`3bElKgcLA9eylbk1q; z1@KMqHSlxrEcgeA4?A9n@^TWSedob5;3P|d{1xS9p3zFR*f+YVHI0;?>FM`*= zbKn_ldIp>a9{^k6ci;yg>79Zygd_Bs?4UC#el(~KXpG+wb>#>w9^*c3Z=0iT%kpbc(Y2T zx|Qgw@^fmAEhbLH9_*WAUn~IevBcwX#ZB85cIF|yjWpn$3M@+~)eKy>S3FFC9a_nS zl)j|h;g9h{&vS633kU5Ucf8oC{GmhVC@w|Y@4~=?P03DCL)sKuvK<|MWk*DdX&jfM zOh-^GCbxV~n~vvrTWMXuJjGVcP2sXypfvADzw6k7o0_}A#DedMRJeGAOcdCh=$dre zrtI-|M34JTPB~3dLn+zB8I+zPtA}AoUn<^|emiv~ew$lMHjqYz1X&s}OjU=1Lj{!P zeD27d@wta>-EhQCYSfzaw{fnqVjCMmD#!P#yk_=Hk1s9O)(dsf@ufCuYRj>WmxC>3 zH2f+rtX*mt;e~*_K{ukxC(4xzMtRbhsPM{#>eQ4`o+_6iXw*g5A-y-sO;oCt%5!Cm z!YUGEG^FV%*VI&@b$?Sx1h?)hQ#w8bysg085=KLq?J8fE!n0a@tfh6QS}N`A>=ZTa zcA8?hX!-4ujP}V=o18I(-Bu+x)=_H8(s-e^Qd`P=t`y6K1r!w;jM3A7~+Y;AKT%23!vM9g2k`MJnP7mCE3%9xP<<6WYZVr5vO= z)icS%4y4|^jQnzuwCaYv{}4*I4>^4WUO>EIfn zX{Wz%Ey;;k#evJ5E;XmN8A@@R42%8-lC`Y4P=89^Qp==h4*J~e3M*_(gRl2T>d=ms z*Mm+8cgPz>KA_Wvm*l1`RG{V9gZ?%`+(8%={dL(W7`UBJ>7h1IV-I7t&xfq_X09WS zY04;MtcH4QBGc)Q8&A!Ih7(cGm0RvN9Tuf3Y`(%X;SXF%A|4*Q>Y)9)sDu@llmFhJ zPk&7&N|yrI^aJTRlIpeXI|xOt(u-`v58#LBiuaBb{p0@8{+Ow0)}UD$?XqjGmU+lTh5kS-*d;I*-v}$ued~L>ke7u1 z9HOAZ&@qrs8Qm1R7Iq4|M0AvnQc;IGXi)T>UDF-j%;&v%GxMAI&Aa9Y4GZh_{wIRc zNdMeU@nRnbr;tA*&m494+3?!^_X!?)Xhz#6_k<38NLAa3D#6u$EOAw0up9@~Xj z5KFv-=~%-i{Dgk|jwaAgGzkRUE{7cpTqg18!gx|KRqml{Rkr*h{H2 z(wgfsflV>%o3da|WYWBc8ljp6$@orTFM=y9rOw>zft^3)Y?+gpLTqt}N>)qPXfkGs z$)p&P(~fN^SLQOa${LWJ-YJ=}U6rxI^HSZ)dIc}8H>-Q~h%c`1_*(VNaHIb1`<5Op zO%r99*HvDp+mn{ERY6JRx{hmplwP{M-J$=7Skfy_O)1ZtF532dTyOci_2oc|z7R<1 z#X!`H)UTh0y7WZ2X*m{duey=mT|$hwt}0d@ zLE4UMHZScAThHfR_MUZe(kfPlu1togSWkZmx9Pb^LcfU2>7nRg?RX(;XT3~;AmSe@ C-?g3q diff --git a/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po b/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po index d7e64b0ec5..06f26fcd18 100644 --- a/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po @@ -1,24 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 # SadE54 , 2013 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -64,7 +64,7 @@ msgstr "Modifier" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Libellé" #: models.py:23 msgid "Datetime created" @@ -72,44 +72,47 @@ msgstr "Date et heure de création" #: models.py:63 msgid "Document folder" -msgstr "" +msgstr "Dossier du document" #: models.py:64 msgid "Document folders" -msgstr "" +msgstr "Dossiers" #: permissions.py:10 msgid "Create folders" -msgstr "" +msgstr "Créer des dossiers" #: permissions.py:13 msgid "Edit folders" -msgstr "" +msgstr "Modifier les dossiers" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" -msgstr "" +msgstr "Supprimer les dossiers" #: permissions.py:19 msgid "Remove documents from folders" msgstr "Retirer des documents des répertoires" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" -msgstr "" +msgstr "Afficher les dossiers" #: permissions.py:27 msgid "Add documents to folders" -msgstr "" +msgstr "Ajouter des documents aux dossiers" #: serializers.py:58 msgid "Primary key of the document to be added." -msgstr "" +msgstr "Clé primaire du document à ajouter." #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" -msgstr "" +msgstr "Supprimer les dossier : %s ?" #: views.py:66 #, python-format @@ -138,8 +141,7 @@ msgstr "Document: %(document)s ajouté avec succès au répertoire: %(folder)s." #: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." -msgstr "" -"Document: %(document)s est déjà présent dans le répertoire: %(folder)s." +msgstr "Document: %(document)s est déjà présent dans le répertoire: %(folder)s." #: views.py:205 msgid "Add document to folder" @@ -165,20 +167,17 @@ msgstr "Document: %(document)s erreur de suppression: %(error)s" #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" -msgstr[0] "" -msgstr[1] "" - -#~ msgid "User" -#~ msgstr "Utilisateur" +msgstr[0] "Êtes vous certain de vouloir supprimer le document sélectionné du dossier %(folder)s ?" +msgstr[1] "Êtes vous certain de vouloir supprimer les documents sélectionnés du dossier %(folder)s ?" #~ msgid "A folder named: %s, already exists." -#~ msgstr "Un répertoire portant le nom: %s existe déjà." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Répertoire: %s supprimé avec succès." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Erreur: %(error)s lors de la suppression du répertoire: %(folder)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -217,11 +216,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -254,12 +253,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/hu/LC_MESSAGES/django.mo index bc6a002754f12fd707fd298453ee86632e4f4ba2..e138efcf763f7fc1bf5a5bfd7416255848f5e670 100644 GIT binary patch delta 402 zcmY+YU6vy$?G__g_+DzgfC>0kWlEhl2I4D$cDN6ALLYtx1HlP1vZscWUh=8X2+!-rXEFWTwL|9(qjDlT&-q^x+pwM+|N|}`k?J~g1+qf z#|^LdOFtZGbK#XXS}U2>s_EEyyHqX~O{-{GnS*_^=AAVAO}}GS+`ud69n1dfbL_Hh dUmqo>65)j&84bS`&mXk?mQ>wt*9{+1XWzt1Jy!q# delta 600 zcmY+=y-UMD7zXe+HGWl#sEhRjPNmR_*0$KHo$Mkm1yTA3#O4a6X_Z`CEC_W_SHYmO zj*cRBax!#sRB#ZSTm+q5oW$pn`gP>V?~=T^dy^0ELvQ_QKs_c5A2N#UA^pfJB1c3a znuJlf1T!!UPv8P$wFYU*IMeyyTSH4Wr7fcXj^@>lu5k diff --git a/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po b/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po index e2f944c64c..79af4d0855 100644 --- a/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Dezső József , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -31,7 +30,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "dokumentumok" #: forms.py:34 models.py:44 msgid "Folder" @@ -86,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,6 +94,7 @@ msgid "Remove documents from folders" msgstr "Dokumentumok eltávolítása a mappákból" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -167,13 +169,13 @@ msgstr[0] "" msgstr[1] "" #~ msgid "A folder named: %s, already exists." -#~ msgstr "Már van %s nevű mappa." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "%s mappa sikeresen törölve" +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Hiba a %(folder)s mappa törlésekor: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -212,11 +214,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -249,12 +251,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/id/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/id/LC_MESSAGES/django.mo index 5e388fc63ca4107b3b265c93a1bdf990a3bfc4f1..fb85a1f55e3dd59150c0e28179720a28a3c56237 100644 GIT binary patch delta 379 zcmY+8F;BxV6og&c3YC$W;YkRI42j|p3W^vzuoMsz1B)R~G$gS@>{Mc6W`hBVk(rH^ z5q5q8zlBRmkvQqo*?#Az`|N)V@4nXuPXZc%4R8R4;2gB7KmcyQ2)uwz@CxpGLVUsZ zz}bortMCW72Y-fREMTG!+Wnm-=CUbSyM(s3Q**Sqc$QKw*fDWko4TEK2hWOS-im2s z9aXiNXDO3%RItK>(M;*@&fsx>x;ys69Y2yJ$4MOfVH}2QC&&IN&oi4D?N5~BgrZO` zbCFD>e0v}Dt|umMt1X)S6{}cZ%~aJ`rRjp}Qdw1~+5d{&KXIt)#!|^8Vp)#3WtXKY P*SCtSat(TR!9e@~pK@Vk delta 123 zcmX@adYIYbo)F7a1|VPrVi_P-0b*t#)&XJ=umIvtprj>`2C0F8iD!LHO?3?{b&X6E x49%>J%ybP*3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEVd@M_tqe^!`!jMf0ss+>6kq@V diff --git a/mayan/apps/folders/locale/id/LC_MESSAGES/django.po b/mayan/apps/folders/locale/id/LC_MESSAGES/django.po index 63a8dd987f..48749b369d 100644 --- a/mayan/apps/folders/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -30,7 +29,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "Dokumen" #: forms.py:34 models.py:44 msgid "Folder" @@ -85,6 +84,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -93,6 +93,7 @@ msgid "Remove documents from folders" msgstr "" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -106,6 +107,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -126,7 +128,7 @@ msgstr "" #: views.py:141 msgid "Must provide at least one document." -msgstr "" +msgstr "Harus memberikan setidaknya satu dokumen." #: views.py:175 #, python-format @@ -155,7 +157,7 @@ msgstr "" #: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" -msgstr "" +msgstr "Dokumen: %(document)s penghapusan bermasalah: %(error)s" #: views.py:267 #, python-format @@ -163,6 +165,15 @@ msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "A folder named: %s, already exists." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Folder: %s deleted successfully." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -200,11 +211,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -237,12 +248,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/it/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/it/LC_MESSAGES/django.mo index 6a1fb2ab3ce6340f41e462bfa35377ded3e78512..d1061ef97c1a774f9151624fc8eb54c8d39e8e63 100644 GIT binary patch delta 517 zcmX}oy-LGS6bJB=Hr3h>2c5(gs+A6EN)p>5DM+DFD=1cRa*N3oufzu0Ti3pTMI`9j z7tlptz|lp014nm9!NLEP)B}g#{W$lYn|x;8(u0o~^_CFR$Q<$tIg9*3%4jJ>6L1GM zU>la<4P1xMa1nmPDVU29sjvj)xfM7GO_+cdEW!p{CK`~3K^_a&aEMDDU=s5>ZfQXq zT5t&K@CBBjirZwv6)5YgksFcQ(S92)VgDGe!U0@>_fVk&jG{=vG!p&)UXDJLL89(I zDxMNMdfH`;#C*ce1g@3RHX3|8%a0oKE4r`$g!+nn8`CHgcbWE@4Tww7x>_x%8M6?8N zpawtTH0-G+8iZT04xYdXcovU8#pByxv8-MF~W4)J(MWtM|F8=2T|cW{$hdnW1|=w{5-rj2-Lw zmT`eM@ZenP2)3p7&iS~4l1}9v!JRZXnhdjW3+(3@;eNi(4A)8S?&gx!JlL!*{R3+y Bf~5ce diff --git a/mayan/apps/folders/locale/it/LC_MESSAGES/django.po b/mayan/apps/folders/locale/it/LC_MESSAGES/django.po index 27eab3c627..cc3759174c 100644 --- a/mayan/apps/folders/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -34,7 +33,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "Documenti" #: forms.py:34 models.py:44 msgid "Folder" @@ -54,7 +53,7 @@ msgstr "" #: links.py:31 msgid "Delete" -msgstr "" +msgstr "Cancella" #: links.py:35 msgid "Remove from folder" @@ -62,11 +61,11 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Modifica" #: models.py:20 msgid "Label" -msgstr "" +msgstr "etichetta" #: models.py:23 msgid "Datetime created" @@ -89,6 +88,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,6 +97,7 @@ msgid "Remove documents from folders" msgstr "Rimuovere i documenti da cartelle" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -110,6 +111,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -135,8 +137,7 @@ msgstr "Bisogna fornire almeno un documento." #: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "" -"Documento: %(document)s aggiunto alla cartella: %(folder)s successfully." +msgstr "Documento: %(document)s aggiunto alla cartella: %(folder)s successfully." #: views.py:184 #, python-format @@ -171,13 +172,13 @@ msgstr[0] "" msgstr[1] "" #~ msgid "A folder named: %s, already exists." -#~ msgstr "Il nome cartella: %s, già esiste." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Cartella : %s cancellata con successo." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Cartella: %(folder)s errore di cancellazione: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -216,11 +217,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -253,12 +254,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.mo index 2194ac6f6349a04fba83513e2a45c97e2f49bce7..dbf7722162b36cbd57235f66f4056221c5fbcd79 100644 GIT binary patch delta 511 zcmZvYJx;?w5QR772MAp%3M58~kTAlQ9YTa$n{*Kf0lkBVXoItk?2S|A0yGrVoPiFg zXsM~7;0n|Ajka8{H7 zT7DI9%$h}zoQ(#ov`-tG(NAn;6iutdX_};_G!3k5-kyp5NNTawPU47D(HUi$hG~+^ zh$++*bBIKum}WDbtG&){%XW9{hDTn@Z#HeW>AKa!1N(?`naM=iL8#fMhU?Ax8lLZY zw-4)u$tkB}**B}&$w*UI_9>sGSk1Tmy@f+`j_v`+kyO3^uE9!ldCchrf=)OTClpEi a3>rw4X;v9|-=k|L8HS29Q;&02j`#vYPI&GB delta 124 zcmcb`c9YrSo)F7a1|VPrVi_P-0b*t#)&XJ=umIxuKuJp=4N?OGlQkH9O-*$TEOm`c y6b#L*jLdWmObiUT0{nG@Qp+-nGxPIwT@p)DtrUz53}NaFOsxz}H?LxpX9NHbycBc* diff --git a/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po index 8d6a630a0d..cc40effbf9 100644 --- a/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:44-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -30,11 +29,11 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "Documenten" #: forms.py:34 models.py:44 msgid "Folder" -msgstr "" +msgstr "Map" #: links.py:19 msgid "Add to a folder" @@ -50,7 +49,7 @@ msgstr "" #: links.py:31 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:35 msgid "Remove from folder" @@ -58,7 +57,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "bewerken" #: models.py:20 msgid "Label" @@ -85,6 +84,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -93,6 +93,7 @@ msgid "Remove documents from folders" msgstr "" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -106,6 +107,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -126,7 +128,7 @@ msgstr "" #: views.py:141 msgid "Must provide at least one document." -msgstr "" +msgstr "U dient minstens 1 document aan te geven." #: views.py:175 #, python-format @@ -156,7 +158,7 @@ msgstr "" #: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" -msgstr "" +msgstr "Fout bij verwijderen document: %(document)s. foutmelding: %(error)s" #: views.py:267 #, python-format @@ -165,6 +167,15 @@ msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" msgstr[1] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "A folder named: %s, already exists." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Folder: %s deleted successfully." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -202,11 +213,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -239,12 +250,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.mo index a8eecd62f4512dd6182b75ea2fd16757eddb1050..1dd6f0808a8855b507e0518f2e5ffe4a28a60224 100644 GIT binary patch literal 2955 zcmbW2?Q0xG9LGnkPp7pStH!Ezd`L;uy}M0ADVLnlCMgse6JlC?BQn{YT=ufJbL`Ca zx<^4M2Hyz2QLyxdulq*9g0J+2Ht8P_!B--v2%u~l5M`?;C^J;OHHU9RO``Klp0KCGY`^-vsXleeglh zfOmmg+4_6nqZnTX$}gd%=&v$G|Hf{@7Reke%z` z{ouDC`TGf^IDP}427d?d1V`|B4jctv0B69bz!o?HZh;2;2qb&^VeC3;atK_)_y-uJ zI@$N6ale-FEs*l>f)vl&AjSKBHogSHB)bAq-97~mf?tBEP#YHuyhkAhG zqFm^CC`Iz6deKAsNHsf*_i?;bPuh$8LF**Ffl!AYY&{y)b-AmYs3QZzjpFOdcV##< zt^a*qCkjv(g9b`-bDmIv<*i++Kr^=~*_P zCy`}v!x(y*0K~`hj3+b~t}ER#Lt0HOU`R-khGH@6F2qe z!KIG`-I#kpmeiorAwQajvZKx+z<&;<^rDBXX|~{cCi#>u(#fKZC)1ryp;<=msK5v> z@Pby+7YI+Y(_&5fY%$V?cSCi~b0rss`%+*+1+oyX-a;lV?11P>l3g*O`Ff~2MTFVv zz#Pk_X!AAd?iiFN-^^5bs4t4GoV}%H=J#f*XFb^~f?5t$8-A@*u60(1+EYP;FN#2t_i)aVU9S+|c_^`q9L&Fy22sVS>I zRj)(PT9M~Gvb$Gq(r(!Hi*-De)2O?(8j3*s!cgO_s5Kel#H}bTLQg>;XhotWtyL*H z4Zf^=PjB$?4P&~ETCLaXRSju->+*cnQJq?t>V>rqC1XjqqicR_?&St&=M3=mrnE$xt_sPGgZ)n&UyUY4cfL=U5)I>n}Ga`H>^Z&za^F{T!$1 z`ix!Y7cM08BvYS&jt!m3iRlUsvn$$Yoz3*-bMu=ox?v@TOt$y`Z|U0AUSV>Np0P@T_Ome?9>z3QVP6F?U6O)F$xsHKU}to+^G^EBlp(F7V0&x(-E4x6?`(Fyi;O9( z^vF|&X%*5?vx+qM@IBd8op|T6A9!@sT@k2(!VKSECw4AwZ@J}7$h*pQ`a<(aM?Ha{ z3y0B=3zRAKP3H1Lja#@aamBQwoiBKP3j64`@|v!)L#!BVa} smSq=|GJ{2)y-}geu=GR48n|+cK1^Nw2aV;hFIzsk2WK<=XA!f%0oPtXcK`qY literal 2496 zcma)+O>7%Q6vqcrC>SVEzQ3QSQYD48*P*G(riPX_MHNIuuG1r8;+>@Htaq%P**LZ; zkSe0y;8Y334RL@Q5v!M}np3~qxDf>*!?z(LL*z`c0?6?_Q%4ZIut2Rsgn zsciiT@F-q8;EUi_;Jx5=@Coooa1Zz=$Z`Gx+0PV&hrkj@;5^9j&Vet0?}7)w_d&M% z9DEM^9^4Q94&o@Kg7s;#kMLI(?Wmw=xe9GT)RS%5xtNIuXZE ztlD}L3En)FQ4~Yt-i%oE1DpPhLKty6?N5&JpmeJuvK25jxykNKGJ~OOLroo78AL&} zUi6t)i>1U^>co08@D)i*p^^~jNEK$~+t_3s88fY?+foP&t;M>Xmuf_=9g~R_qhhff z>y~O-=Zx>1Q?UtjgW?DlNa$aMHsCdxuY# zM{{m<-f>@b<_=T!h&Ok{aSyvL44t~#4A}2~?c8~&j^;+4g8zhk-dyGv}@Cc$G@G+bvsO9jvLXa#Ob}akeh5w7D2Z z`E64Pb03vXSeY#?ompBO)m$yRrITnBK0>F_>!2X3wk#~sxdm#Tm$6Z{w$eE5939zl z#5EN=i&0bi=&wgdR|8w*>QN^wEr&@gL+7-P+s31)lfIhTD+^GvrZyARYE^ojT!MPK z>b_Q+qk{+2$78j_{5Zp6_gK}X3l~y3+qkn>Q^lIO*@cpLOIjJ~b<((L`rSZzIGwFz z=PKcji2~J9{0;fCh2yc2-885)HNomyl1Mq(_rCQ%ARZJD-K92tj=r>G4#@zg{jk^TE=wyKQyn z;$YjS#3Wsbn5-S$PB&fAQur#T6@=&P6UfO%RuNt`3R^>PsA*Shfb+P2S*Q zJJP!@y|E@N*>Gf+AGyN*+Be-Y_kHKXLe!)Fuy|;5 TWxqIKD?3+vc0+fgU_<;1Y8$^4 diff --git a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po index 866f4b2c23..6794fc8a45 100644 --- a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po @@ -1,35 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 # mic , 2012-2013,2015 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" -msgstr "Katalogi" +msgstr "Foldery" #: apps.py:68 msgid "Created" -msgstr "utworzony" +msgstr "Utworzony" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" @@ -37,23 +36,23 @@ msgstr "Dokumenty" #: forms.py:34 models.py:44 msgid "Folder" -msgstr "Katalog" +msgstr "Folder" #: links.py:19 msgid "Add to a folder" -msgstr "Dodać do folderu" +msgstr "Dodaj do folderu" #: links.py:23 msgid "Add to folder" -msgstr "Dodać do folderu" +msgstr "Dodaj do folderu" #: links.py:26 views.py:42 msgid "Create folder" -msgstr "Stworzyć folder" +msgstr "Utwórz folder" #: links.py:31 msgid "Delete" -msgstr "Usunąć" +msgstr "Usuń" #: links.py:35 msgid "Remove from folder" @@ -65,7 +64,7 @@ msgstr "Edytuj" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Etykieta" #: models.py:23 msgid "Datetime created" @@ -73,35 +72,37 @@ msgstr "Data utworzenia" #: models.py:63 msgid "Document folder" -msgstr "" +msgstr "Folder dokumentów" #: models.py:64 msgid "Document folders" -msgstr "" +msgstr "Foldery dokumentów" #: permissions.py:10 msgid "Create folders" -msgstr "" +msgstr "Utwórz foldery" #: permissions.py:13 msgid "Edit folders" -msgstr "" +msgstr "Edytuj foldery" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" -msgstr "" +msgstr "Usuń foldery" #: permissions.py:19 msgid "Remove documents from folders" -msgstr "Usuń dokumenty z katalogów" +msgstr "Usuń dokumenty z folderów" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" -msgstr "" +msgstr "Przeglądaj foldery" #: permissions.py:27 msgid "Add documents to folders" -msgstr "" +msgstr "Dodaj dokumenty do folderów" #: serializers.py:58 msgid "Primary key of the document to be added." @@ -109,48 +110,49 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" -msgstr "" +msgstr "Usunąć folder: %s?" #: views.py:66 #, python-format msgid "Documents in folder: %s" -msgstr "Dokumenty w katalogu: %s" +msgstr "Dokumenty w folderze: %s" #: views.py:93 #, python-format msgid "Edit folder: %s" -msgstr "edytuj katalog: %s" +msgstr "Edycja folderu: %s" #: views.py:127 #, python-format msgid "Folders containing document: %s" -msgstr "Katalogi zawierające dokument: %s" +msgstr "Foldery zawierające dokument: %s" #: views.py:141 msgid "Must provide at least one document." -msgstr "Musisz podać co najmniej jeden dokument." +msgstr "Musisz dodać co najmniej jeden dokument." #: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "Dokument : %(document)s pomyślnie dodano do katalogu: %(folder)s." +msgstr "Dokument : %(document)s pomyślnie dodano do folderu: %(folder)s." #: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." -msgstr "Dokument: %(document)s jest już w katalogu: %(folder)s." +msgstr "Dokument: %(document)s jest już w folderze: %(folder)s." #: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" -msgstr[0] "Dodaj dokument do katalogu" -msgstr[1] "Dodaj dokumenty do katalogu" -msgstr[2] "Dodaj dokumenty do katalogu" +msgstr[0] "Dodaj dokument do folderu" +msgstr[1] "Dodaj dokumenty do folderu" +msgstr[2] "Dodaj dokumenty do folderu" #: views.py:227 msgid "Must provide at least one folder document." -msgstr "Musisz podać conajmiej jeden katalog dokumentów." +msgstr "Musisz dodać co najmiej jeden katalog dokumentów." #: views.py:248 #, python-format @@ -160,27 +162,24 @@ msgstr "Pomyślnie usunięto dokument: %s. " #: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" -msgstr "Dokument: %(document)s błąd usuwania: %(error)s" +msgstr "Błąd %(error)s podczas usuwania dokumentu %(document)s" #: views.py:267 #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#~ msgid "User" -#~ msgstr "Użytkownik" +msgstr[0] "Usunąć wybrany dokument z folderu: %(folder)s?" +msgstr[1] "Usunąć wybrane dokumenty z folderu: %(folder)s?" +msgstr[2] "Usunąć wybrane dokumenty z folderu: %(folder)s?" #~ msgid "A folder named: %s, already exists." -#~ msgstr "Katalog o nazwie:%s już istnieje." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Katalog: %s został usunięty." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Katalog: %(folder)s błąd usuwania: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -219,11 +218,11 @@ msgstr[2] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -256,12 +255,12 @@ msgstr[2] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/pt/LC_MESSAGES/django.mo index d294de09f06790aa30c4ebe00e210c9e97e8ca5a..fc8e9215d3e163299dced296b14fccd9c1323436 100644 GIT binary patch delta 500 zcmX}o&r1S96u|Mfx|U{2)G0Km1P_(ksz`bW4{8Nb_9txZ9;DR;cRLH6qaQ4F3i=Cz zpj)S?bN@nrLieDc@8sgZo6o#q=DnT$O1>mVpY!^yFw#VpxF8mYA3}{?O=Jr9u!&tP z;tg)$E3V=Zsal*^ceoK}-9{wcL}lzCG|gX$2IrKstImo0tWZCV=PAeM1%}GMC5pm-q zi1gyf7w`eZ(a~q{pWS+!^uNF9&a*qu>{IeHdG_98UNekNWDq$)x{)_T4>A}VgClSe zuD}#LhjXwFN8u-If!ztlreH55xC~pN)41=!A^g9AR|Y#{bxiaIt0n^XU=}{WdH4bK zIyEzfA1mOZ8z{nISc7`wTQ~#npx)pWq9@jlG$DGl#YFGXQ#^do$4>qfg}<1 z#@G_=NY4=gmANmRJdLYq;$9%QQzLQYs)`CPjlOW#sBf-Dg)9b@6Y-OiiX7pIiXagL zGSCarWK#W>ewR3;s-==pYNzUXwN#@(g$s#+@HBCp%USlkmB~_iHlLZb?5u5ftgl%c z;?PyDEL#O$5qZkk>F+u_mrv&&Q%zmQXz}GfZdg#&=XAhTg;PoTB&jTYfrEt?W`DSC wK5wn-H5Og}9YeQGT$1oy-!1dMN1>l`MS<|;q3gtN$9ZrZnTpp{xZk|?1x`1F5dZ)H diff --git a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po index 386c5113f6..d3c630ab6b 100644 --- a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/folders/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: # Translators: # Renata Oliveira , 2011 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -33,7 +32,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "Documentos" #: forms.py:34 models.py:44 msgid "Folder" @@ -53,7 +52,7 @@ msgstr "" #: links.py:31 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:35 msgid "Remove from folder" @@ -61,11 +60,11 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Editar" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Nome" #: models.py:23 msgid "Datetime created" @@ -88,6 +87,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -96,6 +96,7 @@ msgid "Remove documents from folders" msgstr "Remover documentos das pastas" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -109,6 +110,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -129,7 +131,7 @@ msgstr "" #: views.py:141 msgid "Must provide at least one document." -msgstr "" +msgstr "Deve fornecer pelo menos um documento." #: views.py:175 #, python-format @@ -169,13 +171,13 @@ msgstr[0] "" msgstr[1] "" #~ msgid "A folder named: %s, already exists." -#~ msgstr "Já existe uma pasta com o nome %s." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Pasta: %s removida com sucesso." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Pasta: %(folder)s erro ao eliminar: %(error)s " +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -214,11 +216,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -251,12 +253,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.mo index c01e9e664706ed22fdcda7a2aa94946626370e59..f252c997f528ee1faeacb4d72759d69f3209eabc 100644 GIT binary patch delta 663 zcmYk(zb^w}7{Kwjb*&avEh>Wa=s;+Xs}h<>B%~n`6NyFqsAItiYLku@63K-P|A0k0 zm@E>jg^jQg|AIk$pXMsw^tsQy@3qhK+|!H5W4QPh)y@>Fg=i<9i8yiW;lc`dl?r1J zL)hxtjn(XjumQ)=kFz+A^Jw5Xj^G1!;SUC}v#MOPsQS3kIG8{wG=-9A0j0naN<$my z!y`=K3HIU*cHk>U@f$B`K19-H_SgJK8ob9^d_u|lj!{)q>eD^=#vBj4R3F4?9K}OS z;4RkR3(B-UkdOM|A_aV8C54KioVTM)G~u3)V-Ncr_M?p*)K^#BNP;_*sn-$zSChMm zp!@}mgnVDdC~qXwlQ#_zvZOhg1cOlZL}fAga%1umlqyfVF6KU!&P!|FMUNBGx_mP$ ztJbDtXl=nYJ73tcw)YKoi_WPw6BOKTHR6u|MDw~dcB^;Kyl*FHeSq)BXw&8h*(wngctl*o{|g-DW-Oj24w0v2>3 z7G-qdLM5OJYd0nCL=dv~Be)XR>L>7jk}2q6&i&<1?wtGjHu^fz`92%Xo-s{DU{}Qb?(3T*ncmI_d#G&hz3i zhVd=RMDI`veZs5w88!YynJ~uSB#xr|KaUr29mjDSdDIh{H*Dq^&d4~5p2gcZ#{8l(rm&B)@ZT6^ zew8>jJo*Wor=LgJi9so_i#+NDjejeH_cEzWBq2LGLCQ5s$c7{)$Wx?T8ONi2ueU?~vii_60b-hOaWmj=b8jJ8e9w2ZCYcBNumce7oq?WDbO z=!$n3+6b<>UOc>#&!;j=soa9jE*5f&smwwq6JK3P-7;HMx9T)fH?5W_=v*dyG%k}b zWb?hfa56Bh?^$lk(iNw!9o=y143x#+?RSR@H|gHT$ku-=EJu@(Rr$*M8lCi}VzZtT PyEC%pw)@>?)lq)|p89&O diff --git a/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po index b2d5f695be..c25add5e8a 100644 --- a/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2012 @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -66,7 +65,7 @@ msgstr "Editar" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:23 msgid "Datetime created" @@ -89,6 +88,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,6 +97,7 @@ msgid "Remove documents from folders" msgstr "Remover documentos das pastas" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -110,6 +111,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -130,7 +132,7 @@ msgstr "Pastas contendo documento:%s" #: views.py:141 msgid "Must provide at least one document." -msgstr "" +msgstr "Deve fornecer, pelo menos, um documento." #: views.py:175 #, python-format @@ -169,17 +171,14 @@ msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" msgstr[1] "" -#~ msgid "User" -#~ msgstr "Usuário" - #~ msgid "A folder named: %s, already exists." -#~ msgstr "A pasta com o nome: %s, já existe." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Pasta: %s removido com sucesso." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Pasta: %(folder)s erro ao deletar: %(error)s " +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -218,11 +217,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -255,12 +254,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.mo index a36e2e30acee1e9672a981018c1e21ab95c14a96..e8b1071ccd6d277c91630f4262284c677e58d472 100644 GIT binary patch delta 432 zcmXxgF-yZh7{>8S8>_ZDC^*$ZTOCA0E+q$a2jN~Np`;a~+9 z@eo(>8mst)@Ql>)^bBHq{DO0M5J zJ&~O#6zgp-5*z+;TLvj%+|Lx_+f09@VVKKC%_>_ByIwcUx@qQjcZ@xG=7pZ$G2CV( q?Q+eu2K#E3ZCMXT*-b5e*T0Hs51I6k&5P%raJ@jbB0q?ya=kzO%|A8( delta 628 zcmYk&ze~eF6bJCvShfD>po1V)ysCv%G_+!icJK%I0|X~2sFR_&N+oUKE(Hrhhx#7` zMO^e>5OH%6EDlbt4o)tDv*03rFNxNJ$LB8h?%uoH_nk)@uY=)J!iXY95GRNM#0Nr+ zRETH-rr|QoLj#_{dDw#E@Edl)xJEPub;#g0?1m0h_Z$cNS8$Z5K~I=G;_y4vk#HR* z+JY}I1@%t9@GgvFeE}oz4yyeY9D|>*7Y?Bdbx%BS6Ha0+A<9q>q648ugz`jvnBc58 zP}6%wu=F}te@0#0k3f$^E38{$1Rly21R;iUy-tXM&_@Rl04o$;d3cu|H uiL@rFrr@mI9BW-VTpVzG{JZVnn`rg7L_#udm&&Dz>8Nu40}OYuv-txRje<=8 diff --git a/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po index 371d2f4354..3e77e6fd35 100644 --- a/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 #: views.py:104 @@ -32,7 +30,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "Documente" #: forms.py:34 models.py:44 msgid "Folder" @@ -60,7 +58,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Editează" #: models.py:20 msgid "Label" @@ -87,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -95,6 +94,7 @@ msgid "Remove documents from folders" msgstr "Scoateți documentele din directoare" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -133,8 +134,7 @@ msgstr "Trebuie selectat cel puțin un document." #: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "" -"Documentul:%(document)s a fost adăugat la directorul :%(folder)s cu succes." +msgstr "Documentul:%(document)s a fost adăugat la directorul :%(folder)s cu succes." #: views.py:184 #, python-format @@ -171,13 +171,13 @@ msgstr[1] "" msgstr[2] "" #~ msgid "A folder named: %s, already exists." -#~ msgstr "Un director cu numele: %s, există deja." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Director %s eliminat cu succes." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Eroare %(error)s ştergere director %(folder)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -216,11 +216,11 @@ msgstr[2] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -253,12 +253,12 @@ msgstr[2] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/ru/LC_MESSAGES/django.mo index fd36d7fd33603ae8a54f2022d585a554711782b5..4df5e7b1f9bddefe61cc7b3698642c27d318e1cb 100644 GIT binary patch delta 464 zcmXxgy)Q#i7{~F`TlLZs(M94d#U{DjTdkK)25h1c3nugq6*SQjgQQY}fq`7aR)asF z@e7u{tSWxw(jck!7@=8<%TtbXs zC-&k34&fno;S<*3H&)>%D!Qg=TDr#VQvrOF49A(Ij$&`+NYXRjjD31Pf%S}s+NKJ6RLcKGlf0v zdTt+0EUvFutEr?Ii^Wr7Jh2?J*2*O9tk!CuXxZ?9ZuILxGhhxxLLuD<8HP7HsZUuO z@nk%)s*ld6tVkeen3Z)wGh&*TOYT#bUG#L=bDp2UBY7|L&W^m3*RtSboIN4W7+%R7 b(;0c|Y_s4(=6JO)WR~d%nU^{Hz53%Hiq2tQ delta 705 zcmY+AO=}ZT6o&7NiQmBw5Rt0fDuq_skQ7s5P^g>kgn|^RZVa6%2&0vm6f6|dHZByG zgT-A0|G;QF8fuf`!j+qI_bPNL^bfcZpP8hw9(duU40`t zkA9&F1}m%7J$MsN!F4zZf50NV%#`DB8qUH8a1?I#&UfK7?|bkLyv6hqd*_K$^ zXq)A=X~;*3xiJm%QewC!A2^K7TKF`3ZsT3Xw(7kO5-Dk#6=@|^n{@r0c4~3JfOH7y xf$x+Z+#N=Kl8$+SJ<@5?lJ~MD(ZNrb{*3NcW|fvPMQ!Pv{(oMS55H%3{{qrB)iMA8 diff --git a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po index eeda412c5e..5d11dea076 100644 --- a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po @@ -1,25 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 #: views.py:104 @@ -32,7 +29,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "Документы" #: forms.py:34 models.py:44 msgid "Folder" @@ -60,7 +57,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: models.py:20 msgid "Label" @@ -87,6 +84,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -95,6 +93,7 @@ msgid "Remove documents from folders" msgstr "Удаление документов из папок" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,6 +107,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -172,13 +172,13 @@ msgstr[2] "" msgstr[3] "" #~ msgid "A folder named: %s, already exists." -#~ msgstr "Папку с именем %s уже существует." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Папка %s успешно удалена." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "При удалении папки %(folder)s произошла ошибка: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -217,11 +217,11 @@ msgstr[3] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -254,12 +254,12 @@ msgstr[3] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.mo index 592318dae883bef8a01501f41c40cec699a64412..e39aad743b2ca1a3a26374fbbaafecf4a54b999d 100644 GIT binary patch delta 368 zcmYk0F-rqM6ofZ=3R+rQJP^SY7k1Ax$YFVHG>D}j8}Ai+iM!|R=32oYAXwN7c6PS@ z2&>fjEzaePsC3@a{S{_7i0uzBlZ~=C}Eoi3#1Mmp;z&khspJ34w;s+|h z$5!Vrpsl}z!WIy*4ch&y$=&_@fo;g>_@r=`-KFoT;28%du4`Af-s;fzVx9M5H1~n3 z+BK$N(t&2I@!%{|@wapEdOkWE#_}{y6scjBrm;+=+#g@X*W4IyoQ-oGIHN?WbuLkv zQeWRUy}R5^H>&+Nv%1n#O_SPqZA+bPcI!SEF?ONmiFH&mRj$y%P~&w;Y*DTYiC-i7 BUIG9B delta 123 zcmZo->tnIFC&V(90SFj@SO$nyfS4JGb$}QIEP(h5P|^}egVeyl#IwGprn&}}x<)1n whGteqX1WF@1_oRK{<=Y_Wtqj9`FXl7i6yC43PuKoFm(o|R)(gV{TV|T0rNi;g8%>k diff --git a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po index 1400740c02..74bf49f744 100644 --- a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 #: views.py:104 @@ -31,7 +29,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "Dokumenti" #: forms.py:34 models.py:44 msgid "Folder" @@ -86,6 +84,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,6 +93,7 @@ msgid "Remove documents from folders" msgstr "" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,6 +107,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -127,7 +128,7 @@ msgstr "" #: views.py:141 msgid "Must provide at least one document." -msgstr "" +msgstr "Potrebno je podati vsaj en dokument" #: views.py:175 #, python-format @@ -159,7 +160,7 @@ msgstr "" #: views.py:254 #, python-format msgid "Document: %(document)s delete error: %(error)s" -msgstr "" +msgstr "Dokument: %(document)s napaka brisanja:%(error)s" #: views.py:267 #, python-format @@ -170,6 +171,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#~ msgid "A folder named: %s, already exists." +#~ msgstr "A folder named: %s, already exists." + +#~ msgid "Folder: %s deleted successfully." +#~ msgstr "Folder: %s deleted successfully." + +#~ msgid "Folder: %(folder)s delete error: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" + #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -207,11 +217,11 @@ msgstr[3] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -244,12 +254,12 @@ msgstr[3] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.mo index 1813882a6b3ef3361dad92e45054d6e7fdbb9c49..f0a996d81cfd0fc22ac4c8a8e364c5c1e8989c13 100644 GIT binary patch delta 430 zcmXxg&r8B^7{~EvIF2#Z@e#YIKdv&>xN#{iuCvIF9Tms6IhWImj>z^(RzRQ_c`Sue~I* zwc<&|t2XMgUMe?aqjpsCj{m9q?LfkB1=`DL(_S)Dj^U&;u4~$^ZAZ4Z%$#>xu9s_7 zGh1kQ86#yogZENS#&PZsg9**ILJ9v-fAxR$NKAHm-P?lX4<7D}O0U}~`ahx0A7Ugx A3;+NC delta 585 zcmYMwJ4?e*6bJB=7~fXWO>5=)s4r@4#fmKmx`?xn#mUm#q7YliO{s$7;unyM4lcfz zx(MQ8M;{1IPHuvu;w-on|2M7m!pZL>_nh35JT;#BcHY{IeZuk~IuW~wR>T)Vt*}Pa z3nOqEEz)AQ3dtedPz;2yr7!E=P7ho-Pp?c3&dH)y&h<4~1$sw9QU_T0W4WfB? z2}fZO&Ox)9XaMG513ZEun1`zG6}G@4R0B3+ni!mdYM>m%F;tJJLa0?oOGJ%G(Bmzf z<$Xo@)|*`Y8FgS20y7fLuvEsjxWm$kb#BF3P=r{*c6h?tWPD>yxI(UI?Q&APS)TO@ zsRSwqOPxc4S={C>XWVfzj@s~&A@N`OS7I@dO(wYzsjO{pn&ko^P2Dep`jIa>5{`|G zjkCx^d~8C#=>E!+a5Nr?UjOKREx7u4#n#^o7fI&c<, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -31,7 +30,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "Tài liệu" #: forms.py:34 models.py:44 msgid "Folder" @@ -59,7 +58,7 @@ msgstr "" #: links.py:39 msgid "Edit" -msgstr "" +msgstr "Sửa" #: models.py:20 msgid "Label" @@ -86,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,6 +94,7 @@ msgid "Remove documents from folders" msgstr "Xóa các tài liệu từ các thư mục" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -165,13 +167,13 @@ msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" #~ msgid "A folder named: %s, already exists." -#~ msgstr "Thư mục tên: %s, đã tồn tại." +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "Thư mục: %s đã xóa thành công." +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "Thư mục: %(folder)s lỗi xóa: %(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -210,11 +212,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -247,12 +249,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.mo index 113632a22a20c949bcae0555f129a5906dd17eb9..f28ff93f6adf383252a20770195bd9c4fa161808 100644 GIT binary patch delta 397 zcmY+fgjf|9yF|8Ygs!zZQB-MPfa7 delta 592 zcmY+=KP&@L90%~<^^ZTrz*3atA&nBM6%}g0V)iFuZrl@+qshHWG!b1SZ7d{5qatDG zV8B3Bs7b0)xs zETkf+^c6ch1e3YKW1MkSjjBe%+;oV)(%%x9iRIZ@F2vljqQw2$hjd#L>JAKc_x7=1 zf4H|_yRmsnPXeKEFm(Q6b4%`*d`{0^ectSOg?@SVmfzG*cJ=)u?aO{UQOuE^IxJ+e iuj%ApZD~S1d0p7f811Fm{uK&lb*HxUjRWo8G5-Tr8IrmH diff --git a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po index b950420c7d..36b74ee62f 100644 --- a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 @@ -31,7 +30,7 @@ msgstr "" #: apps.py:71 links.py:46 models.py:26 msgid "Documents" -msgstr "" +msgstr "文档" #: forms.py:34 models.py:44 msgid "Folder" @@ -86,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,6 +94,7 @@ msgid "Remove documents from folders" msgstr "从文件夹中移除文档" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -165,13 +167,13 @@ msgid_plural "Remove the selected documents from the folder: %(folder)s?" msgstr[0] "" #~ msgid "A folder named: %s, already exists." -#~ msgstr "文件夹:%s已经存在" +#~ msgstr "A folder named: %s, already exists." #~ msgid "Folder: %s deleted successfully." -#~ msgstr "文件夹:%s 删除成功" +#~ msgstr "Folder: %s deleted successfully." #~ msgid "Folder: %(folder)s delete error: %(error)s" -#~ msgstr "删除文件夹:%(folder)s出错:%(error)s" +#~ msgstr "Folder: %(folder)s delete error: %(error)s" #~ msgid "Create new folders" #~ msgstr "Create new folders" @@ -210,11 +212,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -247,12 +249,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.mo index a747a9b3e7750da7b84cd0e24c074eff7fdfb0c1..c457b6d47e3b31dad20d959ed05dcf7dbf4f6ac1 100644 GIT binary patch delta 255 zcmZ3^`kl4@o)F7a1|VPsVi_QI0b+I_&H-W&=m266zY~agfOsMhgVfFgVpSks0>t+j z85m9hX#pT!#RO5e8%T2i`6qxhNZmys4OGU!48$P)EIBP6vZ~-GjD+ANbqKxs3 iYB!eOY`L-OX5)?JH@4pFy4iwi+|4GSSnG|IAQJ)66*z$a delta 197 zcmey)x|}ulo)F7a1|VPtVi_Pd0b*7l_5orLNC09UAWj5gRUpm-;`@vY3{!wKNW6pz zBHjq3fx-+x3TzgTf&kCF;*!LioWzpM{JhB*nA9hp@-a2lHL%n*GEp!zvobQ%H83$S u;0o~94N5J`EC#C5bxABqwNfxLFa)Zz&^0npFfy_-Fx%|S7|+OqZX5vOrX@T8 diff --git a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po index 3bf06d8e59..2d436f6291 100644 --- a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:16 permissions.py:7 msgid "Installation" @@ -35,7 +33,7 @@ msgstr "" #: apps.py:30 msgid "Value" -msgstr "" +msgstr "قيمة" #: apps.py:41 msgid "VirtualEnv" @@ -51,7 +49,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "التفاصيل" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/bg/LC_MESSAGES/django.mo index d1881838066ea1111a05a9a81b293b9c6993c53b..aa702ddf33e6824fbd65dbc2a33867c5ca463894 100644 GIT binary patch delta 264 zcmbQi`i`~!o)F7a1|VPsVi_QI0b+I_&H-W&=m266zY~agfOsMhgVfFgVpSks0>u4{ z3=F4$G#?O0F)=WR0O?F1EdZqJfOH&??g!F9Wem(f4ARd6#6Y0J02GG+m(-HP%$#Bd z&%EN2#GIVOlFa-(hOoq(($tB$#k^*^2FAKZh6;veRwkws-%7&;j0~*|OgD=%3NRW^ zxv=$O(}fKec3#+hVF$y785j0mYy=DJzOdn9+l3t$`x!1Q1Pbf}s@QvBA4qbt1yce5 DyVOG& delta 218 zcmaFII)kQ(5=%1k^BBT1Q_B@HkwhkLO*A#tHL%n*GEp!z zvobQ%H83$S;0o~94N5J`EC%Y)bxABqwNfxLFa)Zz&^0npFfy_-Fx%|SD8MK@, 2012 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 @@ -35,7 +34,7 @@ msgstr "" #: apps.py:30 msgid "Value" -msgstr "" +msgstr "Стойност" #: apps.py:41 msgid "VirtualEnv" @@ -51,7 +50,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Детайли" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.mo index 09594e979bbdcda8f968913c36e63570162aed97..a9d095f273f42f4048df7083c0040154699d943d 100644 GIT binary patch delta 268 zcmdnY`iHgto)F7a1|VPsVi_QI0b+I_&H-W&=m266zY~agfOsMhgVfFgVpSks0>s}K z85m9hX^^^uObiU%K>8$*<^s}JfwVM`egLF_${3h|7^I&Ch=D+b0VoauE~zDnnK{J_ zo_WP3i8(omC7Jno3}J~mrKuBhi+Rm-4UBb-3>6H`tV~QNzLkax7#Ug_m~IwjEMv3= wnUIr}2{j=xIWsGfA*?7fD>WrAzqo`UpeQvxCpASO1*|MlArov7NLeZa0OFB0AOHXW delta 210 zcmeyvx|y~9o)F7a1|VPtVi_Pd0b*7l_5orLNC09UAWj5gRUpm-;%|%$3{!wKHxPF- zF)&C2>FGckD9iw)z-9p{2=L4+E=kPENi50C&tnM7Of6T)L=u^}HPO^m*T7QO$V9== z%*x12*TBTUfGfaXHz>6%vlysH*Cnwe)k?w0z!0d;Lf6PZ!N|zUz-+TOV;Lhi#PG!A L%&f%8_nBk?gSskZ diff --git a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po index 042c53dd19..f493ae6fce 100644 --- a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 permissions.py:7 msgid "Installation" @@ -35,7 +33,7 @@ msgstr "" #: apps.py:30 msgid "Value" -msgstr "" +msgstr "Vrijednost" #: apps.py:41 msgid "VirtualEnv" @@ -51,7 +49,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Detalji" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/da/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/da/LC_MESSAGES/django.mo index 1eef711117f9c2170a7f7480417a4ba68af292f2..fca3ae7f46624d2136737fac621bda911780d20b 100644 GIT binary patch delta 184 zcmX@l@`0uPo)F7a1|VPoVi_Q|0b*7ljsap2C;(!1AT9)A9w4p+VpSk+1L7V=28K02 zngfU}nIQ5`Kw1IF_XpBIX$EE>2AK`yLV!zZNn&PBF@tAbaYq(jFtMV+)Ku5NQrE~t!O+ag$V}J3#K3?nz+X2gwJftZGe1w) iC9x#cO2Np$5U9>V*T_J@$jHjTY_l#S594GfCOrU3)fc`1 diff --git a/mayan/apps/installation/locale/da/LC_MESSAGES/django.po b/mayan/apps/installation/locale/da/LC_MESSAGES/django.po index 59554835a4..bc9618c687 100644 --- a/mayan/apps/installation/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # René Rovsing Bach , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 @@ -50,7 +49,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Detaljer" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.mo index ccd7ab34b272ce30344ded91fc9f5161737c8791..58e32a85a0e51c2eb3963f71cdffef9d70e5e80c 100644 GIT binary patch delta 197 zcmcc1@t$KsP3$^G28O3V%+A2TFol_cfd@#>0n#EsdL@vS0n+<`v^tQ!4Wv1MG&2hW z12>T70n$LkAOR$_fV3=-<^s|lKw26|2XDL?!N_Z-YhbKvWT;?hW@TbJ*^Wut6((Y2 zXk}okZ2$yZK8eL8x*WYq8JSJCW0E!oidg6x z87LSTSs9pV8vp^9PhxS2Zb(sLUU5!hNq&))LQsBEYEel(kSh($ diff --git a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po index 3112ce8ca3..bc90e16507 100644 --- a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:05+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" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/en/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/en/LC_MESSAGES/django.mo index e285977665ca4090b9078ed173883a48c73e9458..9f7db876ba9777d2e5a6965ba1c3a01359df44a8 100644 GIT binary patch delta 24 fcmcc4a-C(u170&-17lqyLj^-KD-+X=Z?hNyWzYw` delta 24 fcmcc4a-C(u171^I14~^a69q#vDV!Z delta 44 xcmaFJ@sMMKArr5uu7Rblk%@w#nU#^*WIHBlkcfq@k%5Adk(Ghj<}{|?i~#w!3fTYv diff --git a/mayan/apps/installation/locale/es/LC_MESSAGES/django.po b/mayan/apps/installation/locale/es/LC_MESSAGES/django.po index cbe5c84cba..604af1e956 100644 --- a/mayan/apps/installation/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Igor Támara , 2015 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/fa/LC_MESSAGES/django.mo index 93ec5bf363b99a423c7294816254ec99f03e6095..668384b3fc169ed2d8e13da9d95e4f88df7ae2b5 100644 GIT binary patch delta 44 scmX@hah79)Arr5eu7R, 2014 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.mo index 4bc49eba0642c6a31c235ab5727bbbc523fdd830..db218d114b9d17b404265f1f167f76eea63738da 100644 GIT binary patch delta 44 scmaFC@q%N6Arr5eu7R%3GV;^ diff --git a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po index 7e87d5d783..a7431067ac 100644 --- a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po @@ -1,10 +1,10 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: -# Christophe kryskool , 2014 +# Christophe CHAUVET , 2014 # PatrickHetu , 2012 # SadE54 , 2013 msgid "" @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/hu/LC_MESSAGES/django.mo index d540e42a6ccd78b8fc3882572f5cc6e3792dba6f..517b1b782ed21c49d3e09baea1196a6f6cc07c55 100644 GIT binary patch delta 126 zcmX@f{DnE`2C0F8i4nfMrn&}}x<)1n OhGteqW*aw|GXemS?h0H0 diff --git a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po b/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po index 2e1d8cd420..293daa32b8 100644 --- a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 @@ -49,7 +48,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Részletek" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/id/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/id/LC_MESSAGES/django.mo index bffef6f684f78c69593797d601a19704240d0c5b..5eb73531211b71ce483c06fcdc328f6d5afc97f3 100644 GIT binary patch delta 122 zcmX@i{E9i^o)F7a1|VPpVi_RT0b*7lwgF-g2moSsAPxlLPDTcXNFdDy#E*e&Ac6ys nelT!JElJGGDV}KI%WI}`2C0F8i4nfMrn&}}x<)1n OhGteqW*avdG6DdL*a|=Z diff --git a/mayan/apps/installation/locale/id/LC_MESSAGES/django.po b/mayan/apps/installation/locale/id/LC_MESSAGES/django.po index 038eb84983..fd357988e7 100644 --- a/mayan/apps/installation/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 @@ -49,7 +48,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Detail" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/it/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/it/LC_MESSAGES/django.mo index a5aba60649600a0ae4813e1868f8eee8a86d5d5d..37d186b0cbfcf0b3b08827a756cfd7247dd42464 100644 GIT binary patch delta 225 zcmX@ke1)a{o)F7a1|VPsVi_QI0b+I_&H-W&=m266zY~Z-Y9>PI=}>wuknUwR0cK!NHH*j2nGga2B0_t3yA5GT9TNVQ_SF5lA2r0 z;FFk?n!^y5m{XcM(ZZM4OxM6z*T_)8(9FujbmJsbMrEM#lEn0!Oa{lIlFa0MAR`q> NXMjXO+VYE1830%2Bw+vm delta 82 zcmcb@a-7-Xo)F7a1|VPrVi_P-0b*t#)&XJ=umIv-prj>`2C0F8iHm%BO?3?{b&X6E O49%>J%r^cpWds0?uL{cm diff --git a/mayan/apps/installation/locale/it/LC_MESSAGES/django.po b/mayan/apps/installation/locale/it/LC_MESSAGES/django.po index 7ba1b49a06..ff4714c853 100644 --- a/mayan/apps/installation/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 @@ -25,15 +24,15 @@ msgstr "" #: apps.py:22 apps.py:29 msgid "Label" -msgstr "" +msgstr "etichetta" #: apps.py:25 msgid "Items" -msgstr "" +msgstr "Articoli" #: apps.py:30 msgid "Value" -msgstr "" +msgstr "Valore" #: apps.py:41 msgid "VirtualEnv" @@ -49,7 +48,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Dettagli" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.mo index a309d31584441a25ee0f7ffa80c9879642507c17..0574b80bb8c9930deb5082eea8d471061002d34d 100644 GIT binary patch delta 124 zcmcb~+{6-bPl#nI0}wC)u?!IF05K~N+W;{L1OPER5C;PBd`1R_NFdDt#6N*-Ac6ys telT!JElJGGDV}KI%WI}i{tbSOD>Sprj>`2C0F8i4nfMrn&}}x<)1n OhGteqW*axTGXem0YYH0x diff --git a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po index 1c2e9a678f..f2f90d3c02 100644 --- a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 @@ -49,7 +48,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Gegevens" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/pl/LC_MESSAGES/django.mo index 50caef00ce409406a8319d8025ae82109f1029c5..a310c124337c45127093c7f8f5bbcd68cacd2ead 100644 GIT binary patch delta 656 zcmYk1OG_g`6ospe?@>V!H!7A36_LDrWD!JkBg%*fBZ|wiQ^rcVyFyiKVT1Lv;l@)j(Hyw_Rb5WsI`^&lx~=@u(|Asx4%7hZ5Y>%(LK#tu zkQQ(lG@fy=7tDa8;7^c(3Ty(SDle+M1V_-n0^7lRunT+y-z-uluQ>cb<01BG_y_jk z{vS+&@1O}b(fAo;32eoE4QvCqzyxT6=7BTN1pEVHbR|5FUos)hB1X+*h!D)L$P650Gfk+Ud;1Q&aKDG)-r+(=*YD)xTcrOs2D` znTZtCzQVL0Usuf2NNZwk%7QJpy-PQlvO`vsfi4O<8zh3d`+VNTA_-f%b2l&6s=M@EGP@vX&S90!*SfGh@b!TLaI*}$R@{VY&6&>jYc$+C?4lcz8WPd>|-!fUE) zV5w_lqF`udWn?zlj!D`WC}N>&WT0SVWMyEcZ2$yZK8eL8x*, 2015 # mic , 2013,2015 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" +"Last-Translator: Wojciech Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 permissions.py:7 msgid "Installation" @@ -56,16 +55,16 @@ msgstr "Szczegóły" #: links.py:20 views.py:13 msgid "Installation property namespaces" -msgstr "" +msgstr "Przestrzenie nazw instalacji" #: permissions.py:10 msgid "View installation environment details" -msgstr "" +msgstr "Przeglądaj szczegóły środowiska instalacji" #: views.py:27 #, python-format msgid "Installation namespace details for: %s" -msgstr "" +msgstr "Szczegóły przestrzeni nazw instalacji dla: %s" #~ msgid "LSB OS" #~ msgstr "LSB OS" diff --git a/mayan/apps/installation/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/pt/LC_MESSAGES/django.mo index 536182d8242ae0062232893098261ecb50b1abcf..74da6cb1d735ca4dafcd33fd6a58ade1175a39f5 100644 GIT binary patch delta 438 zcmY+9F-yZh6vtoMSQTy2VzHo=0}(}NX{zne#X*-sb#QP$&541_U1_d!zk;Fo2^?J9 z{0RLRg0wgZx(aUoFR=w5{P^X)yZm4B>P~aRx1#$%sAaGXe2@pvz}5sTf+<)9A7BG~ zg9WhSq+b8?CcKAv1unp+@IAN$OX%M-Y0f8HCK}QY9&AuCOXR|3*!C6p0N#b|!Y+)A zr0hA`dVzROE oqo&!E`JDYb=oq0Qy3nDpi* delta 194 zcmaFJcAKUCo)F7a1|VPtVi_Pd0b*7l_5orLNC09UAWj5gRUpm-;t7ll3{!wKNL-bP zfk6XE8v$vcFawYRn+2pGz%#G7Brzu^u_QA;k0C5GwOk<+No2Afqv+%yMju{NT?0#9 vBNGKfGb, 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 @@ -26,15 +25,15 @@ msgstr "instalação" #: apps.py:22 apps.py:29 msgid "Label" -msgstr "" +msgstr "Nome" #: apps.py:25 msgid "Items" -msgstr "" +msgstr "Itens" #: apps.py:30 msgid "Value" -msgstr "" +msgstr "Valor" #: apps.py:41 msgid "VirtualEnv" @@ -42,15 +41,15 @@ msgstr "" #: apps.py:46 msgid "pip not found." -msgstr "" +msgstr "pip não encontrado." #: links.py:12 msgid "Installation details" -msgstr "" +msgstr "Detalhes da instalação" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Detalhes" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.mo index 9346bd8f21a712cdbf3243165f307f488153b754..9dc356fb9bcdd5eeea021ef41ac717e0445e0f8a 100644 GIT binary patch delta 44 scmaFD@q}Z8Arr5eu7R, 2015 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.mo index b8d193e13c287788b2b40742b62c84cdad82585a..893f56bea8338f91df7385dc07bd44028477b7aa 100644 GIT binary patch delta 235 zcmeBVJQ(5=%1k^BBT1Q_B@HkwhkLO*A#tHL%n*GEp!z zvobQ%H83$S;0o~94N5J`EC%Y)bxABqwNfxLFa)Zz&^0npFfy_-Fx%|S=+4LnF?{k0 GCUpQH@+T_* diff --git a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po index cdd8879de8..7f0f68975d 100644 --- a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:16 permissions.py:7 msgid "Installation" @@ -35,7 +33,7 @@ msgstr "" #: apps.py:30 msgid "Value" -msgstr "" +msgstr "Valoare" #: apps.py:41 msgid "VirtualEnv" @@ -51,7 +49,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Detalii" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ru/LC_MESSAGES/django.mo index e06612788f8ffd1304b024785adf993f2d75cfb8..531bfe3eaeb07d8260d907e981a8c9365b489c69 100644 GIT binary patch delta 261 zcmX|&y$-=(6oyZ$SV)A3fx*Dor1jImY;gnj4jm*PhSn??FgA$IKmSE`nufRx&aQ92oa?FmfsnxR`QwY=P^n27c#lUjAcG6I_s#?*Dy3wfB z-DmzksOSx?zRyZ)N#iB^!I(Wh@qvO#F#0xUzVMEZ>=Cc|%w8~MA3m_ZxX8u_^I<{u delta 217 zcmX@X_Jy_no)F7a1|VPtVi_Pd0b*7l_5orLNC09UAWj5gRUpm-VsR!0hABW=2#D7J z*&sdpfixqK22x=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:16 permissions.py:7 msgid "Installation" @@ -35,7 +32,7 @@ msgstr "" #: apps.py:30 msgid "Value" -msgstr "" +msgstr "Значение" #: apps.py:41 msgid "VirtualEnv" @@ -51,7 +48,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Детали" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.mo index e49cddaaa4f85aa6f378513959c4e99e6b848205..88e7eb4cccc042a566ef2324844b983035b2c9b4 100644 GIT binary patch delta 127 zcmeBU*~JoZPl#nI0}wC)u?!IF05K~N+W;{L1OPER5C;PB6-EYzNFdD(#CkvtKrS4B w^n-y*YDr>dPVqzwUtTj^17lqyLj^-KD-+X=lWG`w0`gOe@{{uNi%T*Y0BaHwnE(I) delta 82 zcmdnR(#K+PPl#nI0}wC*u?!Ha05LNV>i{tbSOD=Aprj>`2C0F8i4nfMrn&}}x<)1n OhGteqW*axvFaiL1AqsN< diff --git a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po index 8b2cab1ec1..c72c50bf5d 100644 --- a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:16 permissions.py:7 msgid "Installation" @@ -50,7 +48,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Podrobnosti" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.mo index 2f6c70b198bea7c7a9e818d744e73a91fd5c3da7..09f4697e80b330b40fd6c4413844c14546ee971c 100644 GIT binary patch delta 176 zcmcb@ynv7!H73u$c@lsU?Y-ImHZNi8-aI3;{*?S*gh-x}GVzVW~yMnG-#2c+GSTjCG9+ n6%5U+OiVXUa$*#7&d5|K$$YqLe+h$o=HZ13B}ET+cQXJ0ic}!3 delta 82 zcmZ3$a)sIAo)F7a1|VPrVi_P-0b*t#)&XJ=umIv&KuJp=4N?OG6Z3p|O?3?{b&X6E O49%>J%r>5IVgvwwnhI6` diff --git a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po index 715e2bf507..8568d7df5c 100644 --- a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 @@ -33,7 +32,7 @@ msgstr "" #: apps.py:30 msgid "Value" -msgstr "" +msgstr "Giá trị" #: apps.py:41 msgid "VirtualEnv" @@ -49,7 +48,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "Chi tiết" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.mo index 7fe88f49929cd7c033ae4b21e678791bc6e02cd2..449375adebdd4c2a9afd73cea9be8f6445037de9 100644 GIT binary patch delta 279 zcmZ3(`jxf*o)F7a1|VPuVi_O~0b*_-?g3&D*a5^Kxt&1F1H=b`m=%c60kJ9&Ujbq+ zApQl!d_c^~$iOfKh(&;y4ai@~1fe$oX=WgQJCIfc(z}5)P+thcT_6Kw@CzUf)B^@U zCRj1ZViq6h@sUNc<-V_hRd y1w%6{6Vu81jM8usBSR|#)6LR)(hydnOk$SpxtdkuDkl delta 206 zcmey$x`ws>o)F7a1|VPsVi_QI0b+I_&H-W&=m26KAnpWWRUn=Q#9TnU2Z;HA_&5+x zVPs&q2Bg`5IGc%qK@mt70cnuBDL@*ee?E`~Dq{drV7r)sG!Td}us|3L44!$#C5bsX zi6xo&c@r=9@|x-zSn3*?C>WYq8JSJaWt0YqSm+uVC>R-88JKOJ$|%Cf_H, 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:06+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 @@ -34,7 +33,7 @@ msgstr "" #: apps.py:30 msgid "Value" -msgstr "" +msgstr "值" #: apps.py:41 msgid "VirtualEnv" @@ -50,7 +49,7 @@ msgstr "" #: links.py:15 msgid "Details" -msgstr "" +msgstr "细节" #: links.py:20 views.py:13 msgid "Installation property namespaces" diff --git a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.mo index 8d6579cd96f5909bea1b1a5d338a068bc7293339..0811f7b545ed02944be0e16b73175e10f8f3a241 100644 GIT binary patch delta 850 zcmXxiPiPZC6vy$GG}fkSjnOpmf2vXuyLLBCD}*Wt6+x*jp0tR1-Q~F7&{xcbSVT?YW z13bqfW`j5o<%6+`{kVoHOmvv_Vm~JF490O1V>pF-v532I785v+NANZ7!>_o_tZvIp z23S}{{V+uorZ$LOIE4Fg6m`&5RH8SK09MCCIEOoN5w-s#Zowaz!DT#&e{nnZ@iN2t zc8ZA(ynwp&B~;+csK8VBi>l0Gp6}PTnjOdIs7if6-E0MWFizIpn86cx6jj0T&>Cw0 z0*-RNePN=E|KVv&b4_iSKqYh!6>ui>A@1P&Tp#*+4mh)nKe`;)=`y6 z67-yIdX|Y2xQMF6ZKO(e2lc)h`T!|Jus4l**V`D6rt7McLhJr2uF^itqmH3$LAtw; z072J4Feq8@XX@0>jU~&5s!KM98bgE3gF&T&j@9+(G9A0oX1eE|#_wpgXRLa2=5DD{ zo3`_}%C$zZqtYtI)+56sjyvS!ysS4;$PYVi-gUbtC!8y#`{n6!wc?Cjuayefoa=4w t%XtOQZOwNkqM2s$N)^GZ6+Kreb!F|9Ki9PySi;=W~SLc*V)C2(Amaicdbq75=4;n_g=D2u(Z11u7!2ji&k{# zvUD<#AW)X1VC@hHl?N|DU1viKPaVoj5>%(YzuBRK(4oh?`OLie&3nK1=YIQAM{%vS z{;^OZ)I-$XI+5cz;NwR5iAV4kwxi(}*^5bR#Ub2}*KrTt!4`ak+UG1!=-X;Ad8+DIgN({o6K?qZlSTozXee8BgLde1f`i zE1nzP_cpRWO?y9{Vtl#nHB@kb_f6Eytww_IJZi^NsEN%Xmy|tU;ZEM)dVcWQS3SRY z?ccGJIGvTQPzW#Sl0d z?Ovy~o2o~#y|nJjm9F_mi|O3hNT!gos7zr z(c$rekDE8r8Bjs, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:33 msgid "Linking" @@ -51,7 +49,7 @@ msgstr "" #: links.py:23 links.py:43 msgid "Edit" -msgstr "" +msgstr "تحرير" #: links.py:27 msgid "Conditions" @@ -67,7 +65,7 @@ msgstr "" #: links.py:47 msgid "Documents" -msgstr "" +msgstr "الوثائق" #: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 #: views.py:139 @@ -145,8 +143,8 @@ msgstr "is in regular expression (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -222,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -251,6 +248,7 @@ msgstr "تحرير الرابط الذكي: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -270,17 +268,24 @@ msgstr "تحرير شرط الرابط الذكي" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "تم انشاء شرط الرابط الذكي \"%s\" بنجاح." +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "تم تعديل شرط الرابط الذكي \"%s\" بنجاح." +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." -#~ msgstr "تم مسح شرط الرابط الذكي \"%s\" بنجاح." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -371,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.mo index 25482209434635c28934131da9ad13427a26e8e9..4be6ba1e167413c63195175b33283ad13f531f1a 100644 GIT binary patch delta 581 zcmXxgJ4ixN7{Kvk-d?6X40=$8V^J6GH5GDdu&4|QSEnckhjP#!OBl68ix9On6hT2P zff^ARHn$w1#+n67Q2<3oFq^N5u+2{sk zqkGJA$UA!JC%IK0?jS=dkDYjovv`5>xG#+1AIiEpPG8`Bm7p=mz!i>T1u5#Asvm!F z3|%et9|$5vO;PpWG|pojxmPV@eIsO!iWd5=cSlgs1_Ss~XQI^q&tyuwMm!74uC z6uzR?z2OXgVGVzA4!y!?ei_I3kI=^y7tOl1&4&&+Mw*?_X`@rrMrU}(X17SQnrAkP zE4YIZE?@`u@fu6`iF^2mOPFx_8XlkuIj5^|zFqLK%D^)+*WPg)KTxkSz+L=7>c~R{ zYR&|i-x75z%~wp5MN$PTR4~i)7u03-a*9A3{YN%%4xJzgqgEI<>YHghP9HYhsz#b& Tyj72qcHGF0+@h1+dwyXEdY>g1 diff --git a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po index 03e4ae0a53..5b1287a16c 100644 --- a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -50,7 +49,7 @@ msgstr "" #: links.py:23 links.py:43 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: links.py:27 msgid "Conditions" @@ -66,7 +65,7 @@ msgstr "" #: links.py:47 msgid "Documents" -msgstr "" +msgstr "Документи" #: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 #: views.py:139 @@ -144,8 +143,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -221,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,6 +248,7 @@ msgstr "" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,9 +268,25 @@ msgstr "" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Smart link condition: \"%s\" created successfully." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Smart link condition: \"%s\" edited successfully." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." + #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -361,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.mo index 75c47bc70c77f45b59c4d342bdbb25b484048a61..8dd816ba5a6d7cf8db434521a4ed419fcd349cc8 100644 GIT binary patch delta 843 zcmXxiy-QnR6vy$C7+<2*`kL6*mnh=UdiCD;0){#WDIH3y2tvscTFr1N%@vJ;gUugM zoPu^Jbn4WlU^cfdl`e%Yoy5r@g$^yWVxfcI-&G&-+|R>(Ip;Yi&)3A~?(#`zY|j`& z%s%Ew#B2h`qFfj?9K|2lgY9)@2^_^voWnRSVhnS53-j28+t`k~IE?S`Hh#huv$7qt z7~@6_^B5D$CF zZ{sYK@FA+`N2tJ0P=RxJMpw2`omgu$OX8a=KcYHvgxcT<^0OKjZS)uFc`MbZgCnT# zGuTIdTVm0Q0V=@`s#Wiiymo{N_yzCcH&g}xQGZpOtj#!!4rWmWtfLaWLW;J1)JERo zEFR#zUi`^Io})StBbqwWh`Qf`L_+$4n=nyYf34v}J>p&6kB@ zX~Q0@`lU*~u2{{-{zax|9Cy-5dns=wGd1nFQ?A>*xZo@mw)_o0C_33^r9vi^cD?KO i(q6`MtGf-Sk&bNeA`I!<@_K=wer2s`rJ9TXiCh3*r&XT- delta 1097 zcmb8tKWGzC9Ki9HKTT?l)~0{r-}VgZkoMv=B+&*tD2^7bf0izqCMR5)+-WYUScgoC zQ82-j#)Iv&)U>@T*gZuCr4&oB-!DW;+AEALOzTZ*SKN41I zzfvuAnTMVH;NS$_L0Rw_GFGi%FRtPNT*Dps1tsB4l=<-|Hm7YfS*t{zmBr-2Fk);@h8=ZMYiFpBRng/l6HZ2arph=BDF0 zl#MK*BybNYntF({lJOHBrtl@oz#qQyB9(}tRHh&0|3Pk&@EA%$lAI(!9xBnE4klV- zJjo$yblHlmA~Pi#WmLQA^7T*x@2df?$-y0>OEf8kw8LGz!z3}U@#T0;${>v+@tT~| zkSs4JJwTUFak#w^blO)#wN}Zo%T~j3?1Gj&>L#^P-7GfDvgS5RCDV1UH>=g#X?3Yq ztT(i(WiM#|PAHpI^S>sT#M=rG=|FwN$G_O}k>UbZ54AGw>J1ORgjU 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 6d02b7adf6..4efa59f043 100644 --- a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 msgid "Linking" @@ -51,7 +49,7 @@ msgstr "" #: links.py:23 links.py:43 msgid "Edit" -msgstr "" +msgstr "Urediti" #: links.py:27 msgid "Conditions" @@ -67,7 +65,7 @@ msgstr "" #: links.py:47 msgid "Documents" -msgstr "" +msgstr "Dokumenti" #: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 #: views.py:139 @@ -145,8 +143,8 @@ msgstr "je u regularnom izrazu (nije bitno velika ili mala slova)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -222,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -251,6 +248,7 @@ msgstr "Izmjeni smart link: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -270,17 +268,24 @@ msgstr "Izmjeniti uslove smart linka" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "Uslovi smart linka: \"%s\" uspješno kreirani." +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "Uslovi smart linka: \"%s\" uspješno izmjenjeni." +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." -#~ msgstr "Uslov smart linka: \"%s\" uspješno obrisan." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -371,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/da/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/da/LC_MESSAGES/django.mo index 07696299a1b938b64a0386bb53eb44389741f664..8fd926663c52adb85cfe0e8767f857fc82823560 100644 GIT binary patch delta 168 zcmX@c{FyoGo)F7a1|VPpVi_RT0b*7lwgF-g2moSEAPxlL9!3U+Xdul6#4mtsAOZuB zUN~^cPcF?(%_}LMXyI#WrfXoVYh`2C0F8iBZ0$rn&}}x<)1n zhGteqX1WF@1_oRK{<=Y_Wtqj9`FXl7i6yC43PuKoKy?jR~g%J^mi!c{0n_gf>1LG{Rpa}{pa#Kvo_p^7FV;=@6Z6IH8%A`| z%4xqc%nsm(O#Xu?IQaRw{!efs`SEau$9&7fJr zDmf_RLO<%oBbbY4a4%j&FTTYB{ETk=h8u7ROR!|saw65p&pP;?g|ATk zzDD&sgNZw=_aX<4To~bP4e$*0;4JFFPq-E{slO~kt#tr3lRX&1Ui9HP)N}W+6Q7_a z@D)`#m01(^7E*t$aTOOd@E~drTtafPySNR@M-kn1=QwBq7s?JcAP_Jjf>27a^8a)=rXG0 z4^jO+!YZ6V4LpZ_TtJFpg$cfeIu6Q_K5ZYW5(kluZE;k|&Y}jsi7MrE`uaR-FD#+H ziod9ty2-i*J(z+2hX&Rdy087`WT>pR=!DRBt-ZF>TZinvz#+r!~@4 zg)W+sY@jKWm`?{pEv<>BDu>hKTN@|(M)kR=dCH358BK@nwC=GQV-6KTt0WcQ!41}W;VSOS{6lnYB+1oHJZ$MoLa~o zaTT-$g3W=ZkT290ZfPAopYLs6xzZF0hl2G%BCj_x6c6;rBBzEUkQpB90S2Odn02Aqv$B&KnCKAf~epNX`OlYO{D>^xG&8#v)Q)Y~hZ-!~AB6h9bFv+i@LPi}@ZE`7LA&)5vHVs2w$M zgv$dshFa*;sQv|1Ag`jf>@_@qm+)Tvy#9O*tD5jO4Yu9v2Z|ugMX8%aMQl-L zU;#Dp2dFdh1(Fo=6F!8$p&|`&0Q5eN`u*d09cOS7J35R>;j^fPz12bfwbFNZ(2rM9 zk$r_4;AZ`P16iZFjrw7LBdi6q;vo#72A;xETtWv|P>1sy)Ixv3!`R6~oq-co8V}Pr zk6OTW)RugQn&<}{z@JeI>LhQ2*o*oaj^louL4q_dqcZgd^5K}vsEl4kO}vUE%LIs8 z&#PTDbXcOO&nkt=KpKbfG2DjQrf%y0i~6f*;A7OIR2?uCer6t|CUiql5Gu;T0jmBd zP^x}3T0o4d&rD^E8lh^XDoQB}_cNmdH$?T*kIIVn{7#9}NY!tYSru*FL8?PdQv0YG zYOlWkLo^gATWiu(eF;j9wnJMGr7ERLr&6rKHu^=Wzf(qN9I4;ztEQda!$FVAz|_mMf>+V(HAO{6cBASSc=)_IcyZz_5KG zZ_jSt)_&iyQrif&g`9lZW-E5q@fP!W>v^XaUH8Qi^Hl9-a8Jnbhu-?-ZpSkA-S3t! zHC=2-r6RGhNFwRPN7ISXNGutPHJ^MUGGm`BdMqY#oC(uTA{O`i#Zyiqkxm||oo(sv zpUzea#jNK%Vhd&0I!EU>?{k^?F>fSSd}(6&Ld$p{Gw)2@_|VH2Y>6e7={-yQi={b& z+&cX9UEzP)_Hk{hwXe&TPcOK0Wn0V_99#A()^#hj6Rkaa(@uE63-j#1_jA_uC-pn@ UZqXrUv*ny6DV61=_G=CQ0vFl!TmS$7 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 5b20f86020..f465dcda8a 100644 --- a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-09-15 22:48+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -147,12 +146,9 @@ msgstr "ist in regulärem Ausdruck (ohne Groß/Kleinschreibung)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" -"Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die " -"{{ document }} Kontextvariable ist verfügbar." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die {{ document }} Kontextvariable ist verfügbar." #: models.py:43 #, python-format @@ -227,10 +223,8 @@ msgstr "Ähnliche Dokumente für %s" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" #: views.py:97 msgid "Available document types" @@ -257,6 +251,7 @@ msgstr "Smart Link %s bearbeiten" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Smart Link %s wirklich löschen?" @@ -276,23 +271,24 @@ msgstr "Bedingung für Smart Link bearbeiten" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Bedingung für Smart Link \"%s\" wirklich löschen?" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "Bedingung für Smart Link \"%s\" erfolgreich erstellt" +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "Bedingung für Smart Link: \"%s\" erfolgreich bearbeitet" +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." -#~ msgstr "Bedingung für Smart Link: \"%s\" erfolgreich gelöscht" +#~ msgstr "Smart link condition: \"%s\" deleted successfully." #~ msgid "" #~ "Error deleting smart link condition: %(smart_link_condition)s; " #~ "%(exception)s." #~ msgstr "" -#~ "Fehler beim Löschen der Bedingung %(smart_link_condition)s: %(exception)s" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -383,14 +379,14 @@ msgstr "Bedingung für Smart Link \"%s\" wirklich löschen?" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/en/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/en/LC_MESSAGES/django.mo index 5fd0ac0e74061e69f496168273330f592cae4a33..99da50d7591e615c7505999d62098dc0895e2cea 100644 GIT binary patch delta 735 zcmXxiy-Pw-7{~F)>szK)zGm4Q5`mLlH&7~OQMQA;)4XM?Jog55z~7VE9mk>+9W guH%GGJk3a8Jz6c!%@@n1sZw=mq0-q3gdO+0Kc3Jw5dZ)H literal 2735 zcmeH{OOG2x5XT!5US@eM??;x(ilAL>#xu5p6=v~)WF2V*R#qDmu1sdy<0j*7r@Ou0 z1#v*)z$tJ6aX{kA2Y?TdAi!TZ7Q!RNsr!3V%!LC*INkjF3HBg7K8 z1U>>bLH2KhxP-#(8PI@h;K$$s_|4?~C6MR)8RXKhfE@QK$Z>xIKY=z2_m1`W^1iVi z-+`>hPax}Y4dna}AZga)5XgGeK-S{~$a=^LKL=TlA3)aQPq3^9MY0}CAjf+H+$yFeFpM;AAqdK zhakuO2;{h*f{>%EiN_(Vcp7cqur#H;h&$InXb+)rJdVY>aV`&|v36V+Yxa+E-iOdQ z53Y^v@EBz+NTD>=jSbS5h9xSE^Lzr0*ZnaxUI*U8rM;eIq~(ZGqci1|(T=cm`!)%mza*+0EbM6nnQFkd+1ehXE4h$=mo}7)rZG z(pqE70%yrO(Lqg0r^V1geNv88u8l>suCZl}U1gmoOwg~2vkGe^ca`%>=W~KOk?2fd z5q+Yxn|5d=O&o`JQadc~j$9Q|XO2e7_h!BQ+>nU8FiZ+;2Qk;bg==0)%=spo-RGYP zboK{TjWG~Uw+GwAtY|DYMK4`mKWx$|X+gbAe%SEoT^lDg8~Y`10_)T&YCBzBn8$ZKza0=?Yz;h?~lTc@;_SSNk+t*3bZRo}*_e)>Q@*lQ3~f>br;P2pnDn50bj|uYjl0biO^2IQTV1b+J4cj0 af76+E=ZIRJKbGeE`~A~597+H8BkDRiU*cK- diff --git a/mayan/apps/linking/locale/es/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/es/LC_MESSAGES/django.mo index 7ec84d1a2870b84be08804d9616fce9a7d16c073..474c79b33e7be982e0dbe2a828b419011a55f27f 100644 GIT binary patch delta 1262 zcmYk*Pe{{Y9LMp;wf0Z9(#%TD%~|%xt+uHq+u>KN*c_wCkz%kzP#uht zA02|Aosy6s*{Sdv5fL7|M1(IgeK_|b75v-!J@eYrngITn(6R4zQ(SsIp0#iVp=oV_8``C=num@kDHuN6#{#Vq7 zolLTm^^K2*0qnyTJf|-(gIchR4xC0!d;>M{9lT4q<}u0t!yHfF7jYj>p)y#-UR-Rr zf}G9##ENS9n};-ZGFmmuB3@Bipf{SVVLNHy1HHbNQDZWX$a%21r9i4`h=LYYzMl7?tHneL4;7ojP1 zdiHLDG#yMoN&V`yem$am>J}@FiF(i98tIg}t%qnkXdI{>t$eDsI=z0b3f+Fy{eb=< zlsR2Mg~}GDsoWbuwQ7%@*(UppYt(67$QA85SIB)fUz*65F5Ayt!J6fsb@-Ff*kCjf z55<$Ip<#R7+x4#}5l_WqwXko^VHfK~=`pQ5a>v`X7;t+rSsLL64Z0jc27tleodYcR^-}%hWyz{=#`#dxK9{d!_y_#Nj z$vHY@CA?*oxD!6WcI`lkpf< z;TfzmCTH@TFo(H;bMY3=z{jWsUSlPG#;y1R6-bO#=HX5Zp^IAJ0#3mK>baY!@wZWd z+#B%=wz9ryV3a26#z}Yxm5CGBjDy&Y_i+RMLZ;)`R0{Xw5*$E{A4E-DKt1;Wm4UaY z@#AZZ*@Kf&za7;5ENb2JHROLLCqrD&OLQMK@k`XgZ!n7Aa2-Y{@LF`S39qA`e}>EP z9j?S$@~d%OxE)X9VtkGy$oxW*O*+WGc2q@P*t7|wb`(WLybl|&AK8?-hzhKLn&1{H z^>$vGH%C#}ptB4KATy#uM#(XiQ}i7icR{rP|&#Q!{C6W7@I z%8?a{dn+ynYC2ll*0e<0treZoNauyBI$c=Z5?N)nbwnfW#m1`lf!+Sj<0)&O>v?gn z6i&jqTTENF{!;OTZ8_Z*AsNRzAt#0bxX7|ODuG#$8TxOG!T3U>4|8upm vBqrmE&ANN-h?8~0W>fygq=mteBokb}laBvuNL^`2v!yisF`_tBJskKAc!CJ5 diff --git a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po index bee6bce111..1c518611c0 100644 --- a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,23 +11,22 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 msgid "Linking" -msgstr "" +msgstr "Enlaces" #: apps.py:55 models.py:18 msgid "Label" -msgstr "" +msgstr "Etiqueta" #: apps.py:62 models.py:25 msgid "Dynamic label" @@ -145,8 +144,8 @@ msgstr "está en la expresión regular (no sensible a mayúsculas)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -156,9 +155,7 @@ msgstr "" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Este enlace inteligente no está permitido para el tipo de documento " -"seleccionado." +msgstr "Este enlace inteligente no está permitido para el tipo de documento seleccionado." #: models.py:88 models.py:100 msgid "Smart link" @@ -224,8 +221,7 @@ msgstr "Documentos en enlace inteligente: %s" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -253,6 +249,7 @@ msgstr "Editar enlace inteligente: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -272,24 +269,24 @@ msgstr "Editar condición de enlace inteligente" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "Condición del enlace inteligente: \"%s\" creada con éxito." +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "Condición de enlace inteligente: \"%s\", editada con éxito." +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." -#~ msgstr "Condición de enlace inteligente: \"%s\" eliminada con éxito." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." #~ msgid "" #~ "Error deleting smart link condition: %(smart_link_condition)s; " #~ "%(exception)s." #~ msgstr "" -#~ "Error al borrar condición en enlace inteligente: " -#~ "%(smart_link_condition)s; %(exception)s." +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -380,14 +377,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.mo index f3499b383d846c7ffa287f798e6f5b04b85fdff7..acb0ae4c190ec7112fbe28a0e59506c1cca87f43 100644 GIT binary patch delta 1239 zcmYk+Ur3Wt7{~FWTeIora+PVbdR=ON=5p`+6B>kyGK_-eRg@94NsVH55f~)wPND*f zv2KLGtE4U>mO*q=2@*mUbThh;x-6oLf}$>@?{93WzT&UsyFS+z22erL`Q zowO#}(+Xo^c-+AcanWf^8>X-t@8B++!!7t6x8n-d<0o|CZ}j6jMzC&^F|{~|Zj58V zn2b5Y0neBzY{Y5YiuX_hJj5z|fl6Qrcj77r@eA^2JdCOV{OH4G)O$ASyc$Xiz_VD12~@{PRL56vhGm+?Vb1HBo@O}4&py0>bvTP5oGyEOkGHs?Z!#409h<>IbL+ zmQZ`-18U%3xF0>-R6^Z8>aVqnaX~XkqGmRUN+?%)@Ez*8&!{zAM{QasJ5)>N#t;UP zl`(s1Ei_g2|Iin5h{k-2@3m_E%W;r{w(<#Tts*p)T%iOMS{g-^rgc=}+ArH^NA{|gkL z82W$GOk_|RXJ?O~3@}71t6rOyXDdY7Kd9LMoTyW3V@sH*q3QCcnCc6YVKBB3~JM3gplASu}nS!$QvB?wt01Q7`v zAw;5a=mjM!5ho%Nf>eUTYy^p;8{&e9?{C^7Zl28Zd}e2!d7l6Ce`a>TdOAD(uEKNP zP+F){sn16k6UKx2G?c3zV`{J$i}49g!&g|2pKu)Jd5sy56R`jru>xDrk6|2z2XG{w z#3{z4O@3KK}OEHYP-iewpj(M0w4ZIgM@KHR@_VwZ_e%EqS zE05tE+>c|h7w2IX(>i(23E40u%r*lna5)B1D@~zNdj{+93UZjoG)n1f)CAr#W2(`I zT46hG!U!sm2dF@wVIzJlBmatMGNbDysz*K8iW6`>YJ%-JA1`ANU*IClqqF)g!2ovP zVmyxP@FBKgW%=NJ8;mF&sd8^M5#anG}_Y@s1e^FuQ%uH$}m3K~Y8#9-xPmC|ieKEk@Z>jXvWo=K_ zh_XZ?p0K*@9y=9{ZOa_?j++~@s%w)wwNu*K(Z^81V1*80}ld!tEK;af>$AuH$)&~KqH zxWMu^hk{Mn@{z6iV{STkoj%LycWztG4d+(wNM@kK`k#cfm2S%1Ep4mldvn^k?({kR nR_<8tMD9rLXl8fuq)H{n437Ng#z4vZ!oNCs)G6yN3+Mj=*O~Bc diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po index ffc60cc03b..689eca5027 100644 --- a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -26,7 +25,7 @@ msgstr "" #: apps.py:55 models.py:18 msgid "Label" -msgstr "" +msgstr "برچسب" #: apps.py:62 models.py:25 msgid "Dynamic label" @@ -144,8 +143,8 @@ msgstr "موجود در عبارات منظم (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -221,8 +220,7 @@ msgstr "اسناد در لینک هوشمند: %s" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,6 +248,7 @@ msgstr "ویرایش پیوند هوشمند %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,23 +268,24 @@ msgstr "ویرایش شرط پیوند هوشمند \"%s\"" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "ایجاد موفق پیوند هوشمند \"%s\"" +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "ویرایش موفق پیوند هوشمند \"%s\"" +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." -#~ msgstr "حذف موفق شرط پیوند هوشمند \"%s\"" +#~ msgstr "Smart link condition: \"%s\" deleted successfully." #~ msgid "" #~ "Error deleting smart link condition: %(smart_link_condition)s; " #~ "%(exception)s." #~ msgstr "" -#~ "خطا در حذف شرط پیوند هوشمند : %(smart_link_condition)s; %(exception)s." +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -376,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.mo index 0c0b7f0c9332785c8a90ffd3ca12ecca2de79bfd..354b4f79b06eea48191f67b18cc789f9c47fb2b2 100644 GIT binary patch literal 5080 zcmbuCO^h5z6@V)t{4EedelQSz3LATOab{-Mb{uD%#9r*RWVCBr_BuiW5w)jlX3Od6 zo>cYhu46@T;9}(j2q6?9AxMN5aX{gKazKCvAweW$i33Owq#TI2yuzW1(gDB5FOALaVb9ZFq-e|j4~w7It{bpX!855Ws?23q(r zn8SPE*Wd&2d+>ws75EN#3+{!#AAbKgyqD*D__zS~!MoualzuJvZul%*hF^gX!r#F6 z!8hPt@bB=$@L%vgc;7nKH#ifhVDi|4%4(Klm=CJ^~LwdA|fPNySj?xC-A7 zuR+msW5};U>HjS#{a=Ldfj@)dw^!jq@UQR)e1J)ugr9|C=krip`VvG$Z9|#Y%aA|y zTYf~(AE4;{2mCm^gF(d}4MlzdioGjP;&Blkgipiw!fy`WzX)Z#pTaxgFQDlCB^154 z;Pb@#P521U*XbxKDE|C5)bQuN?g|9tMCi(VK_$;irrs? zB4?rG=M5u7%h2v5YECU;6tztPr$Fk^YC|2 z{J#%j@$-2o<6VUN;OC*}{}L4c+<>@L{Sb=YS0F0X>rnFQZ&3Q*jWZ-pd!WSUC=|IA zirkkWsjpsuGVXVw=zR%Fd|rlxccKxBkVA9Bw<0Go7Jo?-e@UZj(ETWsIY_=qBNQP= zj=|s~Sm$bRNp3vGML2?=Kv<_*ZfNsdhqxq0O)hCixx^}xz4Zkj8~_| z{VKP*ow*4e`w?^|%1t@W=!Fbk4!8STuTGo9&W7c@U5{+;)Gb>y`(3Eqiia6XTG z%*RsSq?W>>YiZQAElp%hqLv9@_^A#yj_b}ZL4kCsNPD#$W*)=bI34NSbbDf%80JhG z8&}ttz0s$yMrkLT^*T1~sGpDxg`iD4Sd(`8QOD@H^*rzSW~0G;d_4|bdM>+aT6w*d zbsHvaEY=@sIMZ&7#_^3SeVgPq^^N(uURyW%`t>s9o_kK>otv#(Z$!?9AX%@YQF7MR zvU8+f$E3zZXzA#<>Z0S43d>tPXS^rX)tSs0+eym-qC9u@N}o(Sn{F7FvluWT$vQYW zYlnxdC#o}7S1ZBmD+IC3LN)p5!!vfMbEYE!R+q*rt8%NK=^J-V8!^W(wF&Ye8F^>R2(G5_O^9C*B1ZQ)!I4&&dBsxz{T9UCXeDMk7RmLlIV<1 zZtM_0>{PA<86(YdkV@Lb9sL{cS`$p&&Ve8l@s$ebyvVRh11A zEMsRn{UqXJnM8Em^}}t3O~}3RnB#|u0r9WOobowEcsTFM{cd_M6sxLsHm*Hsoa91N zuSVCRR4<=iy)<*t^fH&%R(;3Dwa@fBzP6S%^~{CyYqe08k*}R5J)8Q_!s5}|!r|JX zMZI{mdF0{R!jXjq1Zx+~h84Zja)%b1iwg%AXfrF3&ueQgN3(WhDg6zT zuxpOXu#WodtA@3Tl}TbLRe3XPv0|^()A0(@vGu(ywd}f;y|r?yecx%6PwA5~cghX6 zhgOUSSEq*W3d43WWz-Ebg6&a%E2x(oAKOb!>i2ric8x3VDEpOJ#?!OZ#SX1cRQpUD zj~LdE2Vj1FHw(mD6V57p;i;qvJ3>nehd5`q&PC25U@fI?5ZvXfVK$#_t!q-opY{L#&%?{AY873pcO zH}QF?ZC9_UC2{Ito2@Yxo1P`ZbvKI#H%Y<4cbF#?K4&B2gpk|BQp6=US@CifAfe>^ z!0bkc2i>EN#)ECn5BdLpR9K11BLPFmw!+GvIzC`yWm$#uf?*NSqchk}2itOLAXGdj zvxDtv-xt|gIYKNAPYfDq3Q32gtAtP&=Lj#UIGgo?ei=_r6cWi5%fT(drxdN?_+4Go z&C~^)O&dafn4Ss+pLR##QldwzQ9m{+AmF{Ilt(i#9 zv*EBIb1Tmv!|dab(IrK33)7ST7t|@!vgAOIx+KRBNe$h_Yf&xEQd}Q$B+vS+Sn`jg zAfd)@r< zo!EuVID#8+0#i7N?f5vZ!Dq48n5qdlVGMH~yYVBu1uviiEaOdh8SleCP>DwBIbl-fDt2KLZx7)XT!)jW>&H+5 zOBg{PHSj!Y;M4d#%eR2L_-%7jGk35b%h-Xh;x>F2s|ijnaKbz03R-v-_uy8d-;9r< z?t5tADI{0(I@1Z=%8aJa7c^dWHi>N*HejD}I=2_x`HqSCD(C?_V zU(JH<#tys_kKo<-0`9;i)F%542e6g8?!+|SgHw1I-@qaK8CAJn2G<1oV$^>-Cj(qi z-~$-PqsS!8Nz}m4pepemYOj2P8sIxr>3>9(JiOw$eyETzmaiU?sKE(wu00H4&9nO=Z?ZEIO+hZbVfoMYrkNs9KWh zC<8<;1+pQdx@g}-TywWrq%}mRv#>$1Cb29wZIB040|3!_J3OAoN zB9&3zjkVM#rcE=V3$)uBgkQ#BkcbWiU#{y6s!=!C*1SJB-Q3-ju@Zi8x%p6==aoDw z?-ZPhTbv0lMK>iANq;u$Ri+AV@%U7(RLr{-w^SVTcUy_1b28_Y8$XAGo|Xf_@s_^e zCHha%^<7rZbFvjDZ~1e%oa6h`bA`fV!{&kDhiG?KBgTK<+-Nxjx&GebTP?3e#>ef{ z9d>%m8lA|bC+yT%D%E=AuzkNX@A_nA?;~KwN~cD7?shx9%Sw%B(qoI|wR=}F=d-~V zZSI^&Gx%PN)slA%K*Ylh?&nlEWpS-L>mXyn7kDM7ZyfRR)RkD>J+upH* zQvKhGJQCX, 2012 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 msgid "Linking" -msgstr "" +msgstr "Liaison" #: apps.py:55 models.py:18 msgid "Label" -msgstr "" +msgstr "Libellé" #: apps.py:62 models.py:25 msgid "Dynamic label" -msgstr "" +msgstr "Etiquette dynamique" #: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" @@ -144,19 +144,18 @@ msgstr "est une expression régulière (insensible à la casse)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Indiquez un modèle à restituer. Utilise le langage de rendu de Django par défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). La variable de contexte {{ document }} est disponible." #: models.py:43 #, python-format msgid "Error generating dynamic label; %s" -msgstr "" +msgstr "Erreur de génération de l'étiquette dynamique : %s" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Un lien intelligent n'est pas autorisé pour le type de document sélectionné." +msgstr "Un lien intelligent n'est pas autorisé pour le type de document sélectionné." #: models.py:88 models.py:100 msgid "Smart link" @@ -222,17 +221,16 @@ msgstr "Lien inetlligent du document: %s" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Documents du lien intelligent \"%(smart_link)s\" en relation avec \"%(document)s\"" #: views.py:97 msgid "Available document types" -msgstr "" +msgstr "Types de document disponible" #: views.py:99 msgid "Document types enabled" -msgstr "" +msgstr "Types de documents actifs" #: views.py:108 #, python-format @@ -251,8 +249,9 @@ msgstr "Modifier le lien intelligent:%s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" -msgstr "" +msgstr "Supprimer le lien intelligent : %s" #: views.py:222 #, python-format @@ -270,24 +269,24 @@ msgstr "Modifier la condition sur le lien intelligent" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" -msgstr "" +msgstr "Supprimer la condition du lien intelligent : \"%s\" ?" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "Condition sur le lien intelligent:\"%s\" créé avec succès." +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "Condition sur le lien intelligent:\"%s\" modifiée avec succès." +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." -#~ msgstr "Condition sur lien intelligent:\"%s\" supprimée avec succès." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." #~ msgid "" #~ "Error deleting smart link condition: %(smart_link_condition)s; " #~ "%(exception)s." #~ msgstr "" -#~ "Erreur lors de la suppression de l'état du lien intelligent: " -#~ "%(smart_link_condition)s; %(exception)s." +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -378,14 +377,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.mo index 596afb335ae2b9fb6ed8b252af038c1d1af6b26b..983b873f5e4fa3c86a7f6b3c7aaee2c99823361d 100644 GIT binary patch delta 170 zcmX@f{DV2_o)F7a1|VPpVi_RT0b*7lwgF-g2moSEAPxlLentj{Xdul4#IJ#DAOZuB zUN~^cPcF?(%_}LMXyI#WrfXoVYh`2C0F8iBZ0$rn&}}x<)1n zhGteqX1WF@1_oRK{<=Y_Wtqj9`FXl7i6yC43PuKoKy?`2C0F8iBZ0$rn&}}x<)1n zhGteqX1WF@1_oRK{<=Y_Wtqj9`FXl7i6yC43PuKoKy?^W0!}tOB;3wRLKX3=GW7L?U zX`$Ca8rm>|$8j&7!Yw#~M=^^U=n3*$^9EyB!F~7^HSuTEMpjY3U&kJdGWd4vMfD%T z2=kk9UUt(kfk*Hrw&06;`)kyMOQ@tQqXzzn8u$yA$l4m7;QJxl+K=y0nfiuW=x@}< z{@_mRq%qF?<}fen&`+fWoWuh-jrzf3)Xo;`?UnlX3fi=PMGe?Or(@WII^JZyZfGYC#E1;b~M#eeA@0s7yUYP5cab z%yX)4T&%b2xD~V&YnMhJnoxsj0*j)B>4GIGimeo_dNXunnyihY$(1o}LYGXzY1GoM zqg2%IbM2iIs9pG0b7mtYwN@(KOog(bNKljkT_}bA0ZQd&Xm{cATH}?p$+*57xK?4t zxfNKxm%C9gnf%n;jGGIr;O?yZ|FdAmvR+WW8XAd?<(x_1&6Zz=l998{r0Z8Ng(HoF zLn*sI)t9!?L&F1uDSN=Sn=f8Sjk~wKf|t*wGEU$QTYYwVvtM6&IBi!;O^+JN@mN># zvN!8lS)Tg*`F|_%%(;BlyXH+fGD7{~EPUAN6v&Glbt+O%Z^xn_%QCic(H22q!8ExRKOt~=taL3Y?v5JX;v zE5xIEphK4s61o);9VDn*-`}`eAO$`6?q}xp{qwxfJFhxFbXC_Lc34D#c_!f8K7gWOEQS(!cX8qWYt#}GGehT?BkDop0<59eY zN%ps=wST-sZMcd${2FTEkEn&e;vK4!jGK+|es71_etd_j$U1T&Ya&~1Fn|Z}BC0>A zy)WTu-k;zk``b4?V3uR4R14UK4^gFhj=F+R$o|&av{8{Z)Cqe~iRMs=P9j4sk4kU` zwcc%1W$z^5@Jy{=_nf3@Q_cG`xSc4J zh&Fd<%`{b*>D8!o%BF>;4~k+$9}+~NgtVCw(S0jaR)tQlgcLf6f?J4!TZ%#z>7eQE zRRw*V`jDeI7fv=@Njkx7e!k+Ayz)#CzG*lccEk==FKzWX1;1SMDxO~+chUnv+9}Mt z`HEX~f`vlC4T9-~QtA4T{bNGWExG?S!7Zk|Z4;I!VvY69qnY88ne2#jJU5=rg%{$z z>KV&qPdLM)-ebIzjzvxYSg>4g-R}-J>egW!eu=M}{ diff --git a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po index 65b3807b0a..9b18341ff8 100644 --- a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -26,7 +25,7 @@ msgstr "" #: apps.py:55 models.py:18 msgid "Label" -msgstr "" +msgstr "etichetta" #: apps.py:62 models.py:25 msgid "Dynamic label" @@ -34,7 +33,7 @@ msgstr "" #: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" -msgstr "" +msgstr "Abilitato" #: forms.py:35 models.py:109 msgid "Foreign document attribute" @@ -46,11 +45,11 @@ msgstr "" #: links.py:19 links.py:36 msgid "Delete" -msgstr "" +msgstr "Cancella" #: links.py:23 links.py:43 msgid "Edit" -msgstr "" +msgstr "Modifica" #: links.py:27 msgid "Conditions" @@ -62,11 +61,11 @@ msgstr "Crea un nuovo link intelligente" #: links.py:39 models.py:29 msgid "Document types" -msgstr "" +msgstr "Tipi di documento" #: links.py:47 msgid "Documents" -msgstr "" +msgstr "Documenti" #: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 #: views.py:139 @@ -144,8 +143,8 @@ msgstr "è un'espressione regolare (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -221,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,6 +248,7 @@ msgstr "Modifica il link intelligente: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,19 +268,24 @@ msgstr "Modifica condizioni per i link intelligenti" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "Condizione per il link intelligente: \"%s\" creata con successo." +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "" -#~ "Condizione per il link intelligente: \"%s\" modificato con successo." +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." #~ msgstr "" -#~ "Condizioni per il link intelligente: \"%s\" cancellato con successo." +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -372,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.mo index 7b5625736b746fe914a909c4b86a2d3733832f4e..0337c100a862ab5f33fa24becc799c158abbe9c8 100644 GIT binary patch delta 1021 zcmX}q%}*0S7{~FUEzqKfB4BxSfyRqA?gGUG3{g_zL8Amca4?zz6Kq-*q(wPdjnR{M zaN|Kq&adP#JO~^zUii;3P(@_CsB!9*8seQnrIa@?)mQXk9eH_U$GPaq7rRmFgck{RHD78 z#78lK=dm6OSkkw>vwPze>V~dCbA3le6OGUIKiCKp3ARI5dQ95pZP7Y~xy)kG$!Gms!KCM> zm*%WrESRyGY%#bRK2`pYSRF>~2+d31paGdY&C=(>eRuY>-S;!(v zz1^+9g|ed$agzDfD|x{$C>=&vUKFz^TQ!e|&_+q@4w8$yhmzPDN}?M$fzNRO-=j>l z+5H~f(P@7arT;msOM@aW^XTF(Y~UC+k=<4AP$vF>{M1Jtvf?(fA^tf_!px&aD1V0Z zmyq#fahf8@$#^7P_b-!VBNNMoViWv}1b)a_%If84WLqT;cks_w5|ZFD`N1jp!72G6 zJG74?N3e$?ms2jXA7{N>a4D*t6{F_rie)c5-qYY2uN@q(FZ`<0rK(-FT&rpqbaK*3 z>Qc=#T(hj5)l$iHoC~X!%C%|LqeI!OnE%zmEXS;WIyA;Y{e1(o>CDM=ZboPGg60iTRO#NJy* 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 5b66e98e08..b0e6a9a71e 100644 --- a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -10,19 +10,18 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 msgid "Linking" -msgstr "" +msgstr "Koppeling" #: apps.py:55 models.py:18 msgid "Label" @@ -34,7 +33,7 @@ msgstr "" #: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" -msgstr "" +msgstr "Ingeschakeld" #: forms.py:35 models.py:109 msgid "Foreign document attribute" @@ -46,11 +45,11 @@ msgstr "" #: links.py:19 links.py:36 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:23 links.py:43 msgid "Edit" -msgstr "" +msgstr "bewerken" #: links.py:27 msgid "Conditions" @@ -66,7 +65,7 @@ msgstr "" #: links.py:47 msgid "Documents" -msgstr "" +msgstr "Documenten" #: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 #: views.py:139 @@ -144,8 +143,8 @@ msgstr "komt overeen met 'reguliere expressie (hoofdletter ongevoelig)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -221,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,6 +248,7 @@ msgstr "'smartlink': %s bewerken." #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,17 +268,24 @@ msgstr "Bewerk 'smartlink' conditie." #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "'smartlink' conditie: \"%s\" aangemaakt." +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "'smartlink' conditie: \"%s\" aangepast." +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." -#~ msgstr "'smartlink' conditie: \"%s\" verwijdert" +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -370,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.mo index 942c11d7231d9b13a82b0faf68031f9202b6af46..61643f5ee2a77b3ba6475b7d09b039c047da8bd7 100644 GIT binary patch literal 4878 zcmbuBUu+yl9ml7%<&S~>rG-)`)08+qn!P`c>!#wW!iV*4(LWmb$s04^ge1EgMw|llr zkQm+WXLo0Q^ZPq9_ud^hy~xmx;raruf8W5^8Ssxc;)XVLGh>rr1^gVi0#1NF_(jlw zw}CH!cY!|x?*@MbeiVEgJOI9%_5TaJ1Mjz?vkpE0-U7Bjl5@dNfJ1Nzya?V4z5#w3 z{4;nH_;>Ig@SotF;GG{!?KlMD$ByFmDtH1U{r>>T?t4GZ*yq7XkiIW~Fo}5}+0g-S z1rw0wc{bzoAjxlmB!30`B={SU;`SzZ82k%31KtHEPJmwr$klCL{XR%>{QxBWwM>>BtQ z_zrjkd;vzko>HIBsZJAFMt%EliB+^Ncro74}m`h zX|22l&Ve6*pCB)!jpHSjV>d3Y0~yuAyOe>dVr>*;Qg{GS1- z9_B#O_iYeA_9AXH?q!hjdoAM|AnADvBt7qeWKX#v^tOhkvX2MBNnB(wG%kvD6Bo5vT(kx$UgQfk z$~oneVnmHdtaOgDz%F^6$#|n_ivgPZVM#LrI%Q}69>uq!4{)Km zk^!RQk#cnBF-B)G-}o%4MM)@nzRQsr8L%ZJ(B8_*MtR-cV<#Yy(rC?=tmhtRq~d}b z+3S;KWSEknCsmc7)sioEMA(iFY3|825eKM-bf6!$VNKYMMO*Tzbz}OvS*yVxUG=O; zUqv11nyMT1YBH=fst?zcT&v}JbZs^E1LKFfR;lvVy5vtjS(Mzm zfC)j=Mv$X5`x5nO>PS`DDI4`uNMcciZ2VQ*ci6$cDch7_c4oA)N{{?PELFlK8E^Aa zjMAlH+E!^^9Cjc@$Pe8hCVx0$0e9e(XGfClYrfKk`-pFqwbn5}Npc?xIQ6Y3jqrpK zCEKrv!I5!WqK|4g1J>g@8%S~U~d=xWjCPI%< zJ_XV}df-#8K!M?t3^jJ74Ow9*Jk1BbSudXU8wS(lg;)eAR#tlckfCk6At@wPgfzVT z&QV0=seC&E%UH>F90+t4MFi1(J3d5hfZ7}B9KDPwM0{DKm^RpiGrvpE`^~$Ot}5rG z=R6@5)k2dmi$sKcX>s|?#A(@&lyR1I+xMJDm-WHZd3ss)nTfHMwbb2$jmIT92G@q}S86e0!<&gIZ-` z`Q-9a;d7%}pTLP^P~J`p)z`$nv}rIBB{s+1b)mF0^JiO+IY*0eq;X9uXDM_e4{No_ zkFNS=WNVZ6gNcug*{N$w~Wo zY<`9wr|5J2SfkFLddhyMG4%>$8jzW;%uQgg_e2NFYasbRs5tEUSWbNBne9vNP-G|Z zVx-OXRzJj+ob(g)ckOZf`YQu=E|tky2x8YeYX+~sqK4_bvO9XW%2Ew-zmI~Q)$z_n zx`*4BwttjQP)tt$500m!vX2NmX(YLP7(+J3j6KY~K=7`CQ3(#+A-ocyFL~@`{-M_7 z*nGQZ*fS*`j!7rIT)c>B^7_s}H?nsHp^BF3a@;umuA-kiF=!J}7{KvYtu;v-Yhr2(k$NH+P!6vlX>9~iOo}3?SW8{6$qkpJcOiFYxi|#W z;39$q2L%Vg%}F}AbTe^sbQZzIMMoDG|6dZLKKSx`@7;Uv``*iwQ=NGGb8_;TqRkV> zh)=|E;_(DOw8%cCVi?6KOyMC+V-!#0Bjq>wq3!WU5r(Q%6W zYK4y6@B+%EucB-z@I2DGRt$xdmjAmRi^4vIO9)HQBWh`ef1 zDwO|zj!>6fr(*lI>v*bY)h*vrMYkMmTaK^!VZ&l}H1t%7g{tJ3TXn0_eI0$ACP(23&|Y%K~-(`@Ao?8mg|JwJBdO>)!hEWax3h9 zPo9{sTAr^p-|y}?q59i5$YQC)&Dn) er~cW%D#cK>OiFP~%_EO$x~+!$XWadgIQbj, 2012,2015 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 msgid "Linking" -msgstr "" +msgstr "Łącza" #: apps.py:55 models.py:18 msgid "Label" -msgstr "" +msgstr "Etykieta" #: apps.py:62 models.py:25 msgid "Dynamic label" -msgstr "" +msgstr "Dynamiczna etykieta" #: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" @@ -39,15 +38,15 @@ msgstr "Włączony" #: forms.py:35 models.py:109 msgid "Foreign document attribute" -msgstr "" +msgstr "Atrybut obcego dokumentu" #: links.py:14 msgid "Create condition" -msgstr "" +msgstr "Utwórz warunek" #: links.py:19 links.py:36 msgid "Delete" -msgstr "Usunąć" +msgstr "Usuń" #: links.py:23 links.py:43 msgid "Edit" @@ -59,11 +58,11 @@ msgstr "Warunki" #: links.py:32 views.py:183 msgid "Create new smart link" -msgstr "" +msgstr "Utwórz nowe łącze" #: links.py:39 models.py:29 msgid "Document types" -msgstr "Typy dokumentu" +msgstr "Typy dokumentów" #: links.py:47 msgid "Documents" @@ -72,7 +71,7 @@ msgstr "Dokumenty" #: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 #: views.py:139 msgid "Smart links" -msgstr "" +msgstr "Łącza" #: literals.py:9 msgid "and" @@ -84,11 +83,11 @@ msgstr "lub" #: literals.py:14 msgid "is equal to" -msgstr "jest równy" +msgstr "równa się" #: literals.py:15 msgid "is equal to (case insensitive)" -msgstr "jest równa (wielkość liter ma znaczenie)" +msgstr "równa się (wielkość liter ma znaczenie)" #: literals.py:16 msgid "contains" @@ -100,87 +99,87 @@ msgstr "zawiera (wielkość liter ma znaczenie)" #: literals.py:18 msgid "is in" -msgstr "jest" +msgstr "jest w" #: literals.py:19 msgid "is greater than" -msgstr "jest większa niż" +msgstr "jest większe niż" #: literals.py:20 msgid "is greater than or equal to" -msgstr "jest większa lub równa" +msgstr "jest większe niż lub równe" #: literals.py:21 msgid "is less than" -msgstr "jest mniejsza niż" +msgstr "jest mniejsze niż" #: literals.py:22 msgid "is less than or equal to" -msgstr "jest mniejsza lub równa" +msgstr "jest mniejsze niż lub równe" #: literals.py:23 msgid "starts with" -msgstr "zaczyna się" +msgstr "zaczyna się od" #: literals.py:24 msgid "starts with (case insensitive)" -msgstr "rozpoczyna się (wielkość liter ma znaczenie)" +msgstr "zaczyna się od (wielkość liter ma znaczenie)" #: literals.py:25 msgid "ends with" -msgstr "kończy" +msgstr "kończy się na" #: literals.py:26 msgid "ends with (case insensitive)" -msgstr "kończy (wielkość liter ma znaczenie)" +msgstr "kończy się na (wielkość liter ma znaczenie)" #: literals.py:27 msgid "is in regular expression" -msgstr "" +msgstr "jest w wyrażeniu regularnym" #: literals.py:28 msgid "is in regular expression (case insensitive)" -msgstr "" +msgstr "jest w wyrażeniu regularnym (wielkość liter ma znaczenie)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Podaj szablon do wyrenderowania. Użyj domyślnego języka szablonów Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Zmienna kontekstowa {{ document }} jest dostępna." #: models.py:43 #, python-format msgid "Error generating dynamic label; %s" -msgstr "" +msgstr "Błąd podczas generowania dynamicznej etykiety: %s" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "" +msgstr "To łącze nie jest dostępne dla wybranego typu dokumentu." #: models.py:88 models.py:100 msgid "Smart link" -msgstr "" +msgstr "Łącze" #: models.py:104 msgid "The inclusion is ignored for the first item." -msgstr "" +msgstr "To wliczenie jest ignorowane dla pierwszego elementu." #: models.py:108 msgid "This represents the metadata of all other documents." -msgstr "" +msgstr "To odpowiada meta danym wszystkich pozostałych dokumentów." #: models.py:118 msgid "Expression" -msgstr "" +msgstr "Wyrażenie" #: models.py:121 msgid "Inverts the logic of the operator." -msgstr "" +msgstr "Odwraca logikę operatora." #: models.py:122 msgid "Negated" -msgstr "" +msgstr "Zanegowany" #: models.py:129 msgid "not" @@ -188,90 +187,106 @@ msgstr "nie" #: models.py:134 msgid "Link condition" -msgstr "" +msgstr "Warunek łącza" #: models.py:135 msgid "Link conditions" -msgstr "" +msgstr "Warunki łącza" #: permissions.py:10 msgid "View existing smart links" -msgstr "" +msgstr "Przeglądaj istniejące łącza" #: permissions.py:13 msgid "Create new smart links" -msgstr "" +msgstr "Utwórz nowe łącza" #: permissions.py:16 msgid "Delete smart links" -msgstr "" +msgstr "Usuń łącza" #: permissions.py:19 msgid "Edit smart links" -msgstr "" +msgstr "Edytuj łącza" #: views.py:70 #, python-format msgid "Smart link query error: %s" -msgstr "" +msgstr "Błąd zapytania o łącze: %s" #: views.py:78 #, python-format msgid "Documents in smart link: %s" -msgstr "" +msgstr "Dokumenty w łączu: %s" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Dokumenty w łączu \"%(smart_link)s\" powiązane z \"%(document)s\"" #: views.py:97 msgid "Available document types" -msgstr "" +msgstr "Dostępne typy dokumentów" #: views.py:99 msgid "Document types enabled" -msgstr "" +msgstr "Typy dokumentów z udostępnionym łączem" #: views.py:108 #, python-format msgid "Document type for which to enable smart link: %s" -msgstr "" +msgstr "Typy dokumentów, dla których zostanie udostępnione łącze: %s" #: views.py:173 #, python-format msgid "Smart links for document: %s" -msgstr "" +msgstr "Łącza dla dokumentu: %s" #: views.py:198 #, python-format msgid "Edit smart link: %s" -msgstr "" +msgstr "Edytuj łącze: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" -msgstr "" +msgstr "Usuń łącze: %s" #: views.py:222 #, python-format msgid "Conditions for smart link: %s" -msgstr "" +msgstr "Warunki łącza: %s" #: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" -msgstr "" +msgstr "Dodaj nowe warunki do łącza: \"%s\"" #: views.py:299 msgid "Edit smart link condition" -msgstr "" +msgstr "Edycja warunku łącza" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" -msgstr "" +msgstr "Usunąć warunek łącza: \"%s\"?" + +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Smart link condition: \"%s\" created successfully." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Smart link condition: \"%s\" edited successfully." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -362,14 +377,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.mo index d950cba96999f0a479fb82c71b3a00119e999679..f062c5694dc2c82e23420b7720c7c2b5b571e26a 100644 GIT binary patch delta 918 zcmXxiOK1~89LMo#9&J*eZB0|P(QOJI)WzL2tq{b6q#mTLQcq%ortKb9^MGW1fI_IK z1*NDgibqeLyhsE+dhwuwS3QY01wqt{cNqZYn_T6h&7Ql;lu;Q!G+V=QdoIEJW1U*mp!i~aZwRk5FV z5dWe@e3N0c7Cydd2}#!6L>9BA=vBPHvzpa%Bd{ud?Q+u;>q}RvUM*;v>196%FGQE(Gv!6E(morD zM<%CiXTr|8mOE9*Pufo2ar)1kw&%U8e$%hl>|#0a3Rcc>yW?_h!FAeey^nhODt^_k el^fw`Vr-xrq`nb_x5pCqV{`SY*S?)R64lf_5t+1=rGz53q{p@1$uLDuS1}^UY1peVuz>MqkIO^O2Uj zLP=7$QG0wM`|yaL7v(GN!bOat5fIso0~o7a20+)UGNvw{*j8A+mvQa62wy0y|ml9?YSE7f}1( zY&wlO+Ar`p^GlHJ9K{o;shPkSKEo8gLfy%CWPXXQ7GW;wK#lK4UFZlNz)|FpDP9@8 zk71lc9rqnFw|vHtPCkC{F@$kO(ZD=vUll# zt7;zf5DjWOReNhsy*Z>&)>8HM=rZ)yEEhdEU6G!H9! mw%C=^D}&y*P%_aBur8U!O8v=SW8%v(r0MrjYS-FM`hNjBv$Ep= diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po index 03cb624e51..3c07dcbb8e 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: # Translators: # Emerson Soares , 2011 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -28,7 +27,7 @@ msgstr "" #: apps.py:55 models.py:18 msgid "Label" -msgstr "" +msgstr "Nome" #: apps.py:62 models.py:25 msgid "Dynamic label" @@ -48,11 +47,11 @@ msgstr "" #: links.py:19 links.py:36 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:23 links.py:43 msgid "Edit" -msgstr "" +msgstr "Editar" #: links.py:27 msgid "Conditions" @@ -68,7 +67,7 @@ msgstr "" #: links.py:47 msgid "Documents" -msgstr "" +msgstr "Documentos" #: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 #: views.py:139 @@ -146,8 +145,8 @@ msgstr "contido em expressão regular (insensível a minúsculas/maiúsculas)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -223,8 +222,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -252,6 +250,7 @@ msgstr "Editar Ligação inteligente: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -271,17 +270,24 @@ msgstr "Editar condição de ligação inteligente" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "Condição da ligação inteligente: \"%s\" criada com sucesso." +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "Condição de ligação inteligente: \"%s\" editada com sucesso." +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." -#~ msgstr "Condição de ligação inteligente: \"%s\" excluída com sucesso." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -372,14 +378,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.mo index 574d9cfcddfbad9aa22eb36591bd18a91034e021..e9d41c77f0f51f2221af1ce86810a08df763d14b 100644 GIT binary patch delta 1278 zcmYk*QAkr!9LMqF+HC67O|3L-T~}&3XWnU6qhgkkg#`5)A!`#{v%6@PJw$^D@*yY^ zBM2g2BYJ2Fi7!GyR1o>lYxL4X(L>lnFA;rzbBhihKlk39d;b6PKj%IRehlV6HMr*t zt)JdTe_mnCQ5;>zKiY)bm`+S%HQvE3_yGO5h#T-NZp6=6iNCM`|6m^mJjT@FA*{la z*lJAPoaTZtW*S@YDmLOhRDj309+yxFyu{7;9z*yQ`7=JEDnJ9)V>{|S8};5k)O*8N zgJal6e3Rj#hX*q_fD0JMZ>WUA%%Wl(K`$OdGB>ACD{)YjyMmf{4ud$4N@N)|{sSt} z@7Rp17$&}{VOAgRLH#g{3U~%xm_SXOLQQ-DAF@riaX2V6_rRMS!;Z>1&%YHMcdsJ{-|eI8Iv^8{701?UtHC?Dc-Kao= zsDxDR?R1@=|C_!L&CB|VmFUp^mzyfkS-wG)NS{tu>6s3h+Rimh6t$09na)cSJxo_q zQsiDtN(?R0HRxfLrpluB97__USGI;r$jb2{tftf{P(JD<2XWlg4?Ow0;(?_Z~LbURht9CHb*B^=6mOU67*ggBs+xqWG)Q;JGg`eJFg?}iOPBLl2agMNQaNx0v!#bSC-FOrC;3KTWm)L;I7{a$$i+`~iJ==|G z!6syA&V+c_$3PStaRjwM8mq8?O5g@I;~fm(Q&iwLxC=j`=Kny=U&kK&gZf_%lCMeXD?D$oT~;A`l|Td0HROb8s-Ha zz-3J0C#=U7g3s}6Y#wavM>cQ9@F-5Ag$t+zUZduJF8du-+Kuw})m~$KeC|YTD1nN1 z9+luFjN=tl{3S2-*AKoh(2l=QiTHMs44%YcoJA$DiWI=Cqjt7|O5it=gQ@32XkIHS z(KzbT4x*04LEW(#q=@EjE%jH)9xxEZB_x*likkQnxuxbG>PXx~(Lz*5CKN9a9t9fQtVO_z0RQ)Nas2iQpIl4zIOSy%asZq)wK4yiYv2dhVSM9GTj(dEr`FAzG z`6u3RJgF5|o~, 2011 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -28,7 +27,7 @@ msgstr "" #: apps.py:55 models.py:18 msgid "Label" -msgstr "" +msgstr "Label" #: apps.py:62 models.py:25 msgid "Dynamic label" @@ -146,8 +145,8 @@ msgstr "está em expressão regular (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -157,8 +156,7 @@ msgstr "" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Este link inteligente não é permitido para o tipo de documento selecionado. " +msgstr "Este link inteligente não é permitido para o tipo de documento selecionado. " #: models.py:88 models.py:100 msgid "Smart link" @@ -224,8 +222,7 @@ msgstr "Os documentos em referência inteligente: %s " #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -253,6 +250,7 @@ msgstr "Editar Ligação inteligente: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -264,7 +262,7 @@ msgstr "Condições para a ligação inteligente: %s criado com sucesso." #: views.py:253 #, python-format msgid "Add new conditions to smart link: \"%s\"" -msgstr "" +msgstr "Adiciona novas condições para a ligação inteligente: %s " #: views.py:299 msgid "Edit smart link condition" @@ -272,11 +270,24 @@ msgstr "Editar condição de ligação Inteligente" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" +#~ msgid "Smart link condition: \"%s\" created successfully." +#~ msgstr "Smart link condition: \"%s\" created successfully." + #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "Condição: %s de ligação Inteligente editada com sucesso." +#~ msgstr "Smart link condition: \"%s\" edited successfully." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -367,14 +378,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.mo index 6ac0d0adbb25ef90945ad839392361bde65a9666..789ab25c154be14ca43f308e72340e5a04828deb 100644 GIT binary patch delta 845 zcmXxi%}*0S7{~ExDQ`u}YgrJ*Ef5aM!ftsv6o@gR9t=V_5dvud_t1mwfof7hsEOVP zF{bfka%qR{AxzH|g2!CJ{TWgHz!Xa$O8EnJ_4B;~NU=lkphpo7W{kV@e@eG@c$(s^` zVQyTaUW^ijp&7*n9K&9mMkQK8Ep#0TVDi|9yV!yUsOOKd7B8?HOL!0e;0=uNXE*uH z2m>X2g4*;`RN!Z*z{~iVs^l=i{6YQo{cW_Ff5ba@f?8my;&;5u{3i}zFT1&o_tC~x z>?6O~VbF=6(8WVk$-ki%7A7h~6G833!U#S@4;N88dW-sW?@{s2P?fkqz5ly1|BoZg ztuUL>H+{@NC0#*PAcso4jr`1OE)MP@g(wHLP*v(G%muBy>ZBrTSz3yss3wX|*-SIN zjjm`qHPuFG%9)j|u5#0^s8dpHIv8rKyxg>%7+v+`lqv1?G1Cd?Ec^;)BD0x|moNNu zcGEn1p2`-IHR)n9^e-?m>9}J~+_SyO#Q22cj=OGnVcuEvU!^uvnY1&zmh}^M-1Vx@ h#l3{*7WeAD20E%C{c=cuZR`9^A>HtyaJUUS2O?s delta 1089 zcmb8tO=uHA6u|Lm(l)WiR->`CYMsU}sNJ{;P1MDRpcfCNYNb~V$rgfX7P1?`4+vBQ zPX!4c)Pq;=@t}wntEhOJZD331?9fJ;V*Th|;=GC|i*12?{)hysO4hRx*XXIE!h#hB17C z((2bJ^T}$YBMFrE(|AH2So}!g6v`f7L22zRluq13>C6LUE;Ww^zC;@0@3SPNPSxMc zhx!}R2iZi;wT4S(A=p1Tw9zkDPLGr!r{?F7jgwwUHmN|yaDZRBWS7Co@dsPr54OY~ z(ms~j>+keBZsaH?n#&=lc{)7PC_2?r*(*C$ODA`_NnNbj1OF=}NhJR{#A%$*$P{^@2^lUkSQ{46XTacPN`R%mYSdOs8{JCTEyqrrC3R!Z>N4 zE4vhE9HlTzXUsHl`;E*#ZDy^^SnFHYyN>3^$XsO7E7WXVY7R#ScL$3p=xN9Gf;Bz8 otc&&bvRKgX*pVPsw}W5Y@a#g({b%?<5H71Icz;H, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:33 msgid "Linking" @@ -51,7 +49,7 @@ msgstr "" #: links.py:23 links.py:43 msgid "Edit" -msgstr "" +msgstr "Editează" #: links.py:27 msgid "Conditions" @@ -67,7 +65,7 @@ msgstr "" #: links.py:47 msgid "Documents" -msgstr "" +msgstr "Documente" #: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 #: views.py:139 @@ -145,8 +143,8 @@ msgstr "este în expresie regulată (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -222,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -251,6 +248,7 @@ msgstr "Editare legătură inteligentă:% s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -270,17 +268,24 @@ msgstr "Editați condiție legătură inteligentă" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "Stare de legătură inteligentă: \"%s\" a fost creată cu succes." +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "Stare de legătură inteligentă: \"%s\" editată cu succes." +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." -#~ msgstr "Stare de legătură inteligentă: \"%s\" a fost ștearsă cu succes." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -371,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.mo index 2e03f5a6d8de18cfce3eeb933394dc1001de60ca..f9b8d38f6f485f34cb5801aee94d21ec894fa106 100644 GIT binary patch delta 958 zcmXxiOK1~87{KvyljddG+En}W5nJuSx^xqh3Q<8M>7fLw2E1vhZ77R15t=F}bkQCx z77^Tf@Sq@`6hvt#ike6-;&B#4LBYG;dhp`O|Ccr&nf!JhJ3I5ueC@m2>->uOA1Pvx zvX_$Dq0|WG4gQFbPpKgc;~uoI3&${q7cq?2(2qB<7ai=x$G8h$VG!#$fS6nju6${}595<@tR{Wyp6;boMCKSX)|HSWg`*p5F?#{a<<4Di>3Q5;r| zQipkn(r|9O;}XgTZ=fXM7RtnnC==hqZaQAz8R{EsOBU>Bbq6uAZ2=`i3n&|0#w0#R z3%{Ys_f?Q>NQ%;U9LI1sE@BE@l!?Az0e|8kjzqQ=SU`FI0;X{m58xBbVh#BzgI&nc zwxVqK6gsk_aUSGsZ9IYwPT)(Ff&Wm(1*wolHG}~i#%@gFNgPM6kJ?9(qodkLH8e6P z%KH*=3R!U)D{rGBsh0G~gk-jHc5;Da<&uqN$R(1+$PvjRBnBvw5xED=kTaJcS&bmu zs+A&{kzJ8L#1o^LRNAysmK8ZWVV*Bux99D0$;?hwikW!QN;JnM6Pbiny&uRM z9jm&o-+N2?qh8lF?~b?Po(T85-$SeI^mw;vS<;_$P1jvJoaua~*SrV%t+%4r^cz~= L>GkSl^S<-2dc7vQ6)2h# zqMmkw*0N9J9CmrQ5WCof-|#3JUXf!M#Q^qVH4b0}-o?ZC7jJdSHvil0yu-a(xoC>E*3T0Dg3QOEZpKS^?_!Ze=6 z2`uORGFRw$kNUz*)Z({L7ygL4@MjFtQC=c)iRVVL(uA+$DSTRR0Yf}*pjKW+wkCFA zI}T$HKF28UmoMCOVv}Daj031!JB9r?gAMo{H8F#%bc-7>f?=$~VeH07$WU2B-Rey& zM?V)WB#3&HQOq`T)5A?4-bQ}%fr}1YM|M}Xk)mZ6gZKlxFnB;yJ|;Kz7u19` zw2(@gp8XM;?wnTd#>Jf9JCw_MFXUFe4cY#igQH_cDmik)h^I#q$+2X5Bxcl~&eR+6 zQG0OAP8gZ-c-+ophQ?E=JFW7M2?;x8|JMXN5lH?uVfL%H*b|AER;L*X8*R~8C~8_^ z%kp38Gq2jWk{L2IyU8qOgse8kb(o=c!-~X0;o0Vr9#8ItZ!&kew4-u5f8SYhmYrA5 zYiHhY=A5PcliZ-M;>=!o`3LmBbLR6C&Rb{M;9=QWWYkN2Y!zoZx8SR*`Zd<=SaRn7 V?A+^R{YB@E+qc(0J6XEp`3Zi9$;=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:33 msgid "Linking" -msgstr "" +msgstr "Связывание" #: apps.py:55 models.py:18 msgid "Label" @@ -35,7 +32,7 @@ msgstr "" #: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" -msgstr "" +msgstr "Доступно" #: forms.py:35 models.py:109 msgid "Foreign document attribute" @@ -51,7 +48,7 @@ msgstr "" #: links.py:23 links.py:43 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: links.py:27 msgid "Conditions" @@ -67,7 +64,7 @@ msgstr "" #: links.py:47 msgid "Documents" -msgstr "" +msgstr "Документы" #: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 #: views.py:139 @@ -145,8 +142,8 @@ msgstr "В регулярном выражении (без учета регис #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -222,8 +219,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -251,6 +247,7 @@ msgstr "Редактировать отношение %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -270,17 +267,24 @@ msgstr "Изменить условие отношения" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "Условие для отношения \"%s\" успешно создано." +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "Условие отношения \"%s\" изменено." +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." -#~ msgstr "Условие отношения \"%s\" удалено." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -371,14 +375,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.mo index 3ae62d8d9624e3f30fcd59274a10df1e0b3aca56..eb06208ec62b0eaed35f3b2fd8d697fc0f1287b3 100644 GIT binary patch delta 167 zcmeBU*~JodPl#nI0}wC)u?!IF05K~N+W;{L1OPE75C;PB6-EYzXei$Rr~$|Y1CU-g zaLG?D%}vcKDV}KIYig!zV61Cos9ylWKYNcRg ZUi{tbSOD=Aprj>`2C0F8iBZ0$rn&}}x<)1n zhGteqX1WF@1_oRK{<=Y_Wtqj9`FXl7i6yC43PuKoKy?unGN!6IVOL5M*xG~Nd7B9cZ#EJ)A9bKpWf%(bI;8NKK<#Z3iqKQ!el*}CtJx=ivuy> zGNu{_u>vQt7#GovDGcE{mg7Fw;W7H~5>@*S3-B3>Fpm*q(&m*D6)fgoH4s8=jA0}8 zV*sa-4Q3HNxPzs*hqZWwlrkCA{tMLp8$9A=a@fN42AlPq6ZGlMYfe<~{@^{7Zs#OW zXiN?Eqpst~X0wU>%r*y&Vi$vWj172>>gWO0(Ib}N$M3cA{yZp*T5m$#*M{6;hP;eJ zg-2OX>ocg&P)4c&HC0J!?h4IOGuQn8hl*E pY4_Q&Owv7V1>?6TiRPt5F1wR56S?f!tn=n+bY46yneoD9>kA~NMBo4b delta 711 zcmYk(KS&!<9Ki9Hn5eCKvDUV+G4g7-tqGS9wH|1plasR`2=!I9=`g$Q>5gub4&rlX-)ZHyCh7ajytNqtVDK%6bACYnD zt2`g%s!u2rFQV*V1?3iGQdxjpgDgyrUxMGaCnP!dgJZot5h;E@q`1VBJ5&hMMzte% zBhgBeW0bp<-8IoPlL@$xK$KyX{Q3Z--(s@+z6>(N>q8$yVNmh6Db2IPRZ@6UO$J{K@8g mS-*n?*PjnZqqa6ZT{`)_Ueu+@tu=R2J6jv>M5, 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -50,7 +49,7 @@ msgstr "" #: links.py:23 links.py:43 msgid "Edit" -msgstr "" +msgstr "Sửa" #: links.py:27 msgid "Conditions" @@ -66,7 +65,7 @@ msgstr "" #: links.py:47 msgid "Documents" -msgstr "" +msgstr "Tài liệu" #: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 #: views.py:139 @@ -144,8 +143,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -221,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,6 +248,7 @@ msgstr "Sửa liên kết thông minh: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,11 +268,24 @@ msgstr "" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "điều kiện liên kết thông minh: %s tạo thành công." +#~ msgstr "Smart link condition: \"%s\" created successfully." + +#~ msgid "Smart link condition: \"%s\" edited successfully." +#~ msgstr "Smart link condition: \"%s\" edited successfully." + +#~ msgid "Smart link condition: \"%s\" deleted successfully." +#~ msgstr "Smart link condition: \"%s\" deleted successfully." + +#~ msgid "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; " +#~ "%(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -364,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.mo index fc1f4b71788bab9cbc7215b7be8c79f49b814220..6c54e8d23454e6e7ac5452cbffac170e62880cb2 100644 GIT binary patch delta 824 zcmYk)Pe_zO7{~Evd)MvVZPnD&G|kOmLF$$FU0n|g9fH+E1c?ZNH;D};S|cqGf<5)` z)Zxt_=ptUa#vVL*Dxxl-h=(rGNvJMfI)nv%f3FiX?6aSld1q(d=b8P~eb~|X(wSZ} zT7ei)q|7eJV|>v*U=crJHy&UQW<0Y_9K!Xi9@!-7z^kYV)!g$3ZvGh#GXEO&BJc4W z=i4qFmGUR50zT<$!#t{FU2Z(;#$`92cH`@Ad>6IxDk`BzsLDLW^Y{|A?-pv^J8bB{ z9XfK)E%=N&_$yL?-1l9Fqp zKKrGKT$ z6G1o@l%hg3Q5i1>;dmJ4rmqDvwfl?9i%a#OI=@n@6iQ+AZ(S*>L}Bws=1wZJ|Kjof S`bIqGSL5$~vH2uBmHG=|PED`? delta 1254 zcmb8t-%FEG7{Ku}r<+z*uI!hUZ!{1fyVK7m0xw zvtmkGp%GLF4Z2YCF6zeax`?1IYRh%g9}rRB=iTcrB8d)r_j%8+_c`Y|=SRug(%45w z{%u96;MvJjZ&9ia+w=IN6k3(qhecS5Zrp;$(Shf1JBDx*4&z3g#15QAC;mh?YWZ1D zA#q}Ake3~FJjb=Tga`3G%7<+QN-e{I?KiQF`lR#|Uwz}H3axBMtTFAxUDU6jEHHt4@DWO&Hz*7JfUHG*Ldj&>tXtM( z>xC%&6=wZ_S#QOde7Kz#+39JNl%2&244_OLMHzP&CE&E_W3&G$O5h}t7-McRQZ+IF zxx%R$MdP12F=I#TsmKB($W|UXCs~MGD3YT#^Q;uPTyhMu5Xp`dIR+_m59Fw%$eGLi z;dG258S{-@d0aHEZ6VVoRtx$<_qiHQN2ft z^!t2zByzq#5V%~cI{zBTm|!gCexI5)Alr+ava>m@zrK z<Y><_4_cMv, 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -66,7 +65,7 @@ msgstr "" #: links.py:47 msgid "Documents" -msgstr "" +msgstr "文档" #: links.py:54 links.py:58 links.py:63 models.py:89 permissions.py:7 #: views.py:139 @@ -144,8 +143,8 @@ msgstr "正则表达式(大小写不敏感)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -221,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,6 +248,7 @@ msgstr "编辑智能链接: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,22 +268,24 @@ msgstr "编辑智能链接条件" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" #~ msgid "Smart link condition: \"%s\" created successfully." -#~ msgstr "智能链接条件: \"%s\"创建成功。" +#~ msgstr "Smart link condition: \"%s\" created successfully." #~ msgid "Smart link condition: \"%s\" edited successfully." -#~ msgstr "智能链接条件: \"%s\"编辑成功。" +#~ msgstr "Smart link condition: \"%s\" edited successfully." #~ msgid "Smart link condition: \"%s\" deleted successfully." -#~ msgstr "智能链接条件: \"%s\"删除成功。" +#~ msgstr "Smart link condition: \"%s\" deleted successfully." #~ msgid "" #~ "Error deleting smart link condition: %(smart_link_condition)s; " #~ "%(exception)s." -#~ msgstr "删除智能链接条件:%(smart_link_condition)s出错: %(exception)s." +#~ msgstr "" +#~ "Error deleting smart link condition: %(smart_link_condition)s; %(error)s." #~ msgid "Smart link: %s deleted successfully." #~ msgstr "Smart link: %s deleted successfully." @@ -375,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.mo index 72123fed82513a0e07db8aabea03aab9475efd9a..876b81caaf1ca6bf509e9e0d27aee4d19997f669 100644 GIT binary patch delta 119 zcmZ3?a-1dfo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLmy8SyVL+M4gKo#N5=07QVb@x(3F&MurN8W>zMq8z)UJ%r>r{$Or(39SXSs 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 67430f4d08..2c965f4cac 100644 --- a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:10 msgid "Lock manager" @@ -33,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "اسم" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.mo index a8dc6d0f2f066c22d631ba6450007eb0666d9b9a..90cf664ba2085f95ee9ebcb13f8c5274e4a9bff7 100644 GIT binary patch delta 119 zcmcc2{GB=Uo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLnT!k!VL+MQ@{n43D$!k5=f*T7iU$WX!1%*w=c<0MB$_6svE?76U&0RSw75%K^4 delta 82 zcmey)e3{weo)F7a1|VPrVi_P-0b*t#)&XJ=umIwjKuJp=4N?OG6GMG@O?3?{b&X6E O49%>J%r>rfWCQ@0Z3=e) 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 d9d8775363..c9a84f4c7d 100644 --- a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 @@ -32,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Име" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.mo index 3d6bb73f2cc0efeceb00dfe71960a400627da037..c7422323f5ff9e6fe0f9eaaf11d859cd65a62dfb 100644 GIT binary patch delta 116 zcmdnRa+@Xeo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxj^fQrI^6f+Qq1KErqF(3fx lg#*9D+|-E{zPx6-2FAKZh6;veRwkw!C#_&)@ytzS005QT4Uzx= delta 82 zcmcc3vWvyyo)F7a1|VPrVi_P-0b*t#)&XJ=umBNE3=Eb)3Zw=GCWiX*n(7)@>Kd6S O7@AobnQdIZf)N03x(X8j 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 7864ebe163..cc7ed9dee1 100644 --- a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:10 msgid "Lock manager" @@ -33,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Ime" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.mo index 2bc46ad5175b3bdabebf353318a2eaae23b030f2..dac4955ba72a994ee4af961d4a13af9e4dcc2c35 100644 GIT binary patch delta 117 zcmcb>{E0dAo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLX^adEVNm{CARCCl0HhZV k{1S6hCtCROn&}!C>lzs<7@Ap`m~Nb8$H?lJSeC~C0R00F_W%F@ delta 82 zcmeywe1X~Go)F7a1|VPrVi_P-0b*t#)&XJ=umIv|KuJp=4N?OG6GMG@O?3?{b&X6E O49%>J%r>sKV*~({VhU*h diff --git a/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po index c50828169f..e0daf20420 100644 --- a/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 @@ -32,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Navn" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.mo index 6c72c28b306e8997332ce62f3426f86d730302e1..7f5426efcbb65eb6a23e5c6f61e011fd828d0f25 100644 GIT binary patch delta 44 scmcb^dWUs`4I{6au7R\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.mo index e3c453f40d0c149930225d912997a40dcc07ee46..6df70f48a8c78c92c392770d9fede5ed1b9f46f5 100644 GIT binary patch delta 23 ecmeyx^owai7q6MFfw8WUp@N~Am5J%Z>5l5lz>% delta 44 vcmcb~dXsg74I{6qu7Rblk%@w#nU#^*WKTwEkcb6H#K6?b$Y66JV+JDt_mc`w 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 e30563bba5..b98852d6af 100644 --- a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-24 05:20+0000\n" +"PO-Revision-Date: 2016-03-21 21:04+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.mo index b2290a0682dea905c19dfa203af2c51a63abb08e..35f17ab96c5206c6b4533f9434f83cbc2ce94b1f 100644 GIT binary patch delta 179 zcmX@bJcFhFo)F7a1|VPtVi_Pd0b*7l_5orLNC09MAWj5gb|6jz;t7ll40%AB4T%2( z*@7T869WT~2{s4FL;%0U+*F2;%-q!c(h`P%qWrAXJ%r+jkU<3enB?>M8 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 3a7920ae4e..23bdc8d16f 100644 --- a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 @@ -28,11 +27,11 @@ msgstr "" #: models.py:17 msgid "Timeout" -msgstr "" +msgstr "اتمام وقت" #: models.py:20 msgid "Name" -msgstr "" +msgstr "نام" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.mo index 7d1aa71b3acd526d93633f570857aeb42d970175..119c513f6bef43c8e245cb86ab4250876b826e07 100644 GIT binary patch delta 492 zcmX|+u}i~17{yQ9DpVI;1aY{{K~j=hI|M08D^)03Bz8ZNqlq@Ta=CQvKj6~A)jfl| z-Gqz|I=U!A9UL6|5A9&>f%PZh??*_$IhrBxDIbg>S$g;5zpLFAy>&@3_&y4>;b-OJRAbb}e0i za4y910@9S6sX#>3V~VRFKd6S z7@AobnN9X&lm>}d=o%R)7+P8xnocfc6qj%d_3=^gbM$ppuyOTu^z?CXba4rC4Gx~X HgYg*vh*lQe 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 70136f8dd5..7c7e071aff 100644 --- a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po @@ -1,43 +1,43 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 19:15+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:04+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 msgid "Lock manager" -msgstr "" +msgstr "Gestionnaire de vérrou" #: models.py:14 msgid "Creation datetime" -msgstr "" +msgstr "Date et heure de création" #: models.py:17 msgid "Timeout" -msgstr "" +msgstr "Délai d'attente dépassé" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Nom" #: models.py:46 msgid "Lock" -msgstr "" +msgstr "Verrou" #: models.py:47 msgid "Locks" -msgstr "" +msgstr "Verrous" diff --git a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.mo index 59e6c622a36d640e8fa4d01fe4d54a7184cc54b9..3e92c711a982e3844333fb733c9fcf6601275a31 100644 GIT binary patch delta 44 zcmcc2e3^MdE3cWZfw8WUp@N~Am5J%ZN$Yrg67$ka6Vp?z6f#OD+cQQ_Ue2fk066vz A8~^|S delta 44 zcmcc2e3^MdE3c`pfu*jIiGrb-m66%RN$V#2GDh+EB<7`;CZ?xaDP)vRUdE^k063iv AFaQ7m diff --git a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.mo index af46d38fff17d5c556397d2a538fa8c4ca2de899..4ab47965bb052628bfbe5e2deec85cc9cd9f7e8b 100644 GIT binary patch delta 44 zcmX@he3p4aE3cWZfw8WUp@N~Am5J%ZN$Yuh67$ka6Vp?z6f#pLJ1|C1Ucsme05*IL A`~Uy| delta 44 zcmX@he3p4aE3c`pfu*jIiGrb-m66%RN$V&3F-GzDB<7`;CZ?xaDP*QhUe2fn05)(A A5C8xG diff --git a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.mo index 66712dd37e6128345941a60f8f8d67e0202c88d4..a44242b021a64332f4beac94828d4e35c4a472b5 100644 GIT binary patch delta 118 zcmcb}{DnF6o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlL>5L2vVL%!r{|?9oA}|2y ng#*9D+|-E{zPx6-2FAKZh6;veRwkw!C)qQy`Q_)PDlh;54tWn7 delta 82 zcmeyue39AWo)F7a1|VPrVi_P-0b*t#)&XJ=umIxeKuJp=4N?OG6GMG@O?3?{b&X6E O49%>J%r>sKX9NJ1feLN_ 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 997ab6962d..8464abd1c6 100644 --- a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 @@ -32,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Nome " #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.mo index 82bd0fa0e8906816e9ac7e40333d2396d0af6e3b..42b748c11ea8fe64c4fbc62e6e440fd4aeecee11 100644 GIT binary patch delta 117 zcmaFN+{zMqPl#nI0}wC)u?!IF05K~N+W;{L1OPD$5C;PBN=62TFeo3S0muadkX|_O jOUzB3XyMCirfXoVYhi{tbSOD=#prj>`2C0F8iJ`u{rn&}}x<)1n OhGteqW*gTBG6Dd4>Iyah 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 cfe935fdcf..6c12a726b6 100644 --- a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 @@ -32,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Naam" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.mo index ac128c59c94e4d5c4fcfd7e21e66cea7f6c2602a..a87af24bef3917ed7cc7151f8427245723270d76 100644 GIT binary patch delta 118 zcmeBTS<4c7Pl#nI0}wC)u?!IF05K~N+W;{L1OPD$5C;PB1x5yjFdz+*R|jeUa=`$k n7Y_Uqb5kc;`0|?R8W`&u87df>S(%t_oK(Tc=9gGip2z?Iv{?>~ delta 82 zcmZ3>(#2wNPl#nI0}wC*u?!Ha05LNV>i{tbSOD<_prj>`2C0F8iJ`u{rn&}}x<)1n OhGteqW*gU6FaiK_#tKvb 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 eb0aaec063..b3f3353345 100644 --- a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:10 msgid "Lock manager" @@ -33,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Nazwa" #: models.py:46 msgid "Lock" 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 3415bb5d80def7f647dc7bb253b2b27535e42883..c52aea8ea8c7433f932aaa6fae4f22d845d15bbc 100644 GIT binary patch delta 117 zcmcb@{Ea#Eo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLS&R$}VNm`@ARCCl0HhZV k{1S6hCtCROn&}!C>lzs<7@Ap`m~Ncp#K`KGpPR}600PYq2LJ#7 delta 82 zcmeyye1+NKo)F7a1|VPrVi_P-0b*t#)&XJ=umIv&KuJp=4N?OG6GMG@O?3?{b&X6E O49%>J%r>rfVgvw}mI`?Q 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 bf3d8d4559..8dd9f5d3e9 100644 --- a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 @@ -32,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Nome" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.mo index 7702882451149feef0d9ce029661b4ede945e922..b392278a459c2ff4851fe5897fd4a8810036fa69 100644 GIT binary patch delta 167 zcmaFFyo9Cxo)F7a1|VPtVi_Pd0b*7l_5orLNC09MAWj5gb|6jz;uVYx40%8rBreVb z5tjkdKw+>sKqdnCCFZ6wgkJ%r+hmU<3e$g$jZI 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 2a687fd2c6..74ab7bfad9 100644 --- a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 @@ -28,11 +27,11 @@ msgstr "" #: models.py:17 msgid "Timeout" -msgstr "" +msgstr "Timeout" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Nome" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.mo index c2dd26ff6297dcbc5ddc04ef5359dc988dc266a4..5beecd322d8f4d99d1f07ad71354ac093979e673 100644 GIT binary patch delta 117 zcmeBXS<4c7Pl#nI0}wC)u?!IF05K~N+W;{L1OPD$5C;PBMMegOFeqOGr~$|Y1CU-g k@Jq~1ooM09Yo=>ptZQVbU}$D#V!ClsB_pd}X>KY50H!AnBLDyZ delta 82 zcmZ3>(#>LVPl#nI0}wC*u?!Ha05LNV>i{tbSOD=wprj>`2C0F8iJ`u{rn&}}x<)1n OhGteqW*gU6G6Dc|K?+v@ 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 d2ae7cbe4d..1509af9a13 100644 --- a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:10 msgid "Lock manager" @@ -33,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Nume" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.mo index 58182190ac90f01439a40d383e8e48e056946fd5..d0cd36a668386fd03c339fe654e6a7a473478d73 100644 GIT binary patch delta 119 zcmcc3@}DL2o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxj#MWCWEAk7BE6+kv4kOl#e pUO4be%uStW;md2LYhbKvWT;?hW@Tc!aneaf_6svE?77&_0090(5qSUr delta 82 zcmey*a+}5Co)F7a1|VPrVi_P-0b*t#)&XJ=umEC3CI$veAPrIj0~14ic};Z\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:10 msgid "Lock manager" @@ -34,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Имя" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.mo index dd8ab05c6671f0a7a78a48bc1fef088eb24dfd72..1ebf4b1aac1ee7824933f474e1daf02bcdddc323 100644 GIT binary patch delta 116 zcmbQivXdqBo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLdyEVWVL+N0h)sbSfLt&D m>4gKo#N5=07QVb@x(3F&MurN8W>zMq8z;3fvUujEG5`Rm><#At delta 82 zcmdnVGK0n9o)F7a1|VPrVi_P-0b*t#)&XJ=umIwFKuJp=4N?OG6GMG@O?3?{b&X6E O49%>J%r>rXV*~(wSPF^& 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 944ad36bdb..d34b7639ca 100644 --- a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:10 msgid "Lock manager" @@ -33,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Ime" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.mo index a4965e764266022c81a1029016faec4f8042c49b..df558dff7c7d457fc6223d956c9ff03ff263ff52 100644 GIT binary patch delta 117 zcmcb|+`tlgPl#nI0}wC)u?!IF05K~N+W;{L1OPD$5C;PB5=I7wFev{wkPSp&0MZKw keu=rM6D@ps&2$Znb&U)a49%=eOgB#QVPp+Cyef|Y0NNi9S^xk5 delta 82 zcmZo*xyNjAPl#nI0}wC*u?!Ha05LNV>i{tbSOD=7prj>`2C0F8iJ`u{rn&}}x<)1n OhGteqW*gW0FaiK}=?WqM 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 22bb4f33d9..ffa40b0ab5 100644 --- a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 @@ -32,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "Tên" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.mo index fd19e3a89d8e35e9f80b08d0ce33bc5a900c3bcb..f62f5cfc1d963050440b88c276f0907295a2214e 100644 GIT binary patch delta 119 zcmcb?{D(R8o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLd5jDUVL+MQ@{n43D$!k5=f*T7iU$WX!1%*w=c<0Lmm_NNnipD*9Q001)$5z+tv delta 82 zcmeyve1qBIo)F7a1|VPrVi_P-0b*t#)&XJ=umIwDKuJp=4N?OG6GMG@O?3?{b&X6E O49%>J%r>rfV*~)3ZVHP4 diff --git a/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po index 6dbd53d131..3ad18166a0 100644 --- a/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 @@ -32,7 +31,7 @@ msgstr "" #: models.py:20 msgid "Name" -msgstr "" +msgstr "名称" #: models.py:46 msgid "Lock" diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.mo index 7c580012abfe94731f1016f01d49aca3630f9e4b..77eafe7c488746f736d0870b0762a5130c31945b 100644 GIT binary patch delta 220 zcmZ3?vXHg@o)F7a1|VPpVi_RT0b*7lwgF-g2moSbAPxlLmy8Syr9j#dh~t48fLyRX zAcX+FrNt!*1x5K~nJK9Xi6sg-sfj>={Jd0!l>Fq<+|;}hJ%)gy{H)aE5?#-fiOx>E zX1WH(x<-ZyhGteKrW+?sWOTaObz{wq6$&>N-)vL3vFc{W&BhxW6>hfPSgvrh1w?e+ hY`WQ^aAPM>`ew(C)gbJ%r~B!$Or&_5DL=( diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po index 72cbd6ba4e..bec53d1e82 100644 --- a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:24 msgid "Mailer" @@ -127,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "يجب أن توفر ما لا يقل عن وثيقة واحدة." #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.mo index 1a69ff0d9add5ce4197281a892b862c9a3ae8b43..18d4113af58977d5f6f9a3ccdc14de508f8c061c 100644 GIT binary patch delta 66 zcmcb@eT93&bS6_XT?1oXBSQs4Gb}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhR2 PIwM0X1M|&im^hdLWSbFj delta 66 zcmcb@eT93&bS6_%T?0#9BNGKfGb}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhRA UItyJR0|g@^D+80wXP7vc0cL3tdH?_b diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po index 22ec070325..e25e8facff 100644 --- a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:04+0000\n" +"PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 diff --git a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo index 5e41d8d1f40b7232613daedc272615cd27a02cd5..2dab396f61fe5cc62b99ca520424d80effef3382 100644 GIT binary patch delta 186 zcmdnRGL5zVo)F7a1|VPpVi_RT0b*7lwgF-g2moSbAPxj^fQm|ilspiZ0ojZYAs~qa zd`pW<6bg#+%Q90^6%tDna#9n40{MBV3Mu)?rManjC3*}2Mfq8&$tAj;DHENYc+GST ujCG9+6%5U+OiVXUTEVE`n_rZukd#@HsgRUdl$xuMm70>62h^Vp)eiuF*(Y`Y delta 82 zcmbQnx{Jl)o)F7a1|VPrVi_P-0b*t#)&XJ=umBNE3=Eb)3Zw=GCYJc}n(7)@>Kd6S O7@AobnQuI|f)M~*zX}cj 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 bab8124b68..b9d7a1c808 100644 --- a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:24 msgid "Mailer" @@ -127,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "Mora biti barem jedan dokument." #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/mailer/locale/da/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/da/LC_MESSAGES/django.mo index a18624279d8540f866cfbb210cda7e27fc7a8006..61496639cb42c1066846ef4f51553ede7f817c1b 100644 GIT binary patch delta 187 zcmcb>yq2Z@o)F7a1|VPpVi_RT0b*7lwgF-g2moSbAPxlLX^adEr9fH%h={Jd0!l>Fq<+|;}hJ%)gy{H)aE5?#-fiOx>E xX1WH(x<-ZyhGteKrW+^OF)BLdrDv8Ya)H_6o)F7a1|VPrVi_P-0b*t#)&XJ=umIv|KuJp=4N?OG6H9z~O?3?{b&X6E O49%>J%r~C1V*~(!X9{Eh diff --git a/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po index 5a243d3e6f..511bbf40c6 100644 --- a/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 @@ -126,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "Angiv mindst ét ​​dokument." #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.mo index b6025afdb1a0c46500dcc0fb595b2ee6a309fbf3..7cf5f82c2beb38bbeeca126ae834cd0768e4c48b 100644 GIT binary patch delta 66 zcmbO)IbU+aEjCj#T?1oXBSQs4Gb}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhR2 PIwM0X1M|)N>=Rf4U&RqT delta 66 zcmbO)IbU+aEjCkAT?0#9BNGKfGb}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhRY OItwd9gU$Tx6IcOZ?Ga1> 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 886094d8df..d0985eb7de 100644 --- a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-09-24 18:10+0000\n" +"PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 @@ -61,11 +60,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Anlagen: {{ document }}\n" -"\n" -" --------\n" -" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "Anlagen: {{ document }}\n\n --------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -74,12 +69,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: " -"{{ link }}\n" -"\n" -"--------\n" -" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: {{ link }}\n\n--------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" #: models.py:13 msgid "Date time" @@ -115,14 +105,11 @@ msgstr "Link für Dokument: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung" +msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung" #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "" -"Vorlage für den Nachrichtenteil des Formulars für die " -"Dokumentenlinkversendung" +msgstr "Vorlage für den Nachrichtenteil des Formulars für die Dokumentenlinkversendung" #: settings.py:24 msgid "Document: {{ document }}" @@ -130,13 +117,11 @@ msgstr "Dokument: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "" -"Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung" +msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung" #: settings.py:30 msgid "Template for the document email form body line." -msgstr "" -"Vorlage für den Nachrichtenteil des Formulars für die Dokumentenversendung" +msgstr "Vorlage für den Nachrichtenteil des Formulars für die Dokumentenversendung" #: views.py:56 msgid "Must provide at least one document." diff --git a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.mo index 07b20890f6b578b27ba7a9111141b1dc859a77b3..6df70f48a8c78c92c392770d9fede5ed1b9f46f5 100644 GIT binary patch delta 23 ecmeyx^owai7q6MFfw8WUp@N~Am5J%Z>5l5l, 2015 # Roberto Rosario, 2015 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-09-24 20:44+0000\n" +"PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 @@ -109,15 +108,11 @@ msgstr "Enlace para el documento: {{ documento }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Plantilla para la línea de asunto del correo electrónico para envío de " -"enlace del documento." +msgstr "Plantilla para la línea de asunto del correo electrónico para envío de enlace del documento." #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "" -"Plantilla para el cuerpo del correo electrónico de envío de enlace de " -"documento." +msgstr "Plantilla para el cuerpo del correo electrónico de envío de enlace de documento." #: settings.py:24 msgid "Document: {{ document }}" @@ -125,15 +120,11 @@ msgstr "Documento: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "" -"Plantilla para la línea de sujeto del correo electrónico de envio de " -"documento." +msgstr "Plantilla para la línea de sujeto del correo electrónico de envio de documento." #: settings.py:30 msgid "Template for the document email form body line." -msgstr "" -"Plantilla para la línea de cuerpo del correo electrónico para envío de " -"documento." +msgstr "Plantilla para la línea de cuerpo del correo electrónico para envío de documento." #: views.py:56 msgid "Must provide at least one document." @@ -141,9 +132,7 @@ msgstr "Debe proveer al menos un documento" #: views.py:105 msgid "Successfully queued for delivery via email." -msgstr "" -"Añadido de forma exitosa a la lista de espera para envío de correo " -"electrónico" +msgstr "Añadido de forma exitosa a la lista de espera para envío de correo electrónico" #: views.py:114 msgid "Send" diff --git a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo index 4540d870e534fbc4249c1a161bacac8cb73e30fe..b87e4f34f6bfb95da74d082c16b91d8a5c35fd26 100644 GIT binary patch delta 747 zcmYMx&r2IY6u|M>7=P4XwTZ_13s*&`NLmv$QZKf}_D}>xJ$a}N7(~ScY(RvH&{oYM zAov4%=t+AzrwYa^p)Z!8iB-hw(AK%dF30Df312;5vHI!a_X88vKQI_y-%5T2LxS zsUj8{F(02|6NXR@9ziK=6f5x~%Kz4}6~Ey#JjEd1Vh6VJau>eGB|hdW7BH{RQ_6== z&@1QnFp!OhP%50lYFx$&+(fyZA6SnU*n)r2kF``I>u*u^nZ$?q2}8Jwasy}h8ZS}a zucn$p&R4w*daxhcaRmqQ1P9Q^ean0tGhIpFj9hOqnT;|A)Rb<66rP)XfNZ56W#-aG zX`K`smM@cF?{r9|Qhhl|p?4uYl{QJxI_X+E$11pWk$=kw)9>q yslS^}!qofDqPCnRrSF%sYqp(RW%v?$&q?UrRMJ`2Rw`*aU$pgm*FMjC?)nFn+iq(B delta 572 zcmXZZzfZzI6u|Lo%P$oKi;9Si7#%cP#e!5>NQ~}Am~{X~!{ngRFksxAhzb7#i%E?p z3=XdH2bh>R8WSC4arXPbm%M)ZF74gByKcN`Hr`F&tsB+makS9HHH>2sN3nz{JVKf892c;SLG0q9QVsRYi!AVg(!ducFk}orOyer`GHzfQ z9lXLEKB9}?cujLlOctW<_=oe{qcqaPS^UH)Gy+N`Szjf2nP(u2D_BAsFaO6o7^Qx} zJiejq&}19?XrcU9K^ecnBDOJ$uXu=Ix;nsPl===e)>q6oh!LJ_esDap0|{AJLXKF1 z=G7P(mV%J0kgJoUm+Od;(gcSw2-&H`1SzLHDaCHRdZza3mD7`2tExYF>&Al?*|IY` mwv$V5<_nJ7>ibeMvTZw=wBr;qIWOstX, 2014 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:04+0000\n" +"PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 @@ -25,7 +24,7 @@ msgstr "" #: apps.py:36 msgid "Date and time" -msgstr "" +msgstr "تاریخ و زمان" #: apps.py:40 models.py:16 msgid "Message" @@ -75,7 +74,7 @@ msgstr "" #: models.py:13 msgid "Date time" -msgstr "" +msgstr "تاریخ زمان" #: models.py:22 msgid "Log entry" @@ -83,7 +82,7 @@ msgstr "" #: models.py:23 msgid "Log entries" -msgstr "" +msgstr "ورودیهای لاگ" #: permissions.py:7 settings.py:11 msgid "Mailing" diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo index eb3ea11cf429c4860f42b657a8f055954a600163..95da6872964ad7524ac02b3f01c04e45ae9e0620 100644 GIT binary patch literal 3296 zcmb`J%WoS+9LEPJFGCBIR|^z=2uc&R>qjVU4eG z*X>*07ifg%5q@qEVlVSX{Gfdez6E{*ZUIl+B*a$mW$<=Tf)9Zj+yTCweg6d9hW_W^ zcJNE^UhoGn2mS#*4E_b~0=HrF$H9Hz9pH-~@Bb=z3+RKlf~PY^;1lSd1@R|7!Vk;; zDfl4x70B~{23eoqzyi4SW+7(4IdDJN1`mQ4z<0r4z{kK4hkgcIyaT?6{^8q%z$fuN z$ol`3@pte^^#2A~{~ZvT^(=t|RzM!FgFC@D!Mnlp;BN2|_!RhE*8dme^}Apswp$6j z4_wUpuYjyq08W86>wlQ_FMx#cZ$Xy#PjC_Z2h4+I7?-KQS?~jpzyAoH2Y22HAAnzg zP(QIPkTjN?8~cMB+X-qX=do@qH_OWLz`nl=57ZIZO5B5o{mhN+!R-M&5G(N;_t~zj z8|%%oBQ%nBKYp`tO#19!h$|jVdTAVqd23y-DSfheqN(A~x?GEt#o)9! zs{O85bgd*egfyxp(_Z?P$w4ff3L7Mi(S`!u5Q~=)QB)E|T;De`in3l`pRsP4c8|}9 zM#gaB>1+kRQXNP4cN&`(ZTgsQvNXA7vo*z%hDM<^N=AeCuBbv+X%awXQH2_ALyBq~ zS%OVF%7?8i1=7WU4u{^#ixnCA$Ob-QjzmBs2x?u2Y>W1VW$P`-0CZbVK^mnpaWQq5T~(zTfHaORb1rdT@Q6rXlx zN>n;f-v5kK++QqWqH{ua6z@AZZ>Cf(9^6|*%Pk=gotkmO2+^QTnHHKxMOL>_Nfw@; zKe<||(P3{emiL-&+>!R#25Xe}bn6JV2pch?+^I>oRi zsxHs)f`ZYJYm_#H7OU$>zZDgNY>z_S6sB|4@b(oe@50DxmwFo(o64}G zyPz-IF{=2m)?T^%E@;z^(uylBHDzqF`a9^o069Z9Ab$^vFTRr>52Wm$diiQRpOj(L zsCb~TsIaIKWqeq=sO_5Jgnn%wU6mBv{)cGd%aX$FGkVDQ0JWh9+r6LG$%Z@&n~m5r znKmNXU|PDtrY~dVyn<5R+mMNHr&6my*JO-E>kmCABTl{0RR+@RVaF-4goHs4f2v-O zIpqe0e^tjUVn@D#LJMCgLvBnhtsr>}rL&7LpW3yzF>2o+GfRKcW;sB7{B+$ zoSYu9B-cKDLT?|r%mFuX?Br3CYlpE*={_!se}iw{7^*|CyjbSw;@iVd4K)&Ie1G63 jHJF;je6oKOtB#xfgY`f6$92r`RgHjw=2`e%IgkGXwbH|$ delta 650 zcmXZZK}#D!6u|M>CMGf3Mq@RK2DVfspsVW=jmCpeb5Kw$X`weE>M9GGm250j3SN3E zh!6!ofoCD0px{BTV!we1(q8mn73{J7zjPm&`R&`;%)FVo>3C||x{e3;6wyZOqFvIG zw67W+@qj`6jqUi1FERE)saKf9IQC-;PGA&2U?4lS zxWfcS0{=hMv5!23gZL3G{Dx^f#th!$cZ%y~vO4lZIw|-FrLZ5Uf|Y2GPjz>9M0hY?)qNfIQgSLJ`hn#V|~T{ zYf(?n=4+EPR*RUg6d)lBG|(C)A>=CL>STv<9kLNQeh#A+t-j4Dr~F#-cka>`m2($2 z*6hko;4C~_a8{k-N_8{1s8zN@GsDA%Ic8XCeP|?WWehWIn$h=jM&ADHc#c~%a)q*; z)h%;~??w&F)GaG(rYo^{8j)^R8DYId0`s_-EauTUz(3iTaQhpK-jhtuOI& OmX|kVvZ@z7(Eb5xGEu1j diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po index f35e5aa8d3..685ee2e97a 100644 --- a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po @@ -1,34 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:04+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:07+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 msgid "Mailer" -msgstr "" +msgstr "Gestionnaire d'envoi" #: apps.py:36 msgid "Date and time" -msgstr "" +msgstr "Date et heure" #: apps.py:40 models.py:16 msgid "Message" -msgstr "" +msgstr "Message" #: forms.py:29 msgid "Email address" @@ -52,7 +52,7 @@ msgstr "Lien du courriel" #: links.py:22 views.py:31 msgid "Document mailing error log" -msgstr "" +msgstr "Journal d'erreur du document envoyé" #: literals.py:7 #, python-format @@ -61,7 +61,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" +msgstr "Attaché à ce courriel , voici le - document: {{ document }}\n\n --------\n Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -70,19 +70,19 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" +msgstr "Pour acceder à ce document cliquer sur le lien suivant: {{ link }}\n\n--------\n Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" #: models.py:13 msgid "Date time" -msgstr "" +msgstr "Date et heure" #: models.py:22 msgid "Log entry" -msgstr "" +msgstr "Entrée du journal" #: models.py:23 msgid "Log entries" -msgstr "" +msgstr "Entrées du journal" #: permissions.py:7 settings.py:11 msgid "Mailing" @@ -98,7 +98,7 @@ msgstr "Envoyer le document par courriel" #: permissions.py:16 msgid "View document mailing error log" -msgstr "" +msgstr "Voir le journal d'erreur du document envoyé" #: settings.py:14 msgid "Link for document: {{ document }}" diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo index 884e56d8b3eb7667d4f45918aa91a7061107a2fa..eb9188d523f801ca18d7793f6c8942d9a8c9203a 100644 GIT binary patch delta 192 zcmcc2yp^T?o)F7a1|VPpVi_RT0b*7lwgF-g2moSbAPxlLnT!k!r9fI0i1~pUfLyRX zAcX+FrNt!*1x5K~nJK9Xi6sg-sfj>={Jd0!l>Fq<+|;}hJ%)gy{H)aE5?#-fiOx>E zX1WH(x<-ZyhGteKrW+?YGO9VIWaZ~6!3k2{a)aY(i;nKF|~Z D!W=4| delta 82 zcmdnWa+%rUo)F7a1|VPrVi_P-0b*t#)&XJ=umIwjKuJp=4N?OG6H9z~O?3?{b&X6E O49%>J%r~BMWCQ?(XbN=z diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po index 120980335d..86a57153ea 100644 --- a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 @@ -126,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "Adjon meg legalább egy dokumentumot." #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.mo index 25a97a5230aaab970ce5d56459b82116a3395691..d2054841c6730575d83b6a55f84aafea7ea2d35c 100644 GIT binary patch delta 226 zcmXBMJ!%3`6b0bxPYMeWtSv5BStyQwh-ocS=pJ%)E;2mljm*2xkjf3A9M9Kx-Pfv#c(_wP7+QQtJ(bf_FP+<_`^Yt i{3gyKy+|1Y=bG=d%$#@*YFR4IzY7Pkh&NZgjp!c(Z!z-# delta 82 zcmcc3a+cZRo)F7a1|VPrVi_P-0b*t#)&XJ=umIx8KuJp=4N?OG6Z?F5O?3?{b&X6E O49%>J%s0NUW&{9{2nxLb diff --git a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po index 4df8dbbf7c..d7436b7558 100644 --- a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 @@ -74,7 +73,7 @@ msgstr "" #: models.py:13 msgid "Date time" -msgstr "" +msgstr "tanggal waktu" #: models.py:22 msgid "Log entry" @@ -126,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "Harus memberikan setidaknya satu dokumen." #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.mo index b2e18493ac8fdb980fd166e0fd12d98be7e2f19c..c51e9043166d1019e61d8b2e3168b86cb39bbc05 100644 GIT binary patch delta 254 zcmX}kzY4-I5C-tn)eohY~|p?0UA(32hMPJ7<-^MVOjg#ZP0Db4jpTT z#$2%ZRV}y?#AQq-$pj0kZ}nUkM?<+*rzFOKp;T}TloS-JeUS-ix|i|VkAmJH=!X^CiAGq8fuchGld${(`OY?~ delta 83 zcmey(a*^5Mo)F7a1|VPrVi_P-0b*t#)&XJ=umIxeKuJp=4N?OG6W93in(7)@>Kd6S P7@AobnQvxev}XhWrq~K7 diff --git a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po index 2938cfb661..2700a563f5 100644 --- a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 @@ -24,7 +23,7 @@ msgstr "" #: apps.py:36 msgid "Date and time" -msgstr "" +msgstr "Data e ora" #: apps.py:40 models.py:16 msgid "Message" @@ -74,7 +73,7 @@ msgstr "" #: models.py:13 msgid "Date time" -msgstr "" +msgstr "Appuntamento " #: models.py:22 msgid "Log entry" @@ -126,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "Fornire almeno un documento " #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.mo index d5bfd110e5b374a1a2320552fd9a2bf48b9abebb..86897bf695ff390666fe1961e62778f52c488527 100644 GIT binary patch delta 226 zcmX}kJqp4=5C!0gKZQjQtStttEE0@=L~Fsu6c+X_W{_305wl6_5k$d5Sb8BFPv8xF zD)`{z!7}@v}E0}h7c{@{L@J0UjmgvDTI c6VrlYjayE%$*h=+ga3b43P-|gDa82n1}XJ%s0LWWCQ@BrVAAS 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 6f2589ea4e..62424157e0 100644 --- a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 @@ -74,7 +73,7 @@ msgstr "" #: models.py:13 msgid "Date time" -msgstr "" +msgstr "Datum en tijd" #: models.py:22 msgid "Log entry" @@ -126,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "U dient minstens 1 document aan te geven." #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.mo index 6370ded905e3cf60e1a3c9054e8f5c7a505acc7f..5aa3b59ec8af6bfa77600bdc8feeaa7a5c6f7ded 100644 GIT binary patch delta 875 zcmYk(&ubGw6u|LGOW-)KX$)d&ybMw?PmyooWK!+mI>ta0%euKfG{3=hzMgK=EL!}uAy@GJJ?Hl9+d zs$zSTI?F%;yYV`9;w>CRgOb2~lms8*QGAIqZw(W;iRbYrW^j;2qd14-_z1TsY8_?W z>kdh@s#Kkq{S17-)A$LcqVFgbcQU&N`%o$w!d{#}Nq7bi;cYyQMLdHKun%9LRKAMC zxQYDKHji`cum12dfCGD#YR9WMiP!K5K1PktQRZ!+oY)ppQ1dh>s+p7|yc?2~Y$VCc z|4>gWCkHlh;ZW@W%+VLic z#9}a+jbaiB2|~o^|Fyp4yT5Zz?mgdk&OHwO)*e2Fyr+t2B0I=?GD03`JctkU;wQG? z4_0GsnNl?v!4M8&7^g9a32etjl>PRw3(v3|udzp|Lv_nQ3Ou7U@QTeC@RVNEG0MCT zhcJm29$^eGaU9?9j^=vVObWdEN)3OZG+gDUX>3DjbO0NuucjDOvXH=fT*6k|#!k$k zoTz~Pc!5&j3H$H`yRn`{YN;5`pp9~?`>5jy%6l%#O+27ReZ}|1sNl)ri<<{ZOT~_5 zC|4{Y1*F+3nGkX^DIzD5-%&?Ovs^|o8vm7p$t^d?eAZdrRddeD&gNSF+aJ!KmlfOv z&xKY!YM7IT71M{uY->E<;cFjZWx}vb-Lh, 2015 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:07+0000\n" +"Last-Translator: Wojciech Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:24 msgid "Mailer" @@ -26,7 +25,7 @@ msgstr "" #: apps.py:36 msgid "Date and time" -msgstr "" +msgstr "Data i godzina" #: apps.py:40 models.py:16 msgid "Message" @@ -54,7 +53,7 @@ msgstr "Link e-mail" #: links.py:22 views.py:31 msgid "Document mailing error log" -msgstr "" +msgstr "Błędy wysyłania dokumentów" #: literals.py:7 #, python-format @@ -76,7 +75,7 @@ msgstr "" #: models.py:13 msgid "Date time" -msgstr "" +msgstr "Data godzina" #: models.py:22 msgid "Log entry" @@ -84,7 +83,7 @@ msgstr "" #: models.py:23 msgid "Log entries" -msgstr "" +msgstr "Wpisy rejestru logów" #: permissions.py:7 settings.py:11 msgid "Mailing" diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo index 3eedd93e37dfce9c61efd6b619edccf4fd417c53..fdf17cc117d4fee364dc33fa43195e133298fa32 100644 GIT binary patch literal 1400 zcmaizzi%8x6vqb=ARIrWq(~?bdJzI8LUX(4B*v^U!ttGjrQ5`^FOfi^nA|?!ZP=Yz z&CH%-Md_&MDUuFRSd@r{hKBnOsHor{pn!^!eCKX+7X@KPn*Ge%dGGt)?7sQ!-080c z#%q{wVt$Ev7V{6xFyiNgI1P5dH^5ae_}&Cx2R{c}U;$nP55c#=hhT{N2@JYFgBQTx z!I!|l!S}&`z(-;Iybv$I{^is>ü{;T0Rh`kH@3K)T(HTGBFi?F{3gWiweJK&#S z$a5Z|pMr0JNHeQF)EoBTA|Nl$V21HB=Bu;ST=SJ?9qK}P^Kso|N1|(nb;;T%bpJkO zjX@6{h+e7kf>f4ScCN9W>^EkS>n}tf4>~Y*5&SQuw052umN|yrZB_lUxypN}kz#>V19ZE)TsJa9I_~^Q;y>UW(6!W+Gv)BsY%;@3}2@tqJjR zCzH3?y4>i5Qgx&>^}6YPYmX~qy-eLG&*b%b>pLSGGywVWH`g1w#op!4A}@;@Cu$t$+g<9wv1$J1|5 zb}JTMm9mQ9+*}s4!!uW>%ad6fY96wsiVH)yV#ZNjE~DC_r_sf>0gXc~%Op6`A^|Rq zRg>v=E*um}4nMzq68Aq|o6gnR8SFp0+T`gxl&O\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 @@ -32,23 +31,23 @@ msgstr "" #: forms.py:29 msgid "Email address" -msgstr "" +msgstr "Endereço de correio eletrónico" #: forms.py:30 msgid "Subject" -msgstr "" +msgstr "Assunto" #: forms.py:32 msgid "Body" -msgstr "" +msgstr "Corpo" #: links.py:13 msgid "Email document" -msgstr "" +msgstr "Documento de correio eletrónico" #: links.py:17 msgid "Email link" -msgstr "" +msgstr "Hiperçigação de correio eletrónico" #: links.py:22 views.py:31 msgid "Document mailing error log" @@ -90,11 +89,11 @@ msgstr "" #: permissions.py:10 msgid "Send document link via email" -msgstr "" +msgstr "Enviar hiperligação de documento através de mensagem" #: permissions.py:13 msgid "Send document via email" -msgstr "" +msgstr "Enviar documento através de mensagem" #: permissions.py:16 msgid "View document mailing error log" @@ -102,11 +101,11 @@ msgstr "" #: settings.py:14 msgid "Link for document: {{ document }}" -msgstr "" +msgstr "Hiperligação para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" +msgstr "Modelo para a linha do assunto do formulário de mensagem da hiperligação de documento." #: settings.py:20 msgid "Template for the document link email form body line." @@ -114,7 +113,7 @@ msgstr "" #: settings.py:24 msgid "Document: {{ document }}" -msgstr "" +msgstr "Document: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." @@ -126,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "Deve fornecer pelo menos um documento." #: views.py:105 msgid "Successfully queued for delivery via email." @@ -134,7 +133,7 @@ msgstr "" #: views.py:114 msgid "Send" -msgstr "" +msgstr "Enviar" #: views.py:120 #, python-format diff --git a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.mo index dfa145dc7e7958b34144bd491f5c493d5e924a67..b9655ce5ce45a27c98cc317bdc92821e585da031 100644 GIT binary patch delta 723 zcmX}p%}X0W7{~Eh8)JQ~jWt!YFusA*+L|;bAXHSeB6#%VLA$bx3T*-=&6YFh^U;$h3C)VL1cHj{{!wc*(X2X~V#?-UX zjWzfZdoYPQcpi1JMSO~%QO^}{0KelaJjOU)V*&?wIfd_Vk7B-IHS1Kka^4%P)A=(@ zRQ(+4#%X+no2UwR1BqI>_=UU&cWY%1x;f2*s{XsVtnO@fs>pN)Wmos#spN5lE9pVI@qK?;?R;sD)c#sdYQ5ty1F%0|vCz?1- zoxxdLLmOLIz$+}_2cFTK#bQC~djxhwZ{2YcCBV7kkPI*}Bl}7zQRU4c8J6lfOckAZ-ms+Hl s&6l%w!JM0~*d?bENXnaqterP)yOJ-sM$po, 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-20 22:04+0000\n" +"PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 @@ -25,7 +24,7 @@ msgstr "" #: apps.py:36 msgid "Date and time" -msgstr "" +msgstr "data e hora" #: apps.py:40 models.py:16 msgid "Message" @@ -75,7 +74,7 @@ msgstr "" #: models.py:13 msgid "Date time" -msgstr "" +msgstr "hora, data" #: models.py:22 msgid "Log entry" @@ -83,7 +82,7 @@ msgstr "" #: models.py:23 msgid "Log entries" -msgstr "" +msgstr "As entradas de log" #: permissions.py:7 settings.py:11 msgid "Mailing" @@ -107,8 +106,7 @@ msgstr "Link para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Template para a linha de formulário electrónico Assunto link do documento." +msgstr "Template para a linha de formulário electrónico Assunto link do documento." #: settings.py:20 msgid "Template for the document link email form body line." diff --git a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.mo index d8c94f18b7a47097e3f14114a6ee888a00bde310..07620e3edca48bb7ccce07b930889604276b3db5 100644 GIT binary patch delta 195 zcmeBX`M^?tPl#nI0}wC)u?!IF05K~N+W;{L1OTxz5C;PBMMegOQXs7X#O^>1KrUDx zkU{|8(&7?@f};Gg%#>7x#1e&^)I^{_eqO3VN`7)_ZfahM9z#G;epYI7iLPhLL}w>n zGhG8?T_ZyULo+KA(~XlV88t(SQjLVPl#nI0}wC*u?!Ha05LNV>i{tbSOD=wprj>`2C0F8i6y?grn&}}x<)1n OhGteq<{QsdG6DdLg$mgK 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 be32aea702..73985fdda9 100644 --- a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:24 msgid "Mailer" @@ -127,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "Trebuie selectat cel puțin un document." #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.mo index b2bf11936c3827f4925702762af65aa971836f9b..d5544aeae6657344904dc78e02b01781dd5c9b8b 100644 GIT binary patch delta 274 zcmXYpv1-Cl6o#)gEjWnKp;Lz=&Wf=bO6QIhd<27DP&7$tuC6U9omvPj?a-m`kcgs$ zm|3@T=R%*wKW%^b?)Sqz=X@KVC-*<6#)m+P;2gBUF}MMF`k(}CPy-WCJrW{>&p?dc zgLiNNhJJ5Bf4R1mBsF%V=+1maw|CxrJd|WBno8TRDDqrMLvJv1q^laQm)){eZ(h_} zCYjb%yA!|d3nPB#NCzAdZ-^KAfmfXBQ1BN@#<70FyW|b0oRNOygd<+(8~P=O@_&?& VF#1gYvs=PS#tG(AoZ0H2Ar4@rWNrWe delta 82 zcmbQqcALfGo)F7a1|VPrVi_P-0b*t#)&XJ=umEC3CI$veAPrIj0~7mvc};Z\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:24 msgid "Mailer" @@ -76,7 +73,7 @@ msgstr "" #: models.py:13 msgid "Date time" -msgstr "" +msgstr "Дата и время" #: models.py:22 msgid "Log entry" @@ -128,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "Необходимо указатьть хотя бы один документ." #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.mo index 78187e1a102ce6130323028042b2a1d9accdf92a..2ea4d6bd01691faee6075a277b4158a84226a5a4 100644 GIT binary patch delta 190 zcmbQi@`I)Ro)F7a1|VPpVi_RT0b*7lwgF-g2moSbAPxlLdyEVWrBHqdPy>())(4~z zz_+xxM4_N4zbrE)RUxrNAtyBvD3G6*s*sYOT$-DjSE9!dP?VpQnp~pmnKIGYiPucm zz*yJFP{Gj5%EWZzq&7yCfc%o8)TF$8g{)MCg8Y=kl1zoN;>0Y4)I6Xe*J%r~BEV*~({R0{|I 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 64913bd39a..9fa1be594c 100644 --- a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,14 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:24 msgid "Mailer" @@ -127,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "Potrebno je podati vsaj en dokument" #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo index a33fa4f77305e2257dc820bdc9dfb511679b81b0..587d837b91af4fa865fa61a4a2ebda511823003f 100644 GIT binary patch delta 201 zcmcb|e3GU9o)F7a1|VPpVi_RT0b*7lwgF-g2moSbAPxlLC5#LVr9fH_h^2rUfLyRX zAcX+FrNt!*1x5K~nJK9Xi6sg-sfj>={Jd0!l>Fq<+|;}hJ%)gy{H)aE5?#-fiOx>E zX1WH(x<-ZyhGteKrW+^uFzP!$+_gMUA-Oa!T_O45uB8PEhu4-U+Z8LEI delta 82 zcmX@fa*x^Ko)F7a1|VPrVi_P-0b*t#)&XJ=umIvEKuJp=4N?OG6H9z~O?3?{b&X6E O49%>J%r~C%VFUn?849WZ 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 80ce4919d0..45801cfe40 100644 --- a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 @@ -126,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "Cần cung cấp ít nhất một tài liệu." #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.mo index 0050540ec4d3ae4a42fd6c174c6d4d5db793e5a2..14d5d48e86925d7f7d135b48331fe21e38bdd841 100644 GIT binary patch delta 179 zcmcb?yq2Z@o)F7a1|VPpVi_RT0b*7lwgF-g2moSbAPxlLd5jDUr9fH&h(&-JfLyRX zAcX+FrNt!*1x5K~nJK9Xi6sg-sfj>={Jd0!l>Fq<+|;}hJ%)gy{H)aE5?#-fiOx>E yX1WH(x<-ZyhGteKrW+@@F-pE@-~4pL#23pNpUvrfvZLY2j#ba5wLe?9m;nG9&n*xD delta 82 zcmZ3>a)a68o)F7a1|VPrVi_P-0b*t#)&XJ=umIwDKuJp=4N?OG6H9z~O?3?{b&X6E O49%>J%r~BMV*~(&KMH&R diff --git a/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po index 11a327220c..fc3482bc1c 100644 --- a/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,12 +10,11 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:45-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 @@ -126,7 +125,7 @@ msgstr "" #: views.py:56 msgid "Must provide at least one document." -msgstr "" +msgstr "至少要有一个文档" #: views.py:105 msgid "Successfully queued for delivery via email." diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.mo index 51ee54233a3a4a2c781d356dbe037e0854989709..3cb5209a31596288e3e653b965ecf302d4fec608 100644 GIT binary patch literal 2824 zcmbW1OH3q17{^P+*QmRS@5gEx0|To)FIckMI2c?Y!R#o(f$YIVi|Jx$)6+e6_rQ{v z7!U~H!IK{JV2rz&U3NDtu5Ln1jERXSFJ4S_GU-5! z{aa_pM-1&r^rz7OLhnNV@fHkdZ{5mR92DRa;0E|OcpkhH{1$u|`~kcV{1xl~{{Tt; zPw+u7b{k`uvZukjz-K`XJPsZK&w_Nm2)+VVz#RBpeg6oQlH4)yIq(IL>`Y*|1Dpb% z0pF;v-vw{S`hD;ixB-$MRq%Jj_6Dt_%}##4PnTDV<5%12*$tc`eU>}y9b@}Pj^eT zfb_8Y(WyODLm20y^*Q0*`W&XiyQXC)I{8O;6}EUu`oa*th;wJ=ZCUX7obb5qaN+x| zIaBc^k9T=-Hf$KYAWKwu~?QK8vYA<;Tt+pR0$ zK9+3MF#T|dsE&KhGqtUoG>nh1T;2WVgwHx|(>LDbaS6rJ;9jLrke)YNv8=^JOWKou zrQBMEt~7Lpj_JIsr(yO@+V1tZun@Ab$jh$ukO6Mm5sN*I#PoU*J9P3ORZ+LNFbsH# z>^4-uc4N9vo7eJsURV{$auv^qOU}G$NL(Mcq`(KqmQ8gD_NpjJHYrQad;`r4^I6v^ zMUu~^%BTy;rbFe^X7qY*7Tvo`v3hL6b*P@SaYLJyu4g*7&U0c>*nD&(_j+tnmL1pE za$eCiw3jPIPs=+xk4?Om*TRB=yfy;+I?tri16rz2%cOaFK<~%AKb3-@HYw*#(z{1v~P!7)s`sPmIErr-2c=faImSQS@T z+L+^(Je}L+aOq_S26=6owX@k2e~G6!cC*)=gK37QUFlS6DBH)oyKD0ovuQff z*V;>`Bb%pAVY45bCkA8euzwD9LETW*U`bu#>SC~o>6)slEgr0^uY)Cg!1oKmO0Yp+ zE(e>zvbx0ZWlenrxzD-!B3Q#tRqb+hMQ!82HjV_V!5W9Il|4G?LrZV-|D&#|Yrzr^ z_3R$*XkE6hu<6zoRPDfp9TqGHs|ZMKsaTfkUCe5W{Q6H` zQOfFm(GL?DT|=g;>MD#;bQrhWMaLou`?o7OoY(>XTwM6Nx`Muq3sl!(V_8)xr+d7Q z{4RNd)pAj7*5Cg&-bzV3i;-e&bC)QfO+< PB7n1dd}|&%e6s!lt*u;D delta 598 zcmY+>%PT}t9Ki82m#cY?OtS@41HZ>;BH?oZo$%-xeb?JBHD!@B4j^#MGla&9tNU@ zqj-(I_>A57fqfYC3eknb7{F;Xa30%n58Lphu|CHk)>YJmD2qCiW(s!=AJE785mh5k zs5bb-S2hhb{WSE(+l$mAJZ#}6&fys*@E!+IeS8IU9LGG4;HA4R3sGk>PvH%@MAXkF zIMr|t)ybAIiR&1{3et~zN_ujGJ>BSFY$3yBr(5|Mc;zqXU$mMG>f`Ds`VG~D3iX$$ z;NT+Y&S*?-d!v&J2X@x6^@4q*=WQpulXbGXbG&aCMaJH>x%0m&-@T?B&;oL-Y0FcT z6Ix7`w6jFQFlP)auE&yTD`l8*(+sVx8te99u9({^7#X%m>y{bgxoN{n>1HBr#cyVP d6_5OC&d4QyTvq*#j0Ebk7K}, 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" @@ -69,7 +67,7 @@ msgstr "نوع البيانات الوصفية" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "قيمة البيانات الوصفية" #: classes.py:21 #, python-format @@ -78,7 +76,7 @@ msgstr "'metadata' object has no attribute '%s'" #: forms.py:12 msgid "ID" -msgstr "" +msgstr "ID" #: forms.py:15 models.py:45 msgid "Name" @@ -99,6 +97,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -136,13 +135,14 @@ msgstr "" #: links.py:59 msgid "Edit" -msgstr "" +msgstr "تحرير" #: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "أنواع البيانات الوصفية" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -160,13 +160,13 @@ msgstr "" #: models.py:55 msgid "Default" -msgstr "" +msgstr "Default" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,7 +185,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -222,7 +223,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "نوع الوثيقة" #: models.py:215 msgid "Document type metadata type options" @@ -238,11 +239,11 @@ msgstr "قم بتعديل البيانات الوصفية لوثيقة" #: permissions.py:12 msgid "Add metadata to a document" -msgstr "" +msgstr "إضافة بيانات وصفية إلى وثيقة" #: permissions.py:15 msgid "Remove metadata from a document" -msgstr "" +msgstr "إزالة بيانات وصفية من وثيقة" #: permissions.py:18 msgid "View metadata from a document" @@ -324,14 +325,15 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "تم اضافة نوع البيانات الوصفية %(metadata_type)s بنجاح للوثيقة %(document)s ." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" +msgstr "نوع البيانات الوصفية %(metadata_type)s موجود مسبقا للوثيقة %(document)s ." #: views.py:313 msgid "Add metadata types to document" @@ -378,6 +380,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -391,6 +394,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -580,47 +584,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.mo index 903465c071fc11fa09b09fe90ae8e61c0ae19539..04c51220612870494b33a8e7f90d7753b848ae4d 100644 GIT binary patch delta 603 zcmZXPO-lk%6o!vxWkq2TQS`wD7ZIeThKm-h>}%m~h{>5EFqOI^L<`FnwFtzbMXNr3 zft8X;V}GE<8QQhzFSHHX^xko(MF-w_=AJX}x$k`WF8zg%0pA6odY~~#LjBMyq$=Pc z>ID12UT_5Tfs>#YoCf>A888Sgxbti=C^c1Xi}sN4UKHZ z5V~s*mrpi&jxw`21YF{5|^Hh(_jTV-G=3z*D&5rr;NDa@9WI3P184*PS29AF&}C|?h06yQSGW= qWO03&_|`tKOStyl9XN69Ll}>-w8*tqKI9S3b#=D>g$bWWyvslL#=bxR delta 209 zcmbQq@q?xQo)F7a1|VPsVi_QI0b+I_&H-W&=m26CAnpWWHX!bU(jZMBJ#&D#pOJxK z5melWiGe``$hHL15#sH+i0AwZ*aDokC2C^n6GNzfD>Ka(;8kr~< znpqi{>l&CC7;pvn>jtHkWfo`V=jpm6mZVxK7#SD>)mi8onJXBWS{a#a{=+E1IQa^* FD*(=+8`1y( diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po index f32a6c1671..fc66d7febb 100644 --- a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -68,7 +67,7 @@ msgstr "" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Стойност на мета данни" #: classes.py:21 #, python-format @@ -77,7 +76,7 @@ msgstr "" #: forms.py:12 msgid "ID" -msgstr "" +msgstr "ID" #: forms.py:15 models.py:45 msgid "Name" @@ -98,6 +97,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -135,13 +135,14 @@ msgstr "" #: links.py:59 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -159,13 +160,13 @@ msgstr "" #: models.py:55 msgid "Default" -msgstr "" +msgstr "По подразбиране" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -184,7 +185,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -221,7 +223,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Вид на документа" #: models.py:215 msgid "Document type metadata type options" @@ -277,7 +279,7 @@ msgstr "" #: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." -msgstr "" +msgstr "Трябва да посочите поне един документ." #: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." @@ -315,7 +317,8 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:282 @@ -361,6 +364,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -374,6 +378,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -551,47 +556,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.mo index 13b45caebdd10885d247d45ad585112c6bb6aa2c..bac9f945ea42559c500ee0653f6dc6900733ba3c 100644 GIT binary patch literal 2322 zcmaKt&u<$=6vqcBzf38ml;0Glg4A*8+Uq2$BButLCQ%KTM!|_ds#M0_u`|hfXEihH zG*%8s98muN?o_J80de69LL4YkB@Wy;fcOKrAR)ws3*Wc?wYY(iWk(v(7Nh1G}dj|aT1&Db|SW4VN|47g2NEop5#3B#M(-i#FJ_2%1ASH ztioqzN5@{H<$~oRM99HDkBzj*09R4w#Mx0|3N~{N?L15>>lPP508f$Kkp#{j4ewI3 z6R&$BOeCu(*1;v+Q-Q?msK0HdZA$Nt>F9$pYzM-J%8StEA#UC$^ym`e?bgkp!<{ zL}WwZw5jk7-INA7-q2PUrC|_t648-fLyB&NFKZhqI5|5Qa1jOkvNV0!L1H6O;IrG# z#g$TNZ*Q;YNLRJx^;*qE5)Hu(GqWM3xf+<-E6FRixWFKv@MOd8ntwwqE3Y`HkBI(QsL=Yx%DtH zBJ|d@>Dmg9;&f`O^Gkd%tj)PHCfSt*qPkCK2?+5K{a{HNM*1X zA>9)Tr(zZit4XcjH0t)vsnv#x$0CAl8v5)NtM$8TM@AXj(LsXN(j{o)a~Pk+4y`H~ z7pbTuHr|o9Z=z1BR0TqrkA1qR!1+l{QSo7QpeMikn8(^Wy`y+CjwJcd3UIj0#IFD; zjxtLBBQ$ZYXOOKRf*Y)^jo?;tZB+;N$SK|whGP|~qZ}4l4drBWH`I}0SEk>J>W>Za hLWad;a=^Ngoe*+#4}_z?AmlQ$BfCEMi{f+({sHuqbtM1* delta 612 zcmY+>zb`{k6u|M@dey4>)do=-PyCALi`SRdk4A#9NF>A{F_2We;U#{hZAe9Q$K=Lj zvKxp$fPp~_5)+A7Ocn!)+4nw`aFTOB_uRhTb6$HGehn30!rGA_!ek41O2)`x4-0XI z-FS{o_=NTNiBYWZ3K78$4B#LdIEK}@j#ao@st>T8`WQ7KisF(@IS1Dz@6bp6fNGFO zR1LoHi>ARcno)arNDb75YM@bU#yM=nEUJO_Fpd({Kvx*Td)J~6&ult5cth?MHB6%h zij<6Ekh%?9F^&y5h0Nn#s=lX!E8M7Mtt4y6I``yf@&DQL_9A4ms43M?^c&pkhWblX z@ZzGv-7$z<@W%VbvvwwL>udIwzG~+)%b9#e&lfiAoS3jzY(DvaD&M`PjA;ScQ#S9( z$zClXceMRf$}oovE2$^?)7F4tCQUOqGi}V;n@-MIUo$3Xk=89U!E=L#HK3cRw3WOV l_8oiVM|reXv{ 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 a2de150297..44896dd869 100644 --- a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" @@ -69,7 +67,7 @@ msgstr "Metadata tip" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Metadata vrijednost" #: classes.py:21 #, python-format @@ -78,7 +76,7 @@ msgstr "'metadata' objekt nema atributa '%s'" #: forms.py:12 msgid "ID" -msgstr "" +msgstr "ID" #: forms.py:15 models.py:45 msgid "Name" @@ -99,6 +97,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -136,13 +135,14 @@ msgstr "" #: links.py:59 msgid "Edit" -msgstr "" +msgstr "Urediti" #: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Metadata tip" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -160,13 +160,13 @@ msgstr "" #: models.py:55 msgid "Default" -msgstr "" +msgstr "default" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,7 +185,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -222,7 +223,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Tip dokumenta" #: models.py:215 msgid "Document type metadata type options" @@ -238,11 +239,11 @@ msgstr "Izmijeni metadata dokumenta" #: permissions.py:12 msgid "Add metadata to a document" -msgstr "" +msgstr "Dodaj metadata za dokument" #: permissions.py:15 msgid "Remove metadata from a document" -msgstr "" +msgstr "Obriši metadata iz dokumenta" #: permissions.py:18 msgid "View metadata from a document" @@ -318,14 +319,15 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "Metadata tip: %(metadata_type)s uspješno dodan u dokument %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" +msgstr "Metadata tip: %(metadata_type)s već postoji u dokumentu %(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -366,6 +368,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -379,6 +382,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -559,47 +563,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/da/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/da/LC_MESSAGES/django.mo index 04d0e8073ee1f342bd3c267a8b9e785d282d970f..5d24ae62c509ad4e5d264146eb2b830d9816a042 100644 GIT binary patch literal 1091 zcma))&2AGh5XTKIP?pbf*wgP99w5qDDdT5(eszjhlLvI}1*h$^)+L6~uT29BlN%(IQl2izZ(a!!nrCD>+yu_^E!coqBr z-UmN}S)Fg-4e$p@;0c)Joxm%Ln*#5EGayo)_L1#pasis<&g6U_EEw=Ih*U$lh*j1f zTa}U$<%JYpkhdgA+Il-t#s;Xt3=asanC0}bdQ(m(X1zXQ+eBCMG5zkA)tB8vE!XnSl^J0Mti_rqs z3;8?(c~y0EmiOUGx7*G6?6hvE!(81aq3fS>VUjh&l}yqw9^?q62(+Q&B(LE*BJ%3chpkv>vrP3p;Zo&SUeq@D(kL#g*iep_P2Eaunh`DSYCrteh@=R% z;@!8BQmX1GhHbzQ-8TKYv|z$73P)$R?~5#_jP}CTVBVcJZ}7;KVsWn7%7~@ zjP*UIBUV*XH+#o!JoG=ttoOx9%~nlQcPPqwi`s OFT8H3WLo7GT~sdBcsgZ!;D$Hrn&}}x<)1nhGteq=98_Mq(LGUx<=*-2Bua< WCYzI(co-)yWtL|OPMyrlA_V|Kc@#qc diff --git a/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po index d98cd26b09..5c0ae3f4c8 100644 --- a/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -64,11 +63,11 @@ msgstr "" #: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" -msgstr "" +msgstr "Metadata type" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Metadata værdi" #: classes.py:21 #, python-format @@ -81,7 +80,7 @@ msgstr "" #: forms.py:15 models.py:45 msgid "Name" -msgstr "" +msgstr "Navn" #: forms.py:20 msgid "Update" @@ -98,6 +97,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,6 +142,7 @@ msgid "Metadata types" msgstr "" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -159,13 +160,13 @@ msgstr "" #: models.py:55 msgid "Default" -msgstr "" +msgstr "Standard" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -184,7 +185,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -221,7 +223,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Dokumenttype" #: models.py:215 msgid "Document type metadata type options" @@ -237,11 +239,11 @@ msgstr "Redigér et dokuments metadata" #: permissions.py:12 msgid "Add metadata to a document" -msgstr "" +msgstr "Tilføj metadata til et dokument" #: permissions.py:15 msgid "Remove metadata from a document" -msgstr "" +msgstr "Fjern metadata fra et dokument" #: permissions.py:18 msgid "View metadata from a document" @@ -277,7 +279,7 @@ msgstr "" #: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." -msgstr "" +msgstr "Angiv mindst ét ​​dokument." #: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." @@ -315,7 +317,8 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:282 @@ -361,6 +364,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -374,6 +378,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -551,47 +556,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.mo index 93900948cef2042614b0ff64fc68ee8e7dab6d57..9fdebfcc88b05938fc75b701b480b18a0a309403 100644 GIT binary patch delta 44 scmdn(wA*O|qcE?Tu7R_Ie4! 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 69c2c76943..d5d442c574 100644 --- a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-08 23:05+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -39,9 +38,7 @@ msgstr "Dokumente mit fehlenden optionalen Metadaten" msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "" -"Queryset enthaltend eine Referenz auf eine Metadatentyp Instanz und einen " -"Wert für diesen Metadatentyp" +msgstr "Queryset enthaltend eine Referenz auf eine Metadatentyp Instanz und einen Wert für diesen Metadatentyp" #: apps.py:118 msgid "Metadata type name" @@ -103,6 +100,7 @@ msgid "Default value error: %s" msgstr "Fehler für Standardwert: %s" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "Verfügbare Kontextvariablen:" @@ -147,12 +145,11 @@ msgid "Metadata types" msgstr "Metadatentypen" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." -msgstr "" -"Name unter dem andere Apps diesen Wert referenzieren. Keine reservierten " -"Worte aus Python oder Leerzeichen verwenden." +msgstr "Name unter dem andere Apps diesen Wert referenzieren. Keine reservierten Worte aus Python oder Leerzeichen verwenden." #: models.py:47 msgid "Label" @@ -162,10 +159,7 @@ msgstr "Bezeichner" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "" -"Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-" -"Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/" -"builtins/)" +msgstr "Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:55 msgid "Default" @@ -174,12 +168,9 @@ msgstr "Standard" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." -msgstr "" -"Vorlage/Template zur Generierung eingeben. Muss eine komma-separierte " -"Zeichenkette ausgeben (https://docs.djangoproject.com/en/1.7/ref/templates/" -"builtins/)" +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +msgstr "Vorlage/Template zur Generierung eingeben. Muss eine komma-separierte Zeichenkette ausgeben (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:65 msgid "Lookup" @@ -189,9 +180,7 @@ msgstr "Suche" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" -"Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem " -"geforderten Format nicht entspricht." +msgstr "Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem geforderten Format nicht entspricht." #: models.py:72 msgid "Validator" @@ -199,10 +188,9 @@ msgstr "Validierer" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" -"Der Parser wird den eingegebenen Wert so reformatieren, dass er dem " -"geforderten Format entspricht." +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "Der Parser wird den eingegebenen Wert so reformatieren, dass er dem geforderten Format entspricht." #: models.py:78 msgid "Parser" @@ -309,9 +297,7 @@ msgstr[1] "Für die ausgewählten Dokumente existieren keine Metadaten" #: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" -"Fehler bei der Bearbeitung der Metadaten für Dokument %(document)s: " -"%(exception)s" +msgstr "Fehler bei der Bearbeitung der Metadaten für Dokument %(document)s: %(exception)s" #: views.py:150 #, python-format @@ -329,24 +315,20 @@ msgstr[1] "Metadaten bearbeiten" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Fehler beim Hinzufügen von Metadatentyp \"%(metadata_type)s\" zu Dokument " -"%(document)s: %(exception)s" +msgstr "Fehler beim Hinzufügen von Metadatentyp \"%(metadata_type)s\" zu Dokument %(document)s: %(exception)s" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Metadatentyp %(metadata_type)s erfolgreich hinzugefügt zu Dokument " -"%(document)s" +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "Metadatentyp %(metadata_type)s erfolgreich hinzugefügt zu Dokument %(document)s" #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Metadatentyp %(metadata_type)s bereits vorhanden für Dokument %(document)s" +msgstr "Metadatentyp %(metadata_type)s bereits vorhanden für Dokument %(document)s" #: views.py:313 msgid "Add metadata types to document" @@ -359,18 +341,14 @@ msgstr[1] "Metadatentypen zu Dokumenten hinzufügen" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Metadatentyp \"%(metadata_type)s\" erfolgreich entfernt von Dokument " -"%(document)s" +msgstr "Metadatentyp \"%(metadata_type)s\" erfolgreich entfernt von Dokument %(document)s" #: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Fehler bei der Entfernung von Metadatentyp \"%(metadata_type)s\" von " -"Dokument %(document)s: %(exception)s" +msgstr "Fehler bei der Entfernung von Metadatentyp \"%(metadata_type)s\" von Dokument %(document)s: %(exception)s" #: views.py:461 msgid "Remove metadata types from the document" @@ -389,6 +367,7 @@ msgstr "Metadatentyp erstellen" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "Metadatentyp %s löschen?" @@ -402,6 +381,7 @@ msgid "Internal name" msgstr "Interner Name" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "Verfügbare Metadatentypen" @@ -579,47 +559,47 @@ msgstr "Erforderliche Metadatentypen für Dokumententyp %s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.mo index 4f4a23a02307505b4f9e1cb6fcf3b1b88924f3c7..5530a405cc5221d8f3a3bbe284cd61800d18c3e3 100644 GIT binary patch delta 26 hcmcc3f17_p77MSLu7R6n$8`I?%QAIF577yVPZbE;OSqe5{CN|?5yoCI$pT7(o!eku7G_#03 z;=s#=mza<5u>ilv&t3GQxfG%X-h*Y>h*j0^kXLL)`Csg zg-=lvSiy)oc9Wh;l7h-46_sfL=3smL`XJtSnccx%T;IZMG+-S%*n(|%4Y%MlG6(yG zn(*)Vxi@t+q0Ch3pUn-23slQ$Q7;}rb$lKx@d{Sq3oODpj7^+}9L`fvo3R+VWtUK! zc^I{nkFX2hVi?m|H|>cbANAMT+~k5vcn^8T9-t;PfqU@{IyjG-u!}Njpd8e|WpOW~ z27ZltZW@o{0=8l$p9)>rC~BN15e~E|CQ%uE!V>(7{49}gW*=r@5L>Yi@1iEWjOxhE zCy<93sNG+UN?;7t&tnYY6z<0b)Ys9IOT9Ze7)EW1Ib^@tJZeuYqB>Z@8cf={I#508 zbG(Qy)Fc9g`q04jL>-}~B`Y1T_vA;k3)EEng4ogOjyu3{6`|C($FJ9-b`KfGN~F4J ztqKXXJ%m!xY}IxUs=3xnr94O|I+S_LONi3UQoWjDuCbda*dno`%+S1Tv@ zRAP-PSTUhRR#VOYZ`y5Tgr9K7Z>UUa)ta7m%WguoRMU5)b~t(~aW=sdx)AP-o=kq_ z@`eXO-JyYyb3N2M7>+Klop5`DrT&W2@_-Wv)>H<^C%xJKu9OFA{1wqJ-Vsl7<3P{V fL0*ow`H~aTPKSE?`kn5ub9uGDzUaA4pWS}}C@qXW delta 1474 zcmXxjOGs2v9LMpaGp3DYI%*HgoP1C7;F4l76Dwg04EX8NZ@h4O)Y0RdDJy?TfsP_)zdhEko9KmBajwkR7vL~~LRrP!u zGNp-P2J4$HE-Y^Jp(3BaESy8V@B{<+68-oay;!|Ev0w{E7^)6?A+`}i}g*nF7O&2$ET-+tU?x%dun>=6Gj701WNmXF z74YNa_&sXjW!#M4kffOOZ1S%cbFvc?S74BF6Nc~%DrI-ki5z{57g5Exg8WQ~s8qar zQAcCnpFd1NO_qFR1LIGbD;@tV;JXA3;jZUZn+zcNkIjn z3~3T)VN^!cw$rPw_qt1BTb*$t+1j@nsc=HtiIsF!n3`5owXhRYOjo{iIHhzoJAo6f zE)|t>tx{Jmo9ID$Jzb5WiaCenXHZ6Or7I^?ud_v!B7`2v1?O74{qIRK9Av<2TdZrN&1xW>eyR&x|V+vg}4H5cK)$ z!hw3r4%)V-pkBe_62M|&ox+qdY>H%2ZC`=)~Gu^=}k|KKge5f F{R2sAf)xM& diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po index af6121c85e..67bcfde2d4 100644 --- a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -38,9 +37,7 @@ msgstr "" msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "" -"QuerySet que contiene una referencia de instancia de tipo de meta datos y un " -"valor para ese tipo de meta datos " +msgstr "QuerySet que contiene una referencia de instancia de tipo de meta datos y un valor para ese tipo de meta datos " #: apps.py:118 msgid "Metadata type name" @@ -72,7 +69,7 @@ msgstr "Tipo de metadato" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Valor de metadato" #: classes.py:21 #, python-format @@ -102,6 +99,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -146,6 +144,7 @@ msgid "Metadata types" msgstr "Tipos de metadatos" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -153,7 +152,7 @@ msgstr "" #: models.py:47 msgid "Label" -msgstr "" +msgstr "Etiqueta" #: models.py:51 msgid "" @@ -168,8 +167,8 @@ msgstr "Por defecto" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -188,7 +187,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -314,25 +314,20 @@ msgstr[1] "Editar meta datos de documentos" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Error al añadir tipo de metadatos \"%(metadata_type)s\" al documento: " -"%(document)s; %(exception)s" +msgstr "Error al añadir tipo de metadatos \"%(metadata_type)s\" al documento: %(document)s; %(exception)s" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Tipo de metadatos: %(metadata_type)s añadido con éxito al documento " +"Metadata type: %(metadata_type)s successfully added to document " "%(document)s." +msgstr "Tipo de metadatos: %(metadata_type)s añadido con éxito al documento %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Tipo de metadatos: %(metadata_type)s ya presente en el documento " -"%(document)s." +msgstr "Tipo de metadatos: %(metadata_type)s ya presente en el documento %(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -345,18 +340,14 @@ msgstr[1] "Añadir tipos de meta datos a los documentos" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Remoción con éxito el tipo de meta datos \"%(metadata_type)s\" del " -"documento: %(document)s." +msgstr "Remoción con éxito el tipo de meta datos \"%(metadata_type)s\" del documento: %(document)s." #: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Error al eliminar el tipo de metadatos \"%(metadata_type)s\" del documento: " -"%(document)s; %(exception)s" +msgstr "Error al eliminar el tipo de metadatos \"%(metadata_type)s\" del documento: %(document)s; %(exception)s" #: views.py:461 msgid "Remove metadata types from the document" @@ -375,6 +366,7 @@ msgstr "Crear tipo de metadatos" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -388,6 +380,7 @@ msgid "Internal name" msgstr "Nombre interno" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -565,47 +558,47 @@ msgstr "Tipos de metadata requerida para tipo de documento: %s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.mo index 57921332b4c3c49565be0552dc46e865759a5ef7..7fe52ad3e2778caf8226914e453fbe4f289a66a8 100644 GIT binary patch delta 1525 zcmX}sTS!z<6vpwT&RAJfHfC0K8MD&Nu^GqA%(4r1k1m8}207xCh4dgA3CSTL$p?v; ziX?&}s3=5YAcF9r=%qJ_iZQ~7-ij#cC4!>=Hy&KfI=^$a=d$-M>p6f1K^s|?P58^aDgZ!+6LoRmXbi9Id z%^bVQiI0XyScuPX1%7m|(|C*evJ&;-5-h_y)N`FUAA2ze2eAQ%unE0|=QPhK7iTa$l_U!_l5EsSSKtzCaNE1EFU_nUt92i}S&n;AQ*svT@HQ6U z7o_jz&7Q1iHu9*IpuSs`P5lF$)VdALn8)=g_eKYIa6N##@h#TiQie(AtqHYO+OPr# zFdtuHF^=OZoW?xGu*~%us$+lr)Sr9I%dpjuhkD_1)ST_aTC8{5Z{Py1pQBduTht=^ ziu-T}TR|0zV*sDvF?@r%FUUh$Tm7#098MxMjG#&~f!pynYL07I+S+EvaVOrwtM~}u5Vm1Go*v{xFaC*oVHMru8LLHAqye?c@!s*3u%78VQNwvt;&MG+Z{Z}k*98j?aAQgv2PI@?IDBTGpQN1=&k1*ht) zeZ!ok=42%*O2`eQdZ|!vH2G^ujbsy9Nmh^w7NcVPR(GTR}C>a9dSA#d>v5lewDI{!wU|Dryrw-uLOAXiKa; zacKJEG+(SU+8XVQ2F^v>yJCqyGwx^jDuba&usj?HS5{Y4#)o|QQ!VA;>QE%{&NtVa j`JpeFNIpz__V=b|ja?e+O%5j?B%j2?c{z!bxe?EQenFB5 delta 1474 zcmYM!OGs2v9LMqFIHS{4<|D1Na`IW~tvh#Sd`u6OtZ*=ru}ljp6+t&i6p}Dh&EzDZG<4nMNqVe78OC?-)*8lo%!5*ypR9+pa1P!_-;7)KHq!O z5G{|bREko!y>ZM7Bt~59KsFw2+7^d zp(;6#+-km~UYwb0Ob`R8^V(eMzlsBg30)Y+-PnWe_yD)zCnPsh#d6gfVT@o8mf$#U z#3`)8H#mqt(jH~Ml-LVo%FLmjvye~ywO83Jw;792f9S^5cm~zAH&D$qjUAXp%d1jd z7{n8J2(O{8`+}-KJ2!`M0JY-VxDzK(Te^_sK%bF^7T$xccoi?AZYZHV>#+<~;#O3m z1E`8TL?!Y#JwJ;!=Q(8Gjm@a%-awVtxq*7JrgH!J-D4A(us17v@rK?a!(W!2I^(OYj-3!%Up=BtP zrb5ftW?Kv`Wh*1XXkaL4vZSF=++|c^3!|Q)&SF2@f>TyE)c^YL?q8^u3e{#4!_f&5 zbbtTUm+k F_YWuYe@p-X diff --git a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po index 4a17777fe4..eb06db1b5a 100644 --- a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -36,9 +35,7 @@ msgstr "" msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "" -"محتوای مجموعه درخواستها شامل یک نمونه مرجع و یک مقدار برای متا داده مورد نظر " -"است" +msgstr "محتوای مجموعه درخواستها شامل یک نمونه مرجع و یک مقدار برای متا داده مورد نظر است" #: apps.py:118 msgid "Metadata type name" @@ -70,7 +67,7 @@ msgstr "نوع متادیتا" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "مقدار متادیتا" #: classes.py:21 #, python-format @@ -100,6 +97,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -144,6 +142,7 @@ msgid "Metadata types" msgstr "انواه متادیتا" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -151,7 +150,7 @@ msgstr "" #: models.py:47 msgid "Label" -msgstr "" +msgstr "برچسب" #: models.py:51 msgid "" @@ -166,8 +165,8 @@ msgstr "پیش فرض" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -186,7 +185,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -310,14 +310,13 @@ msgstr[0] "اسناد متاداده را ویرایش کنید" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"نوع متا داده افزودن خطا \"%(metadata_type)s به سند %(document)s; " -"%(exception)s" +msgstr "نوع متا داده افزودن خطا \"%(metadata_type)s به سند %(document)s; %(exception)s" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "جذف موفق متادیتای ندع : %(metadata_type)s برای سند : %(document)s." #: views.py:282 @@ -343,9 +342,7 @@ msgstr "حذف موفق متادیتای نوع \"%(metadata_type)s\" از سن msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"خطا در حذف متادیتای نوع\"%(metadata_type)s\" ازسند: %(document)s; " -"%(exception)s" +msgstr "خطا در حذف متادیتای نوع\"%(metadata_type)s\" ازسند: %(document)s; %(exception)s" #: views.py:461 msgid "Remove metadata types from the document" @@ -363,6 +360,7 @@ msgstr "ایجاد نوع متا دیتا" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -376,6 +374,7 @@ msgid "Internal name" msgstr "نام داخلی" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -550,47 +549,47 @@ msgstr "متادیتای نوع الزامی برای نوع سند :%s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.mo index 624a8f72d328e94c2042d785e3de3935c31b40e7..445ff1f29545da33d943f0788d2e5c1b8ae5c40e 100644 GIT binary patch literal 9170 zcmchcYm6jS702(wA~FI3q9BM|fwgyp?wMIw9!dgoT6{!~|kAF)fLHFvge=KM-G$h{o^%6B0r+{?4sOSM~G^ zo0w3U>VMUJoO|wh-E(UGc**8(Dz2m4AL4%QETv9>)93KRbHNcB=ybU~`cL%%z z48YysDe!XeSKy`KU%(OY4e*2DrgtmFqq-8j47?V67q|m_Ke!LP3cL^GPc8FvG59EW z0r*w$TJXEzbzm=le>KPR&r@nM?c<>EwH<7Mv!Kj>6#M}A74UuF55Q-@=fTIoMVS2r z_%CoTIQ1T-J`H{mL?r63pwM{*6w&+}6#m}?g{}w%R@7x+6V#yW`!IMRxCF}l6>uB) z1#kj<9=rtnCn$XV2fP!!n87pP{h-W$3KY4$kiY*96nXp^lznez&;#IkU;|tPMShQi zP4Ed&`2B7E{t|c}@0;J7wLbvzr(Axn1`}`={01oddIc1EuYp2OU4*QG7I*}F5S#&@ z1s?)s@I2sv6W}jF;qwhp_;?FM^y(}&FY-Je90e}{MGiZ`ZQv{@cJcYV{R!}yO-lU) z6h2&x?PK8AK(W7{f!BdAfe(Rif!BcdV`Lu&9|eW}cR*S1Sr8Sfm%)#KuY$tY2uc+? zmx2eu+dz@S=RjHK6v$T9_raUMAA>i8ujcPpqpa(Bp9AeY@T0t+0%yS=fkI~!KeEmh zpy+cC_&2Z(ejU66BMQKm!B2vBVcaX=4?(fZtFFxW*PyI(11S7&2W8)Tzze{6a1!i- zBG0Em(etlCM5O)!?gRe|?gaM|40u$Z1x0S(2F1Q!06zs@1`)QZB2eUZ3KV;P8r%xL z2%ZhT27U>A9lQ;E1Y&GWJqO+n{st6&FN7J9;S(7ZU%o3;u7i)AR$2g9TYo#9h7lz zf{0vgM@hTES&%06I0#GXS#T5hac;S!O|J0_Y%IDbf3|w!d3*kTI7ji@L-{l0>?JZj zn_FbI&$eVgM**>ak+sNGF5z2v7JI#eTl@mCTmO?iRIhEkoSQd@-O7b(tu2V1Omk0h zS1*yj=(@O2osCI^EGwHM;N5xWE#R%(;v?5_i!F)Wi%!Mg#23!umg_F=1Kc8ixyHCh zxkb)$-N-Gvo#EcgP3W*TeGZ7bTD!R&luK+ubMN8a#Vyx2!T3F}fWFi8-0*Whe5aC!W-*(J_hRI*HTJ;rwyaPV|x!>mbxl zl0@Eo%CyFoxS{sCt}cewUUb4(?S}2NV}fL$Yqe`)8E}T(vFdYOET$77qV`8dwoq#= z8UwRZd906#)s$IqQa>q>-TSH0CW^vnQg4xd-y|l7wUeb&CrblM%gjA$s@Qe$P);wq zEc^Aha**xQVK?!@06ubJS!->h@tQ%g?s#$R1&eu)m^El zD!OYhAvcDstI*my&4a`1lZ!XI9V=+NT&+1)2e8Np9!eX9G+=&egh(v2s_#@Jch za_y9E6pGomAU@MAf~Gw*Ok51ierLHFUJK;j$+-3CotRvcvkD_9To-u=PFHE}JaTR7ldgMP(%`BKk{L6-M8F zhLuE(i%bS}UPNu3Tok!oXvZg_x~sa2hY`5N!%E(&Rx-fjFj7_FiCrSkO3bg>+yJ$> z&S$J0g4$wW+7&!TiO!Nk+db;(o>;T6H|0|HCYM+2{|TOhQdl1x$zAeMZ{eP^JuBN1AkS=92lIF zg|rCH3-*ABWogkPlam`R*o+=EG{qSX(7KgbVLdWW^i20!0Z?+A4=M5TZ+{x!OJ#T@gBi>qrh^J zZ5-h`DA}~V1+QIl)+c|o5+0D9h@=G2JjqnltgD=Qj7Hi*a)kbfxAw=$iiG^;fuJ3V>L&HA^IlT&I*F1-X8kmB{N_QN zi*hLF+Shp3wjDZq+_g2(yYvU)*EuFj^B#}^ z3vLvLp>}(xsp2SE@Whl?8zSY25L$F<8{3bj-7d$biB$Q-@Ild(#Cu;(=v)rdShr1- zU{02JnEIi|xnB??;TXC#G+nO*XDa#=<0xXWm7;6m zY295;<+UZ2ux#1`ip&boK(s>qb%GPAgQN8e(tMH#vBpew>3kYcw@>>P}RwNA=-)CsOl>Sa~OR`QG;=TTHx! z)T^bZ$*X#&rC#M2cSDNn-cw0LI*MNtqI%Cry2_&yIqjtPBs0ZyZ8eMgWTs5pvKK9; zh>yZH@qCZO6yuZNC?zcOr9Q^6iki3P0{>@)dj^|)=XuI~-VY;d_kP2Xut*eLC)~tC zOU+6MMCBWo!4g=?<*+Af+-*m`(^#{s8W=qFy?i6Wwmcr7Y~u@crzM;Y_4%Qj>4w5# zKbUO1qeD~bFiE#(%V!E_kHXpSohE5+Qy+0x!fI5siGh*G3B#F-RGf;kt@@@1*^$CJ z6B>4%hYu+ddrwkB)u&d3XP4oSU+@+=lZOkt45L*QC>(ECxYR)d=d?#IJCVxKGAae& zK)`LSOF{_PnmpcMvPhSW6jW=xk&TKB*Xv$~bx~-M3Ktc-utK~zPSEK}oRO;CCB>;4 zLd^iz-4&V6TJqMbq+FI0BG*0^e^dp;`?nxAtrB~A{QGLIH;vcwB&O|@3efcAdrhMT7#`c<$m&7bLnAUDhg{V z_9^k9cpfEYPdA*xq;$L*B+f}mh01RhCUS(;obTA7=FDR)t&*-_dwKQGcZf9qY9aq( zl2pcqsbV!9_x%aeElZ}sl13&~^irQj(chq0v<@wPTosF5EnbaD!0<$R;aa|G$PpYF zDmE%Hc4LX#DlFF7hCokeNiu4R3;M;r@bR@9+izn{b$#7GQ2NKw&=X0Ns`z>*86@6G z&J#)O6kf%%c@&r)6g#{vIHaBu%qWf$G$EOC7CdN*!fuF+RcX0+5 dwp-m2l~ehF#8wVamf~sS3ZNV!B-i?>`X7EqOYi^y delta 1721 zcmYk+TTEO<9LMpYg1amQf#uEurxZ$U*|Kc8m0H2tqzbfYuvXDvIIt%|EW30ssWmZc zy(Eod(l{73HGOJ~5RDHcH5wBinrhlKO{`HLw6-MeTa9mh&=HXc%#Ue4m^#UaTy!%B0i2kVHK7?Y)lB-u^wX> zz!BtQ#`&to2@GNiD~!pTSLu{;<6Yc}A7dMSw{g9OT1yeL>A@k~h3%+uN3jN{F^s41 zIeZ^q#Jk9z%o99SzdwLXX~r?g^UVaEC^x22D?f{6xPlt+4aV_D?8bkv5<836A2@^~ zTt9<{@H}e#J=BK&MQxyk^mJewvU4+rQJ!yJQU@3DdHfc&!f=T(k6;6~;0`>3Bgh)e zIn+cKP~$IR4DaALR#UGjoJB3*3Toc#NY%_Qm{-bvr=uPIjZN6fwsn6P-zy-+xP$B4 zY^x4SSd~iDhEw=7HscCv+!cHjZz5|kfpTL=f(fI>HK8`JznuJQ!clJUF$unUFo%7( zf=c-sYCxFnZo>#3!6#AUmrxUbiAwnmOyYe!i5~UR8MujB&~4O$?p2b1HfQd0V-O2j zzA`X`O8F$})V_}U(c)wHD>h=7qpzKJ;Upf$7w`+zp$ss1J2vA(co6sCC~D#FeA{@M&cG7taDIXs zpZ}bWUaPNA@AFk`#bTbS40Iw#z&~hRs7bW2A)0=#P)T;uc+>n{fnP59|4^nBDuv2K zkiT-(SrJ>u|I<--3r!`7(zLU^G-b4(rr<34XRI5Q z$zfWb-hb7fa{0R@tA6P9(7)k>;KlHRZ2BiVzH#kr_yCovleUYddMlJ&MK4Vy(s>x5 zDLS-6#Xg!H2%NQRfdh75Fk(*z-?Gic=j>mhNxN7wTa-$@l3Q4<*?ghEu9a@LFPF`& z{#JIY!1h*D*y@Ty<);=r^Xx*x&3fjTdpzgay_G+d_C{lSqVXQ5yKgYwZ_C1sySXzE zjrTjT-obd!&KMCIb2HiK(X^Y)9Cx#+^q@1In)cG!6lUD?T*~IdckKsNS8cv}&W38b zY)fs>o~ik$d(3s_FD+-?L@JrQwCp*FoRdh+, 2012 # Pierre Lhoste , 2012 # SadE54 , 2013 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"Last-Translator: Thierry Schott \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -28,19 +28,17 @@ msgstr "Métadonnées" #: apps.py:76 msgid "Documents missing required metadata" -msgstr "La métadonnée du document requise est manquante" +msgstr "Documents avec des métadonnées manquantes" #: apps.py:93 msgid "Documents missing optional metadata" -msgstr "" +msgstr "Documents avec métadonnées optionnelles manquantes" #: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "" -"Jeu de requête contenant une référence d'instance MetadataType et une valeur " -"pour ce type de métadonnées" +msgstr "Jeu de requête contenant une référence d'instance MetadataType et une valeur pour ce type de métadonnées" #: apps.py:118 msgid "Metadata type name" @@ -68,11 +66,11 @@ msgstr "Requis" #: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" -msgstr "Type de métadonnées" +msgstr "Type de métadonnée" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Valeur de la métadonnée" #: classes.py:21 #, python-format @@ -94,16 +92,17 @@ msgstr "Mettre à jour" #: forms.py:64 #, python-format msgid "Lookup value error: %s" -msgstr "" +msgstr "Erreur de recherche de valeur : %s" #: forms.py:77 #, python-format msgid "Default value error: %s" -msgstr "" +msgstr "Erreur de valeur par défaut : %s" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " -msgstr "" +msgstr "Variable de contexte du modèle disponibles :" #: forms.py:127 msgid "Remove" @@ -146,20 +145,21 @@ msgid "Metadata types" msgstr "Types de métadonnées" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." -msgstr "" +msgstr "Nom utilisé par d'autres applications pour référencer cette valeur. Veuillez ne pas utiliser de mots réservés Python ou d'espaces." #: models.py:47 msgid "Label" -msgstr "" +msgstr "Libellé" #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "" +msgstr "Indiquez un modèle à restituer. Utilise le langage de rendu de Django par défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:55 msgid "Default" @@ -168,9 +168,9 @@ msgstr "Par défaut" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." -msgstr "" +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +msgstr "Indiquez un modèle à restituer. Le résultat doit être une chaîne de caractères délimitée par des virgules. Utilise le langage de rendu de Django par défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:65 msgid "Lookup" @@ -180,28 +180,29 @@ msgstr "Recherche" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" +msgstr "Le système de validation rejettera les données saisies si elles ne sont pas conformes au format attendu." #: models.py:72 msgid "Validator" -msgstr "" +msgstr "Validateur" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "L'analyseur syntaxique reformatera la valeur saisie pour la rendre conforme au format attendu." #: models.py:78 msgid "Parser" -msgstr "" +msgstr "Analyseur" #: models.py:124 msgid "This metadata is required for this document type." -msgstr "" +msgstr "Cette métadonnée est requise pour ce ce type de document." #: models.py:131 msgid "Value is not one of the provided options." -msgstr "" +msgstr "La valeur saisie ne fait pas partie des options proposées." #: models.py:153 msgid "Document" @@ -296,7 +297,7 @@ msgstr[1] "Les documents sélectionnés n'ont pas de métadonnées." #: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" +msgstr "Erreur lors de la modification des métadonnées du document %(document)s; %(exception)s." #: views.py:150 #, python-format @@ -314,25 +315,20 @@ msgstr[1] "Modifier les métadonnées des documents" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Erreur lors de l'ajout d'un type de métadonnées \"%(metadata_type)s\" au " -"document: %(document)s; %(exception)s" +msgstr "Erreur lors de l'ajout d'un type de métadonnées \"%(metadata_type)s\" au document: %(document)s; %(exception)s" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Le type de métadonnées: %(metadata_type)s ajouter avec succès au document " +"Metadata type: %(metadata_type)s successfully added to document " "%(document)s." +msgstr "Le type de métadonnées: %(metadata_type)s ajouter avec succès au document %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Le type de métadonnée: %(metadata_type)s est déjà présent dans le document " -"%(document)s." +msgstr "Le type de métadonnée: %(metadata_type)s est déjà présent dans le document %(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -345,18 +341,14 @@ msgstr[1] "Ajouter des types de métadonnées aux documents" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Type de métadonnées supprimer avec succès \"%(metadata_type)s\" pour le " -"document: %(document)s." +msgstr "Type de métadonnées supprimer avec succès \"%(metadata_type)s\" pour le document: %(document)s." #: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Erreur lors de la suppression du type de métadonnée \"%(metadata_type)s\" " -"pour le document: %(document)s; %(exception)s" +msgstr "Erreur lors de la suppression du type de métadonnée \"%(metadata_type)s\" pour le document: %(document)s; %(exception)s" #: views.py:461 msgid "Remove metadata types from the document" @@ -375,8 +367,9 @@ msgstr "Créer un type de métadonnée" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" -msgstr "" +msgstr "Êtes vous certain de vouloir supprimer le type de métadonnées : %s?" #: views.py:542 #, python-format @@ -388,12 +381,13 @@ msgid "Internal name" msgstr "Nom interne" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" -msgstr "" +msgstr "Types de métadonnées disponibles" #: views.py:569 msgid "Metadata types assigned" -msgstr "" +msgstr "Types de métadonnées attribués" #: views.py:600 #, python-format @@ -565,47 +559,47 @@ msgstr "Types de métadonnées requises pour le type de document: %s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.mo index 3718446b83b302f7347b22b4b1b360b499609266..37ecef5181c5d7da20469910919e58533d4aebff 100644 GIT binary patch delta 372 zcmZXOF-yZh6vtm}iy&y#+2KGOQ^_zK>H@8CW73C37mXzOYcol*;J^*Q zd&0Gy<(%tycJJ+@(>U|hxXxk{q086I`2C0F8iPwF3O?3?{b&X6E f49%>J%qJT%N`pi!bdAgv3{0(zOg2X{@-qSeYR?Uy diff --git a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po index b0058111a0..78e624b183 100644 --- a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -63,11 +62,11 @@ msgstr "" #: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" -msgstr "" +msgstr "Metaadat típus" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Metaadat érték" #: classes.py:21 #, python-format @@ -97,6 +96,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -141,6 +141,7 @@ msgid "Metadata types" msgstr "" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -163,8 +164,8 @@ msgstr "" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -183,7 +184,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -220,7 +222,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Dokumentum típus" #: models.py:215 msgid "Document type metadata type options" @@ -276,7 +278,7 @@ msgstr "" #: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." -msgstr "" +msgstr "Adjon meg legalább egy dokumentumot." #: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." @@ -314,7 +316,8 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:282 @@ -360,6 +363,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -373,6 +377,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -550,47 +555,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.mo index 1002c41558e051385172b293b421074493c4bef7..cc26f0caf1b61c40f3aed5035c8a0bb4a8ca21b1 100644 GIT binary patch delta 418 zcmZ9GF-yZh6vwZ&6;u>)b~tb-4k<}mi*)WFVpaMHe3}OyNiHFG2^56R9Ua84P)8@x zRs06dE>3;}H~ptgLHxsy-@SM59`{=RYEC|O8g~L&1-sw`Y=9e3W(GFFL**xU3%r3n z@D9qi-(Xr3;s-A0rz=8i!}pbE@ILBixCwv47@y#{NTV|P^OQq%P%fWmkX+?4Yb)(I zWiez+0a^N26%^&T%#D?4mJ}*rNmfQoXe63tP%UYT5ywfvw}-=np5t~L-;-Xi-^ID> zy6fj>&WH`2C0F8iT`{}O?3?{b&X6E z49%>J%ykV+3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEf$A)Djm#AcOs$MeHa9SGG6DcF C{}k*1 diff --git a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po index 2209414add..c890fa6808 100644 --- a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -63,11 +62,11 @@ msgstr "" #: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" -msgstr "" +msgstr "Jenis 'metadata'" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Nilai 'metadata'" #: classes.py:21 #, python-format @@ -97,12 +96,13 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" #: forms.py:127 msgid "Remove" -msgstr "" +msgstr "hapus" #: links.py:16 links.py:24 msgid "Add metadata" @@ -141,6 +141,7 @@ msgid "Metadata types" msgstr "" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -163,8 +164,8 @@ msgstr "" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -183,7 +184,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -220,7 +222,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Jenis dokumen" #: models.py:215 msgid "Document type metadata type options" @@ -276,7 +278,7 @@ msgstr "" #: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." -msgstr "" +msgstr "Harus memberikan setidaknya satu dokumen." #: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." @@ -312,7 +314,8 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:282 @@ -356,6 +359,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -369,6 +373,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -543,47 +548,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.mo index d6ff5f2ed14fadc2d510b32fdfbf24cfa110d7da..fb31deb93ed26ccaf8e585854c00e1f4a3426cd4 100644 GIT binary patch literal 2435 zcmZ{kO>7)B6vquTd@Q9vC;llKy)jLSTP`6!*U%#XSWhG(HPfz;{5JKLb|5^B~0)f(ScnNO9I)#+P)^ z`f0pR<9!}4?K8EPc9E^8z0Lg1$H>;JcxmtGyijfr<3(6myg=5D;!APR9#CGWk$;o} z$`{ZVTe>a4A@3t`9$QSLC!LldO2)Q+tr zQb0`0?J# z2#E-H_#lxMdErWrS)41}!iGw&rP9@_%eq0PBIz>$$`GqbR%#&>>Fe(x*= zY}rO)=%{(?p|>d$tBm$}OY8{E*H&BCDs4G1iSt^vuR`zLv~RtR@p)zAYRAjY8sxoI z*!THDqj}bAEP4w~-aPA{M*no90YR@Vhl=#>ms@E1jm1+9w8~{}ge!afEyJVYid12n5sGc??(0S>GxWy@NyB6J|5NU)+q zYxYa$wZO1Wrl|Pktc93+DiCFdmqt*Nq$)j9V-g2gK&_BY1zXZN=-RCpSdteGK9C7H zR@^f~H6zYVfz2B#Dxq3oR75EIhNq+Qh7?>eSqT{$>-&$wcGgQ5k_XwyA823wG<)-ldZ}F(KzB588hfw~SH% delta 582 zcmY+>&npCB7{Kv&?XI=#`n5T*mJy{e*`0PRo07P4cO03+=4W|32XI3J|q2hDBZ(9-dWHWh4#>hbr7vcmv z@e~{J5gYIwn=n|WR0KP)0{hX#VXVe^4C8XC-oSS1J@hG6RF^Eu*|;isgMR8eltCU) z8hqd;O)I@Lqu%9o3tpfM{)BD#S*oKv#2pAz><^<1RKQwXbuB8j!$J-oAZOJz%0RbR ziT9=Y1?5e=p){`LN6h0sl$qS%mK)NbimV~)+?}6G;Llomh2mUfN_j=UAZ(Of=ZBI^b`4alo zw;oQJ@d49H8i~G)mDWXnRCfAJD{aJ687q0V@3%bqtGrcr2V#0UFr?1|li{o}l{LnG O8fNu, 2011-2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -68,7 +67,7 @@ msgstr "Tipo di metadato" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Valore metadata" #: classes.py:21 #, python-format @@ -77,7 +76,7 @@ msgstr "'metadata' non ha gli attributi '%s'" #: forms.py:12 msgid "ID" -msgstr "" +msgstr "ID" #: forms.py:15 models.py:45 msgid "Name" @@ -98,6 +97,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -131,17 +131,18 @@ msgstr "" #: links.py:56 msgid "Delete" -msgstr "" +msgstr "Cancella" #: links.py:59 msgid "Edit" -msgstr "" +msgstr "Modifica" #: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Tipi di Metadati" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -149,7 +150,7 @@ msgstr "" #: models.py:47 msgid "Label" -msgstr "" +msgstr "etichetta" #: models.py:51 msgid "" @@ -159,13 +160,13 @@ msgstr "" #: models.py:55 msgid "Default" -msgstr "" +msgstr "Default" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -184,7 +185,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -201,11 +203,11 @@ msgstr "" #: models.py:153 msgid "Document" -msgstr "" +msgstr "Documento" #: models.py:155 msgid "Type" -msgstr "" +msgstr "Tipo" #: models.py:167 msgid "Metadata type is required for this document type." @@ -221,7 +223,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Tipo documento " #: models.py:215 msgid "Document type metadata type options" @@ -237,11 +239,11 @@ msgstr "Modifica i metadata dei documenti" #: permissions.py:12 msgid "Add metadata to a document" -msgstr "" +msgstr "Aggiungi il metadato al documento" #: permissions.py:15 msgid "Remove metadata from a document" -msgstr "" +msgstr "Revoca il metadato al documento" #: permissions.py:18 msgid "View metadata from a document" @@ -315,14 +317,15 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "Tipo metadata: %(metadata_type)s aggiunto con successo al documento %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" +msgstr "Tipo Metadata: %(metadata_type)s già presente per il documento %(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -361,6 +364,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -374,6 +378,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -551,47 +556,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.mo index 403dfc9c7fd4966f51f3152ec29cccf45241d859..6dd1dba36ad08a2f1d7f185efe30b4db59be8e44 100644 GIT binary patch literal 952 zcmZ{i&2G~`5XToNUq(R74T-}bE{)K}c3PFnB?o9ysa0L7kRmvtO*~DuwRfZSIB5?E zi5m~VnKKujglFJcm`$t{2{F?6w=oouoL?l`!9BHtJj3M&0J&N zVm@ZxVFL3$v%y?pzNq7u%m*AFFrP6$)bBqreg7BcclNLB^Zpw`-1YrTultJW^9ObO zzK#|1A?Gc#!TikhbAK>>|4$}M&g~{Y{eFBtm}eFbKi`}0<8pD`2etV<`uU=Rr>e?{ znIoa-*kM(m;kaG^T~1JRGfg5zQkf#PNG+qO$}1FURT4~`o$3rh5#*>iVGTl7D>cQD zDp2&Wuu~Mr&Yt0rw?Pjl){#uhk+`nD8d9K;aIs6 zseRJlliOEye&{JW*)>C(X){V-d!T9g?Fr0h1;=^iR4(_dD@x8y=3&`x?Z9H$UN`Wx z4RK>95dKgI&u2=x41F}yXBoQXy;v?v%LgR}I74@i=6{!@);WPp^Uk2qhSg08@$!0r S;_7+s-#;(ko21PG)RE_Y zbKd{?U+4G_x8L{;i{}LIoxJ~gmt{Q-e|G~vJTrSNYZ}g$d=l=ZoWYO5ufQqz9r#iB zGJFsGDf}?}CANO7WxdzoXW>p+-jC95rF;P14Ua;Wvd%ym_bgn3 z1Na<#9j?N=-&e?U9?CkeL7D%Dkg2U7L)qug;4J(V6nXy%?}E2rJSiW7f5z4)q1bnZ z%^ZZwQ1*3>pO3?@Lb3NtQ2gUHDC_(heiHr`%6d1k8L{tPDEqh2EPlB!aqXU#~tr4{OB%7m30i>0Y3wO0iT6mg9lO4Y4`&u_T7VVWZjz~shZNX2$=b^0sM%n&%D1N*TCCU2JQ1)>Qiat+6+3zOg&pOAC$o+Nr z9Q-Df_J2TG=igBLbsv+6d^1q&+kqn2Bk%?ICHOgbD?-je7v2EB1^2>lL(%*9N`4KT<7f8goFC_4-ivz4e#9l6pHca=5mn?yT0(bFni?HM~!8#-1&sC1Gze!b;@y6)peqv68b79v{T;%iSWwie8qPQ9ce0(q%XCW^wS zs}4xJXA)E5s=?J#3*|@M!K!OynaNV!DHlP7gTxI3R;uQZ5tDu5t2)KXcjMR%*2@;{ z)g$VOcKbx;^Qjw|F|{o^Zeq#Ln8KzRP+Fj9x^}5l+#&{y7+sqb+-b!eJuhq4!&GdNu~~A{?l$I*=t>Ampn9&8Po8X0Rf(977@MyeQhS{2?fN4E?VBss z%>!|=F5WGct>S06!KUjNvV`)CrXmbXEnm}mT&8{^SKxS%EbAyXk@aM1q6{VE2}!$w z*hQ;KnJW^BI8dSk+u+b^1`p>;2M)c8R8ee@#cOkl4y>n)A8uBt+sf*?tk$B?XR1n_ zv=@RrV>uR(!5OOFWp^yC@h34{mZFxaI@$y&AMLQdd4-wx^$IU zCtJlqVr#ibUya9{#xo|0IRmO9ar!uOGOn~sgA%%&^zUfpl5(`_F<*yfo!O~^D> zA|1pW%yQ_R4STk0>V1eAiX`1wG1~8{<L`pk^~0#;%WfOS@#9vN=vxD?H9NKR*wW&zQaa7{)FX0V z2oMz2bvYrn5_%G^$CbSyF_FxlS$VYa;BG%zk#KD+26pHW)m`=As+-iZcGbX}TK3XN zdyPkl6Yd|uATP%AhmX@JE%P(M{Cr1!TD29;2RiMC=I7M?_vfD{=8wqdj8wNzblU3N zxx8Nbv}YO9Va(j@@hOhuIN825z@bLIYXaDp&Gh3W92ymmxc-De+O_1)(@)gcEhun_ z_%L?46p`Jcj4M!DT!9usNB2s13*>q+UL+>@>*vQwYMn`jZ@wCh2&iE;Uf?p84XOYS zGJAtr{A}k%FUYKicg}BLbeJT`?9ui`JL9uxGd+bHB;n4BwwvFN&cx}?1uOr(#)O3s zW!lcua#8c?f|UAOZ>sfz578mfMRGGyM> zNcUCG$Z^5CVW8PJ)kQWb)lta$R^x`5uh+?ulcN@$EJ=IZp9Ix(avoLoxT2-%d8ILy zbCZ_d!EiOqirZB<)Pbv;>TDLceb@N42Pr>|UA3BRKd*Mq>zxaBieynZaz?Jf!!i!a zk+I#NuYH%B*Usgv$GoLk*F)9YzBJ1Ex|&Z^TU^cl_siFHH}eikQ#tn_bjWUUKg#T$ zTUn}dx!PXWzmF{@8FomtbvBDfX&>uUR~aI+xJiiTr znv?4s%kQeS4qjtjd7~SN?jqgG^H+6u!^xSfy3=9zrSbxem>m99azltowT;O-p7F|R z?i7*+E3;t8TH+M9$n(UQFO*8IL@v$+x4fF+4-VEJ%d;q>Y76a=>AQFbclfgzIgGHb zyh_P&!GBphm$h?6R;oJh=Ao?YjduQD1FGwk3Y}<_+OCpqU_Xu&x7d^(Q?CfSx_wEK zlNzmu4tpG_-R=41j*X9>*6yz-oRoli8`ri@^^+8tM%wNXo0W8Ym7co$mFpsp9K0<+ tBVxYd(3X54KIWprYG7q%+N|ZUuXiq2HIs&4Cf}}m9Hbo8M8!lD{1*cJqIm!S delta 818 zcmXxiJ8V*66u|M*2esBqA5=sI?Olw6VgPBYovN~sR6>YtHF5cbYlA#4DVH>`)S8&a zXyS0=VA|D=4jQ*=q83+Y6Vt&}Cl^=$2l0f%?>@hC&Ij)=ehO|LhK64VagvOY-^p|2 z?f_pzVo>BfCegw>cpC5H7;fPye1=DG4@dAdj^aBU#t*3Pea0Xj;u!v`{j9(aH8!vF4uSy1-|wDfm+}v>ZHF>8?v}~0%NEHT*ffYA&=}mhKHS{?xqFX*m{tvdax0W`dMKyH0HCRrLlT&)qk92SA`zJb$ zMu^l7^*<3IHT1XEsWtq3;9;=pc#dS;VyouVJ%4}XMmU?1n~rBn#xr))@mdYZnVKIP zyFPWR-Ed^N!5v3dOtt0sL2Jfew3dRi@x;}5Ds3m{7E<&6ODn2ZuEbOGc4BrRmG(bc zk%@wP&sq0eyWlp>df9zD8ng%e{PEz-@yJpr*-4Pm+YZb3$s^yL;J}|OssL^(o22g89lO+D Hvn784($#kh diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po index eef6e560cb..9e67669097 100644 --- a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po @@ -1,56 +1,55 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 # mic , 2012 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"Last-Translator: Wojciech Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" -msgstr "" +msgstr "Metadane" #: apps.py:76 msgid "Documents missing required metadata" -msgstr "" +msgstr "Dokumenty, w których brak jest wymaganych metadanych" #: apps.py:93 msgid "Documents missing optional metadata" -msgstr "" +msgstr "Dokumenty, w których brak jest opcjonalnych metadanych" #: apps.py:112 msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "" +msgstr "Queryset zawierający referencję do instancji MetadataType i wartość dla tego typu metadanych" #: apps.py:118 msgid "Metadata type name" -msgstr "" +msgstr "Nazwa typu metadanych" #: apps.py:121 msgid "Metadata type value" -msgstr "" +msgstr "Wartość typu metadanych" #: apps.py:125 msgid "Value of a metadata" -msgstr "" +msgstr "Wartość metadanych" #: apps.py:127 msgid "Return the value of a specific document metadata" @@ -62,15 +61,15 @@ msgstr "Wartość" #: apps.py:151 forms.py:38 models.py:208 msgid "Required" -msgstr "wymagane" +msgstr "Wymagane" #: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" -msgstr "" +msgstr "Typ metadanych" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Wartość metadanych" #: classes.py:21 #, python-format @@ -97,11 +96,12 @@ msgstr "" #: forms.py:77 #, python-format msgid "Default value error: %s" -msgstr "" +msgstr "Błąd dotyczący domyślnej wartości: %s" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " -msgstr "" +msgstr "Dostępne zmienne kontekstowe szablonu:" #: forms.py:127 msgid "Remove" @@ -121,11 +121,11 @@ msgstr "Usuń metadane" #: links.py:42 msgid "Optional metadata" -msgstr "" +msgstr "Metadane opcjonalne" #: links.py:46 msgid "Required metadata" -msgstr "" +msgstr "Metadane wymagane" #: links.py:51 msgid "Create new" @@ -133,7 +133,7 @@ msgstr "Utwórz nowy" #: links.py:56 msgid "Delete" -msgstr "Usunąć" +msgstr "Usuń" #: links.py:59 msgid "Edit" @@ -141,9 +141,10 @@ msgstr "Edytuj" #: links.py:64 models.py:92 views.py:561 msgid "Metadata types" -msgstr "" +msgstr "Typy metadanych" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -151,55 +152,56 @@ msgstr "" #: models.py:47 msgid "Label" -msgstr "" +msgstr "Etykieta" #: models.py:51 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "" +msgstr "Podaj szablon do wyrenderowania. Użyj domyślnego języka szablonów Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:55 msgid "Default" -msgstr "domyślny" +msgstr "Domyślny" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." -msgstr "" +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +msgstr "Podaj szablon do wyrenderowania. Wynikiem szablonu musi być łańcuch rozdzielony przecinkami. Użyj domyślnego języka szablonów Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." #: models.py:65 msgid "Lookup" -msgstr "" +msgstr "Wyszukanie" #: models.py:70 msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" +msgstr "Walidator odrzuci dane jeśli podana wartość nie będzie zgodna z oczekiwanym formatem." #: models.py:72 msgid "Validator" -msgstr "" +msgstr "Walidator" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." -msgstr "" +"The parser will reformat the value entered to conform to the expected " +"format." +msgstr "Parser zmieni format podanej wartości na format oczekiwany." #: models.py:78 msgid "Parser" -msgstr "" +msgstr "Parser" #: models.py:124 msgid "This metadata is required for this document type." -msgstr "" +msgstr "Ta metadana jest wymagana dla tego typu dokumentu." #: models.py:131 msgid "Value is not one of the provided options." -msgstr "" +msgstr "Wartość nie jest jedną z dostępnych opcji." #: models.py:153 msgid "Document" @@ -211,27 +213,27 @@ msgstr "Typ" #: models.py:167 msgid "Metadata type is required for this document type." -msgstr "" +msgstr "Typ metadanych jest wymagany dla tego typu dokumentu." #: models.py:175 msgid "Metadata type is not valid for this document type." -msgstr "" +msgstr "Typ metadanej jest niewłaściwy dla tego typu dokumentu." #: models.py:189 models.py:190 msgid "Document metadata" -msgstr "" +msgstr "Metadane dokumentów" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Typ dokumentów" #: models.py:215 msgid "Document type metadata type options" -msgstr "" +msgstr "Opcje typu metadanych dla typu dokumentów" #: models.py:216 msgid "Document type metadata types options" -msgstr "" +msgstr "Opcje typów metadanych dla typu dokumentów" #: permissions.py:9 msgid "Edit a document's metadata" @@ -263,11 +265,11 @@ msgstr "Utwórz nowe typy metadanych" #: permissions.py:29 msgid "Delete metadata types" -msgstr "" +msgstr "Usuń typy metadanych" #: permissions.py:32 msgid "View metadata types" -msgstr "" +msgstr "Przeglądaj typy metadanych" #: serializers.py:32 serializers.py:42 msgid "Primary key of the metadata type to be added." @@ -279,7 +281,7 @@ msgstr "" #: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." -msgstr "" +msgstr "Musisz dodać co najmniej jeden dokument." #: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." @@ -288,19 +290,19 @@ msgstr "" #: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Wybrany dokument nie ma żadnych metadanych." +msgstr[1] "Wybrane dokumenty nie mają żadnych metadanych." +msgstr[2] "Wybrane dokumenty nie mają żadnych metadanych." #: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" +msgstr "Błąd podczas edycji metadanych dla dokumentu: %(document)s; %(exception)s." #: views.py:150 #, python-format msgid "Metadata for document %s edited successfully." -msgstr "" +msgstr "Metadane dla dokumentu %s zostały pomyślnie zmodyfikowane." #: views.py:168 msgid "Edit document metadata" @@ -319,7 +321,8 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:282 @@ -367,6 +370,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -380,6 +384,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -560,47 +565,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.mo index 28ba132c8dd83aa10eb215febf0a262fd5998b72..ca72fcb6d95f2d1e1f64a386cea9f683efbd85e9 100644 GIT binary patch literal 2391 zcma)+%WvF79LEP}c`VRE%d5OP0i~N2@;=h4svJckZMIS%+eTp%5C_o2p507kd#su9 zCP6~t!hr*#fO_DFKyc?4aj6uEzknmEIKT~hL|h{A{dw2BP7@F#jX$>MH^1l1@6M@X zw;0Atm@i@;yN|IN_y<+y@^APd@-%;1o#v z&Vi@F1rQ=^4LlCM13nDC2YO&1JOSPUNzb?78{iLM2iza6zX|0e_b&JXkeVC)q5<%r*b=kUD? zlD=O-h_c_oDezB_^q<6o;yeR#@GSTY_&SI%^MMrRL80{;@A}<1;i4$Rg&0ArDcnJw=zU6xKhbB79@xqCjJo+*sKPs=sSMTGdn9iAF#kq)kslEs-KOEp`v zLpzUBRd$PuFodT_b)f>bi`PTi?8NJVh%(7KnRReU4^${oOCCvqA3Bj^b#-=4#FDMb zSPu$}^UQlj$E6amwG@X$vh`f~x+>TDUeSZA6su(`M$_T)mO^h`8mn~T^N!dN32!fU z-m0w1R2%1YY+r@m<*aYLuJ(Cl<$Bl4PZ#99McDWGY_oOIYo7OJTfBAAzkv4(%_aoB zRXI?k_psb-%Ws~4t%*@tMiRWP5s8h2)5hnkdP5rIcvV|rl!idk&qQB(T`6LpufVIU zpP{gPX4ARUZ#1^Hw(5>FsGi)e2Rd$;;a<~-DIiaVv28>nJ&n{gYL(7Xr#*?gRc}_V z=)~c$c-{OYIJxZ_X(UuK$Ae8_a1Q6!x>vnR6FIWjlg4W&feuyD_xYs_<;MQ{Jav_o zC^I7Ru4)ropC@VlY3FC>`0#apCgD@_yj7d4u#07{y!SmN>p*yg%aec){Wze_?<6u|N8&!?tYMnTz+2li`7QqeSP$r>73`UipsJ!r^^6vCmLnkon`4dI_) zL(x=2Ep5@#QY~&R(NxgX(D#TA9X#)I@6~(HdDoZ7ZLr#ixX%<3AqU9|a)_LF@E|U6 z0?_IaRB{JrFw7_eVD^IE?_5aV+apg^J9!Luc2G1s=8<3W#OUaBYK!Wqcrl0 zQs4(qDH?Dom1JIH_b@)8H1dfi8f=zEC((}uOyCMeaUZ+!93#|Mbq3=s+#zSEcQo(= z<$y2bqkegq=%m{|j3NCr-;$o1A-|L8B0I=1DaG0$=e9#?1*J2&Ho2m9$Zbf-Un0Sa zHye?0K%Y3LrWbc@t8ANF_MTa^%htM8w#;&6$1bTQd(-Bd|Eqe;mC$Q0%TdxB?xenP zAB8gU#B4m3Hj^{?R93HgqOy{Ur?O@ulTW3uE1rTwH@qXd(}?PVF{clWBHQb}f)4wa F{{R*PM>hZf diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po index 32475e999c..3f909e16a0 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: # Translators: # Emerson Soares , 2011 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -70,7 +69,7 @@ msgstr "Tipo de metadados" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Valor de metadados" #: classes.py:21 #, python-format @@ -79,7 +78,7 @@ msgstr "O objeto 'metadata' não tem nenhum atributo '%s'" #: forms.py:12 msgid "ID" -msgstr "" +msgstr "ID" #: forms.py:15 models.py:45 msgid "Name" @@ -100,6 +99,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -133,17 +133,18 @@ msgstr "" #: links.py:56 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:59 msgid "Edit" -msgstr "" +msgstr "Editar" #: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Tipos de metadados" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -151,7 +152,7 @@ msgstr "" #: models.py:47 msgid "Label" -msgstr "" +msgstr "Nome" #: models.py:51 msgid "" @@ -161,13 +162,13 @@ msgstr "" #: models.py:55 msgid "Default" -msgstr "" +msgstr "Padrão" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -186,7 +187,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -223,7 +225,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Tipo de documento" #: models.py:215 msgid "Document type metadata type options" @@ -239,11 +241,11 @@ msgstr "Editar metadados de um documento" #: permissions.py:12 msgid "Add metadata to a document" -msgstr "" +msgstr "Adicionar metadados a um documento" #: permissions.py:15 msgid "Remove metadata from a document" -msgstr "" +msgstr "Remover metadados de um documento" #: permissions.py:18 msgid "View metadata from a document" @@ -317,14 +319,15 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "Tipo de metadados: %(metadata_type)s adicionado com sucesso ao documento %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" +msgstr "Tipo de metadados: %(metadata_type)s já existe no documento %(document)s ." #: views.py:313 msgid "Add metadata types to document" @@ -363,6 +366,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -376,6 +380,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -553,47 +558,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.mo index 8386f2fcaa0997bb48aa0ddd1fd08750ad61511f..0a60b5354902b792070a33c4640c1cc3ebde234d 100644 GIT binary patch delta 1555 zcmYk+OGs2v9LMqFIBJvmuFOYutxU6~oKYto4Hrd(DS|!K)zz6wn4Do|41~xqXx+tPWwUAmw%gE?K1mUXhZywRXb3gZ7@16ho|IfMiLu0aO>SMX{ zuAv>H*V3I1W6t2$Tn@DMJYyQL1Gk`!)i{n@aT+&c0;_NV3vdPV@fB{vx3~#EV;TO$ zB4egZE_dzaLK*JEw#;}4os4gw0^UR(FbUj_OIU#`cmdaN7>^L09L#Oh{WC}`a}T-2 z%%dib?`G ziuI!=Jc6oZ95wMr#niuvlQk|VV+ZM4=t5=Q#6f}ls3jW2AjWV6-=o&Lt2DhiyHOeU zVkZtDMKv?nigTz<{u*oWODXl&%ob8_^}*RH4oFZ|5BSzL8xYGGPVop&oZU^kRZC$fN6Tw-hE8y;r#K*$pcF4M#{a<`C5{y}w z!ci*_9-X)v9FJSNhkjv}ACxy9}ESRS9h)i=9PSo80S*W+()S$JUbQ%TY+FERv>JJBV(iK@DV#|Tj7`$=a!i6$p&YX3hghq G9Df0v)v3P# delta 1354 zcmXxkPe@cz6vy#1n{>kZ|PU)znqd9*Y$A1xoZ7i%1v%(TG!opd(X%({&+O!Cg z3|hDe%9b@j1hxoip|nVd3K!Kng~>%`(4z0}&CG@SKJQ)MoqNx@=lQZ@Eu8&U>v?Fj zKKeoWhRf_6E|zhjZF|hx@GttY$!k`RQQU)rxD&^*4sT%v&R{v-!@c+bci;l<#ur#= zmbE2rS{PWx!}z=ST+eLQv=gWW2apLij{7i!0i3~$_z1@^k8V7}F7*CcWXP_dHgFvy zn87;Mx5wO6G4KjCVF{DCiV5^Es}|F!1qbmoUd16?K+WGm1>*G;Hr|eHJV#LxkD?a7 ziI;E=%UR#@+*IQhHexyXRAehi(rgvA!7r!)*6|QF>?({O z$9azTJRW5{&v|AwAxPLteGK>G2r}0)*nqc@WY}EMdDM|SMZNb9m7x!)4Sz>vZWFcf z7Shv!Bd85$F@$%k$iE_g#()-jjVhwgcmsdo1dj5O&h!nc2p6#*myx8Ix5g}m)uB#rqh-WmFCQtRer3*u`5zSceyI5*5)~Y{ieLl>b4c?qBimVO~n}+>hGu zG%8bHku~fGHsNM*JV3hjH3U%`N+|!AxtT)eOi>Z7pw9FYvX-r37j9q(oB8$>!2r5Y z$DjpEO<7O|ieGVQ*t&~%`Yi>Ljc`!}YMpea0FezlN5K&~8&H-)bRCl#HRNnKj>?dt zPSV+*Q@r3*ziifpc8soL(pRFwq-CAL(?1_Yqm&$=C+KR?0?wJMfC$!Ul!dj^d+0~# zl!4R2TvaD(Do~|fSu8bWR!v8s7PDO1JL%3nsd(<19rI1()_o~=WmhEL8%d@@iF9AG ld$!Xb)JRVx*&T{^^(9le5&w2sZn&nxJ)5bW$^`, 2013 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -38,9 +37,7 @@ msgstr "" msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "" -"Contendo queryset para MetadataType, referência de instância e um valor para " -"esse tipo de metadados" +msgstr "Contendo queryset para MetadataType, referência de instância e um valor para esse tipo de metadados" #: apps.py:118 msgid "Metadata type name" @@ -72,7 +69,7 @@ msgstr "Tipo de metadados" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Valor de metadados" #: classes.py:21 #, python-format @@ -102,6 +99,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -146,6 +144,7 @@ msgid "Metadata types" msgstr "Tipos de metadados" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -153,7 +152,7 @@ msgstr "" #: models.py:47 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:51 msgid "" @@ -168,8 +167,8 @@ msgstr "Padrão" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -188,7 +187,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -314,24 +314,20 @@ msgstr[1] "" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "" -"Erro ao adicionar metadados de tipo \"%(metadata_type)s\" para o documento: " -"%(document)s; %(exception)s" +msgstr "Erro ao adicionar metadados de tipo \"%(metadata_type)s\" para o documento: %(document)s; %(exception)s" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" -"Tipo Metadado %(metadata_type)s adicionado com sucesso para o documento " +"Metadata type: %(metadata_type)s successfully added to document " "%(document)s." +msgstr "Tipo Metadado %(metadata_type)s adicionado com sucesso para o documento %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" -"Tipo Metadado: %(metadata_type)s já está presente no documento%(document)s." +msgstr "Tipo Metadado: %(metadata_type)s já está presente no documento%(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -344,18 +340,14 @@ msgstr[1] "" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "" -"Removido com sucesso o Stipo de metadato \"%(metadata_type)s\" do " -"documento: %(document)s." +msgstr "Removido com sucesso o Stipo de metadato \"%(metadata_type)s\" do documento: %(document)s." #: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "" -"Erro para remover o tipo de metadado \"%(metadata_type)s\" do documento: " -"%(document)s; %(exception)s" +msgstr "Erro para remover o tipo de metadado \"%(metadata_type)s\" do documento: %(document)s; %(exception)s" #: views.py:461 msgid "Remove metadata types from the document" @@ -374,6 +366,7 @@ msgstr "Criar Tipo de documento" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -387,6 +380,7 @@ msgid "Internal name" msgstr "nome interno" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -397,7 +391,7 @@ msgstr "" #: views.py:600 #, python-format msgid "Optional metadata types for document type: %s" -msgstr "" +msgstr "Tipo de metadado opicional para os tipos de documentos : %s" #: views.py:618 #, python-format @@ -564,47 +558,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.mo index 68101825b8ac7e7cd821a19ce5cff852e21a2864..02975f10586d2b79f8f801329768969dc5d711d2 100644 GIT binary patch literal 2393 zcma)-&u<$=6vqcBzYG*8KgzGriBMv@u(6#)RoTc?p-H76Od{8bdO#}U-LW&(dd8aF z$uH#sIrR^ygv1e~-jI;EAt59Jv=T=+fDjT_E?f{-_`bDw?KC+s()zQLdGmd5-kW{- z{miLb4C7@yui*I`&lH{?@52wq2lq2p1O@mKcoTdP{0w{;{2F`?{2qJ){0%$>{t1%( zU*I!f;Q_|*%3cK@0VhEZJP)1*uYt6`3%&z7umOHETt5v_vYP;31K$A2&l-Ln0@uNF z;QPb*KKLN!2jB#F6Qnq9gFoPGUx8Ix$7b61B{&KG1X6tefVA&l@NsYghkX=050c$H zNIBa8$&UqT-ws#-KLpQ$Uw}`7cfnQg7w{TbhVdEjBk*bP7D)NH4I(u5GYHr0SFi;B z0a6?V1OW+l7Nj`Nf#hcq#Ie#dJ`W;oX}mzHLoraCR4W>!L4IGL3C3f1DF0MjIv2(8 z6doGS4v^N5d}V{;p;5p?wWdL5La1r2XwHf~nTSv%qR37Ah71zEDPpb-7fE7O+a;10 zr{W@83`3ro@&wB~G=b|$ov_PR3YclRJ!Y}nmoZzC9pRz`j3g{Z`vyM^sD4Av& zn9rw5ncM5MT#mVjaO7~8_pOYP0j~6z$5NJP7spWQlUiocq9e>V6@ETX4re8Cs|YW%vOdx!@OfnZ!Gz2y^nh#*+we9 zp~lO5uj$cMI%~|6+6(dl^z|;lVLBeL_<9+UT>~e%7w;CV|kQ<+Dx@@+2{oK#%raQB9S{ur5_2U z7kIEKEUsjIy>-RAII<(B9cjH~9hgw*uFo&FRg#D9^VC;iEpk>w-W6kevCnlsoyPUK z1wMGKmvp^eyHxc{rIMbiRjY5+-YoC$4=43{wLCpt(vx7hd}-FNmCFkSX4(p6bP*qG z720uO@yV+|ai?+F(pJHzhpj@m?%_dpu_TWK8D$qa?HBldIBuyniYKb?tfJZQGm~sZ ztM5KlB4T$wPNeP1JD;3r)>8eED)kR3_6`ryP9bPZrWZ;0cW{w)EV4~4PV&9vxhVUz z@KFu=i{yP2%(`3y`55*Vd})CjwwL^a$2TW=V01@yQ4%|*gTKQoL+p?kJG6hi&5+0q zL0x8#y3DtqkCI64kFMqNX>M0F1k;_HYz!kFXjo+F@+(8kk YJ*rz40o#y!N6LJBTWXPqp8H_`0h0BYga7~l delta 598 zcmY+>zi-n(6u|LI;v`N8v~`3KKY|RUDyX$`u^dvY2ni*75E}!7C9YB>npDK1tyHxt zBe0#A_ybrNK;61@sl>omF_49UKY#_n2z;MO2cC5IxjUcly|X9Y@7ms1&v~r~k9LLj zj@F=cb9BUeT*MD}5hr*af8Zso, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" @@ -69,7 +67,7 @@ msgstr "Metadate de tip" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Valoare metadate " #: classes.py:21 #, python-format @@ -78,7 +76,7 @@ msgstr "obiectul 'metadata' nu are nici un atribut &'%s'" #: forms.py:12 msgid "ID" -msgstr "" +msgstr "ID-ul" #: forms.py:15 models.py:45 msgid "Name" @@ -99,6 +97,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -136,13 +135,14 @@ msgstr "" #: links.py:59 msgid "Edit" -msgstr "" +msgstr "Editează" #: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Metadate tipuri de" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -160,13 +160,13 @@ msgstr "" #: models.py:55 msgid "Default" -msgstr "" +msgstr "Iniţial" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,7 +185,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -222,7 +223,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Tip document" #: models.py:215 msgid "Document type metadata type options" @@ -238,11 +239,11 @@ msgstr "Editați metadatele unui document" #: permissions.py:12 msgid "Add metadata to a document" -msgstr "" +msgstr "Adaugă metadate la un document" #: permissions.py:15 msgid "Remove metadata from a document" -msgstr "" +msgstr "Eliminarea metadatelor dintr-un document" #: permissions.py:18 msgid "View metadata from a document" @@ -318,14 +319,15 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "Tipul de metadate:%(metadata_type)s au fost adăugate cu succes documentul %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" +msgstr "Tipul de metadate:%(metadata_type)s e deja prezent în documentul %(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -366,6 +368,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -379,6 +382,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -559,47 +563,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.mo index 72346cc3c018a1a2a9db04a8787e71fd6bbdbc93..eb18f35a357e6e0b78d5609d01507ca1698f5a52 100644 GIT binary patch delta 1272 zcmZ|M%}W$v90%}cS9e!8bA3rS&8;UyQgLNh%}NOp)`Nj%Qr1DJ(HU!LbmV^=z}T6xE!Pv2EMm`0d-3ioPQ7%K z9tCMplXW_@q|-ywR`E={vNcq8s45@U3`JE8g&R?>a5Xv@8`ee)@zv&Q98zKtgN3w+ zW@vxyn;6w}7D{jA29~T-4I3iQ9=$mJL+_O4VmV@S6JnhtvN=A6FtVO+2*+ zoxR#{bX*f#_Db>5K6|{?A87VB1$nTwtp)cjfq=W`yuVi)59{IRh(DwlsH!Ot%MY(KFn-4^Xv$R|$xm@J(Encmdak(awa^0L3Hyvj@Yk0P5 z-o*#&a#kuZvZVs@c;k- delta 606 zcmY+>&ubGw6u|LGx-pwrZ5kV*)|4d`sS%$v;ao0)8I2jpIYiyyH>Sz>kWzK(EQ{`83mtrqHSA#-C-~?XF5?2W@D_f-aXi8d z{nZ}^OH8DqXB%mu-gy@jxHV94mUF z{ULpA`ilMq`w2q-B|12?iUlK1FOR}Ax%(Zj;d@rwduBcH{Ki_tZ&?2G4X>+eUd!W` z^Rx0R>`2Bi<@V5Os4LS(US1eG#iH%pwcUc1zf*Bbwo`DN_=83Jq4%`eZLYWN8Z9c8 z>*QHiw%wBD6f17wYc|xO=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" @@ -69,7 +66,7 @@ msgstr "Тип метаданных" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Значение метаданных" #: classes.py:21 #, python-format @@ -78,7 +75,7 @@ msgstr "объект метаданных не имеет аттрибута '%s #: forms.py:12 msgid "ID" -msgstr "" +msgstr "ID" #: forms.py:15 models.py:45 msgid "Name" @@ -99,6 +96,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -136,13 +134,14 @@ msgstr "" #: links.py:59 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "Типы метаданных" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -160,13 +159,13 @@ msgstr "" #: models.py:55 msgid "Default" -msgstr "" +msgstr "Умолчание" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,7 +184,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -222,7 +222,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Тип документа" #: models.py:215 msgid "Document type metadata type options" @@ -238,11 +238,11 @@ msgstr "Редактирование метаданные документа" #: permissions.py:12 msgid "Add metadata to a document" -msgstr "" +msgstr "Добавить метаданные в документ" #: permissions.py:15 msgid "Remove metadata from a document" -msgstr "" +msgstr "Удаление метаданных из документа" #: permissions.py:18 msgid "View metadata from a document" @@ -320,14 +320,15 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "Тип метаданных: %(metadata_type)s успешно добавлены к документу %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" +msgstr "Тип метаданных: %(metadata_type)s уже есть в документе %(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -370,6 +371,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -383,6 +385,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -566,47 +569,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.mo index de22bafd4fc6f71a8dc0695f9647b1d8eb95a02a..d812ae557349c4db817b756d2dfbab796574b28f 100644 GIT binary patch delta 415 zcmZ9GF-yZx6oqd!R!|fX+&VmPlt_}+4w<`%Rf7~aho`wi+UC8GyaWWH|3K*Af6z&s z1b6>{IE#P5%|-CMSPOc{mvi6C;pSXB_sz-MrgKA36SP1dtb!|Gbqm(O-OL~1>);t| zgIC~yPdhh=zTh_hvOu%}e}`|uKj1dMyhwzHcJM-cg7HUoi4}5nnI*Ul&ehWwWy;D3 zbD1$6vXQYg^53bF;}Rds!iX%_RT8t1MvPhFLMs;WY{@Pi$&@LYh6j6H*K50hFZ^!U z!QAn@mFU<#;VLN-t=yh89E!m6e{+E!dhLg&LE~(YWY{>WYe}-F6tyyqVk2GAY0k0I d`17CJNSmC`l@>!5bu8Gb+c!L(Ut$0N delta 123 zcmZ3_*2iLTPl#nI0}wC*u?!Ha05LNV>i{tbSOD=Aprj>`2C0F8iGO@eO?3?{b&X6E z49%>J%ykV+3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEf$A)Djm#AcOs$MeHrFwRFaiJ- CAQce+ 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 d5956de66f..f498fd29fa 100644 --- a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" @@ -64,11 +62,11 @@ msgstr "" #: apps.py:173 forms.py:98 models.py:91 models.py:206 msgid "Metadata type" -msgstr "" +msgstr "Tip metapodatkov" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Vrednost metapodatkov" #: classes.py:21 #, python-format @@ -81,7 +79,7 @@ msgstr "" #: forms.py:15 models.py:45 msgid "Name" -msgstr "" +msgstr "Ime" #: forms.py:20 msgid "Update" @@ -98,6 +96,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,6 +141,7 @@ msgid "Metadata types" msgstr "" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -164,8 +164,8 @@ msgstr "" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -184,7 +184,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -221,7 +222,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Tip dokumenta" #: models.py:215 msgid "Document type metadata type options" @@ -277,7 +278,7 @@ msgstr "" #: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." -msgstr "" +msgstr "Potrebno je podati vsaj en dokument" #: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." @@ -319,7 +320,8 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:282 @@ -369,6 +371,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -382,6 +385,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -565,47 +569,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.mo index 436ac5aace7e7d9db88fdf1802df95cabf9aa057..1554e1057fe8e0532e9b0430344f98e058d2de0d 100644 GIT binary patch delta 961 zcmZwEO=uHA6bJCxxV36ctIp$cz78sC8X;4;L+UZC0m zU%^3qW^KIC#CPy0`~qo#-*7u*+ZY=I{gB!T*auUPHkyT$U>+`GlO;Hfwt_(?;Td=g znvn7=L7Mjj#*m-A#tRHHm7Ra-)HHbru?Im{M%RqPbqbvr>(CXl{fGesl^BAO zQK4T-2ctvK$*IsUV+l)0P1mHB;GR_Cqo;M9Z+3C%aEAg|Xk&6ZIhmyE7>((T%RGqq^3$96S3Jo2OEw&P**qmkw zHZLrvzRABFrK)4~?q)plAex&~&{of6CZC>K{}#EfB+Eh5;=E=A zO_%GT|B{zL3|5S8hj&Un5uFX&8%6$hDfI8#WlvMbMrJVjj@vtsT?ze` z<~7vIbhZ!bOyg|Wes1%kYv16-u>G{cgO=oW8LyICq5oL+PEWC`LDOc7!MfI|{{6EW9ih zd&M9f3UkXtSPNRx^Zw;p4F_h~S*bbjz6xLxcl+`h$aMLIZU_K06p#hV$PBewVAQmi$ zd;f*(Mt0VM^dn^#vXBfMA$;dgr?TkpkeBTdWj$CHg}lC9Hu*m zJA9Ak_!h^`-&JwsHpHDf;a_AnrzLK0?{kq*PJ_9$F_|{A`q+5E%!@}QB3CBTW?naP r1v6WHS5{rZR%7B?jjGG_hg&8ZTKrs#i=;O1Td7q_RIF8*c+sqHbt_1b 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 3ef02c15aa..bc9428a1e8 100644 --- a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -77,7 +76,7 @@ msgstr "đối tượng 'siêu dữ liệu' không có thuộc tính: %s" #: forms.py:12 msgid "ID" -msgstr "" +msgstr "ID" #: forms.py:15 models.py:45 msgid "Name" @@ -98,6 +97,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -135,13 +135,14 @@ msgstr "" #: links.py:59 msgid "Edit" -msgstr "" +msgstr "Sửa" #: links.py:64 models.py:92 views.py:561 msgid "Metadata types" msgstr "" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -159,13 +160,13 @@ msgstr "" #: models.py:55 msgid "Default" -msgstr "" +msgstr "Mặc định" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -184,7 +185,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -221,7 +223,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "Kiểu tài liệu" #: models.py:215 msgid "Document type metadata type options" @@ -237,11 +239,11 @@ msgstr "Sửa siêu dữ liệu của tài liệu" #: permissions.py:12 msgid "Add metadata to a document" -msgstr "" +msgstr "Thêm siêu dữ liệu vào tài liệu" #: permissions.py:15 msgid "Remove metadata from a document" -msgstr "" +msgstr "Xóa siêu dữ liệu từ tài liệu" #: permissions.py:18 msgid "View metadata from a document" @@ -277,7 +279,7 @@ msgstr "" #: views.py:58 views.py:217 views.py:353 msgid "Must provide at least one document." -msgstr "" +msgstr "Cần cung cấp ít nhất một tài liệu." #: views.py:66 views.py:196 views.py:361 msgid "Only select documents of the same type." @@ -313,7 +315,8 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." msgstr "" #: views.py:282 @@ -357,6 +360,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -370,6 +374,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -544,47 +549,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.mo index 29f8c37026bcb728013e3c363df399d1403a8351..d4bcfb1a86f249c51771c91d7c0bafbd5d1eb4fd 100644 GIT binary patch delta 1111 zcmZ{hO=uHQ5XWD(Nljb(p|Qp$eyoIGtKFKUHHCPw7(sA{m&*X#;`e3b4c5Isat zu_RcPwSFO0sbUXCQY%!9p!6V!M=u_s9i2f(tM1?r)?C;IKH~*P8`>AEA zBfY%VJk4NT@Qv^y+zo$d!V9*CV{98Z1UkSlNN3N2o!|`E3O+IRmp~ih4mrjp^}$o0W1#U!+vlW)Id7$(co9mh4>d}23>eHg5BU2aHkQEfEL7u!A;;1 zkQzA&UcqIiz^#Z~NZtVM13Ouov7?m*V=A~B8yVxkHRF38q?^0~o50r~P3SGy4*oFM zv~S=J6xr#6sA-3!uRSp#1O zr!z>Y7~PzH0~y_#jEYbL>nVUy^VEnPPQMTXVWu|ivdJcpeASwb1*%obQ`ljAqxmo` zXX51A}YsJ?VZWn8Z-i4O^wT%mGf{1g4!T=JRRWO-POD? z+U!wyF)|^GQi>m+kQE5<;aE)!r>nX>N*^1pRYYbzDJ2mK$%=9!5s9RDQIcednyX6i z?(P4VQ~szY#YjTdZgSqnQ8^k<%G!I*p}paQAJlikGFcx=M8xJ7qSh5Ci`MR&)m_^oheP{OBWvLlljus^QF79+Do(0Xe>)+ zKaI(0IaYT}`r_kq;i8_quHTv~KAT!e`gcAx{qlT4pUKvlP-*g#p1ECV<$kS+zeN~n m*egx0h}6cSpMI{Lvh+EN1*3NHX|DXB@cG8QT3Kz*vimp0S`O0y delta 542 zcmYk(JuE{}6u|M@*Y@=bt%?LGsrVXrdi&C9y)a0Ol8RZ|V6m7@#3=svc@if%_jk{IZO^%{?ZjKG@tO=A3L;6S$TM<~ob#~|Eu6q} z?8g`E#Sa|7h#^D|j$#;#XyF2OVGTQR$E){ogu00VAsXVEjmg2S=RF3gA5jnTjJm-W z9?&%E7h;(Dm~ZPrZakl`kNVxKO@1Uoox(93$2cx|uDUjaSZ6cDgKgAc$VqJnk*^a~&MHkzkFHx?#6_^1Foo?U_?_NEZFt^eg%cJ%kSZm+0W)?oISQ zs^*O;wQES#HZtndsQBvY+n-gXz+OIY$yv+JrL!}RU9e*TB&ZW)z@kp)?#I| n>ZEO%<#R>LE~I7Nv2z#kV8N%#=A=3@GwRMPtE, 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -68,7 +67,7 @@ msgstr "元数据类型" #: apps.py:176 msgid "Metadata value" -msgstr "" +msgstr "Metadata值" #: classes.py:21 #, python-format @@ -77,7 +76,7 @@ msgstr "元数据对象没有属性 '%s'" #: forms.py:12 msgid "ID" -msgstr "" +msgstr "ID" #: forms.py:15 models.py:45 msgid "Name" @@ -98,6 +97,7 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 +#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,6 +142,7 @@ msgid "Metadata types" msgstr "元数据类型" #: models.py:42 +#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -164,8 +165,8 @@ msgstr "" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language (https://docs.djangoproject.com/en/1.7/" -"ref/templates/builtins/)." +"Django's default templating language " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -184,7 +185,8 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected format." +"The parser will reformat the value entered to conform to the expected " +"format." msgstr "" #: models.py:78 @@ -221,7 +223,7 @@ msgstr "" #: models.py:203 msgid "Document type" -msgstr "" +msgstr "文档类型" #: models.py:215 msgid "Document type metadata type options" @@ -237,11 +239,11 @@ msgstr "编辑文档的元数据" #: permissions.py:12 msgid "Add metadata to a document" -msgstr "" +msgstr "添加元数据到文档" #: permissions.py:15 msgid "Remove metadata from a document" -msgstr "" +msgstr "从文档中移除元数据" #: permissions.py:18 msgid "View metadata from a document" @@ -313,14 +315,15 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document %(document)s." -msgstr "" +"Metadata type: %(metadata_type)s successfully added to document " +"%(document)s." +msgstr "元数据类型: %(metadata_type)s成功加入到文档%(document)s" #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "" +msgstr "元数据类型: %(metadata_type)s 已经存在于文档%(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -357,6 +360,7 @@ msgstr "" #: views.py:529 #, python-format +#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -370,6 +374,7 @@ msgid "Internal name" msgstr "" #: views.py:568 +#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -544,47 +549,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets " -#~ "are useful when creating new documents; selecing a metadata set " -#~ "automatically attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets are " +#~ "useful when creating new documents; selecing a metadata set automatically " +#~ "attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that " -#~ "can be attached to a document. Examples of metadata types are: a client " -#~ "name, a date, or a project to which several documents belong. A metadata " -#~ "type's name is the internal identifier with which it can be referenced to " -#~ "by other modules such as the indexing module, the title is the value that " -#~ "is shown to the users, the default value is the value an instance of this " -#~ "metadata type will have initially, and the lookup value turns an instance " -#~ "of a metadata of this type into a choice list which options are the " -#~ "result of the lookup's code execution." +#~ "A metadata type defines the characteristics of a value of some kind that can" +#~ " be attached to a document. Examples of metadata types are: a client name, " +#~ "a date, or a project to which several documents belong. A metadata type's " +#~ "name is the internal identifier with which it can be referenced to by other " +#~ "modules such as the indexing module, the title is the value that is shown to" +#~ " the users, the default value is the value an instance of this metadata type" +#~ " will have initially, and the lookup value turns an instance of a metadata " +#~ "of this type into a choice list which options are the result of the lookup's" +#~ " code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " -#~ "in User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " +#~ "User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.mo index df6daaceb1dfe7d85dcef2b3bff57ecfdb42253d..65a510b52b1ed7b3b9fa6777452c6bae671311ad 100644 GIT binary patch delta 44 zcmZ3?vY2H;E3cWZfw8WUp@N~Am5JHJNvnB$67$ka6Vp?z6cURj+b~8?Ucy)p04UWB A{{R30 delta 39 vcmZ3?vY2H;>%_GjtcGS*M&=VIt)A?~7{%k0n3rCfn4W5-kXST%F=GP&5<(5r diff --git a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.mo index 4564915d93e18c0f4ad702be30d129e5a7965a0c..ebf3bdbd82a8e0d1620135ac927bd8175cbbe1c8 100644 GIT binary patch delta 44 zcmcc2e3^MdE3cWZfw8WUp@N~Am5JHJN$Yrg67$ka6Vp?z6q3>>+cQQ_Ue2fk060|+ A2><{9 delta 39 vcmcc2e3^Md>%_GjtcGS*M&=VIt()x27{%k0n3rCfn4W5-kd!`o8KW)$AUh4+ diff --git a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.mo index 50fa50becee08ba9ecd379bfc4d4918ec35db343..da2b4703131a88e1e2f29df0c80a14bc56a7f9d5 100644 GIT binary patch delta 47 zcmdnRvWsOxE3cWZfw8WUp@N~Am5JHJNhkPy67$ka6Vp?z6q1VLog61eGDc56!dM0X DU%C%v delta 42 ycmdnRvWsOx>%_GjtcGS*M&=VIotT`(7{%|Cn3rCfn4W5-kW?J+tjxw+}o3 diff --git a/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.mo index 72898f483ef09b732fe38da2425c9b74f8433e0b..332b84fd44dacd75621377200c0246525944bc87 100644 GIT binary patch delta 44 zcmcb>e1UmFE3cWZfw8WUp@N~Am5JHJNvnB$67$ka6Vp?z6jBl=+b~8?Uc#sY05;JL A_5c6? delta 39 vcmcb>e1UmF>%_GjtcGS*M&=VIt)A?~7{%k0n3rCfn4W5-kdiogF{3U39=;9A diff --git a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.mo index ab0d47e3d131f50f1251caad049ac4451f7774ec..9e6f99ca4a8a345daa3275d325aa1d4681674947 100644 GIT binary patch delta 134 zcmcb`c9(5}jqEx`28MSG3=CXAJeP@qArMHf0Mbc7`q#wBhbCsa2FAKZh6;veRv@;C zfdN;5ziv=!S!Qu&ex9yNVo9o%f{}qCOr4RTmBHjZMhOMq#FC86#9{@f)QqB>R0W${ U2tUao*RohIDYI(xV#e)^0Ig>vt^fc4 delta 131 zcmcc1c8hI-jqGYh28MSG3=CXAJd25eArMF}1=2}C`uoJlhbE@F29~-;CJKgTRz~K! z1||juTmk;NL8)b##hLkex-N+&sa6U`28M8T=2k|N^B5&$ol=YPDiv&!K$HWB%t$Os S(alXPs?bYG-Mox(J0k!_1taVL 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 0295d69123..03563460da 100644 --- a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 17:28+0000\n" -"Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:08+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" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 @@ -25,12 +24,8 @@ msgstr "Spiegelung" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" -"Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden " -"soll." +msgstr "Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden soll." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt " -"zwischengespeichert werden soll." +msgstr "Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt zwischengespeichert werden soll." diff --git a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.mo index 07b20890f6b578b27ba7a9111141b1dc859a77b3..3b7225f1305fcdcbb17c1b4940564fcf1c662366 100644 GIT binary patch delta 23 ecmeyx^owai7q6MFfw8WUp@N~Am5JHJ>5l5l1jS5XTn?1zS>63|%7R+ub7yk&kOgE>a{`oGuF$jnAIjbJ(>vwwJpIYC1|D zfRciWj`rSzN1);X7++9QP*E__Ph)F7?6Lnp?(cj`$aaVa#8cuf@tTO%5%-7-;tBDN z;KVoL{PK==)AUuLn$tWfyr@s zmd>!VF0j(qTCrz+?OA0xq|+A_J8~!j<+EcEki#%94p{z}4GSm^_&%-o^PCdd4BzV5 z_wT%6!H318oGg7Vd|;Im#y28Z$6;pY=xEHD^}=aO38wBvjjTe^ayaXR(S8ZL%Md!A zWvkU{5MsGr;Cdi!o4Kn(m$h*khN|^h^QTFMKHE#n({ge%bTP=&BWnUZD61|znke8p zWL+b)8G&31=P`_5RwwN6CNG}2K*uIVT17v|;c%|Q^<_DrPp3`qM8i(3Ydr_kZMS|r z9KqFcyldd$7>d17n#^#~;JHwiz7*Te0!A^^y;0VKqCRv#(troqiv~T#Ks2q8XoTB* zj@eN!n=jA^aD5<+Aj~)4{Y8&zyAe{NkK*agwSH_A(0@OTl9cxwRwWP) delta 151 zcmaFCc9GfQo)F7a1|VPrVi_P-0b*t#)&XJ=umIxeKuJp=4N?OG6W{upnCco>>Kd6S z7@Aobnd=&u7#MH``0ECxmSq-a=I80UB$lLFDHs_T!qgd>~AIRNnl9e@A; diff --git a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po index cf0e1a4754..c7a827641c 100644 --- a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po @@ -1,31 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Roberto Rosario, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 05:11+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"PO-Revision-Date: 2016-03-21 21:21+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 msgid "Mirroring" -msgstr "" +msgstr "Reflejado" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" +msgstr "Tiempo en segundos durante los cuales se almacenará en caché la ruta de búsqueda de acceso a un documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" +msgstr "Tiempo en segundos durante los cuales se almacenará en caché la ruta de búsqueda de acceso a un nodo de índice." diff --git a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.mo index d010a53eb4a6e74df67a069e9349efd7ea508c9b..27b3c11bf1869e96298e3ca08e9ee88d63c77bd4 100644 GIT binary patch delta 44 zcmX@be2RHOE3cWZfw8WUp@N~Am5JHJNo#m~67$ka6Vp?z6w(qW+cHK^UdpHn05tjy A=l}o! delta 39 vcmX@be2RHO>%_GjtcGS*M&=VIt(ol27{%k0n3rCfn4W5-kd`=k38NYS9ViXF diff --git a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.mo index 05693fe94dc4923a06dc88a52386a8979e4295f6..8b7199213d065cf97f9e10cbae40c778fb5ad083 100644 GIT binary patch literal 837 zcmb7?&2AGh5XToN2bLRW4s)Xw@_vM>L{3v7nnbD~YSb>AxVYZQuIaA5*j|!|=irFM zkzTm)2zd`4fg5*bQy>zYI?_*L%j5ry$MgNc&c}dkhj>UF5_gF=L}v|gk9bEsB|Z?G z_(pua6$C%X-zPrZ4uTitugIU0|4E*X19HI~qSN2lR9S1R(nXM|8bN7rD2>h?cmq<% z62TLV@Fi5nT((VjARsrgtx@~vX7@B@$Z-kU?CKe(K=-`hpAWz4dc=D zJUqk3SkI=eP&s?v7LH|xLpVFl*s(?7DV~jlM-IItJz&Wb)=MEh;QO@RPZA1bXZT)q zy8p-ZQl9i5CuHGE;XKQ%(5@2RSPogK(ApK8%hGrcha+Jx34GQ%Dl^i?VpFZ6Liw`2 zh@`2HNJAH`D3E0+Y7P^NT9&X|df)IkUMv=o?-HmvF1rh{HBMM%Y+QHmWti74u6}F8 za~to4)063V+mEosnN)JGm!aDTBSJ{O1w{cy@Ia)T>(&Y5V z9Qqf^|E-n7+=jENwW4AZV{6AjH=C^+_6Bgh9PVm3f^=^X2BWsAl-%?^$gpl4;Gc0p z2RVXWUv&jizq^y`>B(EF4r>~${E?7y{l&rhGqkkbPS8JEHKd6S z7@Aobnd=&u7#MH``0ECxmSq-a=I80UB$lLFDHs_T!qgdy_0ad32T333e%p1hs$835Ro9c=&r diff --git a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po index 012172e913..1ab1ee74fa 100644 --- a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po @@ -1,31 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 05:11+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Thierry Schott \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:7 msgid "Mirroring" -msgstr "" +msgstr "Duplication" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" +msgstr "Temps en secondes de rétention en cache du chemin d'accès à un document." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" +msgstr "Temps en seconde de rétention en cache du chemin d'accès à un noeud d'index." diff --git a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.mo index d5dc0618550895c4d3076d5278f13588d9edec12..8086bfcdc2c4c23b1c917d0becf7de34760df88a 100644 GIT binary patch delta 44 zcmcc2e3^MdE3cWZfw8WUp@N~Am5JHJN$Yrg67$ka6Vp?z6f#OD+cQQ_Ue2fk067m1 A9RL6T delta 39 vcmcc2e3^Md>%_GjtcGS*M&=VIt()x27{%k0n3rCfn4W5-kWo5$8KW)$Af*lQ diff --git a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.mo index 188131835bd656321ab02f8f2348ab1be269026c..53e26e24f79ed0d8fa26cc8e3870528ce225e227 100644 GIT binary patch delta 44 zcmX@he3p4aE3cWZfw8WUp@N~Am5JHJN$Yuh67$ka6Vp?z6f#pLJ1|C1Ucsme05+8k A{Qv*} delta 39 vcmX@he3p4a>%_GjtcGS*M&=VIt)J}27{%k0n3rCfn4W5-keM=hIinf?9<&Y7 diff --git a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.mo index b8d6fe639706c1de0d1452f0ef683bcd9bac71e3..4ff69755ff7292cd21be9a4b142ddc9921b6bc78 100644 GIT binary patch delta 241 zcmcb}Jb@+Zo)F7a1|VPpVi_RT0b*7lwgF-g2moSEAPxlLm5dAw(LkCDh*^OefLyRX zAcX+FnMFnUMVWc&6D@q}&2$Znb&U)a49%=efNT>31Fisn-JsO6%;L=aJYAQ>l2j`N zBLhR2IwM0X0}E{fAmH*zEH2RvDN4*M&PgoEFS1f_&&)4N%*)GE2r0@;P6Xn71)KB| j7~9gwAw4%SGe<8uKi3YZIWN65F@55v``mE%C@=s36t_3I delta 169 zcmbQha*^5Mo)F7a1|VPrVi_P-0b*t#)&XJ=umIxeKuJp=4N?OG6Qg`nOmz(`b&X6E z49%>J%ykV+3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEVd@M_tqcvd4S;~lC$YFhH>4;r puQ(^MB)`Z?!7bFsN5Rk0*HyvB)z{I}$HCFXCCD{6c(N?x3jo|VB1QlJ diff --git a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po index 2935c2e0c4..cece74f38c 100644 --- a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Giovanni Tricarico , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 05:11+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"PO-Revision-Date: 2016-03-21 21:08+0000\n" +"Last-Translator: Giovanni Tricarico \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 msgid "Mirroring" -msgstr "" +msgstr "Mirroring " #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." diff --git a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.mo index 587adc82b60c60dbf77756664b174dba22668602..e2fc7450e5c85b8e8ac15b324034d685441834da 100644 GIT binary patch delta 47 zcmaFN{Fr${E3cWZfw8WUp@N~Am5JHJNxS)d67$ka6Vp?z6!LQ7{d^|-Fh)<_&Zq+b DZ7vUB delta 42 ycmaFN{Fr${>%_GjtcGS*M&=VI?VcRV7{%|Cn3rCfn4W5-ke3th=QDX5qb>kcTMst? diff --git a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.mo index ce0b465c25f1577dbd96bc68d84d426beae5578c..c7a43d4c7e9e45c0e5b8a81aecb788cbfd9d6bc3 100644 GIT binary patch delta 44 zcmeBT>0+7C%4?=;V61Cos90+7CI&m!rtD%{dk@>_)t0#LgM)CM0=B1Y=rl(pd6y!`^%$N=U3i%C@ diff --git a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.mo index 7707e35b07b1fb6cd427acb0a9ef453d293aca89..9a9d153fe68378a9096a6710e2ef0f2afcf793a6 100644 GIT binary patch delta 44 zcmcb@e1&;JE3cWZfw8WUp@N~Am5JHJN$Yuh67$ka6Vp?z6becvJ1|C1UcsmX06EMK ADF6Tf delta 38 ucmcb@e1&;J>%_GjtcGS*M&=VIt)J}27{%?An3rCfn4W5-P%wEJqaFYf(hZ0J diff --git a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.mo index 541c7f2106d7b9f3ade4f07dfc99b990341d6a71..5edbb67d287aa661b2e82b2b13226df7526c2874 100644 GIT binary patch delta 47 zcmaFF{D^r%E3cWZfw8WUp@N~Am5JHJNxS)d67$ka6Vp?z6bee>oq{I&Fh)<_&ZrFl DZ3z!y delta 42 ycmaFF{D^r%>%_GjtcGS*M&=VI?VcRV7{%|Cn3rCfn4W5-P*4)@6f}7oqYeO6Fb_BY diff --git a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.mo index 4b69d2f7b6df5e9d8f6e1a51de6549fd988202f4..c2867947b3fba44af44d893bdcdd3cc12daabc0d 100644 GIT binary patch delta 47 zcmeBX>1LVG%4?=;V61Cos91LVGI&m!rtD%{dk@>_)yC%mlM)CV3=B1Y=rl(pd6y?VU`A^=;7zO}1)DFD> diff --git a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.mo index fe53d5234be616a4eca599bf101e2571fce61a9a..00b4c5c52b3bc11f6a5b97bb0d83310edea40f84 100644 GIT binary patch delta 44 zcmcc3a+_sBE3cWZfw8WUp@N~Am5JHJNo#m~67$ka6Vp?z6pBhG+cHK^Udp%)06f7C Ay#N3J delta 39 vcmcc3a+_sB>%_GjtcGS*M&=VIt(ol27{%k0n3rCfn4W5-P*gg33FCGEBfAcf diff --git a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.mo index 06870b3a6c5d2366b8c8e6f89db38cdea9343d35..ed0aee8cc0adeaf4d51dec137d1f8102cb3e450c 100644 GIT binary patch delta 47 zcmbQiGJ|D8E3cWZfw8WUp@N~Am5JHJNqhKx67$ka6Vp?z6pC}=gFPqvGDc6{!I%I5 DQ$r65 delta 42 ycmbQiGJ|D8>%_GjtcGS*M&=VI?U@|M7{%|Cn3rCfn4W5-P@EGV>^XTmV%_GjtcGS*M&=VI?VTLY7{%|Cn3rCfn4W5-P?i}V<~Ml%_GjtcGS*M&=VIZJ!*;7{%|Cn3rCfn4W5-P?Zty>^FH6qZ$BE77q;o diff --git a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..4ad704a35559749baaad4390ebc6610d56614430 GIT binary patch literal 620 zcmZWk&u`N(7&S01;l`PRFH9ih#!i1|bC*F`Q>juisy5|3FLAT5#Eu-7Zg)=H`2#p1 zA#s?*ACq0U^Iz~~ohTBY^z@$no, YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" @@ -33,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "لا شيء" #: apps.py:36 models.py:29 msgid "End date time" @@ -49,7 +47,7 @@ msgstr "" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "تحرير" #: models.py:13 msgid "Short description of this message." diff --git a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..4af2567aab0de777e24c55c436308e5ba817f2de GIT binary patch literal 549 zcmZXQ!A=`75Qg0XQng18J#lbvpvu|ZG$7zd}_%cBVV{SLP?4fcFH7H=FEbh^qA!oH-m781RqE<#NiHYLEj1jFp?4fA?nMQOjRHzPbNjbA**_>^q6VGZRaTMlig=u{o;&k63MB`gv=@4oe29hF2$4F z8y0iT3es1)G!)C~{%AVQHhyS3n-ah4;Bc$$A@|!|yFc#A-7bH*o8?dF?%XwUm&-Hv H*Il9i^#Gv^ literal 0 HcmV?d00001 diff --git a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po index 27db30a110..dd843a5e30 100644 --- a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 @@ -32,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Няма" #: apps.py:36 models.py:29 msgid "End date time" @@ -48,7 +47,7 @@ msgstr "" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: models.py:13 msgid "Short description of this message." diff --git a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..85027a75f962246fd5e1dc59fc1c9dff7e20b875 GIT binary patch literal 636 zcmZWnU2oGc6b&$hlt-R3O$EZx9vgnjP|s z=IT%jWfMsuoj27=cr&AK#LAILLB0uNrB)0w{=gL^qio^N#a0_fGF!@m40oj^xn|(c zzUJi82=35NM%)Po5e?4>Jt0vD;Th|q?ox_IG8cEUuKT|)qU`kaBgODjZXL-DSGM9# z8wTTLn!(x1VsU|1Rql8xNG|w>!BATzaokoTfU5$&2=h~v`c5j| zhSs%nTNVWS{l4Ss4stE-J1e~jjJDiJZGug`FcHPZ2Gvvb;L3g<4uZCyO|s, YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" @@ -31,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Nijedno" #: apps.py:36 models.py:29 msgid "End date time" @@ -47,7 +47,7 @@ msgstr "" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Urediti" #: models.py:13 msgid "Short description of this message." diff --git a/mayan/apps/motd/locale/da/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/da/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..a7dcef69aa1c8640a7e6a6ea783ac01fdbd04a9f GIT binary patch literal 499 zcmZXP(N4lJ6o#k4n_YVC#qkcKWg7w^MU2QsvVYPNQ1i|B*s) z!ax1ezv)eo3QE+FsDH&_dEapkbET_=+gC6nE zNjrd`M?2^{zK=mN=P#nJ`#;zAX}5doquePomZX|VQ!uMEg~|PN3OA!9f{Q2_#nY=% z7|x@`;u51WU$dN(l(UjT$fPhUXs)cSsON1qo0hHXh$sHqTB_31$}laI_R4xJ!n4wN z#cvHSW8R6I#7XowebDmVv67Zc?C7n+(JX(pUR5w52e4c*ZMYrYrxViu%hf+VaZMt* yRGE-Dh5n, YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 @@ -32,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Ingen" #: apps.py:36 models.py:29 msgid "End date time" diff --git a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..bf998c1403d6c9043c5f0055fa4fe91e48e730aa GIT binary patch literal 704 zcmZXRJ&)5s5QY~xzD!3=v2=;h#!k39oi+rKJ3A=C4pHKxMH_oAS+IAb-Oc5~AE2S2 zp`wPG3IP=oqNJikLi`lQNyHV5^yr=OzMh%2f8X4BLolu)w~!RMfxJSh_=H?RJ|jEG zSETZOM=m2jw)Icc>iie-{sJL?P_H2`FB0ORzDB){`gU8t+twdYt3F>)@wIgil=aL? ztH2|2X`O9mSAG&g0S-u%OGhFlCI#dq7858)0@jKtkbzb}hDJYw%&~sXo`A7ZD^3%! z5{gD)GWJF=*T%8LPG!yx7gNhp&8athoU$VW!l9pq!U3nPpt;Y2yR6lu&3(R$`EC%P zk&WO~R(=2XwF17kcPGH`VqqOijZn4_P8&{p$8k&t-6W#-qNLl8A9TZT6phFC(W<5k z+@GZ&N=_ewDRJA{Mpt!On>jbC!ja3L~}g%j$v*^3wXnwws^B z(=hVuUeZsZ^H0%i1m2NW4iv7pn&UkkoH>792&vjMn+apVb&k^>J2>}MLr=i4NM$;g zYRc)sM7n>AbGn}84U2^l1?y>3T29q`UD{5oO*d($rs(YsZPwc!iNAfc*$fmp1Yss1 gaUs%u?&PTi, YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" @@ -23,7 +23,7 @@ msgstr "" #: apps.py:29 models.py:20 msgid "Enabled" -msgstr "" +msgstr "Aktiviert" #: apps.py:32 models.py:24 msgid "Start date time" @@ -31,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Keine" #: apps.py:36 models.py:29 msgid "End date time" @@ -43,11 +43,11 @@ msgstr "" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Löschen" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Bearbeiten" #: models.py:13 msgid "Short description of this message." @@ -55,7 +55,7 @@ msgstr "" #: models.py:14 msgid "Label" -msgstr "" +msgstr "Bezeichner" #: models.py:17 msgid "The actual message to be displayed." @@ -63,7 +63,7 @@ msgstr "" #: models.py:18 models.py:35 msgid "Message" -msgstr "" +msgstr "Nachricht" #: models.py:23 msgid "Date and time after which this message will be displayed." diff --git a/mayan/apps/motd/locale/en/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/en/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..3b7225f1305fcdcbb17c1b4940564fcf1c662366 GIT binary patch literal 378 zcmYL^K~KUk7=|%=+R?Lz9=z#?8xn#Q4V4vKTsJZXiQX#IS%dA;6{A1Izvpl9TVmu* zp0r7yetr9MeDvMH93UsiDRPLMBW;Gr7!R*-ZJqzjoqbbl56K2r$~D>=O6F|xz-FAR zc(F+GEGSfMod?lWdINX6s)5o{63p`wCQeC@mmrp2QPK;e0fd*(i%2w}ecboM5Jf1| zhi-@ed5@eGAaaNqxzDLc&Ytp&2dQj4lunvvE4_7;OqXd&GA1|~alw*w%;LD#B4WPJ+c{p^D;fv#Nt zy0q_<{=49L_eC_9iw$-vlgglnc-af&7w zA%9e%yu7dg%cx#PDVWNXx5V2K*Hw=)(J8lHQrbO8#8%X_a{1ZIM(w)tA?iA1e5QhRvD~peayY&n>y^_M0j593Uleso4P&`G zQbzlMTpolliW`l|WKs{DuJ`D6J+Z@vD-vB}$h(Os9r{LA7HN=gT&Q)nI_>$UTlHpb z-I_oKLZ&0^DA4WDz%QrGs!RsTc?xScyPMIKc^rRnk6hF?iA}ZX$MQ-~hnd(|lCN!N zW2drc)4HLLr5WX>Ut3v~#p~L#k#DWZ)`ittenlJ($9T10T$q{V#U??8oJ#x_ihqmI z_~2)c7nv!U@R5_xZ(E)$(E~DHDugQOakDrfqrOUQeX-I2tyf3aK;FUk3z=7~bIOSV zl~6ApJ}6g+f4p44`~o5V;RC)&%E_bsRgM?eR8MD!Ozon`M45y#mFR=}Mzn+ed`v;% z>J*JC38k4#5AG>hdH8naA>60JCvM=J#>V2#=NBt4iEcSG!P}mrg*G1Q6`GB{YBbhX Nm5*pIF4BBQj{rwH+h_m) literal 0 HcmV?d00001 diff --git a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po index 27db30a110..fbad0e48b4 100644 --- a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po @@ -1,109 +1,109 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: +# Roberto Rosario, 2016 msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"PO-Revision-Date: 2016-03-21 21:13+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" -msgstr "" +msgstr "Mensaje del día " #: apps.py:29 models.py:20 msgid "Enabled" -msgstr "" +msgstr "Habilitado" #: apps.py:32 models.py:24 msgid "Start date time" -msgstr "" +msgstr "Fecha y hora de comienzo" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Ninguno" #: apps.py:36 models.py:29 msgid "End date time" -msgstr "" +msgstr "Fecha y hora cancelación" #: links.py:13 views.py:29 msgid "Create message" -msgstr "" +msgstr "Crear mensaje" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Borrar" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Editar" #: models.py:13 msgid "Short description of this message." -msgstr "" +msgstr "Descripción corta sobre este mensaje." #: models.py:14 msgid "Label" -msgstr "" +msgstr "Etiqueta" #: models.py:17 msgid "The actual message to be displayed." -msgstr "" +msgstr "Mensaje a ser desplegado." #: models.py:18 models.py:35 msgid "Message" -msgstr "" +msgstr "Mensaje" #: models.py:23 msgid "Date and time after which this message will be displayed." -msgstr "" +msgstr "Fecha y hora después de la cual este mensaje comenzara a ser desplegado." #: models.py:28 msgid "Date and time until when this message is to be displayed." -msgstr "" +msgstr "Fecha y hora hasta la cual este mensaje será desplegado." #: models.py:36 views.py:66 msgid "Messages" -msgstr "" +msgstr "Mensajes" #: permissions.py:10 msgid "Create messages" -msgstr "" +msgstr "Crear mensajes" #: permissions.py:13 msgid "Delete messages" -msgstr "" +msgstr "Borrar mensajes" #: permissions.py:16 msgid "Edit messages" -msgstr "" +msgstr "Editar mensajes" #: permissions.py:19 msgid "View messages" -msgstr "" +msgstr "Ver mensajes" #: templates/motd/messages.html:8 msgid "Messages of the day" -msgstr "" +msgstr "Mensajes del día" #: views.py:42 #, python-format msgid "Delete the message: %s?" -msgstr "" +msgstr "¿Borrar el mensaje: %s?" #: views.py:55 #, python-format msgid "Edit message: %s" -msgstr "" +msgstr "¿Editar el mensaje: %s?" diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..32227bf77660defd949528595e46643caa023f66 GIT binary patch literal 664 zcmZXPL2DC16vs!c7FI#<>|u_IOm-97QYJ=>%?1LyH6*Fv%}I8WuI$b%vy-L;JruO< zp$9L1hNcH;i}m2alNUe2YzlrB-_&3cAN=M&Gw(ld-urcL;S++m1>6S$;5P6UurUQ} z?ig4APJu<>D{vF|4%qu2z{hI{{RFlCSJx4`1Ns{DE@%qsfWDib4?w|w`4;4#fE2nh zzp=IKKd8YIt~v6fSR-Gse!?RZus%=Fx)dC>m3+eonzSPFlB+zHg5r?vFoFF>*mXKQ zlS-2?AH@-QJ|5+yCnf~ngcGn_lb&KCPned9;^syW;Praw<0pPtZw1fljYh}scAtV(jK*xlNsqIX z;_V3Vnw>)J-INmj3X_QxSt#1{h@#bQM9YCqP0o27Wj zoOUu+EFn#)(wt(ET^{pVxr+a6YhKks=Ce61c2RL~acIuW5v=E^*frnGQSly|b8}Mc bBQrH;vpw_0Oi{6aaX8zX9h(y{d?=ycefqxN literal 0 HcmV?d00001 diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po index f7c283e819..e53344dc6e 100644 --- a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 @@ -24,7 +23,7 @@ msgstr "" #: apps.py:29 models.py:20 msgid "Enabled" -msgstr "" +msgstr "فعال شده" #: apps.py:32 models.py:24 msgid "Start date time" @@ -32,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "هیچکدام." #: apps.py:36 models.py:29 msgid "End date time" @@ -44,11 +43,11 @@ msgstr "" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "حذف" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "ویرایش" #: models.py:13 msgid "Short description of this message." @@ -56,7 +55,7 @@ msgstr "" #: models.py:14 msgid "Label" -msgstr "" +msgstr "برچسب" #: models.py:17 msgid "The actual message to be displayed." diff --git a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..3e7ab8271418c8ce000a3ad89699834bc0144b8e GIT binary patch literal 680 zcmZXRzi$&U6vqveU&qGG;IS2Q?h@Lnx{!*{T%<^MB}%UB&fU9<(Vcy=eM!5qBC#-Z zVPxY!fDH*TGBF|{{uG|mKnI@m(f2+1>#uG3*TbDlf^`>pgrvv=sHgOJ~-_mS02LhhlyMs@q%Z0C2|`8}%3`GAVsHW?_JGo8A^ zC30)iU1c~w89@aWNR$gpBFPsO2LT${ z3|7MB{_pDr;laV<0LzQHu`JbGnu=ScLpnZ-V|qGFBKkB+hLiZ&a5S1l^Z7AaW!d8W zSqi*HqXwBR>F(0nCiMOFdfl-uM-*`0$yDuYWw;hf`?Y%(gS<9=waxGg?eBTXB#EwH z-|Yn6iINs1-sqyir&&0+ep7KF`!ri}ZNLuB(lI-__PG-a&@7Uf%7rXLdbAMs-(5pm zXm47znpbSBbZtT^o6Tqjy*|Ba2fLCU)9zm1BlEUtw5UOo1mg;U%`mfK_4Ol(1^!`$ M&EIbvwplC5AFnE|!vFvP literal 0 HcmV?d00001 diff --git a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po index 7582e0307f..0522d39e84 100644 --- a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:25 permissions.py:7 @@ -24,7 +23,7 @@ msgstr "" #: apps.py:29 models.py:20 msgid "Enabled" -msgstr "" +msgstr "Activé" #: apps.py:32 models.py:24 msgid "Start date time" @@ -32,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Aucun" #: apps.py:36 models.py:29 msgid "End date time" @@ -44,11 +43,11 @@ msgstr "" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Supprimer" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Modifier" #: models.py:13 msgid "Short description of this message." @@ -56,7 +55,7 @@ msgstr "" #: models.py:14 msgid "Label" -msgstr "" +msgstr "Libellé" #: models.py:17 msgid "The actual message to be displayed." @@ -64,7 +63,7 @@ msgstr "" #: models.py:18 models.py:35 msgid "Message" -msgstr "" +msgstr "Message" #: models.py:23 msgid "Date and time after which this message will be displayed." diff --git a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..4fb681ecb2b77b2520604a70b01b2f990b15a018 GIT binary patch literal 502 zcmZXQK~KUk6vwB*%Z{Es)Eh+0HUvTn7!gJ!*$`oHuTVzK)-G))@IgHI<@^kO1mDoW z!GHQoU(^44eXn1ar4I{q4qO4Zzy;6&3Qd3#@B)0ES=Ivf;{F?ASO*okM~$Um)>?x{fjAe`A#mPuuBsAImuk9n+dBnh%7&k^n`Mh*D!fEq?n&Gnkt zy~8yRc}-G>xbC`O#8dXpi@N`PHJ3CRH!jEys5UrKROo~nsR$a*g8+?tp^rL#*c$~8 zy}@AW&t~^v6>&~uh9gE(f}U~_Q^ld-^2V5qIL>yvt(u|~U$b3xDN{#D4Hl`Kw3rOD zRjQrjuZ*+For)cfLjUvuUe&exQWz$nseK018MZS{mQXI*Xt|+EGt-?%L)<#~iWk>R zVP7oeii?<_)+;y1b_v?#_9V#_P4G~vR1+k!!%=r@ZS)&<%K}|@kymNk){Lbow|)SF Cc8iYy literal 0 HcmV?d00001 diff --git a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po index 27db30a110..462d539fef 100644 --- a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 @@ -32,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Semmi" #: apps.py:36 models.py:29 msgid "End date time" diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/id/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..76e75d4e4dfba1c3bb8cc187033e091ff7503214 GIT binary patch literal 461 zcmZXQK~KUk6vr`o+R?Lz9z1BYv_l|R#E5JpOEx7iyjNC6&DJh$5%?U&ujgm+O${9U zC;#*{{pJ7O>(}YYX9IKuJ_DbFkHOdAT0QUwJl?`tGkZ;peiI9aqYS?YW2IIMC49#f z3WH?kO+}@R!->shh9B3t#i?e?p@WCVA>cFqOmA?@M}C*Jp>9(OAfAeM zS?B)eT9kD*kWEjN{!yuT3v)MhMDqr(l;8gIE zp-5#~2`gdZixKw?#SaD;88_d%&?j5+g<5CzLs)f#^${FgtO1GbvA(?rT aVr_VV$J&&ZAyxfc?ZEG&-*Q0vUgH~UZ-q?& literal 0 HcmV?d00001 diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po index f7c283e819..6ccf3e3577 100644 --- a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/it/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/it/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..cc1b193176a100e225bbe884a94f77c79c924669 GIT binary patch literal 655 zcmZXQ&2AGh5XTLaujR&>gSoXr&Tc|mRSrR<$wrE_8=@rTjI%pQjJ$SaPnuThnKwYZ z0^GQ8{{ch>UnbToHAAA?mlU#2)dDcu0IF z?h`+V`u->J`3_^hNFNdJ@7|~;eN4IE>DBK3BPrRhza{x6=!xCi-PFD7KCBN05LjAj zWT{ni10~DU91I&d3vBG&2PjYsOYshT(9TMpt4n2h+Rvxa1lG=@$iq^X;&ihNV&)`| z#&2h$=RqO)MPDIE-b$LsB6%rVP2N0~hjczn5;BSjoa?&o|GritkB(j>6j7!EikVk7 z7=_MDJ~+!VKI-Nvf0gFlVfLom?@!X{^fg)Sa-)_YW}qs`hp3FEarakTu-)tmN&shXZBVDd(H-rm}*G6gE z=EX|+0N6R34aCWnU4+F^c6>ZlMdsx^rzb(%)f#x>y0CVj~D)V-;tA0Pq8+uK)l5 literal 0 HcmV?d00001 diff --git a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po index 27db30a110..f4b5cc9f1a 100644 --- a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 @@ -24,7 +23,7 @@ msgstr "" #: apps.py:29 models.py:20 msgid "Enabled" -msgstr "" +msgstr "Abilitato" #: apps.py:32 models.py:24 msgid "Start date time" @@ -32,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Nessuna " #: apps.py:36 models.py:29 msgid "End date time" @@ -44,11 +43,11 @@ msgstr "" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Cancella" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Modifica" #: models.py:13 msgid "Short description of this message." @@ -56,7 +55,7 @@ msgstr "" #: models.py:14 msgid "Label" -msgstr "" +msgstr "etichetta" #: models.py:17 msgid "The actual message to be displayed." diff --git a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..ba41415ed6efc381943cdab48647d37419561aa8 GIT binary patch literal 625 zcmZXR&u`N(6vqvWUlAwH9L%j1a+8#8no^3^Eh(y$l&Z~koxJ2N&F0vV?JnDY05>ii zxp3p3;&0(ONbJCqKKlAOU%&V4{C>UnonSmg-XJmZ91)0%FUT|GE3$`tL)>?F$mKtf zUylg+iTV;r9~1Hd^&IsT>IJIv2~@Q8;c`sL6U6oHBL)E$NK)38B$8hWD9KVuASumrmWEx0VrkPf!iwvq35T{p6>Xnh5Dqe3;l zR)*_ZX}@uIWKcH7$3uNVUy6%m>JPnaktGkW5sm`yR7ndGC%kX*suu37-wIyK2`#o< z8?e)}e9n#@e6HygXqL!Am9?xQdURRaf3rul@8zw;PIJNLN;d}g+CDYY@r3?eP6v{{ jozieP@d*B&uD&iolN0Db-+&|wS%JX`Za|de6X4Dt)Mlmz literal 0 HcmV?d00001 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 2aa50fe002..3927724526 100644 --- a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" @@ -23,7 +23,7 @@ msgstr "" #: apps.py:29 models.py:20 msgid "Enabled" -msgstr "" +msgstr "Ingeschakeld" #: apps.py:32 models.py:24 msgid "Start date time" @@ -31,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Geen" #: apps.py:36 models.py:29 msgid "End date time" @@ -43,11 +43,11 @@ msgstr "" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Bewerken" #: models.py:13 msgid "Short description of this message." diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..59476cdf20b75cb9cc8cfcf118ad73247c23f9f6 GIT binary patch literal 703 zcmZXRzi$&U6vqt|ijIw$!3$NQ$~j+}R@Eg}NSlik>8?ci0ke~H6So)pWIIiRG9maA z7?{`)Y%s7OF+n9p{sR6Mo`%wD0wJp|mBb znTU)W&L@TpREWLqlL0x>oLTUb7PCCWRT}IOx26 zxY4qJr&)es!O4WI4 nRLgY_4bA-WC4BeN&QH;^%NO5Yji0-Zj_vYHaLdr4W@qR(|J1VH literal 0 HcmV?d00001 diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po index a9c40b94ee..f0d1a3901f 100644 --- a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" @@ -25,7 +23,7 @@ msgstr "" #: apps.py:29 models.py:20 msgid "Enabled" -msgstr "" +msgstr "Włączone" #: apps.py:32 models.py:24 msgid "Start date time" @@ -33,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Brak" #: apps.py:36 models.py:29 msgid "End date time" @@ -45,11 +43,11 @@ msgstr "" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Usuń" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Edytuj" #: models.py:13 msgid "Short description of this message." @@ -57,7 +55,7 @@ msgstr "" #: models.py:14 msgid "Label" -msgstr "" +msgstr "Etykieta" #: models.py:17 msgid "The actual message to be displayed." diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..e108d6c323c446963216ce9ad146046fe574c05a GIT binary patch literal 599 zcmZXR&2H2%5P%JoALYoIgSoXr-Xu#~RbIAYX|mFaWQlfD?(SxqHFE68cG&g};Kqdu zTzE2`g>hT82S)ld9_90R?EHPX_mf~eMP4Bp@*Gh}h;PU<H ze=xs5CXa9Z40HJY@vg2gqjn!yk|#*$6+DuG0uLl_q$h>A07aHY1F5X}0vpd34f_n% zNuxO}#kJ5h&&qYQg5FrqO4rJUeHdEDYQt$%eX7}+1>whQqyq{&+DqpWp zQPu4rT3|JZj?)U~8`=RJ(EY9VJ&)tvZa4Cwm%N0l(Z+PKHBMM*Y}|#bF=#p$tGhmN z@8g50T$K643#6kYIy2gX#;LA*yqd@2QQp>36|x0V;ZSj zPERhRzn_=W-ba-htWa!jZ09)D{Y~kn;|aZ8PWLr^J*DZvBqF(zoz%kK{4-2T(*aq6 I-VPo42dIOboB#j- literal 0 HcmV?d00001 diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po index 27db30a110..1b719b92d5 100644 --- a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 @@ -32,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Nenhum" #: apps.py:36 models.py:29 msgid "End date time" @@ -44,11 +43,11 @@ msgstr "" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Editar" #: models.py:13 msgid "Short description of this message." @@ -56,7 +55,7 @@ msgstr "" #: models.py:14 msgid "Label" -msgstr "" +msgstr "Nome" #: models.py:17 msgid "The actual message to be displayed." diff --git a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..419ed35164c97175e5304c9463971bfb7139100d GIT binary patch literal 664 zcmZXRzi$&U6vqt|kdBR+!DAxi+$FSC<&cV`xk!=jN|dCm$jQB4jPC5K?IQ_dU}s|B ze<&LZBNGdM1%C_AX`n(p>7!>qf8P(=zaAfaCTI_kCrE-kLf#|Zt`UFs1vx;zA`g*o z$bIBH;^RM%>pO(}MDNe9?%w2W(FeHyfZppr?&F`(qkNZ(?jOS=a&I5;y?q`TLIDm) zoJmJwB^Cu_BoPZJ$hlTPCPu%3rDNlay#iyUR-C3{D-?}~=`5H+rHx~$&1J?0b#B>Q za~e!u&e@p(;ZV%%BQA)CTm>FfTl>qPwM=xKx&B*Hp2 zH$vG$IBhr`T_g!T@24?+9;f|r@}fT+PUG3^6s0P!MGkBZqU3af^VN9`7HDH-9u zX=CMF#lvvDUbmbtDlcKvTIw=1+6p7J2}^%R23cvtVqY+<-0Q(KYzFB#jc;G0-HL)U ztsE$va9iP39c)}!6+)^mU9N<&;CdJH5j(ln`KFg(Sge*hlPc%*WFg((**V?y3MNHu zM8QVdl$KLf?Y6ep>C&5Juc7EEZ8y6Ci8srlmS*>n!jP3%$U-`i=|8^-YE_ryH^{`R AEC2ui literal 0 HcmV?d00001 diff --git a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po index 7582e0307f..823c5cced4 100644 --- a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:25 permissions.py:7 @@ -24,7 +23,7 @@ msgstr "" #: apps.py:29 models.py:20 msgid "Enabled" -msgstr "" +msgstr "habilitado" #: apps.py:32 models.py:24 msgid "Start date time" @@ -32,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Nenhum" #: apps.py:36 models.py:29 msgid "End date time" @@ -44,11 +43,11 @@ msgstr "" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Excluir" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Editar" #: models.py:13 msgid "Short description of this message." @@ -56,7 +55,7 @@ msgstr "" #: models.py:14 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:17 msgid "The actual message to be displayed." diff --git a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..89be0e032302b1163cfffbf88ab6adbcf89261ed GIT binary patch literal 593 zcmZWm!E)0u5H(N^_{f=qIMA_&Q7orvrzmwxXdEUpcA9Zqt{`m171)wTl1a<-#y9Xs z`~W||x3Eq!^uW%%dArh^x4Y7x=LbI>h$ny-fDzy+AOZC832*>ldtL+oe&je`fu8}Q z$2)!x495=8)(dDCaVe~`P?9@Kt-kQW;(3WbaBYN=6s7ErNfb}hm7DQaX^T@+i4wo- zDuZ)Hk-NOg@ulX>f*wzq79p(Dsggn$rd{F~@~|JMx(JwAR-Al!r* zi*wDSshL%pqSX1behGh)j3FI)v=1>oU?|aOf^gjnAh89KJsp? zZD|l}Hk*O%J;j>e4hq!-S{bH=(m~U&hW>Hn6q Q@4tRH3sDHv$*y+(0OV literal 0 HcmV?d00001 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 2aa50fe002..e2c5b46be9 100644 --- a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po @@ -1,21 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" @@ -31,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Nici unul" #: apps.py:36 models.py:29 msgid "End date time" @@ -47,7 +47,7 @@ msgstr "" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Editează" #: models.py:13 msgid "Short description of this message." diff --git a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..06d25bbfbcb90c50cc52fa94ff5f0624718bc204 GIT binary patch literal 735 zcmZWk&ubGw6kfF=EC}LJJWLOk2AS;aHYx2UlNy^11hO?GsV6VfWSXvQX4l!-riCKf zUOnnj@Z!Blg(5WiC(Ql>{w=;u)8^oVkMF&i?|VP~K3@7_Kr8{C0;+)ffH#0VVnF`) z4)6eQIIrIWFW)tcGvFtH?~p$N{sa6FI0L=|3^eoK1D=I943yyswioiDu@ebybY%3F z4-{?<@oO%VAQCR}*)bEyYxq60%i~BY>?fmOh+n3o1otBsnVnaCye&CXpvMiSxQiTO zuVb=?9UIx}ZVB=dAt1zEei-C^|JOOhEtj7Y2(!%+h5M3;BxEX*E^6+!+i0imd#LL9 z^;Y{uz0v4;yMmF6yR962Q8v2TH}RWlbiNqRJZu`~0Xlh{l$T5+;L4 zTI2jK%!lK|3g=BMnOX(YZ~5Nhe7i`@?MNstV5Q?2Zd3e7S#ih$Q9*+PCKImcZoi2) z7P@@mK9|@NgJ>9tk&8C=0(HBri)3nc!c?*lHzPStTqNRInb1-NU8i(aJhKU, YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" @@ -25,7 +23,7 @@ msgstr "" #: apps.py:29 models.py:20 msgid "Enabled" -msgstr "" +msgstr "Доступно" #: apps.py:32 models.py:24 msgid "Start date time" @@ -33,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Ни один" #: apps.py:36 models.py:29 msgid "End date time" @@ -49,7 +47,7 @@ msgstr "" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: models.py:13 msgid "Short description of this message." diff --git a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..e3096bd3644a5ecbed0c6a2945543443a1e3758c GIT binary patch literal 570 zcmZXQ&raho5XQp_E;;Ub4|73kwYYK879p4HZlS4Ese#f2uE^V(V3gRA?NUIz2Cv7n zFe!g};FEsRe45YWv0s1gzIdn~$S>po*+Y(zMl)m=xj0~cbF$5?gWE~ zhKGc9NfbhO$a+}!D8(R|i+kD3{ho^`>-T?Clt1Oxk=$@)OYXE`Fut5l;cS>DaGa#W z$@JfFG@2(__6MV?Sn)!TT=0rPR_c49Bre?gEZfk!b*^SXuwJh_u9+%t#6xGHtH5Z> zjnpQnnnx0`tZYzzObl#!olSzapH9+b`yFA2`lnhsp>V~=8sF-~gA3}COErMSEjL!U z_%a`pqiwFa^hOwxsD)liRWLaEFWuMj3^sT9vvOs4Nyge#mVv4_*2cX7yq9rH?T3`c iaR`5b0!H3#gf`sTE<8VfwtCo#u+?o3eDB1FC+`gwM4Mj# literal 0 HcmV?d00001 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 2aa50fe002..ce7753556c 100644 --- a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" @@ -31,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "Brez" #: apps.py:36 models.py:29 msgid "End date time" diff --git a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..6650cd1a36c8d3e204c9d2cb0acc0ec09693c757 GIT binary patch literal 539 zcmZWm!A|2a5Dg1^$!W!5PaNh5TDeI|LCD>%=+acGlys{$^a|c)8oZm>k?m6W5dMHG zU%<~W_6JmpF;vP}F>5}wu$MgP@Hoh;P zw&!0-Y1<>&WRYwU=hAs&tEX9MAoLpzL4S$NFa5k#lFLv<$%$;hU7E1TSpzIMn@PQHZ%KM~fk z%m`&m;k4l}yi5`p_tO}@$7z3*oc9NVX*`?#Agd}?qCl3Rs5s0eIwdN!2!~A#V^JN! z;f-@O4}$f2-EvK=T;g48p{u}XD~!}8sG3_c%qts|Z;`>Ryqb@LBR?Ib@%wv3t>nmF1x7&C>RwE^NzQ*!8{H>+_S?{?|V@ca#nQ literal 0 HcmV?d00001 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 2aa50fe002..ca5b9637e6 100644 --- a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" @@ -31,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "None" #: apps.py:36 models.py:29 msgid "End date time" @@ -47,7 +47,7 @@ msgstr "" #: links.py:21 msgid "Edit" -msgstr "" +msgstr "Sửa" #: models.py:13 msgid "Short description of this message." diff --git a/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..505b12b449b4749c7d8da19fcc20b695f029f529 GIT binary patch literal 505 zcmZXQK~KUk6vwCHWk=5*dc~X7$OX>rowa7Z0*t(0l$awX8dFx{RZBB zL!$@(=`Z~^`S-oozVDTu9n?0mj~pSp$Qe>-h?J0PGl-uXV(pYn8Qf`%Iq&w;N$)FX51@i|6ivfv5O7?@kYXi19 ziM#alFIP0Z2TemcRWl(IMo#a9{hgbUO)qztE;LVRSLw_!BJ<7BG=m2DwoSj`Iv+1@ F&KI>`jk*8; literal 0 HcmV?d00001 diff --git a/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po index f7c283e819..98897c79a0 100644 --- a/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 @@ -32,7 +31,7 @@ msgstr "" #: apps.py:33 apps.py:37 msgid "None" -msgstr "" +msgstr "无" #: apps.py:36 models.py:29 msgid "End date time" diff --git a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.mo index 8c7bc34a1e7521f5c833d7603537726ec7b54248..a0b04215b4b715467e9cc25b741710f7d51502a4 100644 GIT binary patch delta 44 zcmbQqGLvOOE3cWZfw8WUp@N~Am5JHJNeg*=67$ka6Vp?z6cURj8!<*tp2b)X03V!Z delta 39 vcmbQqGLvOO>%_GjtcGS*M&=VIEu8GY7{%k0n3rCfn4W5-kXST%CSwBt4Tue) diff --git a/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.mo index d0716df9031daef133bd8ee8c3cd57aebea390f4..b41eae99219bf8553ff2f300bb99b7d9c16b83c5 100644 GIT binary patch delta 44 zcmX@fe3E%WE3cWZfw8WUp@N~Am5JHJNlSQq67$ka6Vp?z6q3>>n=(dEp3A5M05iD_ A*8l(j delta 39 vcmX@fe3E%W>%_GjtcGS*M&=VIEt%}h7{%k0n3rCfn4W5-kd!`o4x=sr8-We0 diff --git a/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.mo index 828dd257159336def56c6668426dc4d5e80938ca..cc0a5ec08ed5c1585fa440f38ebcb05e465306e4 100644 GIT binary patch delta 47 zcmdnMvVmnnE3cWZfw8WUp@N~Am5JHJN&EPH67$ka6Vp?z6q1VLog63oGe%F|#aIRa DTEq`C delta 42 ycmdnMvVmnn>%_GjtcGS*M&=VI?VFsy7{%|Cn3rCfn4W5-kW?J+tjsg%1h< diff --git a/mayan/apps/navigation/locale/da/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/da/LC_MESSAGES/django.mo index 988f14ceb1881089284878c59c4269634c0d25b8..d692bbb1ea112bf6c82bd0705861ed1a94929a52 100644 GIT binary patch delta 44 zcmX@ce2jTQE3cWZfw8WUp@N~Am5JHJNeg*=67$ka6Vp?z6jBl=8!<*tp2esG05UZV A!~g&Q delta 39 vcmX@ce2jTQ>%_GjtcGS*M&=VIEu8GY7{%k0n3rCfn4W5-kdiogCZjF@8UziP diff --git a/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.mo index 8bf28f158123665bfae694ba7a6c61ece9e02a3d..832cca20ae51873447d8cbf03379d0235c57d9a7 100644 GIT binary patch delta 47 zcmZ3=vXo`Q0bVm*17lqyLj^-KD-*McXV>xjB<7`;CZ?xaDWs&vySPrSVvL^rl+ghI DW)2UX delta 47 zcmZ3=vXo`Q0bWyG14~^a69q#vDcW{l$ZNz6+xO-xU|Gyo2u diff --git a/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.mo index 9510f38a2db784054ed98b297cf223d507e14b24..7ab8aa1234db03b5d888a90f748f4f42ae674be2 100644 GIT binary patch delta 44 zcmX@fe3E%WE3cWZfw8WUp@N~Am5JHJNlSQq67$ka6Vp?z6f#ODn=(dEp3A5M05o$A A>i_@% delta 39 vcmX@fe3E%W>%_GjtcGS*M&=VIEt%}h7{%k0n3rCfn4W5-kWo5$4x=sr8|w|f diff --git a/mayan/apps/navigation/locale/id/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/id/LC_MESSAGES/django.mo index 3a8cb9b21e1a8ee268a149f371ca4d4d59cc189f..24fdd673b6bb784dc9ff355dce1b14ad10413e1b 100644 GIT binary patch delta 44 zcmX@ie3*GcE3cWZfw8WUp@N~Am5JHJNlSTr67$ka6Vp?z6f#pLn=wXDp2w&P05SOu A%K!iX delta 39 vcmX@ie3*Gc>%_GjtcGS*M&=VIEuHMb7{%k0n3rCfn4W5-keM=hE~6R%8Tt*M diff --git a/mayan/apps/navigation/locale/it/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/it/LC_MESSAGES/django.mo index 71f1f2d66606438536660e75aebb120837f44d91..b37fae565a3f735a36ea6c7eb88ae2ae768c39ac 100644 GIT binary patch delta 44 zcmX@ke4KegE3cWZfw8WUp@N~Am5JHJNsD-V67$ka6Vp?z6f#RD8#6{vp3SHO05gaU A;Q#;t delta 37 tcmX@ke4Keg>%_GjtcGS*M&=VIEt>4e7{%q2n3rCfn4W5-FnI=}J^=p}4AuYu diff --git a/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.mo index 57bd0130e57a69115819b15aa7ef1487b0ed8f7b..0c09c2fe99787fb0eb07efcf444e8200ab98584a 100644 GIT binary patch delta 47 zcmcb~e3N-XE3cWZfw8WUp@N~Am5JHJNgMfn67$ka6Vp?z6!LQ7{d^`nF-A{b%cuhY DXgCip delta 42 ycmcb~e3N-X>%_GjtcGS*M&=VIZJZp;7{%|Cn3rCfn4W5-ke3th=QDW?qb>kXDGvnz diff --git a/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.mo index 8dac8f0851457396e2026e06fccb625077a71033..dcd37d2a6a0a71a980cd118202ee15a28d6cfca6 100644 GIT binary patch delta 44 zcmZ3+vW#WIQeHD%17lqyLj^-KD-*Mcn-=o;B<7`;CZ?xaDHP;P4q}X+yo)gh05Rka AT>t<8 delta 39 vcmZ3+vW#WI(urp|SPjjrjLau)S~xj@F^b10F)zI|F+J5vp&)1SPR3jSAB_%C diff --git a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.mo index 7316cd2f4b5ff41fd189689fc0422005b7c7fa37..3fbd8804bbe95ac821a51e204e1874536aeea191 100644 GIT binary patch delta 44 zcmX@be2RHOE3cWZfw8WUp@N~Am5JHJNlSTr67$ka6Vp?z6becvn=wXDp2w&I05vcT A_W%F@ delta 38 ucmX@be2RHO>%_GjtcGS*M&=VIEuHMb7{%?An3rCfn4W5-P%wE8qaFYbKn+#^ diff --git a/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.mo index 60d29cd670993f62fa38f2003d9e058bcf4eb728..fa7b0ff54fe640105d8c0487b55d005b1fc68c2f 100644 GIT binary patch delta 47 zcmZo*X<(VKl-Eqxz*yJFP{Gj5%EWBqrj7hQiFxUziRr0U3I!$cPC=8C7^5ejWi$o= DQk4%0 delta 42 ycmZo*X<(VKbmCbKRzou@BlC%yHcl>PjN_)8zu)aM)CV3=B1Y=rl(pd6y?VU`A=TW7zO|{q7I7y diff --git a/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.mo index be9dab2057138ad1104292777a98d4a3ae94a9b6..d276b4eba4398127376d792be556e6906fbbd79b 100644 GIT binary patch delta 44 zcmcb}a*<_1E3cWZfw8WUp@N~Am5JHJNsD-V67$ka6Vp?z6pBhG8#6{vp3S%o05~NM AivR!s delta 39 vcmcb}a*<_1>%_GjtcGS*M&=VIEt>4e7{%k0n3rCfn4W5-P*gg37UOmR9{~0_DD%4?=;V61Cos92 DPE8Kj delta 42 ycmeBU>0_DDI&m!rtD%{dk@>_)n%_GjtcGS*M&=VIZJr#;7{%|Cn3rCfn4W5-P?i}V<~MmAqZ$BCSPuyR diff --git a/mayan/apps/navigation/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/zh_CN/LC_MESSAGES/django.mo index 5d3a853f37d1b737a16289ecd3f49a506db85067..6de3e6fd47bd444759772493484d627dd1c8987a 100644 GIT binary patch delta 47 zcmX@de2#fSE3cWZfw8WUp@N~Am5JHJNo)Ci67$ka6Vp?z6sj`fo&6@;F-A{b$*2kd DW5Evu delta 42 ycmX@de2#fS>%_GjtcGS*M&=VIt)1-87{%|Cn3rCfn4W5-P?Zty>^FG@qZ$B8kPtN#yg};=?`vk{7CN*@(a;hEqNfS@zV>=bK_Enhx=A$# zZIaQ{)YRb6zie!swocb0h<|K%?X@>JZ_zYk*n@b~lsIjN4f delta 280 zcmZ3$)yYwRPl#nI0}!wQu?!IV05LZZ*8njHtN>yYAYKW?@<4nKh<$OFyyAoX=X8l-+6kOrxL10+D|KLBZ+grg~^B4RM)^#*T_V{ c(9Fund~z+5G+e~M)XLCw^HQcMjKmlQ0B&S5T>t<8 diff --git a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po index 7aa170e27a..419e61b018 100644 --- a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -40,19 +38,19 @@ msgstr "" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "pdftotext version" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "not found" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "error getting version" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "tesseract version" #: forms.py:40 #, python-format @@ -61,9 +59,10 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "المحتويات" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -85,7 +84,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "نوع الوثيقة" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -121,13 +120,14 @@ msgstr "" #: models.py:56 msgid "Content" -msgstr "" +msgstr "المحتوى" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,14 +154,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "File path to poppler's pdftotext program used to extract text from PDF files." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -172,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -191,21 +193,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Submit documents for OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -214,12 +214,52 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + #~ msgid "Delete documents from OCR queue" #~ msgstr "Delete documents from OCR queue" +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" +#~ msgstr[2] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_2" +#~ msgstr[3] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_3" +#~ msgstr[4] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_4" +#~ msgstr[5] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_5" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" +#~ msgstr[2] "3d821f1679e8cdd3b5844ba5a01a969b_pl_2" +#~ msgstr[3] "3d821f1679e8cdd3b5844ba5a01a969b_pl_3" +#~ msgstr[4] "3d821f1679e8cdd3b5844ba5a01a969b_pl_4" +#~ msgstr[5] "3d821f1679e8cdd3b5844ba5a01a969b_pl_5" + #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -287,6 +327,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -351,11 +394,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -412,11 +455,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.mo index 441d55ffef63b0d6a381dc7b52caedbc9d871aba..77c616f64783c51b238b51c18775178c404ede17 100644 GIT binary patch delta 475 zcmZvW&r1SP5XZ+KX$2jMkf5@6>$I`Y9}C%0gDz2cu7l_X9@-7}DFlK>H!q^mAJDyn zn1)n#?>2jnuz#aN^nGH`pB7|g46ICybJ4Dd3YH`~4wR?m?U>hhxVzP0YSN}Rb> zr$oy3JiAgTDp9j5UfFdzUx#VSFq1|?3Tb6hxTj2W@%YHd+qJUpFmeTDXGFr3zkLar zk@BG)*bijy{1y-Vmfz$@?(vvMJS6@%*+p$2(9#n;;8%X~ula?CJnn|}c90$l{h_S0 Sn1{-r*K%Jc{VN{%ZTbNb8H4fw delta 305 zcmaFBzMHN7o)F7a1|VPsVi_QI0b+I_&H-W&=m269AnpWWc_7{g#LPf^4~Qjz_z@8I zGcqvz2GSsP-AoWO4ghJ8I#wWI2&6fIG*B4>3lM|EK>(, 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -43,7 +42,7 @@ msgstr "" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "не е намерен" #: apps.py:166 apps.py:184 msgid "error getting version" @@ -51,7 +50,7 @@ msgstr "" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "tesseract версия" #: forms.py:40 #, python-format @@ -60,9 +59,10 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Съдържание" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -84,7 +84,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Вид на документа" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -120,13 +120,14 @@ msgstr "" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Съдържание" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,12 +154,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: settings.py:22 @@ -170,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -189,21 +193,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Подаване на документи за OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -212,11 +214,43 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + #~ msgid "Delete documents from OCR queue" -#~ msgstr "Изтриване на документи от OCR опашката" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -285,6 +319,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -349,11 +386,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -410,11 +447,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.mo index ff892efab7256ffaddfe8f4332124b93e32fe469..9b4a70e124d735a579ce6d87bde075e81bb83a3b 100644 GIT binary patch delta 570 zcmX}n%}N6?5C`yC>qo7MSP=z3h~RZ$w^k3miM@#^DuNdwb>q5QO_trXs0cno5pR0% ztQYYrBB=Nbf{14yz>^36aqSLFeqjsJh@MnH;^;5TASTQQ%!i3a(_i&ri~H1VYKUCxa$#~& zNiC$Ne-o;zoyGwwOdmz9pMyma$0}yN&^nMlYl=7tlq9J%+f@zeQRMAvrNyDn&a_Ap z5%Zm_a<*qJ&&}J;tX*=MJ6|bdUv`|r>WaN4nt^%Hu5v9ZtmL@udnLExx_4jJwKcWQ zz4+yUhm>tLf{1yl{x|5^ZLYrV$KvIx&RG-(HQwA0xeU1(=r{-kNh~-~l0UbERFu|n NxjlMT$ws$1{Q_oHdyfDB delta 276 zcmZ3(HHV}Ao)F7a1|VPqVi_Rz0b*_-t^r~YSOLT)K)e!&<$?Gf5c>l0KOklXVjo5Z z1_>Y?0HnVGaV8Lh)F%KXWr6fmAngsLHv?&q`u{)zq@J0DfdQyg4s0<<0tA3!46I-l zl$b2a=qTrsnv+_Rs*sYOT$-DjS5mByR+OKs;O`uyP*|E;I=PrJcd`nT53i}Nfu*jI ziGrb-m67@6S|(|@h=Hk, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -40,19 +38,19 @@ msgstr "" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "verzija pdftotext" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "nije pronađeno" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "greška pribavljanja verzije" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "verzija tesseract-a" #: forms.py:40 #, python-format @@ -61,9 +59,10 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Sadržaj" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -85,7 +84,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Tip dokumenta" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -121,13 +120,14 @@ msgstr "" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Sadržaj" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,14 +154,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Staza do popplerovog programa pdftotext za vađenje teksta iz PDF datoteka." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Staza do popplerovog programa pdftotext za vađenje teksta iz PDF datoteka." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -172,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -191,21 +193,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Predati dokumente za OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -214,11 +214,45 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + #~ msgid "Delete documents from OCR queue" -#~ msgstr "Brisati dokumente iz OCR reda" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" +#~ msgstr[2] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_2" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" +#~ msgstr[2] "3d821f1679e8cdd3b5844ba5a01a969b_pl_2" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -287,6 +321,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -351,11 +388,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -412,11 +449,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/da/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/da/LC_MESSAGES/django.mo index 55fa9f1cf3aab9cc65ea07420cba56c9c5a7247a..e1d4a491f4e783505ec04a1f671ffe7089da87b9 100644 GIT binary patch delta 557 zcmZwCyGjE=6b9h4ZZsxpVL-ePVFcTS-567(3yDFCponN8C?Pw!ne2q!Nr)ok1#CjJ z)Mrp^tSn67ONdxmSXidA@SofY@xbAmot>Tk?6dzR(0UK~ZU{At4x=y8^XNCUDy9)d z;TrVALpTjj;2bQ#46H*PcHt6yg$wWl24D}Wdud`|2wrK_qIE1(zyrQk0iQ#^p&F_O zkD%@w1RTQ^JfFg4cmY+wHBFnDTv0hU+SDH^#kf|qQybz43?AVDYb{v+qa3; zq;Mp6Bn|Z_C35vDc9=Y`wSTHf?z+Nd1ukXDDX<22y^?Uq5t8La-La`==cSOmDaY?5 z_dM=qbK{*(QOj(`40FSXSj>vWqgY2xGq|^F?DIxRU1+4TlE+!Zv_|J5R@|~4zqEuF z-f`@rsMs_zCC>UIVnW_Y>&@*nFINz6k4Esk?o+|RytGwjc}&UWKXV@Zos)h6hm&l0KOklXVjo5Z z1_>Y?0Hk|>I1`9L>c25DFh~PwZJ?rXAngvMLF(rN2`M1G7)S$^%7HBgNq_(g5VL|= zP-3zuqobTlYEEiNszOSBa%paAUP-Y+T2X$kg1>W+LSboY>EvR@+{r3TKD?&729~-; zCJKgTRz~KNYni0sA_k^bhNhdBGC4A;2Lp`)nv@MTDYXb_R3g}, 2013 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -40,19 +39,19 @@ msgstr "" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "pdftotext version" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "Ej fundet" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "Fejl ved versionssøgning" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "Tesseract version" #: forms.py:40 #, python-format @@ -61,9 +60,10 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Indhold" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -85,7 +85,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Dokumenttype" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -121,13 +121,14 @@ msgstr "" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Indhold" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,15 +155,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Fil sti til poppler's pdftotext program, brugt til at identificere tekst fra " -"PDF filer." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Fil sti til poppler's pdftotext program, brugt til at identificere tekst fra PDF filer." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -173,6 +174,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -192,21 +194,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Tilmeld dokumenter til OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -215,11 +215,43 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + #~ msgid "Delete documents from OCR queue" -#~ msgstr "Slet dokumenter fra OCR kø" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -288,6 +320,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -352,11 +387,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -413,11 +448,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.mo index 5fefb1f29f71b00b4964d4f67d43caabfa961361..a5cd6c4b4ef1a4f3dee622785ce5d89cf30d2623 100644 GIT binary patch delta 1093 zcmY+@Ur1A77{~EAEe@j!_EYmVq9<>n*DzdAnpt6fq1V@~*(iYoUf375`D{sO> z5NQxWQ5SWyC@=C>!pNY+x{xBGt1b(I=%Vj$o`fFuzMu2H+d1#^KIh&2_Kz*&pK6M4 z8KRTcOdItXvj<-m(Gic<7}JK2u>=>e4;Qfm%ZrU^MGH&u1eW1xti>U3d<8c!zJ^UW zjUi*k%?uayOw8eWTweLY{KR#Pi&$0jjaY>i_TT|j0y)%!@8S`h!7%#$#_Yg$Bv*41 zt1*EAJdbs(Z!U4c$4t=e!$~a1ci4iz=K!^G7S2eeP6Mf4;x^ Gv+pmJ)pq~@ delta 2147 zcmZ{jPfQ$D9LFCP5P`O|+LnUIL&`s8>9T-L!IV;=O;sqNiKZ%tW%n&RbeN?xvutac zaOi<*yqJxeM&rTIgGtkUp$d*LOCF<@G>N(x(x^6ukaz*&Z7awgv3|lENYjEG9&>Bx|JzOwJm@fq#$!xTM6QfnCs9LM#I0N#6cr4qP)1_`>Vc4Q$a=!H z9NZ{V&Y39H%%nAie7kv(QJcTK<;xnKN$F%Jk)1V;->+M|{7a>clg2i_QNsb&c0HYP zGqd`{GZXqu)@0ZA{j|{@rU~C9HD26vgT=pY*s_c_n9r5|(5&Z;>sc8`Tghg^COfs0 z(RRj}Hm){jEzkG5@Y{HvJ8Cv%jtmlmz@qzjhs!GIbRZ+i<4mfO4*0?qw&*5$9-*^xaaGPQ!E#& z{K@kEBZV+(B8;auRE;2;Z;B+#ub01H($^P>9*o3#b@x;Ku>+B4Z!}stej+kq<}Fbw zG933!zm7$_i*~V|{_fuVWW}DQ(YT+sDEWvGgPJ-NN%LpLvP2aa3`GTC*Z_pjqU_xa%7X>^Qv<=~BjZupY{K(K`ltf27J)8A-SWeP-lfxy% cBxcy#_NLn9EF+??+ifc1M$6?ttA8%}2Rz-j{r~^~ 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 09c474bde3..3108f3a1c6 100644 --- a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -14,14 +14,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 23:14+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -67,6 +66,7 @@ msgid "Contents" msgstr "Inhalte" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "In die OCR-Verarbeitung einstellen" @@ -79,10 +79,8 @@ msgid "Setup OCR" msgstr "OCR Einrichtung" #: links.py:33 -#, fuzzy -#| msgid "Document type" msgid "OCR documents per type" -msgstr "Dokumententyp" +msgstr "" #: links.py:37 views.py:161 msgid "OCR errors" @@ -133,6 +131,7 @@ msgid "Document page content" msgstr "Seiteninhalt" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Seiteninhalt" @@ -159,29 +158,26 @@ msgid "Change document type OCR settings" msgstr "OCR-Einstellungen für Dokumententyp beabeiten" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "Pfad zum 'tesseract'-Programm" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Pfad zum \"pdftotext\"-Programm (bereitgestellt von poppler), das benutzt " -"wird, um Text aus PDF-Dateien zu extrahieren." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Pfad zum \"pdftotext\"-Programm (bereitgestellt von poppler), das benutzt wird, um Text aus PDF-Dateien zu extrahieren." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." -msgstr "" -"Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet " -"werden soll." +msgstr "Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet werden soll." #: settings.py:27 msgid "Set new document types to perform OCR automatically by default." -msgstr "" -"Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch " -"durchgeführt werden soll." +msgstr "Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch durchgeführt werden soll." #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "Dokumente in die OCR-Verarbeitung einstellen?" @@ -201,21 +197,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Dokument %(document)s in OCR-Warteschlange eingereiht" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "Ausgewählte Dokumente in die OCR-Warteschlange einreihen?" #: views.py:94 -#, fuzzy -#| msgid "Submit all documents for OCR?" +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Dokumente in die OCR-Verarbeitung einstellen?" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was added to the OCR queue." -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Dokument %(document)s in OCR-Warteschlange eingereiht" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -223,44 +217,44 @@ msgid "Edit OCR settings for document type: %s" msgstr "OCR-Einstellungen für Dokumententyp %s bearbeiten" #: views.py:154 -#, fuzzy, python-format -#| msgid "Content of document: %s" +#, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" -msgstr "Inhalt von Dokument %s" +msgstr "" #~ msgid "Delete" -#~ msgstr "Löschen" +#~ msgstr "delete" #~ msgid "Re-queue" -#~ msgstr "Erneut einstellen" +#~ msgstr "re-queue" #~ msgid "Delete documents from OCR queue" -#~ msgstr "Dokumente aus der OCR-Warteschlange entfernen" +#~ msgstr "Delete documents from OCR queue" #~ msgid "Make at least one selection." -#~ msgstr "Es muss mindestens eine Auswahl getroffen werden" +#~ msgstr "Must provide at least one queue document." #~ msgid "Entry: %(entry)s deleted successfully." -#~ msgstr "Eintrag %(entry)s erfolgreich gelöscht" +#~ msgstr "Queue document: %(document)s deleted successfully." #~ msgid "Error entry: %(entry)s; %(error)s" -#~ msgstr "Fehler bei Eintrag %(entry)s: %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" #~ msgid "Delete the selected entry?" #~ msgid_plural "Delete the selected entries?" -#~ msgstr[0] "Ausgewählten Eintrag löschen?" -#~ msgstr[1] "Ausgewählte Einträge löschen?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" #~ msgid "Entry: %(entry)s was re-queued for OCR." -#~ msgstr "Eintrag %(entry)s wurde erneut in die Warteschlange eingereiht" +#~ msgstr "Document: %(document)s is already queued." #~ msgid "Document version id#: %d, no longer exists." -#~ msgstr "Dokumentenversion ID: %d existiert nicht mehr" +#~ msgstr "Document id#: %d, no longer exists." #~ msgid "Re-queue the selected entry?" #~ msgid_plural "Re-queue the selected entries?" -#~ msgstr[0] "Ausgewählten Eintrag wieder einstellen?" -#~ msgstr[1] "Ausgewählte Einträge wieder einstellen?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -396,11 +390,11 @@ msgstr "Inhalt von Dokument %s" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -457,11 +451,9 @@ msgstr "Inhalt von Dokument %s" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.mo index 42aa17360f998356d5432cac597f74f5f283baed..9b0d9c16948f175f44fe062cabb142f3d2cb0380 100644 GIT binary patch delta 163 zcmdnVev_^Ko)F7a1|VPsVi_QI0b+I_&H-W&=m269AnpWWUm)HG#LPg@X1WH(x<-Zy ShGteKW}6Q&<}gnDmkj`Y)D*n{ delta 259 zcmcb~wv)a7o)F7a1|VPqVi_Rz0b*_-t^r~YSOLT)K)e!&<$?Gf5c>l0KOklXVjo5Z z1_>Y?0HphYI1`9L>VGmp)awBifzKy& zIkDah3ICE8Z$=|W4qh5U!T}n&5L80Ea4_*eJiyhMfYbxu-|O2RoMiSh^V^v>GryU8 zy}xX4{<*c|TSX~Q-=Yq;DfKSCzkwghbKHafVh(q=D>Z?8@D=-^Exq0~6`p?u&3PGc2E@dh$f{e@fb3Fh$y_F#@( zcH&Olhy%C__hx>CJLp$&GwZ9bX$%s$g0i!lC=-7}S>RFTQ@liWR#6kb!13ke*HJRE zj56;@=HIC4|CjZ5F}O&75QlIYdstsB(HOvsnLnW{{19bBkMS@*M~w$r#o!s7#1)i` zJj1tf6*pr)X(7dG6bY&0DDjyreioa91eRz>s(--O@D>i?eUvxx56azb>0aAVf98H{ zBfg2+DzZSU>~1xX+exoU4kSem%=BiupxhT(Ra>d@h~$1+MedG+t3Ik^MNT9SN{YM} zva9-~Ly^rEsJzuQQ;@z1Ih-6|J5@3vMKY#}Nxt1CSKE7&2kqCA?>dHeoGY8U51rNZ zAc{j<#j1Hv7n8|cGx{d#C;9MxQ!5tG{ZP zhB>4@Y0NEzUI(?BuDEhz!B`*bc^Ao;L&>Jjp)XH|W+|QJqrk@HD4a7D?aeu_=OeeU zK1-P>Vp`RBFZ)_F?9W+c9phZXR#d$*?_D~t^`AF!Y@(p-TceW?I;Zzfj*RUa887M5 z}&Bg0Eba9r& tpr+lNH3T3-vFP({3dt+{1w~-?%65CQ{VxR_0531einQjdRE_)vy#ib5TVLl78 zzZXD`y8@v~Y!vGsftJyJc5S@*M&F~ zQmA`*qEcr`hM@|{X>vnF=g)NLQm%4U7pHh#oXVX}q>Fkoj<-giC{>$y?-?Z>c1|?) zwP6KyaYm;Oy2m8lFQr;^$d1>oSb_#}QKHD^>q+FGPb{feIaQ$CXQ^*=GOD0?C8>7v?e8SPie#+zkr&VXvE9}2x)sB}dd)-!6*}E|^V4|#8peUSz-{Eme zHN`p|C`0OUWSy;-viN>9ER2}8v?>2NG0UklTP%+dn=J^3K4Kwa*y|~4`#Dlo7k7!V zPNM>!-jK><`B0J9RZ+UY`ZO zK4`uc%+ArwiPr3^L36IzgkaE78xfcA-Ez(O*3A5|CPwWX;t+I=Ol>TkHZAJtb!Cv5 zj<(W78UpDcM^Oh|C6gAdWipNIkd6+W%UX@b=H_M{=}B$WSC{KOoixm7qiH1UO`yWW zHsV4_L)pf3t$nt=JaKxa-mDc@Jm}&Ew0xo)SuCS;fqFw}ta6KQcUOXw6FEMyuS~F< z_H-DfgBG1!k6dYNixG^K-!G&8+WtM)K$QNA0I z4DpglBRRk5U)$fwFbehmX<@v5sTCuu)Wq|YV++KB&vi~O0jWUi<#VCJC?lSe9ytfZjw8$;VUDCHl{0WtT_*;ME z(8?mgBsqLB`l)wI*-Rk^MI^Zk%1~B18zE0>l!cI^ZVWE9~nkmJxOi;d+mYTaLjy~{fT+zOx;%|dHst>a?yj7d9y diff --git a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po index 7fe6224f66..a0129d541c 100644 --- a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -41,7 +40,7 @@ msgstr "Resultado" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "versión de pdftotext" #: apps.py:160 apps.py:178 msgid "not found" @@ -49,22 +48,23 @@ msgstr "No encontrado" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "error al obtener la versión" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "Versión de tesseract" #: forms.py:40 #, python-format msgid "Page %(page_number)d" -msgstr "" +msgstr "Página %(page_number)d" #: forms.py:48 msgid "Contents" msgstr "Contenido" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Enviar para OCR" @@ -77,10 +77,8 @@ msgid "Setup OCR" msgstr "Configurar OCR" #: links.py:33 -#, fuzzy -#| msgid "Document type" msgid "OCR documents per type" -msgstr "Tipo de documento" +msgstr "" #: links.py:37 views.py:161 msgid "OCR errors" @@ -131,13 +129,14 @@ msgid "Document page content" msgstr "Contenido de página de documento" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Contenido de página de documento" #: parsers.py:103 #, python-format msgid "Exception parsing page; %s" -msgstr "" +msgstr "Error interpretando página: %s " #: parsers.py:130 #, python-format @@ -150,22 +149,22 @@ msgstr "Enviar documentos para OCR" #: permissions.py:14 msgid "View the transcribed text from document" -msgstr "" +msgstr "Ver el texto transcrito de los documentos" #: permissions.py:18 msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Ruta de acceso al programa de poppler llamado pdftotext utilizado para " -"extraer texto de archivos PDF." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Ruta de acceso al programa de poppler llamado pdftotext utilizado para extraer texto de archivos PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -176,8 +175,9 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" -msgstr "" +msgstr "¿Enviar todos los documentos para OCR?" #: views.py:40 #, python-format @@ -187,7 +187,7 @@ msgstr "%d documentos enviados para OCR." #: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" -msgstr "" +msgstr "¿Enviar \"%s\" para OCR?" #: views.py:73 #, python-format @@ -195,21 +195,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Documento: %(document)s fue añadido a la lista de espera de OCR" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Enviar documentos para OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was added to the OCR queue." -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Documento: %(document)s fue añadido a la lista de espera de OCR" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -217,34 +215,44 @@ msgid "Edit OCR settings for document type: %s" msgstr "" #: views.py:154 -#, fuzzy, python-format -#| msgid "Content of document: %s" +#, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" -msgstr "Contenido del documento: %s" +msgstr "" #~ msgid "Delete" -#~ msgstr "Borrar" +#~ msgstr "delete" #~ msgid "Re-queue" -#~ msgstr "Someter de nuevo" +#~ msgstr "re-queue" #~ msgid "Delete documents from OCR queue" -#~ msgstr "Eliminar documentos de la cola de OCR" +#~ msgstr "Delete documents from OCR queue" #~ msgid "Make at least one selection." -#~ msgstr "Haga al menos una selección" +#~ msgstr "Must provide at least one queue document." #~ msgid "Entry: %(entry)s deleted successfully." -#~ msgstr "Entrada: %(entry)s ha eliminada correctamente." +#~ msgstr "Queue document: %(document)s deleted successfully." #~ msgid "Error entry: %(entry)s; %(error)s" -#~ msgstr "Entrada de error: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" #~ msgid "Entry: %(entry)s was re-queued for OCR." -#~ msgstr "Entrada: %(entry)s fue sometido para OCR." +#~ msgstr "Document: %(document)s is already queued." #~ msgid "Document version id#: %d, no longer exists." -#~ msgstr "La versión de documento #: %d, ya no existe." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -380,11 +388,11 @@ msgstr "Contenido del documento: %s" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -441,11 +449,9 @@ msgstr "Contenido del documento: %s" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.mo index 34b4efbdca83879ed0225ccefa0885b442e11c3b..8bcd48834ea3117b4bf21f5ed62ab44692785c39 100644 GIT binary patch delta 1032 zcmZXRO-vI(6vrQBDHTPaiXX+u5KDv*3|q0rYQmwMOo$)hZYUjU6T4g6snG*ACR#lZ z6WkaR^`NJcCX{GF;{gs{Ja{mAFte%An-}9n@5KKrOF8(mZ+>rP-oCH-)$^>o_&sPm zCdeV^5$HGQAoO_)7RZ>7s0}p1aqu+Q4qgKTpaS=S^WJ_D3}OEi>;u=pPVlqGA7D53 zzrhGmkv3sW;lOMqIsq0zd{o8K0lo(JgX^Fl`~q^ZF4znH0e67`gQy1#dJKalG!gao z>*#_T_ylrX1Hn3wpSoZS;2;EYf^%5HU>qC*uYz6RBFLS*1P_8MU=;iSo&`6-<6sQq zK~0nZ*?$f^3@VT(_7FS@J^}lYpWeXW1YbceFNu@nmds9G=Ry@Kd2qIsoM+%-vYFg~!U3^ZW3~SunlEnAzsBk<;dz2*+(pNlTH( zJWb9hDO5TmMZS>8q?M9M=eF;BFgufyG-=NkGH@5_R#rM2zK~DW delta 1217 zcmZXR&r4KM6vwaQG-_u4s8qBcN32w8CLKn@5i-aEBPm>1tzw+H*3is6d+$xqhd~zg|uoBv}#chao-6213`-xL6FqV; z@Cf)3^n<^_!$=p$N`+{{!3fv_-T{Zer=Sn~4zjU*ZXvK0L2x^G0%XBKkc|w3jo@W) z7Up%Z7Vp2{o{d)`iR+&PIe!$7X6TFP=D`ej5FgTDJD3A`DtXWg{s4PGD%&V{5gf#O z8sz*hU?2DgYye1wICOLi1ob^u;@D_Jbclo;r&bRy8(thzbOEgQ+>i zxDYQM?QR5`-CEEW^$7k=ym(rbh&}v*1sUg;^1cF1i5-ZYmeI_LNW#NUhkjDoZM(UXprkPqBNe&og3O@HBeyX+RQdK4B0bw%AT^P*V1Z{3gWL+)+cbGaH(kgxRg^F6yl!k z8MOo*C=njH4X5@rXW%W5BYR3M3e~o(R-H?Qn!zF)MZ>q&J<<;oC}>aHcWEu1UvNa& rrFz31XVBTAT86+p&DvM4njUh~)f zJzp|hr||zW{)1hNje|e##s{uDk1%!|?1GPizkz4LKfoby-yX(}f_3mQa1neQ`~Z9& z^z!>v@Fm=T3LXK!0iOczf(O7~z!$;$`SX9lgSg*~P3iez@L8}9j)50J+CK$p-CN)s zco%#P+`E^tDtHovsq8BF9QZz10dIgWfXg8M*iC#~0KWkDfxm;VfcJAg1P|f<5Dxh? zSO;t1J0RJSfOL+pL7M+PNc-K*`73x6+TI6AzYYfBE4u~GgWrK~fe%1BUlm5udjXQ3 zK1jN${Qh(B1n$2APl7*zwBJAAtKb8W>_6~CrrQ~i{4@=|4z@t@&u8E?_$}A~{{~Nk zuRaMI!FR#q;1A#gcn_rc2jM)@y#Znhy9$z?0>ly6GB^o-0+KF2gCpQQa0uKD5jl7Y z+z-A7()bU-H^JK=?eix{>pui({k_j*JOb{*J;f~fmo9pbuwjSk1{b%V*~d|U>?$tW zlh((wRxi?;&O^2x!#~9uU8FhLO&XIQ5C%3bDHce7(uQ;=ElF?4Zm(f{lHJ9HV{dsu zPJ1D2ZJeJ1Nv}NpY%Jrb*v#Wz?53fNjON1gq{mInO-J%8Qw#j#RHm}ZCh0kwOidgL zXyzwPm>iH)}~|f|kbkQ5z%T$iT{inoVO*Zv0Skoi;hdRSvZq%%39Fdd45Bujt#k4$c zid)h|%Rst=*|jl4FR*Jqjz**5jYzx7Z<2c`)vQm7{g@Ssx3iq$MXcEjjnl|u{S+WzB+^eC>%Wuc9;M8^$; ziB*Fy#BeyIS%|ezevAQ8J4GlsOHzalKC5KpcKC3|n50pwt*oq6tyq3bu2$VRtf_3C zs)ckIM|z>I1^F7ama2_Z<}S_6^v_(cj#l!bdI5(qyU=WYkNCC$XurCH~E ze;nD{lFFHh+}K0vHTe0aZ%SJm@KFoYmPInTyrl!_NYk7`eSfFpN#6sOBlq^o7V zpwOvaciYwN!k5A%*4n4Cj@^u+H57K0tG#Yf@B0zvK?-gQ(j25{`7{(eqb7;4*M)D| zxWl^KOS5)>HOoNGgirHskmlV0Io^?}vfJx84SiS>M`bN#XaIO^7u6s{%7dErDA&$L zWqa>1jH-xp6Xu5X~&jm>&>=1pQwlU{Ze(&GHl-FywN706AcN ze-Rwg_qtqUF|u_iS!ZwIv^z%SE=yvPceBZvzxxd+K-so(4T(quYuYLRw~##9*r|>T z{mA-hVlUKjXx6$%gLB|{>Xk_OXs1Gj zT_;=Qe5yF2Y?;|lqB2%InWR3spfrlQCzTH$0-A PARLO{zUv>BfyMp<7#Cki literal 2333 zcmbuA&u<$=6vqcBr8Pea<)`@h5VUU8uI)q(EgPj$acn74tVV7qa6;qVu|4hX&N4IG zG(v(a5}c4YajC=s{8v=S{{TWgbLPZ>8&ZY%zFo&o+XxPy5yoK@2Blv^o*rP%`4ju>3gD1e}!42>z_%X=#pMuB0FTq#AufW&9AHZk9 zJK$OH7jOl<2c8C-j|ou+uYqraUw}REHrN3F06DHVjtGIN2*Db73FQ4YL5`yjz5;#% zevQ~I_ypenM(`Z>Q5bPNYv6J4Bd`TZko|lMo&vuIPlG>$oagUg2;KwR-~~A4JU$1{ zfj@%pf_K3&_!qbi4&d}n@HWVC-vOTiry$qsSCHfQ6D05+$R+1<*ndu7auS2>p2I-N zN?%Wd{BT`gz(A_=2iuF6FgSL8xK>YMyvQ$juuXZMJV#36DGZKFT#jQEi_3*Ksq{LM zNwPpkAv&42du)#i*gY7>Wu7rIk0RyVut41oF=L-r1!Y0w zMdiu_sq}Tg=^Fdz)R&y->O@g4{g{KvO`a#p)*a>X&>OFAdCILBS(#Gds(|sEm650N zO?9w6c|(!(lql&unG6SvbR&=RX$Tx5 z4=N*dqCd+H6IUc&TrFGS;K^6*BDSr$4j;j09L&x-q@LW98Fe;#S8IKh8|#Cf8|gUs zpcuJe$AnbdzOoavxdpLzzzrADN^5yFXuTh-oTugY!j%g_>wK#P!=SHjYVM(j?OLnh z^6J?Zp4t{t3U;i_Tq3=(A@$8bSroZ%oV41&AR85Oq=FqK(~!DWWzm?~$77FE?7Xw#htBKiJvJkq{qQ zGf$+>)+icF>y%&raHktwT-foBLuG?b7MWOQqmV8Rw4cWs($Lnnlfud*=o*{4kg~jd zb?Yl@R87~EwT0d*x}Y3afAt$eAM5jw_GT&vOe!u!|YG2-jt< z9qT-L(+7Dl9H@SOVitj=UIuwbb@nVsEMn}hF?kE zR8gra)1R, 2015 # Pierre Lhoste , 2012 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 msgid "OCR" -msgstr "OCR" +msgstr "OCR - Reconnaissance de caractères" #: apps.py:91 msgid "Document" @@ -39,40 +40,41 @@ msgstr "Résultat" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "version de pdftotext" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "non trouvé" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "erreur de récupération de version" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "version de tesseract" #: forms.py:40 #, python-format msgid "Page %(page_number)d" -msgstr "" +msgstr "Page %(page_number)d" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Contenus" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" -msgstr "" +msgstr "Soumettre à l'OCR" #: links.py:22 msgid "OCR all documents" -msgstr "" +msgstr "OCRiser tous les documents" #: links.py:28 msgid "Setup OCR" -msgstr "" +msgstr "Paramétrage de l'OCR" #: links.py:33 msgid "OCR documents per type" @@ -80,23 +82,23 @@ msgstr "" #: links.py:37 views.py:161 msgid "OCR errors" -msgstr "Erreurs de ROC" +msgstr "Erreurs OCR" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Type de document" #: models.py:20 msgid "Automatically queue newly created documents for OCR." -msgstr "Automatically queue newly created documents for OCR." +msgstr "Ajouter automatiquement les nouveaux documents créés à la file d'attente OCR." #: models.py:24 msgid "Document type settings" -msgstr "" +msgstr "Paramétrages de type de document" #: models.py:25 msgid "Document types settings" -msgstr "" +msgstr "Paramétrages de types de documents" #: models.py:31 msgid "Document version" @@ -108,37 +110,38 @@ msgstr "Date et heure de soumission" #: models.py:43 msgid "Document Version OCR Error" -msgstr "Erreur ROC sur la version du document" +msgstr "Erreur OCR sur la version du document" #: models.py:44 msgid "Document Version OCR Errors" -msgstr "Erreurs ROC sur la version du document" +msgstr "Erreurs OCR sur la version du document" #: models.py:54 msgid "Document page" -msgstr "" +msgstr "Pages du document" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Contenu" #: models.py:62 msgid "Document page content" -msgstr "" +msgstr "Contenu de la page du document" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" -msgstr "" +msgstr "Contenu des pages du document" #: parsers.py:103 #, python-format msgid "Exception parsing page; %s" -msgstr "" +msgstr "Exception lors de l'analyse de la page : %s" #: parsers.py:130 #, python-format msgid "Cannot find pdftotext executable at: %s" -msgstr "" +msgstr "Impossible de trouver l'exécutable pdftotext dans : %s" #: permissions.py:10 msgid "Submit documents for OCR" @@ -146,22 +149,22 @@ msgstr "Soumettre les documents à l'OCR" #: permissions.py:14 msgid "View the transcribed text from document" -msgstr "" +msgstr "Afficher la transcription du texte depuis le document" #: permissions.py:18 msgid "Change document type OCR settings" -msgstr "" +msgstr "Modifier les paramétrages OCR du type de document" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." -msgstr "" +msgstr "Chemin vers l'exécutable tesseract." #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à " -"partir des fichiers PDF." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à partir des fichiers PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -169,77 +172,87 @@ msgstr "Chemin complet pour l'interface utilisée pour faire de l'OCR" #: settings.py:27 msgid "Set new document types to perform OCR automatically by default." -msgstr "" +msgstr "Traiter automatiquement les nouveaux types de document par l'OCR." #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" -msgstr "" +msgstr "Soumettre tous les documents à l'OCR ?" #: views.py:40 #, python-format msgid "%d documents added to the OCR queue." -msgstr "" +msgstr "%d documents ajoutés à la file d'attente de l'OCR." #: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" -msgstr "" +msgstr "Soumettre \"%s\" à la file d'attente OCR ?" #: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." -msgstr "Le document: %(document)s a été ajouté à la file d'attente OCR." +msgstr "Le document : %(document)s a été ajouté à la file d'attente OCR." #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" -msgstr "" +msgstr "Soumettre les documents sélectionnés à la file d'attente OCR ?" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Soumettre les documents à l'OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was added to the OCR queue." -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Le document: %(document)s a été ajouté à la file d'attente OCR." +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" -msgstr "" +msgstr "Modifier les paramètres OCR pour le type de document : %s" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" #~ msgid "Delete" -#~ msgstr "Supprimer" +#~ msgstr "delete" #~ msgid "Re-queue" -#~ msgstr "Re-ajouter à la file d'attente" +#~ msgstr "re-queue" #~ msgid "Delete documents from OCR queue" -#~ msgstr "Supprimer les documents de la file d'attente OCR" +#~ msgstr "Delete documents from OCR queue" #~ msgid "Make at least one selection." -#~ msgstr "Faite au moins une sélection." +#~ msgstr "Must provide at least one queue document." #~ msgid "Entry: %(entry)s deleted successfully." -#~ msgstr "Entrée: %(entry)s supprimée avec succès." +#~ msgstr "Queue document: %(document)s deleted successfully." #~ msgid "Error entry: %(entry)s; %(error)s" -#~ msgstr "Erreur entrée: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" #~ msgid "Entry: %(entry)s was re-queued for OCR." -#~ msgstr "Entrée: %(entry)s remis en file pour la ROC" +#~ msgstr "Document: %(document)s is already queued." #~ msgid "Document version id#: %d, no longer exists." -#~ msgstr "L'identifiant #: %d de version du document, n'existe plus." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -375,11 +388,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -436,11 +449,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.mo index 5104d2cae1add76e11d6e5d12a3c1f0bb9aa7f77..092cf72ea4caf5e7cf216c6fe55c76527e0069a6 100644 GIT binary patch delta 242 zcmX@ja*Vb9o)F7a1|VPsVi_QI0b+I_&H-W&=m269AnpWWkoZ0z<^bYjK+Fro=YhDN zk%8eZkOryCWrD~rg3_yjv>;G?3y=mXV_*SdkX_6`3>2E^ZZGGYpI4HaSHb|Liy2(< zlS^}fA_^sy1*sETeR<7v4UBb-3>6H`tW3-%-j{|87#Ug_8g6E1bYWBpNh~T!%*oGX WfHPe3v%$uc<|>pNURzLF%m4uQ$uJ}U delta 135 zcmX@cdYZ-Yo)F7a1|VPpVi_RT0b*7lwgF-g2moReAPxlLentj{HYi^Vr~$}jV3=6x zI`OWLsj04krLK{Qf}xp}k-4sciGcxEfWK}~YFTD+W`3ToOJYf?m4cChAxxctsgr&I5Q~( delta 135 zcmdnQdX&ZSo)F7a1|VPpVi_RT0b*7lwgF-g2moReAPxlLPDTcXHYi^Jr~$}jV3=6x zI`OWLsj04krLK{Qf}xp}k-4sciGcxEfWK}~YFTD+W`3ToOJYf?m4cChAxxctsgMgR<97fJvC diff --git a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po index c734ed9aa6..d8fb7f7ae1 100644 --- a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:46-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -59,9 +58,10 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Isi" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -83,7 +83,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Jenis dokumen" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -119,13 +119,14 @@ msgstr "" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Isi" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -152,12 +153,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: settings.py:22 @@ -169,6 +172,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -188,21 +192,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy -#| msgid "Submit the selected document for OCR?" +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Submit documents for OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -211,9 +213,45 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" + +#~ msgid "Submit the selected document for OCR?" +#~ msgstr "Submit documents for OCR" + #~ msgid "Text from OCR" #~ msgstr "Text from OCR" @@ -278,6 +316,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -342,11 +383,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -403,11 +444,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.mo index 004234159c04f340c0b6d589f48de1d90a6f6dcf..809c894524da7d53966cf3fd316ab8f85caba254 100644 GIT binary patch delta 615 zcmZ9{ze~eV5C`y!wzk&#tBNQ%JO{B3fuz<7-K1TdT8cP{5}RiUv`J}`fKce-;Nqa- zA0Q4cItfk={uA9qaPWU{5b=9$V#P-;pLgNC%iVYMA>MsUMXm`eiC9K-5VMF^1TUcw zMd1p}!ZjF!`!Ej8zy_Q|?gyU28RVC66yCylcn25ZGdx$QOFeA3P!*^62X&Z$H*g%@ z2R=bA@B*h{52oM;#6zEWEx<3h1m_||DBWK?057h~i-+afMCrjaW7u*N6NnK6?)HlU zqHWWZ=GEEA)`4TY(srpZuuVm$>NWUFxDidGCWo1O()^S8vemX6n@WWWm2pn2ruq1x z?KO^MYu&tfKi6Zg`Uf2vCnE+qFhod(zp1kS~Ogl7a2_t&t>$yu0M8^DJ52` zS)T1W+-SGopyxUw=+$$r->w|~xn&!|lyzYS6F9VMHJxE9Xm8N19DWNM=ez$}rybk3 Rj8=F!X}gv%>UF`R{s6Y-fY<;4 delta 291 zcmZ3>@sG9so)F7a1|VPsVi_QI0b+I_&H-W&=m269AnpWWc_7{g#LPf^4~Qjz_z@8I zGBPmy2GU@4ObiT)K=wW$4N~_2NJ|3gCqNpgjDZD+LE<0)6ygM14B|}AW;RoHNzF+u zNmWS6PcF?(%_}KZNGrB@sIhWbgJ~1yjH76$#ZepfFN+O7#oS%{iG8bebgJ)h@W?~V-+DrwY H8n7$?0v9_h diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po index af8e10b6c3..00ff8574d1 100644 --- a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -27,11 +26,11 @@ msgstr "OCR" #: apps.py:91 msgid "Document" -msgstr "" +msgstr "Documento" #: apps.py:95 msgid "Added" -msgstr "" +msgstr "Aggiunto" #: apps.py:99 models.py:36 msgid "Result" @@ -56,13 +55,14 @@ msgstr "" #: forms.py:40 #, python-format msgid "Page %(page_number)d" -msgstr "" +msgstr "Pagina %(page_number)d" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Contenuti" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -84,7 +84,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Tipo documento " #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -100,7 +100,7 @@ msgstr "" #: models.py:31 msgid "Document version" -msgstr "" +msgstr "Versione documento" #: models.py:34 msgid "Date time submitted" @@ -116,17 +116,18 @@ msgstr "" #: models.py:54 msgid "Document page" -msgstr "" +msgstr "Pagina del documento" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Contenuto " #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,12 +154,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: settings.py:22 @@ -170,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -189,21 +193,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Inviare documenti all OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -212,11 +214,43 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + #~ msgid "Delete documents from OCR queue" -#~ msgstr "Cancella documenti dalla coda OCR" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -285,6 +319,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -349,11 +386,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -410,11 +447,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.mo index da77d0dd20fae072ba18fcbcc2ddf9ea7f054f25..63a413c08576b913f349b9695c7ba59e6e738cb7 100644 GIT binary patch delta 372 zcmcb^K7*tFo)F7a1|Z-BVi_P#0b*VtUIWA+@BoNSfcPO0vjedhBLf2mkd}ke>OdN# z-T+AZ0%utI4TAPv$Bau^JN^nfe?d5CG^QcE@G{JfIXyb=Z|UCiK; zpIn*?5`i%kN-7H`{@H12rfXoVYhAEDAq*^H$ q85qLU85vp`8g72Y7{aLHnU|4Yn!*63UDw&+dTm}HW7C_Yi delta 313 zcmbQiafiMBo)F7a1|VPqVi_Rz0b*_-t^r~YSOLT)K)e!&<$?Gf5c>l0KOklXVjo5Z z1_>Y?0Ho&waV8Lh)N=wQHGs4okPZgY=|CE!em9T+*|Q%=1C^?QEe1(|01FVaf>{WH z3B;Uu*HX?UH7B(sRUsumximL5ucTNZttdZN!QVMZp|CWybg~WOPE%7|14~^a69q#v zD`R!U6;g?R4WA|14EcP15+zQ)6H5;A&eSfsYT_PSt+SS ea0^oN6v`6w6jD;bc9bV3XOt9WW=&qiTm}H~ayn)J 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 df317f6639..e5941c56cb 100644 --- a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -27,7 +26,7 @@ msgstr "OCR" #: apps.py:91 msgid "Document" -msgstr "" +msgstr "Document" #: apps.py:95 msgid "Added" @@ -60,9 +59,10 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Inhoud" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -84,7 +84,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Documentsoort" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -120,13 +120,14 @@ msgstr "" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Inhoud" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,15 +154,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF " +"File path to poppler's pdftotext program used to extract text from PDF " "files." +msgstr "Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF files." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -172,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -191,21 +193,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Bevestig documenten voor OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -214,11 +214,43 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + #~ msgid "Delete documents from OCR queue" -#~ msgstr "Verwijder documenten van de OCR wachtrij" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -287,6 +319,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -351,11 +386,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -412,11 +447,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.mo index 13ded588cd8a15439f045ce05a4b2ececbec21af..431164f8cadab034189caf35af900b0e5365a6b7 100644 GIT binary patch literal 1744 zcmbW0&x<2P6vs3I-O(|#e)UapL+Fv)O)Y0e_c8E znZS4n^EJ$$F<-|#dI%qk-@!-0`(O?H6Fd*T`LGa=gEjDZuwKY_z*iveg0F%Z_%!%w z!7ssQA%6{4!SBFF!295H;2&TKJde%Cz!mUi@FMsOSOs4M8{iY*4#<8I{0X^Pko`g= z&G|OKC&7b)$KX?tKLI)a6Oi-#3gr5K06D*3zzg7Sh5Q%jLB4?CI6~AxuCoDh{P#ha zhyi#JOhC@}W03RzypX>EIsW$`(#;3=2W97Xz&?B~_mu16m^?V=70h#(+#eo%58Q(n zSSSYfhT|jrVsO4(E9WU1QKTZ#$ebBTr+YGvr}ROlGDV4+VBJfVbSk3A^sB*v>0j zn#|iUR}@_lxfk`7b2{nMJh8+$IAlpA#?hWLPTh42T`M*Fs^`30kyo@Pq^6w8gtj)D z+oiS|o78zt+t-nIBkNnQV?rvmZg;#5z8kdCiUMeraXI#dsnL=^h|_~hjgv0-6GeJ#&M|?XQ_<6n3y}<*~IqxDju`^BdP_)uRb$Sx({e>NeY}T7{>=%C^dybc@Zx~45|_mm9^IXNU{FT66ko9(v3&p{G+PFr z1)Jcj;3ptLu|D`ZxD6uB{Gq&1el9-^KA)d5_Hsc2$&2c@}ZjZ=Sm#Qm|e-dNrhJ(kt9R@c_uT-wH#pIu~K*$^VoE=4RvUT2KTJ00oVMuxsUMvZ)08RQL(C!Na+o*RuG zBVxy+MP-IQ(&D+YW33_pHZDs%yOH0<;pUHTjICJHgO6Z24vKb1yeWo4^Tty1MyVzH z#`>V?x+)H?W?dJwO~gwp*W1A&eFcae(49xT7FOqj@PnW>$Ez2j+QlH83qvRdExE1e z8XwgQ=cDTU`4CU(W0VxMtU(xTBG7Z9|E zeH7&7j)$gDdVzN~g>}-`Z?>-mmnM1?aYNdmp*tp4x*PFJ>&hSG8u5NoT1hf1lHi)L zsf)Po=dZ5*{sM#~sn6(oy~;o0A%}RX8h%)>@#*P&d$~SG+Zj3zFIPi;>sEeFI^isA zs<5feE|l>7#zLF_J+lH|1{^5CZn{kG-P!w^Hv3=Ucq<=qKH^&@k-aTNBY<$@V|I1_ z_THU1ABzFTuBQ$xvRt+s4<9dFBW(&hc9gNB2ZyFrNscMiO7obzj;17A8)~(MK^;kCu6hSO Jqgv@Q?gQVv5K{mE diff --git a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po index 244a7d195e..95b5b47a8a 100644 --- a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po @@ -1,25 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -40,15 +39,15 @@ msgstr "Wynik" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "wersja pdftotext" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "nie znaleziono" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "błąd pobierania wersji" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" @@ -61,15 +60,16 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Zawartość" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" -msgstr "" +msgstr "Zgłoś do OCR" #: links.py:22 msgid "OCR all documents" -msgstr "" +msgstr "OCR wszystkich dokumentów" #: links.py:28 msgid "Setup OCR" @@ -85,7 +85,7 @@ msgstr "Błędy OCR" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Typ dokumentów" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -117,17 +117,18 @@ msgstr "Błędy OCR wersji dokumentu" #: models.py:54 msgid "Document page" -msgstr "" +msgstr "Strona dokumentu" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Zawartość" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,12 +155,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: settings.py:22 @@ -171,6 +174,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -190,21 +194,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Dokument : %(document)s dodany do kolejki OCR" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Prześlij dokument do OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was added to the OCR queue." -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Dokument : %(document)s dodany do kolejki OCR" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -213,32 +215,45 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" #~ msgid "Delete" -#~ msgstr "Usunąć" +#~ msgstr "delete" #~ msgid "Re-queue" -#~ msgstr "Ponowne zakolejkowanie" +#~ msgstr "re-queue" #~ msgid "Delete documents from OCR queue" -#~ msgstr "Usuń dokument z kolejki OCR" +#~ msgstr "Delete documents from OCR queue" #~ msgid "Make at least one selection." -#~ msgstr "Zaznacz przynajmniej jedno." +#~ msgstr "Must provide at least one queue document." #~ msgid "Entry: %(entry)s deleted successfully." -#~ msgstr "Wpis: %(entry)s pomyślnie usunięty." +#~ msgstr "Queue document: %(document)s deleted successfully." #~ msgid "Error entry: %(entry)s; %(error)s" -#~ msgstr "Błąd wpisu : %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" +#~ msgstr[2] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_2" #~ msgid "Entry: %(entry)s was re-queued for OCR." -#~ msgstr "Wpis: %(entry)s został ponownie zakolejkowany do OCR." +#~ msgstr "Document: %(document)s is already queued." #~ msgid "Document version id#: %d, no longer exists." -#~ msgstr "Wersja dokumentu id#: %d, nie istnieje." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" +#~ msgstr[2] "3d821f1679e8cdd3b5844ba5a01a969b_pl_2" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -374,11 +389,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -435,11 +450,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.mo index 9c24b49c3f41531823c93d36b20f637e14cd856f..957c3d47379baa963aea587bfcb1d3318a39477a 100644 GIT binary patch delta 514 zcmY+zbav8G9Ch(0 zbP!zYriiN!{s8qSi1>bKEqdhRxjXK=y!Vj4&a~fVQI(QGW@Cj1G3p|1!5FZOt zgMiy`8fyXPU<1y>Gl)BryDu)=--8EkcVb5+pk87hk}R0WU5;e@d delta 303 zcmbQod78cco)F7a1|VPqVi_Rz0b*_-t^r~YSOLT)K)e!&<$?Gf5c>l0KOklXVjo5Z z1_>Y?0Hh}XaV8Lh)c;~)U{D0o`aneyKspdegVe7A5+Hll0coI8Ik3eb2@qfbVpcE< zN=#;Dbd+;R%}FguRY=KCF3nBND=Ah;E6UGR@OKVUC@f7aot(^=JNX}@kEyAyfu*jI ziGrb-m65rwfr)_uSAf56P-E?PSS4PF4)ZF~C c)FQYQ`Naw;i3(|%If)7>sUVvszhbTi04V!8UjP6A diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po index 2107da68ac..c21ff36bdc 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: # Translators: # Emerson Soares , 2011 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -41,11 +40,11 @@ msgstr "" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "Versão de pdttotex" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "não encontrado" #: apps.py:166 apps.py:184 msgid "error getting version" @@ -53,7 +52,7 @@ msgstr "" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "Versão de tesseract" #: forms.py:40 #, python-format @@ -62,9 +61,10 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Conteúdos" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -86,7 +86,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Tipo de documento" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -122,13 +122,14 @@ msgstr "" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Conteúdo" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -155,15 +156,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Caminho para o programa pdftotext de poppler, usado para extrair texto de " -"ficheiros PDF." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Caminho para o programa pdftotext de poppler, usado para extrair texto de ficheiros PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -174,6 +175,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -193,21 +195,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Submeter documentos para OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -216,11 +216,43 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + #~ msgid "Delete documents from OCR queue" -#~ msgstr "Remover documentos da fila de OCR" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -289,6 +321,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -353,11 +388,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -414,11 +449,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.mo index aa4cc18f7a644f627ddb95e63ec6e99810722e62..32fc58b05989bc00913d96d3cf2e718fff2f3f75 100644 GIT binary patch delta 991 zcmZXRO-NKx6vwZQUritCq!|`@1p^aC=1n%j&>~PHBulhh7SDOt;ZgJ6@aB%xBHXnp zh~z^5JW`_A*x-gHZ598zcY?Q(BYl?JNLfJx##@P>(2LGE8kKr zw-mM)-;aOA58`*5Sg=g9QmxQ|V{ja{!;7#3TDTitsqb&Xe)f0ZKKKmogdgkt4!hX@ zf?1_j)CR!}2Tnq%QMdy6)DxB@T!lUG6>Ni_pcK0fd*N@m4R*9B)eTd14#9ggk%N-w z3tdP9KcL+2C0Ua9)c}Dc8iDfT7}RhY4!{dg3b+R4f&2CSD$KEe1LxreJPPNKM-;dL zcfiN64?c&I{{s}I*I_^Jt3L#tup2$4kU=O9jzgJ(BoPV4c5R|I0!bz&V-S-ZVhCCr znZzkvirz9A6?LjTxD=J%&a!19D{9u}BL#?|UacsJlkvNziJ^%wuqLpo&Wf6JtvDOcYdf7x3KMYh5TD=rj15cH`B^z3E$u|C3Q>mE9Ei_Kzw~3h}xpd}m zI_qdBmmeb@%Vd(Xr_*z0*_VWADLJpR8E5NW*2z20)9IFTO(V6w)?RwyW``2hdUUnX zC&I|p^K@yf@44~M){_UyYY&Qk;A$`A+w3(|XZ$i-qbK8$wzKi)wikVL%&q)?P2X-G vUYMe3?S?us1%njYtu?pyFdS8SDt$ZDHbY7pn~15+z=;IN5g2VU*IY_<7{rCel z?%)*Xs~lY={VA+q9ShjU8Qj8k{EBCBmadY}#u4me7H^>(@Brl|A0zX{>mW~Z#y2T@ zWsOp~M*Q{PLk5vFhp2Ii9&uBM)5}%LI!vV~89)}7pfXWDu~J>N0;2<`W3(S`beteC zwpul96PQ0}+iiv&(+zyx^4yNTxU#0NhbA=9-NgCmXJV;d>jqx0s%Pfd2!1_HM#dov0Pm!zj&FtGPFzzOB-ExJxi~X!vv0PsoITZJ9NCi?j>;<(b6raZ853@ zik8!j=y|%aE>SGo8kkSFTt^#e^lr;`b(0$)7OC9bMAAVr{r}crs$c0>S, 2011 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -40,30 +39,31 @@ msgstr "resultado" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "Versão do pdftotext" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "Não encontrada" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "Erro ao receber a versão." #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "Versão do tesseract" #: forms.py:40 #, python-format msgid "Page %(page_number)d" -msgstr "" +msgstr "Pagina: %(page_number)d" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Conteúdos" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -85,7 +85,7 @@ msgstr "Erros de OCR" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Tipo de Documento" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -117,17 +117,18 @@ msgstr "OCR erros: Versão do documento" #: models.py:54 msgid "Document page" -msgstr "" +msgstr "página do documento" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Conteúdo" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,15 +155,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Caminho para o programa poppler pdftotext usado para extrair texto de " -"arquivos PDF." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Caminho para o programa poppler pdftotext usado para extrair texto de arquivos PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -173,6 +174,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -192,21 +194,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Documento: %(document)s foi adicionado à fila de OCR." #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Submeter documentos para OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was added to the OCR queue." -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Documento: %(document)s foi adicionado à fila de OCR." +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -215,23 +215,43 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" #~ msgid "Delete" -#~ msgstr "Excluir" +#~ msgstr "delete" #~ msgid "Re-queue" -#~ msgstr "re-enfileirar" +#~ msgstr "re-queue" #~ msgid "Delete documents from OCR queue" -#~ msgstr "Excluir documentos da fila de OCR" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." #~ msgid "Entry: %(entry)s deleted successfully." -#~ msgstr "Entrada: %(entry)s foi excluído com sucesso." +#~ msgstr "Queue document: %(document)s deleted successfully." #~ msgid "Error entry: %(entry)s; %(error)s" -#~ msgstr "Erro de entrada: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -367,11 +387,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -428,11 +448,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.mo index cab8ba110e3039fdd487abb7c613057d45982a07..c7bbf8399a85b1356b6b5c65514b1d2eb8974a64 100644 GIT binary patch delta 574 zcmZ9{K}!Nb6bJCxv@|OyA?lDYLbq7hHTB@F^eRPIw}MT_Z6Rl5c2)`m4|VDgh;%7} zpuRyLp`<=UM9?idMyC$_$F-myJbsV2Z)e_|#?KR-=VbJZASRIu$To5Y`GnL#4MMUo z4P$T%#^DZ}f-Wq>07l>)oQDr^7QVo7_zCs7WF#~RG1DQ7DD(yI_*)OAqoGSsFO`Ga za24tct{{asFa`T?8ot6L{1_S=B?Nbp1QM-5=<{{x2k5g2nG0VvffDm%O!p9x?&V6V zD7a!=k)b{*iE7Y5hpNM7_p4E4QVL03rj*BB+G5i81Sec5S{DJYk!G!~gklHk_nTtA z&!kiR?ezAHaxQOL%Vx%=cD|5BowcmQ`kJ}HTAn`8EIEo5XvVUC<}!A{wr}5zwn4Gm z_?WKuYi(S3)CT|LbtbHbGZ&Ik{vgN1!X-TNcoQ~%f2 KGnK!4>()1gSbWR? delta 284 zcmbQm)yGkPPl#nI0}!wQu?!IV05LZZ*8njHtN>yYAYKW?@<4nKh<$J5RCDnL37NXG){ZXgX({}M, 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -40,19 +38,19 @@ msgstr "" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "pdftotext versiune" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "nu a fost găsit" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "eroare la obținerea versiune" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "Tesseract versiune" #: forms.py:40 #, python-format @@ -61,9 +59,10 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Conţinut" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -85,7 +84,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Tip document" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -121,13 +120,14 @@ msgstr "" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Conținut" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,15 +154,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Calea de fișier pentru programul pdftotext folosit pentru a extrage textul " -"din fișiere PDF." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Calea de fișier pentru programul pdftotext folosit pentru a extrage textul din fișiere PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -173,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -192,21 +193,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Trimiteti documentele pentru OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -215,11 +214,45 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + #~ msgid "Delete documents from OCR queue" -#~ msgstr "Ștergeți documentele din coada OCR" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" +#~ msgstr[2] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_2" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" +#~ msgstr[2] "3d821f1679e8cdd3b5844ba5a01a969b_pl_2" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -288,6 +321,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -352,11 +388,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -413,11 +449,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.mo index c82cd3084c5f74b4a7259aef0164f24dd23bfe1d..fdd44c76d07d45d740a16b4dfca99cb6750f3403 100644 GIT binary patch delta 637 zcmZY4IZFdU6bJCPiDy*sK0sjvAypt7qeZas=tL9|OF?vuDcntVCqY5*0%IpZtVBUS zK|EGGV_~6Q{9_~7kt_RX6s?YpdAd8seiB}6r{9l4CGLp~!_FpVe- zJ7GDTgcWcK*1#wnfl26v_plW{z$W+#E8z!J`;sSbJ#6vN3Uy(i4(KZ(YJ`b`o3IW4 zdr;lbfqpn#N;Cm&*bN_H1N?-|u(m9JfFI&a@*%PGJJdx~s0XMA;|lp#Rbhzrgf-vc z&FuGg44Q`EhM&+AuIQEqH{5g8ENi zNRR0H>6`YX4IIjxJd=*QD$nJGyuqJC@^3LKZ!v-55x8S$&dDox1Fep{b=PI~^xfO2 zCFFs-g@$8!C9_Q4VZRH2-fMTmO{-qaqI9Cpa@W)kq2@4rvhq^h0izuKHn`iY_yYAYKW?@<4nKh<$UWKl*(IhWL&)RI(%l>Fq<+|<01VuiG#{9FZp=OBf`($vz)#f-U=RhWEuO?3?{ zb&X6E49%>J%qQ0}Ny9}9Osxz}H!o#6%V@Ls!j=mgF6_Rr^}^l@J1%Th0CM+T*mbe_ n!XA*&#U>zclLAm?yTXNi7uzpvz1RR0-*RCG$hys2SVR~B=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -40,19 +37,19 @@ msgstr "" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "версия pdftotext" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "не найдено" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "Ошибка при получении версии" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "tesseract version" #: forms.py:40 #, python-format @@ -61,9 +58,10 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Содержание" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -85,7 +83,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Тип документа" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -121,13 +119,14 @@ msgstr "" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Содержимое" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,15 +153,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Путь к файлу программы pdftotext Poppler, используемой для извлечения текста " -"из PDF файлов." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Путь к файлу программы pdftotext Poppler, используемой для извлечения текста из PDF файлов." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -173,6 +172,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -192,21 +192,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Отправить документы для распознавания текста" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -215,11 +213,47 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + #~ msgid "Delete documents from OCR queue" -#~ msgstr "Удаление документов из очереди OCR" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" +#~ msgstr[1] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_1" +#~ msgstr[2] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_2" +#~ msgstr[3] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_3" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" +#~ msgstr[1] "3d821f1679e8cdd3b5844ba5a01a969b_pl_1" +#~ msgstr[2] "3d821f1679e8cdd3b5844ba5a01a969b_pl_2" +#~ msgstr[3] "3d821f1679e8cdd3b5844ba5a01a969b_pl_3" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -288,6 +322,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -352,11 +389,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -413,11 +450,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.mo index 715fa6de2e810b8e684fd8c997d8df5f10c1d9f4..b11f93df0e24cc1b3b8a0c2f913a67d2f4949f12 100644 GIT binary patch delta 236 zcmbQh+R9dcPl#nI0}!wRu?!Hq05Lld=KwJXbO5ml5O)GGNPHg|zFDpwL8jdpYO)ypq(s5(X$;%;1ur zT$&3MQ7EY_NS)Z~%WI}EO3{bk5!6iSrG#4nMP*PctI&o^CshO^Uv96J!f}xp}36O1K zV89jNuN#zFmRX#cpQr1RSdwa`U}RtjQ)gsoWoWorn$e$8*YDx(nVAYHrFrQLNKEg{ Yhr63g6-o{-$W+JyvfE1;{GEds08mUnXaE2J delta 150 zcmeyz`i>>xo)F7a1|VPtVi_Pd0b*7l_5orLNC0AxSRxRE)Jy~7S&Tpoq(S1QOc3!b zAPp1-10WNu7Q~r6o5^hA-vC}yT?0#9BNGKfGb, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -60,9 +59,10 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "Nội dung" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -84,7 +84,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "Kiểu tài liệu" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -120,13 +120,14 @@ msgstr "" #: models.py:56 msgid "Content" -msgstr "" +msgstr "Nội dung" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,12 +154,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: settings.py:22 @@ -170,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -189,21 +193,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy -#| msgid "Submit the selected document for OCR?" +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "Submit documents for OCR" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -212,9 +214,45 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + +#~ msgid "Delete documents from OCR queue" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" + +#~ msgid "Submit the selected document for OCR?" +#~ msgstr "Submit documents for OCR" + #~ msgid "Text from OCR" #~ msgstr "Text from OCR" @@ -279,6 +317,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -343,11 +384,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -404,11 +445,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.mo index 61992f94de8f3b91c7ac55cf26d6662e20349368..d6ac5eb5b6d66685e3735b22ad19e9d086c9e0e1 100644 GIT binary patch delta 551 zcmYMw&r1S96bJCPYG$THLJ(QB*8;;e^I%1g9qQnrKOuA#5ADi2{W^KcEF>k?q(Fj* z2qK~git5;((7jHp1)Vx|=+JlEWqa`W%)H&VZ)VRuO>gln;5sCPA32QNM)o7WkUYWy zQ4~tB8)l#fDv8%(j zX%zafpN8{r5st%(RlkQp>|bC2zC%9f8}`9pOJ5fe#!xR3rA~M$VlH?CzYPz5J3bKa zcMbx~8$tdD^ciPtB%vxyRv1|pXhBV_t)e2bt-S6Nnh9CcR87pvjOCQ9xGrmjoT`wb zGBKmBDQU{5GfZXjCbOS0xloX`m6To4FNCB&779;>B9bV@;?bBcID&R1BE==?Zp^VH z3>iBm-T8(n+^sIgRY@Af|edp2aNA%?ce)_B*Q>%Gt)DGI!oBxBD K&&fW9wf_V61$rI; delta 299 zcmbQkwUnd&o)F7a1|VPuVi_O~0b*_-?g3&D*a5^QK)e%(<$?Ge5c>i#A0q>U9*~X! z(#$}*8%Rq4>3$$R1&CJwF-V^+P*NI57XfJ}Al(O~wSe?RAkD+TV8-wVs(_P)fdQxo z>=2+37yyMB*r04yD9r?-C+jj=%DJTGq?V*Aq~s@;=BDPA6f2|^<>xB+I|nHgmZp|Y zZf2Y_Iho0a*HqWQQrE~t!O+ag$b9l1CTX~cfvJ_D>E, 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:15+0000\n" +"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -39,19 +38,19 @@ msgstr "" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "pdftotext版本" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "未发现" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "获取版本出错" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "tesseract版本" #: forms.py:40 #, python-format @@ -60,9 +59,10 @@ msgstr "" #: forms.py:48 msgid "Contents" -msgstr "" +msgstr "内容" #: links.py:17 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -84,7 +84,7 @@ msgstr "" #: models.py:16 msgid "Document type" -msgstr "" +msgstr "文档类型" #: models.py:20 msgid "Automatically queue newly created documents for OCR." @@ -120,13 +120,14 @@ msgstr "" #: models.py:56 msgid "Content" -msgstr "" +msgstr "内容" #: models.py:62 msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,12 +154,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "程序pdftotext文件路径,用以从PDF文件中提取文本。" #: settings.py:22 @@ -170,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -189,21 +193,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#, fuzzy #| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "提交扫描输入的文档" +msgstr "" #: views.py:109 -#, fuzzy, python-format -#| msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#, python-format +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "" #: views.py:132 #, python-format @@ -212,11 +214,41 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" +#~ msgid "Delete" +#~ msgstr "delete" + +#~ msgid "Re-queue" +#~ msgstr "re-queue" + #~ msgid "Delete documents from OCR queue" -#~ msgstr "从OCR队列中删除文档" +#~ msgstr "Delete documents from OCR queue" + +#~ msgid "Make at least one selection." +#~ msgstr "Must provide at least one queue document." + +#~ msgid "Entry: %(entry)s deleted successfully." +#~ msgstr "Queue document: %(document)s deleted successfully." + +#~ msgid "Error entry: %(entry)s; %(error)s" +#~ msgstr "Error deleting document: %(document)s; %(error)s" + +#~ msgid "Delete the selected entry?" +#~ msgid_plural "Delete the selected entries?" +#~ msgstr[0] "c3d93a17e46abf97b0d29fdf9a0bf689_pl_0" + +#~ msgid "Entry: %(entry)s was re-queued for OCR." +#~ msgstr "Document: %(document)s is already queued." + +#~ msgid "Document version id#: %d, no longer exists." +#~ msgstr "Document id#: %d, no longer exists." + +#~ msgid "Re-queue the selected entry?" +#~ msgid_plural "Re-queue the selected entries?" +#~ msgstr[0] "3d821f1679e8cdd3b5844ba5a01a969b_pl_0" #~ msgid "Submit the selected document for OCR?" #~ msgstr "Submit documents for OCR" @@ -285,6 +317,9 @@ msgstr "" #~ msgid "Document queues: %d" #~ msgstr "Document queues: %d" +#~ msgid "Document: %(document)s was re-queued to the OCR queue: %(queue)s" +#~ msgstr "Document: %(document)s was re-queued to the OCR queue: %(queue)s" + #~ msgid "Document: %s is already being processed and can't be re-queded." #~ msgstr "Document: %s is already being processed and can't be re-queded." @@ -349,11 +384,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -410,11 +445,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo index b71b05e761c15aa488202e04b1de44f17a2d5b52..941d2c52e59b4d86713e2976e41f013e61e3705c 100644 GIT binary patch delta 449 zcmX}oze~eF6u|Mj^rESzibW|xi$9i5g{GB4Gr4qiaMMK`iWZa(f} z?C5_W4s~k>brJC|&`I(8;^~8z&%Ipo-X$NwTe|a{H9bX4lXo>Ftv@2OwEQTAu) zCXE+R2Gw1?ic{2^xP&dYe})WF=dQlO0`(30YDcMi7BXmn%uPZXQ6|ATl0mNgN4`cv z{+vXbq>E;~z1OstdLyir%GFXOT8wJ(iVeJc g=I=%&ip$l0~JM2IFPm~a*Ziz9FWg3uTXD|XN>TGF!MueT2Jsh1P$K zIUM6LPH`XSS^XX>?4QuiFY!m**uC;_Na1lO^#yIf3T@zLwqIkJ{U1h{^Xb4QTHgpy z@Dgp_1VtmM#`bIW$$*5!u5DKkPH2ghW^VPx# diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po index 231cbdd567..fe8b3f9dee 100644 --- a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -47,11 +45,11 @@ msgstr "" #: links.py:30 msgid "Edit" -msgstr "" +msgstr "تحرير" #: links.py:35 models.py:91 views.py:134 msgid "Roles" -msgstr "" +msgstr "Roles" #: links.py:38 msgid "Members" @@ -67,7 +65,7 @@ msgstr "" #: models.py:19 msgid "Name" -msgstr "" +msgstr "اسم" #: models.py:46 msgid "Permission" @@ -127,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo index 20eed7c5ba2465d3bacaca497a3da36e1a40e917..303974018b1e0fecfa3b5d71db419115f550baa5 100644 GIT binary patch delta 452 zcmX}oJxIe)5Ww-5^wp*{RV-2!s+1xMLZoS>Lv~jO7j+aVRZ!e?vxtjZ!Pi2&2^|Fo zMNkx17l*hCIynnYodo|EqX+kX@A7fEmrlB!X};%lM-iiBfozi#q-(Jd+vws>>;Y=( z6U^W#Ceh#+_HYODtnApHvsfzTESK_?gYXiRAL ze{h%f_Ey91K@a@++!*&&kRo{`$7DsULfL*R?W|y${uS=yHQMGbD-Jt;=$ww^OefOSrId9o{Y)dOwxhTn)|#DI ghe7d(M#~!2MklU)KL_`sNk7q<@9CFM=)W&)00ST, 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -46,11 +45,11 @@ msgstr "" #: links.py:30 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: links.py:35 models.py:91 views.py:134 msgid "Roles" -msgstr "" +msgstr "Роли" #: links.py:38 msgid "Members" @@ -66,7 +65,7 @@ msgstr "" #: models.py:19 msgid "Name" -msgstr "" +msgstr "Име" #: models.py:46 msgid "Permission" @@ -126,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo index b130d6c265f432f42974ac44565182390262fe97..1f84bced9100a52eaed0d973e88c36d0697d8484 100644 GIT binary patch delta 467 zcmX}oJxjx25Ww;0Nuo_PRjh(2EtD=!#io@E8QeOEAR;(8NwJ|uD`F7GcF@699y@e) z(@j5tyNe${CqIKuzWgsn4=%r4UhXcrbxnToT6Bhrm?lf)H91dungg+q9>$qx=un^I z1YY788l1rqj^iCJ;62LoPdJIs+5HzRDm74VoJfNYl!l-9PP*3b;BQ;00@ppd34#T>aqeS(%=G_n}*bsX|P8+C@cSwuaS^H zCy^&*pnQZZC_`nCEajTAu9{G{oQ?KTWcqr^**fk;=0@*$L9O1bHT;Snge%6iN`=1* q4L__mAAIXd=eCom6Q9QB(O$LJXz*p1=cIw!OrmZt>a-6kiIhK2(li_Z delta 377 zcmbQtxr(Fyo)F7a1|Z-8Vi_Q=0b)TQz5~P{puh-`Q-sobK$;6EZVjYafwUWt2C4S} z(riFF4oFJ^=~N)i4W#R#;@v=62*{rVq(Sw_fDDl3%b6J%c!Bg5APwRl z0@5G@&jV>bAbkx;gDiXsq=kX>Yaq=Ir2j+3*;yd^d4V)Yy)=+!oUF(wtP3&?WF-?2 za{w{O6p+(6ff!^02mlo`01aYbn4HR}G`WY-Ve&;rwaI@O!+A_~4J>tyOcV^wtc)fn zFv;)&1uQ@U2Bua, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -47,11 +45,11 @@ msgstr "" #: links.py:30 msgid "Edit" -msgstr "" +msgstr "Urediti" #: links.py:35 models.py:91 views.py:134 msgid "Roles" -msgstr "" +msgstr "Role" #: links.py:38 msgid "Members" @@ -67,7 +65,7 @@ msgstr "" #: models.py:19 msgid "Name" -msgstr "" +msgstr "Ime" #: models.py:46 msgid "Permission" @@ -127,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/da/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/da/LC_MESSAGES/django.mo index 01b22a779bef53087db7b1f4d0e1e75d1346ab3d..4fc72c4848ae39f5c9ef86c7cec394f774373051 100644 GIT binary patch delta 133 zcmX@c{DL|3o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlL9!3U+Fev{qkPSp&0MZKw ueu=rM6D@ps%ybQmb&U)a49%=eCQg*$h4GCHtqhDe?&4u&^-C`2C0F8iJ`tcrn&}}x<)1n ahGteq6W7V`0{IpozJaNgk>SScJd6NJqYd!@ diff --git a/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po index 8893ad6f54..e3fcf682d3 100644 --- a/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -65,7 +64,7 @@ msgstr "" #: models.py:19 msgid "Name" -msgstr "" +msgstr "Navn" #: models.py:46 msgid "Permission" @@ -125,6 +124,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,10 +161,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -180,17 +178,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.mo index 5611f51b681a38adc472a206972cb8b8684f0a55..8f250d8f0e8316822fbe2c9bc273ae5ac6379ec1 100644 GIT binary patch delta 43 scmcb{ca3j@JqwSSu7R, 2015 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-08 23:05+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -128,6 +127,7 @@ msgid "Available permissions" msgstr "Verfügbare Berechtigungen" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Erteilte Berechtigungen" @@ -164,10 +164,8 @@ msgstr "Berechtigungen der Rolle %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -183,17 +181,13 @@ msgstr "Berechtigungen der Rolle %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.mo index da356d5fae48d6f66f046bc007054c8ac2ac3e0e..3aee406127bbe21aac0f489abcfa9c147912d0cb 100644 GIT binary patch delta 25 gcmX@lex7~9A4VQCT?1oXBSQs4Gb@wL98AX<0cxEGHUIzs delta 25 gcmX@lex7~9A4VQiT?0#9BNGKfGb^Lb98AX<0c!OJJOBUy diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.mo index 9fa18227f044b7f558fc7b2635e9236d76dfe502..1841212a24d332480c11f6437b43bee80a625814 100644 GIT binary patch delta 43 scmeC@?dRR_ftkll*T7iU$WX!1%*tf)A7&X|n1GR?m4WeQRhBF!0003BtN;K2 delta 43 vcmeC@?dRR_ftklt*T7QO$V9==%*tr;A7&X|pnwHPz`)eX$Z)eNOBNFV0W=D` diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po index 595c21c55d..a1460e8a96 100644 --- a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -128,6 +127,7 @@ msgid "Available permissions" msgstr "Permisos disponibles" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Permisos otorgados" @@ -164,10 +164,8 @@ msgstr "Permisos para el rol: %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -183,17 +181,13 @@ msgstr "Permisos para el rol: %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo index 9d09aaae7aa360e31f518bbbcd52342c56bcc968..db8dc57983b99d0141257760862e34b441774f9c 100644 GIT binary patch delta 43 scmX@leV%)R3p0, 2014 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -127,6 +126,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,10 +163,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +180,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo index 5eee355c621201a4ae1c7a12885bd89b641f5ca3..ea1cab55463a0154a8a5d1fdacff5a7ae7fd5367 100644 GIT binary patch literal 1877 zcmZXUONbmr7{|+GeT|QpsELm#1ro@jJ&(;2L$ABK?#zaTOtQ?50Z&rXT{BaryQ;0K z-pw98iU@k}EaV_4=s_fS6c)jg;32o*!GkD>7cYtj{eLwxyS-~MUB7z%zeiQgPp9TS zW+>0$JBx4b9>(Uu-$5!L9%Jk=@FVa^@D_Li{04j&{2sgyyff|J1?SNJ4XlBGfcJub zgD1g%!N0C)zZ zeH^6uMUd97fTzJtkm4AD&w>V|_3wjZ|C8zb=OA2QUxBp$HW=~?;>YfwdLFzBlHNZc z#d#bZxWrC_wC*fOc3+tGW035vf^?*Gc4UWgL;D}WM}CnnbiT7f_kqrXv?;&ULi!Xt z6}mIzC*}BPp*ScfFuh;M7xI(NBIFUId_Ris8GLMYTc}J7GRa5Ql!dDd6w>C(Ic2nC zYgP&`xt2TJnoQ36)OM^bGwJ0NVcxM$s(h%X{mWKp&qB?s!eK z&pEcCT{#@8L`m(dTk7nJ7|4uuWj>JBv8y7Np>l;tB-`ANq|$WNHXj;$V5TRx%?-&W zsM=vY3ZAN2xbj9i zqu0xki~1(!wash&C?p;0qc(CM^Mz*XV${44Ewp&+V!Zfr)Ld*fu`q(4igf?KZlM)7 zFTB`9sa+AyM}3@v%Y-*J=KZmf*6#AHWNf_Wue61|flt0xI=ETa#>yhwt&fx+mxFp@ z@)c<4Q7J|;>PwNweBDZ&jQRPo_eI=j?Ck8+JsD6#d6PCYtZ~9BV;ece8_6_xjclsX z7}~~st-I0f9HgaHZ`Rg~_Bh?Bzgr+?FK_xrkqM=jcrq5&Nx%F?e?7W%u#PMarHwi| zF{#p{m|q$wzwc|zhqktvl~!cYy0N*7xh_K2EiWwbNptzU<}184zf{8&#pRQZr^*#Z zE4+-u7o|GBX7@gmmY14qQ*KL9a=Z6+cpYIpg-jT5Y^y8^t8!@%TD&sdh37*Y2b(oG z%+B_%dT-UB#BAGW4STdPwMO~Fo{1zeHicz33t~o2>G#l_Nb>NO+ChP<$&+$e;Mm@K zUcFOFkJn63$wKO?$yp~nBiKcpd5#OfR!iI=<%GwzV-uxAq_Jz}pXy|M^m%4!t7 ZkhM_b52zxIIA=MX&C>H9BMFrR{Reh0-VOi& delta 645 zcmX}p%_~Gv7{~F$9e0LdypvL1v(c?FjF^(8!eYY0LTQvVC0BRG#)hyF8=bI`tZbBp z4IBOgN-;}2DP?D&Y}j9*buE`JNZI(kcVYlh)B6H zwOEPO*oH3lmF_(Zai78}9LEZr#ClAl)-PcjW=qd^F>K71*=L{)j<6C>P#axf6t7Sl z++qVhpw>TQ9TrdpKTz*|;Q`J6pgwAk#cJdXwf{9X;T=Y(Zyp&mGEpck_(Z+%jdW;S zcGvS5sz5ht-a`kIsP&_$6PiLbJdawph-!QV`I${FEx3&?_01^*6*xzoy2grTlBxet z*9sL?A$`31-3Vnh@1WGXSxA1A7&Gr7Ds7i89QtC_qXq&jE(rR5;+ gV=fb9eS05zw@(#2?nJ=$%XZ(LwZCqc?FlFT04>)>X#fBK diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po index eda4f2fd09..a0d37d0cf4 100644 --- a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po @@ -1,24 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: -# Christophe kryskool , 2014 +# Christophe CHAUVET , 2014 # Pierre Lhoste , 2012 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"Last-Translator: Thierry Schott \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -111,29 +111,30 @@ msgstr "Retirer des droits" #: views.py:45 msgid "Available groups" -msgstr "" +msgstr "Groupes disponibles" #: views.py:46 msgid "Role groups" -msgstr "" +msgstr "Rôles" #: views.py:56 #, python-format msgid "Groups of role: %s" -msgstr "" +msgstr "Groupes ayant le rôle : %s" #: views.py:79 msgid "Available permissions" -msgstr "" +msgstr "Permissions disponibles" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" -msgstr "" +msgstr "Permissions accordées" #: views.py:93 #, python-format msgid "Permissions for role: %s" -msgstr "" +msgstr "Permissions pour le rôle : %s" #~ msgid "Permission holder" #~ msgstr "permission holder" @@ -163,10 +164,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +181,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo index c2afd8e7577191302789d26ab9375adc3ab5c10c..59194bf500875008c030a6cbb9799ee512b38928 100644 GIT binary patch delta 43 zcmX@fe3E%WE03A3fw8WUp@N~AmC3}3OL=?}^U_Nb(^IV!GD;_#GDc6H%cuhYDgh0& delta 43 zcmX@fe3E%WE03wJfu*jIiGrb-mC?kBOD8)sM)CM0=B1Y=rl(pdWRy;x!>9`YDF+S5 diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo index 8d0f0c5f39951a08eea468cb1f63cb2b7428aa5a..f0f5c85b318df00798175934d5df415c5f000b38 100644 GIT binary patch delta 43 zcmX@ie3*GcE03A3fw8WUp@N~AmC3}3%XoYe^U_Nb(^IV!GE*j-F-A|G$EXSbCzB17 delta 43 zcmX@ie3*GcE03wJfu*jIiGrb-mC?kB%O<-pM)CM0=B1Y=rl(pdWTs4>%cuqbCgu&N diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.mo index b4e72f047a406dd4c2a8e6c053f5097e4328aa66..35e4aa484db9c120042d8f13d57ed4a1596b1db7 100644 GIT binary patch literal 1871 zcmZXT&u<(x6vqvu{8*r+rThlT93nNM&i-gs%7g%IvJH{CB??Ohq`z_b|2u{tZ(3^ke}WD07I*}_ z4IT&o2OkHI-#6K}2%fz#9Y}hA0%_fEAf5jgNOu0M#z$}{ zjgNtJ4hL!fX^{MR6U4^`XikC}d=mT+B)iu^^7C^LCfQdYo%1ai;tW2B@ePpf=O&1c z-9kft{|C~(qcB1`PJ(n#iy*CA0qLGDf^?;16Rw8XP@En`CB3AD_Du`D2hvZr>705Y z{iKNsX(IdN`+TAJkuNxURw%}#D`*Ar9N1H+M^T?eWf#U$r*e=go>)^BuJ)r)Hq*{& zlRLI%mGp||YL8o!s_B^ej;*Uyc~v3IJJua)ADU{sVP)=FXnEam_@jn%|ALZ@Ac&h$ zFcI-Z$2N0Ujz&7xD);p*%j~iosFd|oHc-~FD>74|afOT(+nRY&>$-ZMkBmJyW?PNT z2Z~KlKZk9T^VCek75a6D=!auFx{4G|vF3dhd$BnbJJ5!3M!YAl$((oBdv7D4h*Sv3aEKv=AHSyE_E1frz3{PV@HrZ>~oF}DB zl;|s&MSRoCRKtN&yWSU3v$?mox9rKZ9;vIeqiKzUNn@KCc`DQ}bIr6e($v1W)aY&Y zx(5MiFSiv|pUD(^`U63D{sD<)HD zkw%jYx+@HrnOd3`f=sBLM+p?mkVo+Luov4DwVBi^28Uu^#g-OB*^U}Qe-+6)RwK~U delta 517 zcmX}nJxjwt7zglc6VqC2(GF5+hbxGSRN81onY0i5`Ek#^f9CqB-cR0qB&aM>LT-?0;#hyTYKpPg}HPja< zI0K(x8otK;cUZvq1M1IwK^*wjR3Tgc~j>oBiRh~TJ7w&K&`2&y8T`~Xw diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po index 3b698aaada..fe71aa95d5 100644 --- a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Giovanni Tricarico , 2016 # Pierpaolo Baldan , 2011-2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"Last-Translator: Giovanni Tricarico \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -38,43 +38,43 @@ msgstr "Revoca" #: links.py:22 msgid "Create new role" -msgstr "" +msgstr "Crea nuovo ruolo " #: links.py:26 msgid "Delete" -msgstr "" +msgstr "Cancella " #: links.py:30 msgid "Edit" -msgstr "" +msgstr "Modifica " #: links.py:35 models.py:91 views.py:134 msgid "Roles" -msgstr "" +msgstr "Ruoli " #: links.py:38 msgid "Members" -msgstr "" +msgstr "Membri " #: links.py:43 msgid "Role permissions" -msgstr "" +msgstr "Autorizzazioni ruolo " #: models.py:18 msgid "Namespace" -msgstr "" +msgstr "Namespace" #: models.py:19 msgid "Name" -msgstr "" +msgstr "Nome " #: models.py:46 msgid "Permission" -msgstr "" +msgstr "Autorizzazione " #: models.py:67 msgid "Label" -msgstr "" +msgstr "Etichetta " #: models.py:73 msgid "Groups" @@ -82,7 +82,7 @@ msgstr "Gruppi" #: models.py:90 msgid "Role" -msgstr "" +msgstr "Ruolo" #: permissions.py:10 msgid "View roles" @@ -110,29 +110,30 @@ msgstr "Revoca le autorizzazioni" #: views.py:45 msgid "Available groups" -msgstr "" +msgstr "Gruppi disponibili " #: views.py:46 msgid "Role groups" -msgstr "" +msgstr "Gruppi di ruoli " #: views.py:56 #, python-format msgid "Groups of role: %s" -msgstr "" +msgstr "Gruppi del ruolo: %s" #: views.py:79 msgid "Available permissions" -msgstr "" +msgstr "Autorizzazioni disponibili " #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" -msgstr "" +msgstr "Autorizzazioni concesse " #: views.py:93 #, python-format msgid "Permissions for role: %s" -msgstr "" +msgstr "Autorizzazioni per ruolo: %s" #~ msgid "Permission holder" #~ msgstr "permission holder" @@ -162,10 +163,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,17 +180,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo index 70dfbf4f73047eaa3317050a1a51d1407ebc5f33..25de62a202447309361c33090c1a131e2eaa395a 100644 GIT binary patch literal 1513 zcmZvaPi$009LEO))D;j>K#3+ph)Elr?rtG~uc-;p(rnT#O!pEqD-YfFFU^!H+==vfTju z47>xr3;qJK{e6(_AA%o%k3iOc3LXc416l7cko`XcS^sbF0do8YW^3IX=hW{_x;>KEyoA8w{=k z?I`=kd%ibud0U%Iw=Jf5)|Zf6M}Izh^wA-B5kwzHFmQxc2FQfg6 z*EWiBmD7$&38iny%E%2H2Ai9vW5~wo^EuI^yiGocHJy`KpQJVQ8^i`}yFQIDZ7w#D zbh!j^)6j5~;JSBP)QPH*s+;hQDihh%x3rbZOU>^p8&o(SRWo!=s;&&WLA6{WE9=)= zs_X^y)e>5g$oX3Rf~uWU^L1Ijket7$YUgV;C@N%R*zaDw`Fc`2_f-v}vZ_N=Ei@}+ zIy#@o4Tn;r1B3R)LBVzhx=X4>I#1-%Aa;6kW{qNxe5P$0X5~yT#v-X!hr{7qWLIXB zcIG-Rulm`v(a4M?LmF6R=MhI#3iWKtpWu`+KJU7 z)5b2yPEY$laq&j$n!2>B$3ZvAt7Y49sj=NeUTT{-$vu%}tjc;e@H$i1oX-PfMY#=& z^9%Cz@8XP=XBK6BcA+A!Q0VkbzpZ`wG^rr_KiT+E;XQV#?FXihTg3a!$V#nkuKO^+ z%?{00N`9}-_V@^DZ5oni{kM54bO<k9#XPEAqh=z@x`kdWVWHS-2Oc%eW0JN-cw)*nT!o(|D C5r<;{ delta 442 zcmX}nze~eF6bJB2nrLiAunJlc8wVYP$R#vdqfQnl#p2>7L^vcSrjYn!5i%;cc{mG# zE`kXD0gldY9f~e4PR>sHeWv>0@yT88y?ggjx;3)bvUbT3{m60T333qGK~k7X{%^AD zEG%Mw5$bRi()l&m1GixX3Rr?!cmEugvA%#*e*>=+mazwXP(ibh53mQvus($byoN*Y z4)($)NP|8@YV;2K;3pi0UvLBtXpEut?@-`B=%G}nA`P~bzk(*ECUgM>Y8m?Ev62Y? zK$uA@5-DqlNc=72vN|n~)vCOQZ|auoT71EBYNkEsIrA2;ab9e0SexP~NP|{vHPFU0 z9d6@Xoz8LBbL_{kP*p0sVkbEaLXo7nClayg`|-XXideR_3Hhzn<+?s4&-5AjqL2On D=RZPN 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 ebdae352a4..db74e4e1f2 100644 --- a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -42,19 +41,19 @@ msgstr "" #: links.py:26 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:30 msgid "Edit" -msgstr "" +msgstr "bewerken" #: links.py:35 models.py:91 views.py:134 msgid "Roles" -msgstr "" +msgstr "gebruikersrollen" #: links.py:38 msgid "Members" -msgstr "" +msgstr "Leden" #: links.py:43 msgid "Role permissions" @@ -66,11 +65,11 @@ msgstr "" #: models.py:19 msgid "Name" -msgstr "" +msgstr "Naam" #: models.py:46 msgid "Permission" -msgstr "" +msgstr "Permissies" #: models.py:67 msgid "Label" @@ -82,7 +81,7 @@ msgstr "Groepen" #: models.py:90 msgid "Role" -msgstr "" +msgstr "Gebruikersrol" #: permissions.py:10 msgid "View roles" @@ -110,7 +109,7 @@ msgstr "permissies intrekken" #: views.py:45 msgid "Available groups" -msgstr "" +msgstr "Beschikbare groepen" #: views.py:46 msgid "Role groups" @@ -123,11 +122,12 @@ msgstr "" #: views.py:79 msgid "Available permissions" -msgstr "" +msgstr "Beschikbare permissies" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" -msgstr "" +msgstr "Toegekende permissies" #: views.py:93 #, python-format @@ -162,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo index aade1cd0cf77d2bf6e07f159ddf0ed19840cfbf8..68b4695b33f2258d8e08c36f029099e33c0e3f1c 100644 GIT binary patch delta 568 zcmZ9|%}N4M6u|L2jUSm>X$&El3`DdN{0J99izsRlMAQ?EHH#q|MJ-bZ7p+>g7!0By zg5JPah-%dv)Glb%vW=Vm#}uT4cYfD%&-EPVHTW3ne8hcSMa;62tUK1c>@^<585-Ea z0A8UFuhEaU7{dpg!yZcA3nuUlrS1!Z_>FS^2d9+ks6Lx8iNM6)#W+eq0-rfcp$zb; zD>aFIlm6MrpW;DO^XnS3>D?G(2w(zIT*5A0Awy{9qUPsCyptSM*m= zmgFRudeA`LnADGAdbp7$67p{)BCHvf3@yR@gMrlAspZ7VR;g^8Rl9cV)ay>gt$U_s zELv`3Jg2s5WbDK7oR`z~^}R~jyU=zbg>)vL&SlMPp}69`Ysu&+k;@h{`CedRQ!_Ry r^~Tdp)wRu&YRzi8j_o>@x2-QMNw=|_+O4%)ZP)r&Y3m1m`dR81%u!Y? delta 388 zcmX}nJ4*vW5Ww-hhsH!3?Sv4{&Sqinyz_C5P1Gi!_-Mq!h^rig2=TBIQ(0M_)>?=k zKzqyJhY-JrjsG#L1H~x&Bcbe$9msikKmr}aV2F!2f!eJv z;XHNj*7vbSeTdS3f(<;!X&j);yTOsChU%7&DHb}xc;f);)JG^kI>Q$BQ2Opr2Hm^; zCs)5XUs2A#Bcp$3z<, 2012,2015 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -83,7 +81,7 @@ msgstr "Grupy" #: models.py:90 msgid "Role" -msgstr "" +msgstr "Rola" #: permissions.py:10 msgid "View roles" @@ -103,7 +101,7 @@ msgstr "" #: permissions.py:22 msgid "Grant permissions" -msgstr "" +msgstr "Grant uprawnienia" #: permissions.py:25 msgid "Revoke permissions" @@ -124,11 +122,12 @@ msgstr "" #: views.py:79 msgid "Available permissions" -msgstr "" +msgstr "Dostępne uprawnienia" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" -msgstr "" +msgstr "Przyznane uprawnienia" #: views.py:93 #, python-format @@ -163,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo index 06455a11956cc495597a6dfcef551dfd167f3f61..eb87ad591066f31ceb9b3e8aadd5afe3aedee309 100644 GIT binary patch delta 668 zcmYk&yH6BR6u{v#JInjMkSL1D#KsUHVZl%=HY#Xh5DYOS#8}LP3z=kgXEVcMVd7Fz zQIOpD7g$(nvs&3;wzV?U(h*~+4JE%bnKj(Zoo~*4opa|;&tZS_SE=}3Xyf!L`WN~g z`kKRwc8a6;9S89zcH?;-Utp2=ANJ!VcA;Ak8N)u*^|x^n@1o8>z#fsNJmNzSc!mSG zfx6)pmM}ow&_GS_7EefWgj)0sHjm&8_Tn;X;uX|$wootdI-jrM1o4|}zA19d$1Mgd z^2ldiR3@!F{)SrEX+Hh~HSrnt;cpzmzertK(OQ76VJK@_pq|lbTA1#Ym-&cRuD{pK zW4*C9Eo7Lk2|A67XE)MV|A;(1@WaRtBIE5PaigAE&zUI6iiym=@sc<)sjTjV`?lh& zme%~hMDpBJ1Cyk(?pKX{=iDo9vdVsNwg;Ey<`?G{%3gV?a^LnAriMBL3+2lEVyj#j zb!ML?je4AVJ7HRnYwb@5CQRjV68ed^+o-iaw!dn^D6EDxKd~>|NgKGEW9xC%WOQI*mLN*YjU{wezwtJUw=+GY! zU4!Z_cmBKPf6j^5mAxlL3)(b@Z+>ri+*15PFTs8fc`PDUZ zV6B)N>m*evmbQxCx?A3;dS+?YiFV TG$uOc)IKsjdv*5MpXjPTO9DEd diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po index 235ab5f24d..3d80d51389 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: # Translators: # Emerson Soares , 2011 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -44,19 +43,19 @@ msgstr "" #: links.py:26 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:30 msgid "Edit" -msgstr "" +msgstr "Editar" #: links.py:35 models.py:91 views.py:134 msgid "Roles" -msgstr "" +msgstr "Funções" #: links.py:38 msgid "Members" -msgstr "" +msgstr "Membros" #: links.py:43 msgid "Role permissions" @@ -68,7 +67,7 @@ msgstr "" #: models.py:19 msgid "Name" -msgstr "" +msgstr "Nome" #: models.py:46 msgid "Permission" @@ -76,7 +75,7 @@ msgstr "" #: models.py:67 msgid "Label" -msgstr "" +msgstr "Nome" #: models.py:73 msgid "Groups" @@ -112,7 +111,7 @@ msgstr "Revogar permissões" #: views.py:45 msgid "Available groups" -msgstr "" +msgstr "Grupos disponíveis" #: views.py:46 msgid "Role groups" @@ -128,6 +127,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -164,10 +164,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -183,17 +181,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo index a9a53f84b64e2922899694ae0c97b95b5253cf8b..01ed06e07051d192171b32b1cec3f54cdcff8d6e 100644 GIT binary patch delta 43 scmZ3>y_S1}3p0@~ delta 43 vcmZ3>y_S1}3p0, 2011 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -128,6 +127,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -164,10 +164,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -183,17 +181,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo index 6f364e3e116404413338b2734b7f8db23430892f..dbef692ac53b5cbdf2b9e49d87bb605953a37208 100644 GIT binary patch delta 465 zcmX}oy-LGS6u|L&n^aSq`Vqkos8DneltR-=hs-+Y&_P5Hrw%~_6(LZ;4((6`_p7M0 zqno~h;NqYUpd$DJP7WgYKWX&PlixjQ?ztzqa87c)SI<6I#28s5&&X-g)m(^ubTLXj zLYumeBY28gG&q4*ID|Jii?=AxKVlxA)Bj)4Q>v#vSV)5}l!ia}Ksp(vMya2yLE|^f zQGcQg`;Br?p6=u5;V>@X3@#%-waP{MuA@A^g;Thj)O$+BEM&4{9mfs~hX%$%M#fnKv4&4bW%^`gCb*b2?H-f`>YO08V=OMX3A vF;1pf_`6Z{gG%kr&$M(lYHq$is delta 350 zcmXZXu}cDB7{~GFInUC((iEb=;cN&RF7(JKTUrVN=h~#@20;jfAR=&z2%UV1=nrsc z6Z#99!m&LX+TB{Cz7P7skI(x)_q@;D-DRILy|1GGD6D{#$t_tWpTt(EvuBmLJGeys z5Yu>q*5AYhY~cnbn8V(@-p3;6A=>>BzN@rk%w~ncb!s-~9`l@^(FVR?0mrzAZ@7*V zv_ao!eN$Y+AG8A*C~ep 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 b9b97378fd..ed1f6b99c2 100644 --- a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -47,11 +45,11 @@ msgstr "" #: links.py:30 msgid "Edit" -msgstr "" +msgstr "Editează" #: links.py:35 models.py:91 views.py:134 msgid "Roles" -msgstr "" +msgstr "Roluri" #: links.py:38 msgid "Members" @@ -67,7 +65,7 @@ msgstr "" #: models.py:19 msgid "Name" -msgstr "" +msgstr "Nume" #: models.py:46 msgid "Permission" @@ -127,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo index cd5304697be9dee7f7e82bd6f5e134a5625c6f11..cb87697318a01dccb9f4c392a5a83082b3210058 100644 GIT binary patch delta 478 zcmX}oze@sP9LMqJ^vug2{Sd)S1#4+CJPikFX=rI^XsR(nDli&?#tbEJC>oxE+61Ac zMXW$7`U@JK+gfTW=s#$RdVj_G!slMkbI(2Bd+v@x&2a54W}ho+l%&ZSNsx%eh1$Xh zZV%i?n|T96*u(&89LGx>!fQ-o7v=e945K$#f5n(mHTBLw8hoKN{KkY&DTkz(XW1>z z<0P)4G~UArJV6()P!9Tnv-p8>kT}ibn8Gp4;}kBSqc)Y=U?4B3BJb|k2v_#^i*xiF z4W|Fd*GS2qlNu&|A|D|K36dzGt#Wk6n$~4&(OzEPsptc1#$MU2R&?81iWA44W>3N6d$#hM}t9!@#$KMWIm`Cqax9p{0 Mi;M1& delta 341 zcmXZWyG{a85XSL2>#oQx5j63_7A%F`5_S=z*jNz@dplyYrH!#9p(2q;#e@f-pf@4$ z6|~geSlRdxB>X2Z$(P^R*>jnf;;1nEt@<;eN+cu$QXxOYs_r)bqODCV(7(n2duaRb za2NY{f*BTZxb44UmG3Fq`2`+%(w8?DH5#8g8~@NQ5MSgNPBFnY+K?GG@d*!cj{EqI z5q_ZE_m55^cM#htd(tC&#KyMK@+3#B*epCOqM2*x#NFt(JJXfBFLmP9Rh*vJlZ$Su d4_;WNacPZKr<*3rvG?Wl*`I3|-0EXcTLbH1B;x=8 diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po index a5ae61d81b..d395c97ae9 100644 --- a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,17 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -47,11 +44,11 @@ msgstr "" #: links.py:30 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: links.py:35 models.py:91 views.py:134 msgid "Roles" -msgstr "" +msgstr "Роли" #: links.py:38 msgid "Members" @@ -67,7 +64,7 @@ msgstr "" #: models.py:19 msgid "Name" -msgstr "" +msgstr "Имя" #: models.py:46 msgid "Permission" @@ -127,6 +124,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,10 +161,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +178,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo index 512987be65f4292c72206b5cfcb3b788ae24a4a7..e12bcbba072a9323e4252c1c451d91869fd6d674 100644 GIT binary patch delta 132 zcmeBUSZ|d?Q0E1LKXmLKs;*b5j`rit7i{tbSOD=Aprj>`2C0F8iJ`tcrn&}}x<)1n ahGteq6W7V`0{IpozJaNgk>SScA&dYqDGm|< 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 9e723b684a..da026e8de9 100644 --- a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -66,7 +64,7 @@ msgstr "" #: models.py:19 msgid "Name" -msgstr "" +msgstr "Ime" #: models.py:46 msgid "Permission" @@ -126,6 +124,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,10 +161,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,17 +178,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.mo index f8d255cfb72930566cbd3d78b764ae06a7d8e288..a63bcd89d1f00ff5db9171cd9688cbbd973400f2 100644 GIT binary patch delta 271 zcmZo;PgOAl?b3j{#{GAifO5TtIvS%6|;y zzW~y+7#SEo18I;seM}H_vw$=!kiQg2gTz+@X`neq4BLSWPN2XZAPv+91|Y|<0WmX# z%K(%DTMFh*Y*Z6qa81c9Q7FpKNiAmZOUzB3xHf{vOxM6z*T_)8(9FtYvLK@jFHFG5 g(8|DgvlXKmqYOjv!`*8Wp&CODugYVHNX>#apPkbK1W2$RlscU4S mU}$D#G})U`h8HMc0TM7UwK6i?T*7F^C, 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -46,7 +45,7 @@ msgstr "" #: links.py:30 msgid "Edit" -msgstr "" +msgstr "Sửa" #: links.py:35 models.py:91 views.py:134 msgid "Roles" @@ -66,7 +65,7 @@ msgstr "" #: models.py:19 msgid "Name" -msgstr "" +msgstr "Tên" #: models.py:46 msgid "Permission" @@ -126,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.mo index fb66f5cad3f24259725fb11e2aa22d9e41e24bc5..3718f877917f87aa4a016d3ed307556a4811ac71 100644 GIT binary patch delta 495 zcmXxgze@sP7zgm@ew1dXqDur8Ezu-+Dh@*bLPT3*!Bq#DkkFWcQ$!`+H3UV2l~X0Q zv_xYNElq7M;d!>V74&`1#|NJK-1FXh&->iHggW7BH>sZyB92TUUE~zfP;fzPK?B<2 z9*m%_!7+FO6VQd@@D@(PJE+4~$ot>nB>aTD?+Yf0s`QN;ZuAFvqoxj<#ULNt)P}aj zXUGlSr2c>tsJl}8^882q6*Wx5??oW@O$7BO(X1@YL(C9F3|HR7fjNQ!`JM+H1%C|( z|2d8@5@!X&aLtEBk!VXHXGU3%FRhg6vTTWA1H45oWE}b>! z%tA5mgw<4Zw2(E6ncSnPZYYbr`fX?C$Dima1R7o^IHx7utVO} JP5EC04X>C*#&X{6A*JS$U}Sqaw*7gb|3}; z79a-dXJD9|%9u3yI-}ZTW~OjcQ(Xf~T_Y0(Lo+KQb6o=y0|TxAf8C(evdrSl{5)Nk z#FA7i1tSAPpgIeXIs;QHBg4)8Olgc7&*nD2oH>Ev*`y^er!+t*nArTK&*yZ%SU%}R H=OzXKg3>*W diff --git a/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po index 0e358f3647..8aa2bea2b0 100644 --- a/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:21+0000\n" +"PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -50,7 +49,7 @@ msgstr "" #: links.py:35 models.py:91 views.py:134 msgid "Roles" -msgstr "" +msgstr "角色" #: links.py:38 msgid "Members" @@ -66,11 +65,11 @@ msgstr "" #: models.py:19 msgid "Name" -msgstr "" +msgstr "名称" #: models.py:46 msgid "Permission" -msgstr "" +msgstr "许可" #: models.py:67 msgid "Label" @@ -126,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.mo index 267d43200f587d17ccbf2e6278368e97a9c2bf0f..cd8a8a394101de66f96552b3e70808a714961d41 100644 GIT binary patch delta 43 zcmZ3?vY2H;E03A3fw8WUp@N~AmC3}3Yj}JT^U_Nb(^IV!5{o9=Fh);a!dMRg9<2?? delta 43 zcmZ3?vY2H;E03wJfu*jIiGrb-mC?kBYbJX!M)CM0=B1Y=rl(pdBo<9x%-8?`9ySfz diff --git a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.mo index f534273ee898a133475e54448c8e81a8c5e4cedb..3a9dbb8b96b162fbbc24aa1e1d55efaa602120b4 100644 GIT binary patch delta 43 zcmcc2e3^MdE03A3fw8WUp@N~AmC3}3>v?<<^U_Nb(^IV!lF}#JGe%Ed&Zq+bEzb?o delta 43 zcmcc2e3^MdE03wJfu*jIiGrb-mC?kB>nHm%M)CM0=B1Y=rl(pdB&APY#;6MbEvF6T diff --git a/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.mo index cc6669e7c0f380b49012ad4493230eab85bb2f52..ff8730434e95b9b4b93c2001358c83e6a3b57172 100644 GIT binary patch delta 46 zcmdnRvWsOxE03A3fw8WUp@N~AmC3}3C;5F6^U_Nb(^IV!l8WP<94ALIMo&J%SOx%8 CzYi_| delta 46 zcmdnRvWsOxE03wJfu*jIiGrb-mC?kBCnskyM)CV3=B1Y=rl(pdBo)UyIZi&zSPlSI Cdk;ha diff --git a/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.mo index 2f9fceb86e49e73aaa10cad4392e1d22567ea222..5e61b75010af44dc9cf05ee8de774be9de2ce290 100644 GIT binary patch delta 43 zcmcb>e1UmFE03A3fw8WUp@N~AmC3}3Yj}JT^U_Nb(^IV!QW7WIFh);a!l(lPEKv== delta 43 zcmcb>e1UmFE03wJfu*jIiGrb-mC?kBYbJX!M)CM0=B1Y=rl(pdq$EyW%%}?hED{aU diff --git a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.mo index 3fbea127298ab16b164ef3e27ff32a16424cceaa..d1ee36bcae1a59db280bce4e394398ebb8908639 100644 GIT binary patch delta 64 zcmX@ca*Sod2~#s&17lqyLj^-KD-&~F0}}%St^j}CpwzO=;>`R!U6;g?R4WA|14EcP NBSR|#qm6$(839U!5x)Qc delta 64 zcmX@ca*Sod2~$&D14~^a69q#vD`R!U6;g?R4WA|14FPn Q0}BNsV=DvGjek8E0Zd~N)Bpeg 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 2da02c8b3a..c238932c9a 100644 --- a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-08 23:05+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.mo index 07b20890f6b578b27ba7a9111141b1dc859a77b3..66d43ae1f98c2934034e7ef1dfc3b2f7bf077d1c 100644 GIT binary patch delta 22 dcmeyx^owai7mt~)fw8WUp@N~AmC3|uPXJcb2Xz1d delta 22 dcmeyx^owai7mul~fu*jIiGrb-mC?j$PXJdS2YUbj diff --git a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.mo index 04555c277be69843d06ece2242b00f6a95e63740..57cfb072b18af4175c602c97b8459ceaa1efc5f4 100644 GIT binary patch delta 64 zcmZ3(vW8{C2~#s&17lqyLj^-KD-&~F0}}%St^j}CpwzO=;>`R!U6;g?R4WA|14EcP NBSR|#qm6&{838?n5pe(j delta 64 zcmZ3(vW8{C2~$&D14~^a69q#vD`R!U6;g?R4WA|14E!X Q3y?YkQ!69OjeqqS0Y6_6i2wiq 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 07f897299c..4fbea9bc18 100644 --- a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2015 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-24 05:29+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.mo index 29bf0f7de41fa8681b8f6230fe60ed5442529ef2..97bcc529896b51227367d7109a8e97efd433f8ff 100644 GIT binary patch delta 64 zcmeyz{EvCUGE*~M17lqyLj^-KD-&~F0}}%St^j}CpwzO=;>`R!U6;g?R4WA|14EcP NBSR|#qm8$f83A1o5yJog delta 64 zcmeyz{EvCUGE-As14~^a69q#vD`R!U6;g?R4WA|14E!X S3tb}v1tUW%Q_GFFl^FqE!x7j3 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 73e8b1637b..08966805d1 100644 --- a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-20 21:59+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.mo index dd5970f65a11eedd6efcd468a6174216864d0e4f..f41676355fea6809819d95ab19b20a443522703e 100644 GIT binary patch delta 300 zcmaFQe2S(1o)F7a1|VPtVi_Pd0b*7l_5orLNC09%AWj5g4j?WD;3@KkWgPcF?(%_~VP$;{7V2yzV$Q2+`v1Qg{@jP*EKLPFyIRC*9}T7%Pa;e*L6uONwrciGBAXxGcvR?Fw!;v0xqA#;u77E zqQt!7oWzp+A}a;wjH1lqlKg^5CxlLxR_pYMq+7MYKcR7ZenJRUUGh} b9hc8!X2!>;E>uWKRmf2Xxe(-dkaHOTCSgRf delta 175 zcmX@b@}4>1o)F7a1|VPpVi_RT0b*7lwgF-g2moRZAPxlLZbk-%C@B9KkPSp&0MZKs z6N|!3O?3?{b&X6E49%>J%ykV+3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEf$A)DjSLiw q46RHpC;k=Z56VwUEh@=Z2+A)`EXvHE?8^9*(=otPA;>j2gaH6bX&`+7 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 5b531ecbc8..fa7ad58af0 100644 --- a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: -# Christophe kryskool , 2015 +# Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-20 21:59+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 links.py:8 @@ -25,4 +24,4 @@ msgstr "API REST" #: links.py:12 msgid "API Documentation" -msgstr "" +msgstr "Documentation de l'API" diff --git a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.mo index edfd8d0127952e81ba00c1c18c32ba34f0a81280..3673b266691ee23ef291495d7d68617a16816435 100644 GIT binary patch delta 43 zcmcc2e3^MdE03A3fw8WUp@N~AmC3}3>v?<<^U_Nb(^IV!GD;`gGe%Ed&Zq+bE{P51 delta 43 zcmcc2e3^MdE03wJfu*jIiGrb-mC?kB>nHm%M)CM0=B1Y=rl(pdWRy-`#;6MbE)fm+ diff --git a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.mo index de86ae9b1e9e81f93d95551373b4c77cb17ff380..0d04b7c314eba028ed1ea02713390f5ca751e148 100644 GIT binary patch delta 43 zcmX@he3p4aE03A3fw8WUp@N~AmC3}38+d#Y^U_Nb(^IV!GE*iyFh);a!KexVEE^5R delta 43 zcmX@he3p4aE03wJfu*jIiGrb-mC?kB8z%cPM)CM0=B1Y=rl(pdWTs4B&Zq_eEAS23 diff --git a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.mo index 6a10cfef7dde42cb792f1e9f6165eb92a6bd48ee..770475b9b108e291a18863005fdd886a337d75f8 100644 GIT binary patch delta 262 zcmcb}e2As~o)F7a1|VPtVi_Pd0b*7l_5orLNC09%AWj5g4j?WD;+2dH3^hPn2#D2~ zAmWxl8Ys*Fq`+nYDF|>3@KkWgPcF?(%_~VP$;{7V2yzV$Q2+`v1Qg{@wDIII(={;G zH8NB%G_x|9I8nwA#y2vwGBDCM00J(b#Nra&kfOxA;+({i{30s__ssmV#Js#rg^;4m pJ%ykV+3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEf$A)DjSLhFEv*bKCjJ$da0~VE dQSfv0bycu&^>y_0ad32T333e%o@~eX0syQn9Tflo 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 e2a4196a03..20fd98e267 100644 --- a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po @@ -1,27 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Giovanni Tricarico , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-20 19:18+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" +"Last-Translator: Giovanni Tricarico \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 msgid "REST API" -msgstr "" +msgstr "REST API" #: links.py:12 msgid "API Documentation" -msgstr "" +msgstr "Documentazione API" diff --git a/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.mo index a4fa06d75938d4882c762be00276285abd6c0111..f35c8a41516471228cb62b364447ae91bf675036 100644 GIT binary patch delta 46 zcmaFN{Fr${E03A3fw8WUp@N~AmC3}3d-#14^U_Nb(^IV!@^a$+d?x!aMo-?(r~?3D C;}0nS delta 46 zcmaFN{Fr${E03wJfu*jIiGrb-mC?kBdnU&+M)CV3=B1Y=rl(pd`R!U6;g?R4WA|14EcP NBSR|#qm8%y838nm5lH|5 delta 64 zcmZ3*vWjKGGE-As14~^a69q#vD`R!U6;g?R4WA|14E!X S3tb}v1tTLX1A~pX{TTr@{1H(A 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 d00d8d5345..844e62060b 100644 --- a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-20 22:00+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 links.py:8 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.mo index 6227191aca682cea2fa05a0840e87e389982a598..cbc83cf985742288d7eda5deacdf8ef694498a03 100644 GIT binary patch delta 134 zcmcb@+`$rgPl#nI0}wC)u?!IF05K~N+W;{L1OPDy5C;PBEJg-~C?G8a#9x7IAOZuB zUN{JH4GvLo4Dg(2;mc#DYhbKvWT;?hW@WN*qBEngOMY@`Zfagh;^F0o7w3bNF#rG# C0~L_~ delta 81 zcmeBRxx#F5Pl#nI0}wC*u?!Ha05LNV>i{tbSOD=Xprj>`2C0F8iIKiMrn&}}x<)1n NhGteq8#g&K0sw2U3Ecny 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 f9ce936e5b..3727591e02 100644 --- a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" @@ -10,17 +10,16 @@ msgstr "" "POT-Creation-Date: 2016-03-21 16:47-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 msgid "REST API" -msgstr "" +msgstr "Documentação API" #: links.py:12 msgid "API Documentation" diff --git a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.mo index de051b70491217900e0887ee021a722635f0f8a3..7f1514494149c4c1df803c4434afd49b7010362b 100644 GIT binary patch delta 64 zcmZo-X=0hM%+yTRz*yJFP{Gj5%EVmPz{J3SE5KhjD77rJI5R&_*Cnwe)k?w0z!0X+ N$k58bXya{lMgSm;5YYet delta 64 zcmZo-X=0hM%+yrZz*5)9M8VL^%E(;Tz{J3SE5KhjD77rJI5R&_*Cnwe)k?w0z!0d; SLf6PZ!N}0c)N{s 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 c3356bb814..c2c6eabeff 100644 --- a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rogerio Falcone , 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-20 21:59+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.mo index 736691edc3d19b263b79a96de626048a092876ac..c1d96a9c821f0cadc3708662335e10620d3f5dea 100644 GIT binary patch delta 46 zcmeBX>1LVG%44Q$V61Cos9<+I0 delta 46 zcmeBX>1LVG%44c)V5w_lqF`udWi)Z(?#VHXQT#rMdFiEz>8VxxGARy* delta 43 zcmcc3a+_sBE03wJfu*jIiGrb-mC?kBYbSd%M)CM0=B1Y=rl(pd6qQb1!nhp(F>el; diff --git a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.mo index 3174ec185ab666e644066c3ba9897e288df76ca3..499e1f273cb00c16223a9af7d1c13e3e2306b648 100644 GIT binary patch delta 46 zcmbQiGJ|D8E03A3fw8WUp@N~AmC3}3d-;75^U_Nb(^IV!igV(FJtzAzMo-?sm;eAs Cj1JQP delta 46 zcmbQiGJ|D8E03wJfu*jIiGrb-mC?kBdnd;+M)CV3=B1Y=rl(pd6z9YTdrscYmAQ<};UP?VpQnp~pmnW7t(T2!2wpJz4E$I{eH z*T7iU$WX!1%*w=E*TBTUfGfaXHz>6%6Qo4fC9x#cO2Np$5T?$^(8|DQJEOZS_3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEf$A)Djm#AcOs$MeHolE#1OWX4 B6*&L^ 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 cfdf4b62e6..7fa2560136 100644 --- a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" @@ -30,11 +28,11 @@ msgstr "" #: apps.py:30 msgid "Name" -msgstr "" +msgstr "اسم" #: apps.py:34 msgid "Value" -msgstr "" +msgstr "قيمة" #: apps.py:37 msgid "Found in path" diff --git a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.mo index 6b4d7c8218a167116d47b47553dbacf52f6891d3..21ad569ca88afe9a0f8d3a5b33d754d34178691b 100644 GIT binary patch delta 218 zcmX@fJcXtHo)F7a1|VPtVi_Pd0b*7l_5orLNC09MAWj5gka!vp_cJmuAQ<};UP?VpQnp~pmnW7t(T2!2wpJz4E$I{eH z*T7iU$WX!1%*w=E*TBTUfGfaXHz>6%6Qo4fC9x#cO2Np$5T?$^(8|DQ<1T(ii3>9> c?76U&;ljd;O&9iE*m+^^g?$$rFE%j%0J+>TZU6uP delta 122 zcmbQja+2BNo)F7a1|VPrVi_P-0b*t#)&XJ=umIwIprj>`2C0F8iP^rUrn&}}x<)1n zhGteq7PJEOZS_3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEf$A)Djm#AcOs$MeHoh%m1OOSz B6_fw~ 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 e69220df11..e62deb6a2b 100644 --- a/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" @@ -30,11 +28,11 @@ msgstr "" #: apps.py:30 msgid "Name" -msgstr "" +msgstr "Ime" #: apps.py:34 msgid "Value" -msgstr "" +msgstr "Vrijednost" #: apps.py:37 msgid "Found in path" diff --git a/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.mo index 5d402f673ddee2c2cffb6a62ede32091f9d01c76..c714d5defbea051cc664263112a7cf061d7c0178 100644 GIT binary patch delta 157 zcmX@c{DL|3o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlL9!3U+Fev{qkPSp&0MZKw zeu=rM6D@pA&2$Znb&U)a49%=e%ykV+3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEVd{(w StqhDd?&4u&^-C`2C0F8iJ`u{rn&}}x<)1n dhGteq78BP?g9I#ejm#AcOs$MeHeTmp1OQk(4ln=! diff --git a/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po index ed1eee83eb..d979d02a91 100644 --- a/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 @@ -29,7 +28,7 @@ msgstr "" #: apps.py:30 msgid "Name" -msgstr "" +msgstr "Navn" #: apps.py:34 msgid "Value" diff --git a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.mo index 0feed19f98c5ecf4b9ba4afe27af6d39f6f45104..98d7054cea4081ad48e7ca6b1eec9a03069faf39 100644 GIT binary patch delta 44 scmbQoF^^*d3lp!Iu7R@~ delta 44 vcmbQoF^^*d3lp!Yu7Rblk%@w#nU#^nWI-lrh=`%7f{~GxiRETXrl*Vm*f, 2014 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-15 22:49+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.mo index 285c66f6d380dfa53da37702873e6f3c17b06e32..4da79b98f6a2b405071e0d7a7206fee599c6e9bc 100644 GIT binary patch delta 24 fcmX@fe3E%WE3cWZfw8WUp@N~Am5KSrN#=|ITJi?C delta 24 fcmX@fe3E%WE3c`pfu*jIiGrb-m6659N#=|ITTceR diff --git a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.mo index bde616998ba9a9b53005feba4fc74b84a5f66b26..b821205b547fdcff8d4fdcc63cfe0130d9209345 100644 GIT binary patch delta 66 zcmX@Xeu90&Ge%Q0T?1oXBSQs4Gb}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhR2 PIwM0X1EbB-OluhdZQK!# delta 66 zcmX@Xeu90&Ge%QWT?0#9BNGKfGb}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhRA UItyJRa|HuaD, 2015 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.mo index 96db627979a8f4e75b46e8ac1ae97e21e9c4a1b5..fce465138a3b2c08db50371fae677a6b34c1b092 100644 GIT binary patch delta 42 qcmZ3>vX*7SMP4&q17lqyLj^-KD--jH_oU$hMut`fMw{6f)foZ#x(Y!6 delta 42 vcmZ3>vX*7SMP5@~14~^a69q#vD~}3I?WDMkbrt7}Xg8`#=g< 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 0e9498791d..a87bb3828a 100644 --- a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.mo index 97e633fa9e7831363d49d14c1944a10d1f883beb..17af4bc82877541e8b45e71aefdd2bc7f3ee78b2 100644 GIT binary patch literal 1095 zcmZXS%We}f6ov;Vx8WjD2?P=XBgCbEGm}u2YDz1hO{7YsL`~?1l{;}Jh8cTgdzwZ< zEO-MJ>|ujo!wL!ZeF!#)4KKp)Nl038q%)t7eQx%g-?KCCJ;-V3W$0_@Ip{B_6LQG& z&Vbjz8884Zg7f43CO8ZG1$Y9K;3aSXo(125N5K!E%kv350)7L(LVrLnz)rB~_TS)h z1$+yh2S0*W!SCQH@F#c^`~$i^d^B|oybe114u~Uf6+~+9B-F{_5z2eIrHgU>y55dM zU5pbSiqKMAJ+Gk(*(E}foY}s&!7^TcOwM8+ksIb7k;;;u^YYr!?F`gBBpdV z|F)(Jmw0mS(s}KSX-mu~lkv7#T5xYm@WFIX2Fz<|^^(Vyu6OAc*G4EAktQ25N$P9O zw!g`9r7dlmM0DwsA~Ce1BI386b?B<*%)+0pF^e12!s-GI@6%e9R2QQ82Q-`yLpah+ zz9U@T|NUy!D6HKLA^uZlEbV9}P0Fm&5$W^=*Lq0WabH1n@}7Mi8Bp>$>;dYq#RXwCZxBaGOu3F2I+DPQbybiU?GVeML3sj&E0X%G|TorTg}Zl$c&>L&4KgQ sKHq)oas6APd7MO-gSX#J;I-0JBzUrN1bLyo$Gx6F+Zyd3tmVe>FP;Y{m;e9( delta 240 zcmW;FJqp4w90l-yYZXx(Du{y)b(TV{-^C-Sh>DX-gdjrOXcAoo!O5|B2XEj39K3~_ z_wdyRKVHa#, 2014 +# Christophe CHAUVET , 2014 # Pierre Lhoste , 2012 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" +"Last-Translator: Thierry Schott \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" -msgstr "" +msgstr "Paramètres intelligents" #: apps.py:26 msgid "Setting count" -msgstr "" +msgstr "Nombre de paramètres" #: apps.py:30 msgid "Name" @@ -39,11 +39,11 @@ msgstr "Valeur" #: apps.py:37 msgid "Found in path" -msgstr "" +msgstr "Trouvé dans le chemin" #: apps.py:40 msgid "n/a" -msgstr "" +msgstr "n/a" #: links.py:11 links.py:14 msgid "Settings" @@ -51,21 +51,21 @@ msgstr "Paramètres" #: permissions.py:10 msgid "View settings" -msgstr "" +msgstr "Afficher les paramètres" #: views.py:15 msgid "Setting namespaces" -msgstr "" +msgstr "Espaces de noms des paramètres" #: views.py:29 #, python-format msgid "Settings in namespace: %s" -msgstr "" +msgstr "Paramètres dans l'espace de noms : %s" #: views.py:37 #, python-format msgid "Namespace: %s, not found" -msgstr "" +msgstr "Espace de nom : %s non trouvé" #~ msgid "Default" #~ msgstr "default" diff --git a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.mo index 34d1ba24e338c3f465aae45dbf35284fe406cffc..d1ee4a26a1022fee7a89af1d5ae4a808d51ec43a 100644 GIT binary patch delta 44 zcmX@fe3E%WE3cWZfw8WUp@N~Am5KSpNlSQq67$ka6Vp?z6f#ODn=(dEp3A5M05psZ A>;M1& delta 44 zcmX@fe3E%WE3c`pfu*jIiGrb-m6657NlPX>Ge+_FB<7`;CZ?xaDP)vRp2MgM05h=; A00000 diff --git a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.mo index 27ccba696af9b26ae11f6d66c97c919c69307918..07aa9ffe6114f3f1d4d6efbd739cd3dea8a9595d 100644 GIT binary patch delta 44 zcmX@ie3*GcE3cWZfw8WUp@N~Am5KSpNlSTr67$ka6Vp?z6f#pLn=wXDp2w&P05TE{ A%m4rY delta 44 zcmX@ie3*GcE3c`pfu*jIiGrb-m6657NlPcYFh=qCB<7`;CZ?xaDP*Qhp3A5P05OCO A-~a#s diff --git a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.mo index 3fdd0d169993cdb6271141de05add2cf124568eb..bec29ffa42a68de3fa0e5d8cfc3b0b877bd14a94 100644 GIT binary patch delta 207 zcmX@k+|E*ePl#nI0}wC+u?!HK05K~N`v5TrBmglB5GMjLNIVUQdl?xRa-jTQKsFnY z&A`OK0AzvzkO>ALGa396b5j|@5_3vZ83Ky(vr>~wbUjma!%~ZiGxPJTCi+;Kn&}!C z>lzs<7@Ap`nClvt7#MH``0ECxmSuvJ=(;49q*^H$85qLU85vp`7;W6e%gF1OpPQ-x KGCaR1l>q>PCM84w delta 122 zcmZo?InHcxPl#nI0}wC*u?!Ha05LNV>i{tbSO9S^P|^}egVeyl#B5(vQ(Xf~T_Y0( zLo+KQ3ta;f0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPpgId(BXb1lzs<7@Ap`nClvt7#MH``0ECxmSq-a=I80UB$lLFDHs_T!qgcV SS{WE^+$GP*>X(?9%K!j2RvB9W delta 99 zcmey(e3RMYo)F7a1|VPrVi_P-0b*t#)&XJ=umIxuKuJp=4N?OG6GMG@O?3?{b&X6E d49%>JEGDj(1_@Z`8ks8?m|7W`Y`iYd2mot54txLr 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 5ebe058ebd..ba389bbf40 100644 --- a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 @@ -29,7 +28,7 @@ msgstr "" #: apps.py:30 msgid "Name" -msgstr "" +msgstr "Naam" #: apps.py:34 msgid "Value" diff --git a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.mo index 598d3105dd20bd5742c18bf53b477b197d0c6dfc..8edead52b12aff9fc3946fb953df9e769c1859ba 100644 GIT binary patch literal 1141 zcmZXSO-~a+7{^z|x2i-jMu{GVLQy+0%JUIq~F4rc=GNi@IQsNBtFSAznSNC-hK@Yd~zVyp%0+@&|A=-P%Gq| znZO_Y4 zn`6cHKx#*>*>O=dWt9j?VrJ^j3)bMBLB}lQ0U6bgiByJc*(j&XjS;d&Laa=0C6Ut! z*IiS8Vhi{DwwzOLu*493Qb{}OENXIRUGTJTlP+^s61B}kLzk*_ohMo-8ITg&W0EY) zm&%z{9;?LAlCFs=ecr5TT2TSXth}tyxr8%=cskDvPLT8bDe6tqoKO6zApeAVdCx;2 zUFGkDt^0pm&JVoYBM*{UX4=q7!laIvQAt2H)OIL%SSK4S30rJOrFut@nKYZ8SwE{a zn255WYRsa7tTkDU(+X#efUKxU=sFp%8xsevo2F^j*z#hF@7e@6QJN(}C2qr>mhx&t zyU}S4H;&wiOlhgK(7zNv>t*JYG+bh%dofOI_^v@D6S6?UI!kcZ#kI;Jo$klkj$1sT z3o=wyyl6nCH-+i#H6U@6S&5nni|C?C8af~{?ksh2vH+*`6vt(;=#!_!BXE!U-fS^P z#>P6+nPT2f$F13$@jbG?-?7^mZvr_!a&i-ejPpveh_~blPXwwtI{QdF0|1=pFxdbA 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 ee8d5d4eec..144849dde6 100644 --- a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po @@ -1,35 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 # mic , 2012 # mic , 2012 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" +"Last-Translator: Wojciech Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" -msgstr "" +msgstr "Inteligentne ustawienia" #: apps.py:26 msgid "Setting count" -msgstr "" +msgstr "Liczba ustawień" #: apps.py:30 msgid "Name" @@ -41,11 +40,11 @@ msgstr "Wartość" #: apps.py:37 msgid "Found in path" -msgstr "" +msgstr "Znaleziono ścieżkę" #: apps.py:40 msgid "n/a" -msgstr "" +msgstr "n/d" #: links.py:11 links.py:14 msgid "Settings" @@ -53,21 +52,21 @@ msgstr "Ustawienia" #: permissions.py:10 msgid "View settings" -msgstr "" +msgstr "Przegląd ustawień" #: views.py:15 msgid "Setting namespaces" -msgstr "" +msgstr "Przestrzenie nazw ustawień" #: views.py:29 #, python-format msgid "Settings in namespace: %s" -msgstr "" +msgstr "Ustawienia w przestrzeni nazw: %s" #: views.py:37 #, python-format msgid "Namespace: %s, not found" -msgstr "" +msgstr "Przestrzeń nazw: %s, nie znaleziono" #~ msgid "Default" #~ msgstr "default" 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 2387201474bd450c456f58841fc5139a8796cdd9..76e6293289f1683884b4072e73c17d8bd7ef003c 100644 GIT binary patch delta 205 zcmX@b+`&?RPl#nI0}wC+u?!HK05K~N`v5TrBmglB5GMjLNIVUQConQFATt^K5_3}-!V+^zQyBt^^0QKtOLRR`bi-1MiZk=`tS0(cnwsev z80#7tDj1qsnV9Pum>3vv1^DX*rIuxal<2x7mZVxK7#SGC)EOCC85nKcCBVq-mk%*J HzlZ?i{tbSOD<^prj>`2C0F8iP^rUrn&}}x<)1n zhGteq7P~}3I?WDMkbrt7|j>~06PkW 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 09fddf1ddf..ccea646ca9 100644 --- a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.mo index 1c760293e869deb435a6aeedaf20657b3e8c4fe3..67a160643df496ab4d9b298e6bfef06c1880e719 100644 GIT binary patch delta 207 zcmZoa0AwbEUt(@5Ls()?X(~fNQGQlxa*3{Iif&kHQE_H|p4CJjOH(sl z17lqyLj^-KD-&~F0}}%St^j}CpwzNVkP=;&#FA7i1tSAPm^vdvD+8mAyWAOh{YoKb K=O-4WG5`QmT_tD$ delta 122 zcmX@e(#T?QPl#nI0}wC*u?!Ha05LNV>i{tbSOD>Hprj>`2C0F8iP^rUrn&}}x<)1n zhGteq7P19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" @@ -30,11 +28,11 @@ msgstr "" #: apps.py:30 msgid "Name" -msgstr "" +msgstr "Nume" #: apps.py:34 msgid "Value" -msgstr "" +msgstr "Valoare" #: apps.py:37 msgid "Found in path" diff --git a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.mo index b26c306bab050a1d35ac4c2b9efc566df7d3bd1b..ba874370dfb50acbf5c120b4314f94b2e38acdae 100644 GIT binary patch delta 218 zcmcb}GKaPPo)F7a1|VPtVi_Pd0b*7l_5orLNC09MAWj5gka!vpi!(7W|w Zo{Rkq7p7m>dtt-H_6u8q^o|Q#832%QG0gw~ delta 122 zcmbQkdXdHAo)F7a1|VPrVi_P-0b*t#)&XJ=umEClCI$veAPrIj0~51-O-*$TEOm`c z6b#L*j4X5wObiUT0{nG@Qp+-nGxPIwT@p)DtrUz541ww_bdAgv3{0(zOg6rq&Ikay CvlOEM 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 217c775bbb..b98971d03e 100644 --- a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,17 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" @@ -31,11 +28,11 @@ msgstr "" #: apps.py:30 msgid "Name" -msgstr "" +msgstr "Имя" #: apps.py:34 msgid "Value" -msgstr "" +msgstr "Значение" #: apps.py:37 msgid "Found in path" diff --git a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.mo index f5e37808ce79790fdc3a82b7aa29e23f7f60a8b0..6acd228dbd512ac76db65480e52714d23221bb85 100644 GIT binary patch delta 156 zcmeBUS}#X1Fisn-JsO6%;L=aJYAQ>l2j`NBLhR2 TIwM0X1EY<*LKs;*b5j`rj+z(( delta 99 zcmZ3_(#K+PPl#nI0}wC*u?!Ha05LNV>i{tbSOD=Aprj>`2C0F8iJ`u{rn&}}x<)1n dhGteq78BP?g9I#ejm#AcOs$MeHeL^51OPsp4p9IA 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 3a00980636..b23d317452 100644 --- a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" @@ -30,7 +28,7 @@ msgstr "" #: apps.py:30 msgid "Name" -msgstr "" +msgstr "Ime" #: apps.py:34 msgid "Value" diff --git a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.mo index 2cf4be51c0b0cedd43bf15dbfcfd205a58b5a6ae..b09ea37883acba39e84f35363ba366a24d279464 100644 GIT binary patch delta 210 zcmcb@Je{Tfo)F7a1|VPtVi_Pd0b*7l_5orLNC09MAWj5gka!vp&tha?$N|zIadsvK z1}-4Y1Ehh%U;t!-0mw`Szr@^BhOoq((o}|kqWrAXJEOZS_3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEf$A)Djm#AcOs$MeHolc&1OVXj B6r=zE 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 97642c8a63..84476cc263 100644 --- a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-08-27 05:24+0000\n" +"PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 @@ -29,11 +28,11 @@ msgstr "" #: apps.py:30 msgid "Name" -msgstr "" +msgstr "Tên" #: apps.py:34 msgid "Value" -msgstr "" +msgstr "Giá trị" #: apps.py:37 msgid "Found in path" diff --git a/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.mo index 9858d2ff2fe6c586e6cbe20f9c5018a493f20976..379196b2134c3042b5dcba365d33cdd7955fafca 100644 GIT binary patch delta 205 zcmX@d+{03TPl#nI0}wC+u?!HK05K~N`v5TrBmglB5GMjLNIVUQr!X=wn7`dNL=zYF? K1H;pXJq!TaL?*KU delta 122 zcmeBSImc{qPl#nI0}wC*u?!Ha05LNV>i{tbSOD=9prj>`2C0F8iP^rUrn&}}x<)1n zhGteq7PVwN40?z| z_z)2!VN(ihf(SxT4?Xr2{SQR-UJyZ#KJ@*~lnd^PbojfaJNzwr76e{ z>1M|uc2U2E0i4D#K0?{xEXqX7xDDT92Y$kH_!kdhH>?EF6lB7eC=8=I5*R{0RJ z#{a1BESn+MDk1MB8`@5?hepWG_cY7$ToQ7+D9MdCoK%&qZ?xLlo+wyqV0grKmc9A# zpmpEYMcXPkhka-2Pkkv*BpvVUiYF5~k?u)#J74{=&6Z@MCy}W815=*xf?0JZ-KzV* znGW6x^;;VY{RrOG?n8IRtZFk)|BP9bF{Y->f_ZJ0+^Sh}GNHMc^qMzjg%P#JQ2OPE Ps;N0YLwD-0S~8x0_`;Aa delta 742 zcmZwDzfV(96u|M@K1v@TQ2AvDRWAf0gT+!PsStyhxPT-O7ULu-uh{UUrjN$dg~60K zxLu6{g9(^m&>BKR7;!WqVPd!}7{ed~iwS>#-wTB}c#_l4{ndN!J0F|=G%g-CRJ<3& zH8M=@lQ+q?K7I(>FGM9)p^YJI!&bbGaWwy(!UWD?2tQ#nZk6|Uv4Z&#_Te!Ggjf_| z>%4FW*0M2-S8yC};1g`eJa*zTKEUtgeT!Qo%sViK6Zn(Izs73jNnYQI^LPv2U=%k{ zQeXUHU@q_n&kshillf@b401%g!!cY&?iRnXA5YK}Xs12qi-)iqC-FAE!biAW7%y~{$J@emFMgLPJt>@~4mAF5(Fg=@|pOvY!>&O|$ zbru}yWV4yp%UDA0Df5{(b` z4wMpsf=~UZe5|^IX|)+#Q7`ON{Wra>SEc@ZP|zh^lxoLr4pCI-^@D=^XR*edS<+wi Lnl6_1?J?h9XwGxr diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po index 6a4cfddb13..f7c0e92c1a 100644 --- a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -10,22 +10,21 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -54,7 +53,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "تعليق" #: forms.py:44 msgid "Expand compressed files" @@ -74,7 +73,7 @@ msgstr "ملف" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "Default" #: links.py:26 msgid "New document" @@ -106,7 +105,7 @@ msgstr "" #: links.py:64 msgid "Edit" -msgstr "" +msgstr "تحرير" #: links.py:68 msgid "Document sources" @@ -248,7 +247,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "نوع الوثيقة" #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -306,10 +305,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -318,10 +316,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -407,13 +403,12 @@ msgid "View existing document sources" msgstr "عرض مصادر الوثائق الحالية" #: permissions.py:21 -#, fuzzy -#| msgid "Staging file" msgid "Delete staging files" -msgstr "ملف الاعداد" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -428,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -455,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -470,6 +467,7 @@ msgstr "انشاء مصدر جديد من النوع: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -500,17 +498,17 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "الخطوة التالية" #: wizards.py:68 msgid "Document upload wizard" msgstr "" #~ msgid "Staging file delete successfully." -#~ msgstr "تم مسح ملف الاعداد بنجاح" +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "خطأ بمسح ملف الاعداد %s" +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -588,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.mo index 16eb31aaba4a37d0344fd791f0a13ae49a646049..47795967a94c0584cb627b1c2d0ffa3999e4c740 100644 GIT binary patch delta 637 zcmYMw&r4KM6u|NOX2ze*I5CnzPIVE47!Z192GYh-p-tPCA@+oD)S-DpP8-LG1Zxrb zXcIw3>tL)IlF6}6y9mx(wsGl7kp2U|=Q)fA&V25Vch9+Z-t>P-t{-L+?+tO0%#t6; z%Q|-WA=a=P%h-z*?7=M@#&_-cSJZP2)LMTrg@>5HW4wg_+w-27F|)s`t?1Ra|J#H!#QiH)@>|9Kr#*&EY8OL-LrUzbP@$ z0#($5JNO9yApN7u>5KbGmO8;bqKj}pbD^_(_FDbNH1t7wd5ttVKx*?Srt{C|2g^k> zU0kxIqW8?)UtM1IR{X#^*Si+yOL;%I>*O*ss|zJvwtl(bnb{{#{lIfZ`W|{~zAgG* zA=q?Yq$bC1-WnTstvfk2aVJQ{hC3_c?v(3(za5)%(jVkN_N5`Muqw5%5|rb!*-vs{ z@w|2u092{nu4kr>G!pNOusL6m?QI1Lx! zGAzIaxC7Jh1m@rcwBRkY;T@cV_izOc;S=(Pq=@=dog!Mp!4cerH-Emvb*y!_8rXn( zfC%Cu^`Jg~fTwT-(UTkmS0|;1pP8)2A9^s|%cA0VBMD4IzXDa7*Y&QXioA3?Qbg+6 zSWPrVEZlSTWh^CSyAz!WseX*2%A4IFV0?@DCD$v5{wCuk&Yi;pb}X(Mve9m_YCRUA i>vQk_KOTf$dGuk{3{|l9)WB+~c{``J?S1uP4}JlEyEXy< diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po index 1111b6a012..d1834c3b2d 100644 --- a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -53,7 +53,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Коментар" #: forms.py:44 msgid "Expand compressed files" @@ -73,7 +73,7 @@ msgstr "Файл" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "По подразбиране" #: links.py:26 msgid "New document" @@ -105,7 +105,7 @@ msgstr "" #: links.py:64 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: links.py:68 msgid "Document sources" @@ -247,7 +247,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Вид на документа" #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -305,10 +305,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -317,10 +316,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -406,13 +403,12 @@ msgid "View existing document sources" msgstr "Преглед на съществуващи източници на документи" #: permissions.py:21 -#, fuzzy -#| msgid "Server staging folder" msgid "Delete staging files" -msgstr "server staging folder" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -427,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -454,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -469,6 +467,7 @@ msgstr "" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -499,12 +498,18 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Следваща стъпка" #: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Staging file delete successfully." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Staging file delete error; %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -581,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -599,6 +602,9 @@ msgstr "" #~ msgid "Upload sources" #~ msgstr "Upload sources" +#~ msgid "Server staging folder" +#~ msgstr "server staging folder" + #~ msgid "Server watch folder" #~ msgstr "server watch folder" diff --git a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.mo index c91a0be9837fab78359fa220a5bfffd19448f246..148d05b03726008834747a5cad21ed5363050a98 100644 GIT binary patch delta 810 zcmX}pOKTHR6u|M5Wb&w*wvMf@s7#>>J_4OIrdl_~=(eb>;?g0xLQI;3$%NXCabc+& zMHs||JKYonH?6pFAwJQCegW|l)Rp2&!T)JO4mtNXbBEk>&%JB*C%gN@wjK$wpFBWr zl84FH5eDL7R3w3yFooAJi5_OKiU)C}KmQE(@ctZ6;X53~znI2!OvJ(rj*E1~;X(gU z=zo~QY2N2Cj;lC?_fa?a7VwX;psPE!nfaTE)96nElv)Q$MaPwp`6!+WUfJVjmi4QfN5ktO9Hj-bWI z3F^xj586oq^{7fXg$sBVSMUga#7X>#d9*ney`^2`7^zpN3+v`Ibko$5ZTdoN@1e&& zh%VPM2<=8gH=&&jlhoP@PEB_ApY^&lv>Th`#J3vI>(Z-|VtvV5ZcDLUb2@F~OR2fI zXc~c(eB%YiX_zIa(kyqF3y(*S#cz0>dJtZYmhJPs*}w^wTShKaszJCBZ4AwsTY=LK zOe>s-onC(u%SY0M?9_BN=Q?g-Ha`=7w=#p7oIC5f>sI_hB-zxeo*zC;oJm$pugsT3 sd3>STVgohZK;X$0-%zL;o=DyvuHQ5j^M1AJ)SA9m3)hmx@MP-Oe^hF2fdBvi delta 764 zcmZwDKWGzC9Ki9HT+^g#^%|{zNYrPEZV74Zg|s4VT{?&;WOMRbUuv4`o!m>52vWqw zK?He-gOehtgE$m-7jX#G#lgu%2b~pXzb}6}`Genm?%vBU@ArP6vahpS-?C#*1aXAS zlV8Y_UyFRtUUz)#V6 z^F@!BDhoew3Ug_0hefmnD`;=7&~_doKNT;~HueT>!#%V&|B7eu7Z%W^xQreyVFT^{ zD=cun*x_Xkf1{l`b^S&rkP+?1q2ZeytDTe``(ZLm+Tg!v zKZ-nO_PgI}SC)g@epicS-I5)xVsj&T-n>m-Gt${KPo3IQz3s0z!*$tc21;I6fodzM z;y8-W$QF5x)suf-;Ua, 2013 @@ -10,22 +10,21 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -54,7 +53,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Komentar" #: forms.py:44 msgid "Expand compressed files" @@ -74,7 +73,7 @@ msgstr "Datoteka" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "default" #: links.py:26 msgid "New document" @@ -106,7 +105,7 @@ msgstr "" #: links.py:64 msgid "Edit" -msgstr "" +msgstr "Urediti" #: links.py:68 msgid "Document sources" @@ -248,7 +247,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Tip dokumenta" #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -306,10 +305,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -318,10 +316,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -407,13 +403,12 @@ msgid "View existing document sources" msgstr "Pregledaj postojeće izvore dokumenata" #: permissions.py:21 -#, fuzzy -#| msgid "Staging file" msgid "Delete staging files" -msgstr "Osnovna datoteka" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -428,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -455,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -470,6 +467,7 @@ msgstr "Kreiraj novi tip izvora: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -500,17 +498,17 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Sljedeći korak" #: wizards.py:68 msgid "Document upload wizard" msgstr "" #~ msgid "Staging file delete successfully." -#~ msgstr "Osnovna datoteka uspješno obrisana." +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "Greška brisanja osnovne datoteke; %s." +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -588,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/da/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/da/LC_MESSAGES/django.mo index a4189c52ea8cfdab1657b137ec4630bd8330230c..8846d79be82275102c1989cc103dd6acab5ca307 100644 GIT binary patch delta 761 zcmX}p&1(}u7{~ERve`7YtLckcsW022$Ixz4qb*b$TSO2G7B7MxmSzP_o0RN^zFYzx z^x{DnJXH_`J?SYudGX*M;MGH^mmEEM75x5U?E}w#W+&Na=9&3X=oLDLBhDK`oFmVZ zJ@N|qDaC_WOdI236$kJR=I}mF;6uEC?W1{%XL;Yl>)6Et{z4D`;AtGp^#9i}lMEat z=CF)6FpDkB<2Gtz&rt>5;Shet%lHLv;ZMAXQxq#=6-(H}S2Xh;Rdd-8Z)6X~<9M`zVPwkOL@jt5Rp$W?VnedN z*=3*)Uf?wD<0b52fDXIS?-kUojF6+Gik&2Nyb5iGPs|Cu5L!f`CjJMfe;jJ!k>1pm zI?yiFxq{Q`-;>5?^dQvDFsUvTI!;}YsjhE@JF%(8b-x`)Ewj|z*oYd59ZxT0pM>r8 z#IB~-yyfOvTho5Bvl-d_bR)kKZ6|)5M4NUpGuPeA%%;3bai&}>1%6POpS@-eoQdO^ zQZOF`T_@|O2JZf=AKEE*A(w=WTG*=D$L`|LamM-3{5xL8pV%j|B}H%l z;7J@};W{412A;t?IDuW9!q<2M->2&yyOx+wVg+xZCjS&UKzy>-eMeCXoJy_Z2)&?7vsQL8cR_CA`3V4t1aVsP8?-OZXPG!+Tif zeEF3=aFPCM*O|&OVt~*J4#r4&p>5TQbn{VSn9xDNz1C~8#|b(thlnGD7IrXt$)}T| zep79?Rv`88QL`IMJzh7R*hcPl_Nv>?-gATAhI``G7MGIdYOuL#+CgYd%Z4_w#zxVD zXu+J1r{#akac5=4#&Nq7hTZ9%cV0C!R4vWSl`2> zHS!DYW&WD`l3#Pnh05YhyB3;, 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -53,7 +53,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Kommentar" #: forms.py:44 msgid "Expand compressed files" @@ -73,7 +73,7 @@ msgstr "Fil" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "Standard" #: links.py:26 msgid "New document" @@ -247,7 +247,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Dokumenttype" #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -305,10 +305,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -317,10 +316,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -406,13 +403,12 @@ msgid "View existing document sources" msgstr "Se eksisterende dokument kilder" #: permissions.py:21 -#, fuzzy -#| msgid "Staging file" msgid "Delete staging files" -msgstr "Staging fil" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -427,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -454,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -469,6 +467,7 @@ msgstr "Dan en ny kilde af typen: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -499,17 +498,17 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Næste skridt" #: wizards.py:68 msgid "Document upload wizard" msgstr "" #~ msgid "Staging file delete successfully." -#~ msgstr "Midlertidig fil slettet" +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "Fejl ved sletning af midlertidig fil; %s" +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -587,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo index a6adccd7c73bd3c5924e99b9ac6678619b77609b..1fbde6b90c419c2d41c3910ed82b61f5208f302d 100644 GIT binary patch delta 2297 zcmYk-e@xVM9LMoD2ZVs+1wsTOCz?NyqdU-(4)lN`!4xll6eU=Putq~}9k*D&c3UOs zYO!{mHk3V$HmGy_&s((bc?D;yr*ZS=H{ysk6U!UKf zyT3voHYctW=e%d6eqsetmu>bsw%o;u)Vaj07`q&Mv5e~|F2`}_`UL8eGst0|aoUDo zVjgDYo0VfeR$>iSnI&u+8NJYp95&!wkDv;C0ZZ^zycgfaCY(VvG(yX9Gxb{)nPs>a)q_Kri*e)|dkHIW9Oa~HFVDL zENX}^;1~EKs+SpWL47!ms_-4`!z8Z3 zKT!=UW4PLJ6|Tbp)bqDdLw*|7@JqN7zeY9SI;uenZpL3P5w$D6M>XJz z?rZ;FBcmSOLON-AbV~(PJJzEr+=}|J9aZoS)X#P|w%}=018?9%coWxP3-h`GBgib- zTd0OlV`3edSu$$jw~oJ}et2#>=J7+V#Z`jZ6|K&76jk9QvMJKPe(+yfORmSc(qhv( zc#P1_P+~2r|BJ2D9IYa>xcUectfV2M{B&yK{3Ovrgoy`iK7DA)&454Z95lWhx2husS zN3fa*I@fz~pOa@+($mA>X8ON4|C$2*YVFVik`|>Fo>G8#ir7SG&NHc(%pPJF@dR;@ zSWRdvX3}OdTG*LXlgVJB?SB_qEK1t{nWS~#As!~QE1HRRVk@E5?j^J~9wl6a7H~SX z4Gefj2FE;IyV}B@!NZZEVawbK?+!OQw~~J>Nv4kGpUF~Yto=G{kKMFFp` z(c9qn_yfUBTapJ$DjPF*8vH@Of1{67uro3m_wI{DMn;Dt@n|gQ*%R#_jK!lk8i@@> dQ|C(-vQigH3vyCRD?V@~bE^WWV^u@0e*v3m)rbH9 delta 2859 zcmY+_ZEO@p9LMpYlv)e5f*?voMiBwArM&{SS1c3@_)rurih>B+yS)c`Pws84mFS7_ z0fOl7jmlVF9RKCkl62wKsonwvJfzMa)L;0xEm`Qjr@CcsI^>Lhx6=#>OYf+DckXxn& z+i)3xE0K86?IlUQp^!MsXkIt>Sc4&NdF%#XqKAE<%EvhFlykxaWjr%HdIXx)m}iY zWIJk)ccLcn0;=C0F}n??d{S2T=n*hx2eRY9*fr9zwEe4x>J!pHVL`7aFr1s!$VOjmnUN z8ZVF9$_G%N@eVv!-~TH?hj*}@8zZR0G>-ge;A-R@W-7jf4XFE{p;q`M-h{{SHf&*Z zz4$5If_qRCx|lR+y!ogFwP5l4Zwne$qEgq18h9P*GfJXXnnry_TTv6(7PLQwTG=4Z z$03}F-=Z=)jz6y&Z+hUBcsbXtSWu;#ie|JOHSiOt7e9;LxEmMaNz@9$Y}_^2ftTSn zoQwOAV`9EQ9lBp}Hl9E&V8)D+O{l}Xat8TVrHcj~!i`vuj|bQ9qF(p|@)em)gbrDZ z&|y;13pDs5LeEBtE`nVw7G>ZTLR+-5*mC;EYX5ckR4yeniB7^Lboi77?VVP$hEP#P zw7(m4L77D;8+C*x+d$|X+(jrG4skW1qAap2CPFClOL)JzflyKEuO})9GF>b>4=QU3 z&R4Ol=eHxMuf{oq(yy|#_*?pk2X&o|1aW6@-G;4%zLr8WKl(gY5&tg>xzOIKl$9v{ zA-X-N>l3^+s0$8x@qbBuK{paQh&pt45KY7aqMTSq%p^7vSLyrb50+U$jFuWIIunhf z4HzQAL<_-LDi(c`Hxt(p*AkZyXO#A6)Mng1n@l@7>!zJ#%8WMUvbm;G(?F(jXL%}{ zao;+7|JbmNdD*n>OC%!+>t}5w;YNCFEbG~{o6kFOH*fore!@Dw?{F__quEGr+Rga+ z`r$Vx>@91Gx+&Lpt?PMNuhq`V*PAZii6=908%w5K8{E$KMk0(C>rJKl>jye&npbrB zZq7E^Y|Mtjwu?a`{;9F8-=A|ChaRDz$MTHtdZ#<2UEhg1zB9a~W_wxn!n%f*y3hjK zxF{TI9+)_(cG;V)_6`PpK|=H7q-h>FVk-qcZ;R^O*me(F70^t z)<@m8;f<6295cS7HqTkGXH%)+bruUG9-K3vq?rzfdWHT(wW;BeAyQz`4^Qx5| z3Kx@kMt|3fWm9p_)n1+IUO!M#d)2Bg&Bpi1=snqtQrg~|?{g9<+mY=l?iX9upEIM~ YLZjW5vr|sDTfAIVN-9fTT)VmKKdf, 2015 @@ -15,14 +15,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 18:10+0000\n" -"Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -30,6 +29,7 @@ msgid "Sources" msgstr "Quellen" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "Quelle definieren" @@ -38,10 +38,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung " -"in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist " -"erforderlich." +msgstr "Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist erforderlich." #: apps.py:65 msgid "Created" @@ -88,14 +85,10 @@ msgid "New document" msgstr "Neues Dokument" #: links.py:35 -#, fuzzy -#| msgid "Add new imap email" msgid "Add new IMAP email" msgstr "Neue IMAP Quelle hinzufügen" #: links.py:40 -#, fuzzy -#| msgid "Add new pop3 email" msgid "Add new POP3 email" msgstr "Neue POP3 Quelle hinzufügen" @@ -285,9 +278,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 " -"für IMAP über SSL" +msgstr "Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 für IMAP über SSL" #: models.py:338 msgid "Port" @@ -306,10 +297,7 @@ msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "" -"Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für " -"die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste " -"Anhang sein)." +msgstr "Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste Anhang sein)." #: models.py:349 msgid "Metadata attachment name" @@ -322,10 +310,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -334,10 +321,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -383,10 +368,8 @@ msgid "POP email" msgstr "POP email" #: models.py:534 -#, fuzzy -#| msgid "Mail from which to check for messages with attached documents." msgid "IMAP Mailbox from which to check for messages." -msgstr "Mailbox die auf Nachrichten mit Anhängen überprüft werden soll" +msgstr "" #: models.py:535 msgid "Mailbox" @@ -425,13 +408,12 @@ msgid "View existing document sources" msgstr "Existierende Dokumentenquellen anzeigen" #: permissions.py:21 -#, fuzzy -#| msgid "Error deleting staging file; %s" msgid "Delete staging files" -msgstr "Fehler beim Löschen von Staging-Datei: %s" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Fehler bei der Verarbeitung der Quelle %s" @@ -446,13 +428,12 @@ msgstr "Logeinträge für Quelle %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen " -"oder aktivieren Sie eine bevor Sie fortsetzen." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen oder aktivieren Sie eine bevor Sie fortsetzen." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "Dokumenteneigenschaften" @@ -462,8 +443,7 @@ msgstr "Dateien im Staging Pfad" #: views.py:262 msgid "New document queued for uploaded and will be available shortly." -msgstr "" -"Neues Dokument in die Upload-Warteschlange eingereiht und demnächst verfügbar" +msgstr "Neues Dokument in die Upload-Warteschlange eingereiht und demnächst verfügbar" #: views.py:302 #, python-format @@ -476,10 +456,9 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." -msgstr "" -"Neue Dokumentenvrsion in die Upload-Warteschlange eingereiht und demnächst " -"verfügbar" +msgid "" +"New document version queued for uploaded and will be available shortly." +msgstr "Neue Dokumentenvrsion in die Upload-Warteschlange eingereiht und demnächst verfügbar" #: views.py:419 #, python-format @@ -493,6 +472,7 @@ msgstr "Quelle des Typs %s erstellen" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Quelle %s wirklich löschen?" @@ -510,22 +490,16 @@ msgid "Staging file page image" msgstr "Seitenbild Stagingdatei" #: wizards.py:38 -#, fuzzy -#| msgid "Step 1 of 2: Select document type" msgid "Step 1 of 3: Select document type" -msgstr "Schritt 1 von 2: Auswahl Dokumententyp" +msgstr "" #: wizards.py:39 -#, fuzzy -#| msgid "Step 2 of 2: Enter document metadata" msgid "Step 2 of 3: Enter document metadata" -msgstr "Schritt 2 von 2: Eingabe von Metadaten" +msgstr "" #: wizards.py:40 -#, fuzzy -#| msgid "Step 1 of 2: Select document type" msgid "Step 3 of 3: Select tags" -msgstr "Schritt 1 von 2: Auswahl Dokumententyp" +msgstr "" #: wizards.py:66 msgid "Next step" @@ -535,14 +509,11 @@ msgstr "Nächster Schritt" msgid "Document upload wizard" msgstr "Uploadassistent" -#~ msgid "Clone" -#~ msgstr "Duplizieren" - #~ msgid "Staging file delete successfully." -#~ msgstr "Arbeitsdatei erfolgreich gelöscht." +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "Arbeitsdatei konnte nicht gelöscht werden: %s." +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -620,11 +591,9 @@ msgstr "Uploadassistent" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/en/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/en/LC_MESSAGES/django.mo index 237953521f77b92826c67b4f55a3e1967c929826..659743a4150f9dd03fe460dffac97ddbe0fec624 100644 GIT binary patch delta 518 zcmXZYy-LGS7{>88AGKB+`=O=a7aeqxfK5vkM@uh3T?N-(f>00#9g2gv*wM{N$)q9_ z^ctK*Dh_rMgigBne^Os~@=NK-IZx6peB?TBMgPK>5?LhAWQnvLF3bQY@Es>{hzt0Q zS{JxxWn9BeY+@b{QG0g(|Gz??-w#;BKBmk%HsVGH|6qV+&n%0pxPlRG;~p;KC5Cv1 z5q{zsW#-vkMX%XaMQ>3>?@>ixP(??mqFEN_Ip12`sOc_hK^xWd7}fL?dBz@5MW0Yb z2dJW7sG`59qLuWx=mDze5vu47(lhxwFrIzT=9(gzBN?KN`5-n+^ftU?GC8gVGDFxe s8I{*?eo}lIr-({goN{-ZxaZZKpb@Uu!l+uQHn!>;@vDF0p7*@rAKbMrdH?_b delta 689 zcmbu*zb`{k7{>8)wP;cOg$Bh{WojEOm13ya3=&Brk|qXeZ<|I#(%TN5I&?7*gP5$W zmd4D?%E;1%!QwCQef8F4^Cs{8oSXOdoTsPlKJzx-eD+I41?V9COwZ7#8V}0Rqf{R{ z(SaVE#BrR$B+73yn8HK!;5Clooi%?#JMV2=!guUds-c3m&cPvcF-YSOZsRm&aTeYL<&>+D)Pt>8ZCBgKR1b=!qoQ6Y zl?^>_l#QyP8>?eum{ZKpe%KbqHm+)YnC-A~t?mU`3G+UBy8&9x{;Lr7_K zV4<_9KXxR9N-?Am|FAeg5+$5vjjR|EBdGhM0*(GC|1xMr&)0WfMEtP#_wl*!uh0AQ z`MkgTr|#`qK_ZZ2mcoKu4z#>HGe73L2C;liHy6~KgId{{svEB z77Ov!2hF^A93R4W(1&NRKvTUyM>k$Y4g4LJ;WR4KJE(z+=gqz-jCxTG@@K6aYH=58 zprgnm_7-a8PM{`m7MZJE!L@iDeOl@nI?BAD!0Z8Bf}FB)d>E^d$=Ej303E1AyIhl~ z=LV5K8{*J_Be(@Gqn`IN%NMW+i|{a}bYYZ^G9E)^cp5d(ho~FRA%Av>1La{~p=#v@ zYKwkHCG;2aXMb~0BDp;5tQ_h+VGdgQI64z5V*T}C2PZV(9_+;=F2~PMiT#Gn_$RKy zC~wjAZqyQ|P>GM>Qap)D;1VjKFWu`upa#xjCEn8dSJ5e9{iFCe>VZS}_8j&SSMoc+ zC~_mJHukw5!E%0&qb714^;LX}Tku!Z1i}=65{}^`*n>*+wGa+PA^}x@lm6*ZB*uZGI-i0d4Vf+F|aRKh&q~8A=YRd*t=ifj+KTDmUqZeO5W%@m? zz$~izy?kT3F@&07J*p^Mk;z#SV|Wm?h38NSeT=$3iR5BGq27NRV>mN=K4rC3h;C>@ z?O`u6w(UnHGU8qzN4?-8YDN>NgeFndKZR_oO=BzG#15f93eO|EW7GI3{((%^0xX*hqY`Sy z`HXMvbhLE)a1aNu5vNc!;b$M(una5kdDk)2%3Ve!FojC&N7Nqwi%P`D#%sWG)P$m_ z`&Q(H|$oF4zgP@kT@7S&BBv61K^)E*<2 zIX#}Qrc+PsB-RotL=~Mi_4S1g^uH3?y1gk8>VGLY_~PADiJgh``*|nRjrrYkHxKtG z5BB$E-ph~YWc-EK=A=t}t24)Zqn^T8Wle2mG!lx$;%nBWgZ|RHXQGjKB$8?IukfS~ e1YXY7JNkw)*+7{$)3&(6lb$H;%nS#Qd;SN*W5e$N delta 2732 zcmYk+TWl0n9LMp~i$bLoC;}}goFWCSwDd|ZfaM|-P~=k7DpZ;7PU+(APMMtoHJY{f zpf&M97v(Aj0~!;FG1VBA2ttemABZtAzChnJ0gQncjiUJdZFh?&{m~Ac!B#B6Hk@Hh(rlx1FBe`w{>&i`8h9M_z>jb;4&gNX4x4Zol}O25Blj2J zM9x>>5!{U9@jB+?Eu4b+IG(@DpQ9IxELoezwzlP^S!82rBDw(h|}=|^0MX(YJv-> z(q2R*TtxPAD(d$$ky~aCwqgyo;ZD?ZzQ7%L4wFT6syOJz5>)1Gs7yDZCftJjnQa{S zjq#9eVqQe;nE}*N9YrN_0yXX=Dv_^nCZ5MK{1sKvf(g{0zA0ltv?kRYG+-&t!7fx{ zub>|M1}dS0*oj9`<8Go7FQbghaX!vN4|RV(Y7?JAz1T%mLO)NW{>tzVE-2&tNh1S_ zQ4`O=N-W1JY{y#MiyHqKzMexVaW3Z@S!lTjwTIr#cpC5Hd>Hj2d3-whdd4L=w$ZVu zH|s&YNeq?w9-NKupfWy#N_ZHxN3Nkt|0n9Rx`i57!VXm>8nG0gN8R6t{F##+zQyD@ zIwWrf`Ihvc!>BcV4|V-C>ht^o_2A!82^O({!ZE199QFdOg=#803CT2wFK8t8RoFy%De!z7b;PSwxT9%N4;?u zYMh_(ZEWQHOVm=`Kt2*vLp)2U>Gvd&Oi$F#Ndu8fXwB4?5FP2>$Og-F(+Q}rz2Okm z#707GTl&b_qAJizJd(M#2~{oanQUv+`me~I;bKB-r1e$Fml9fvDnjjXg5^w?xdpYe zHxPPzRZbf(+a9H(a$6!ys5KFfrF$%!)cUK{5zB}LL^GicsivKsZJl)Li7sM(_98w* zJVmg~W-IXoq2*MYMX;YooBnxa+kp19hP}AlM5f2eh6Jdq<6Jkp8DO7grK&vud-2j+%D#B6XI9!#3{jwvm|AYu%U= ziH=_C^?FnD#vaa(dT}>(X6)9XIR(vmEw{=B-CRA&xU&3&~vui^KHycB%JMT z!tRa)J=O^VhkIcg_CkFzHy$LahB^w*=hTJWs2jM}^?lD@WXls(raf@BN8;OUcO>fC z%$bHmww;HBg3)K&pugAUIgF^yj93{DT>tif zm>W1@Cvb+=6bX$puB@%MH49s6n^MCQXN+E{t!}BW9~v{MJU5TmPE|}!3>}|5 zGk@(0&-YzV+1XH^6SWD~?sBYSLtd=c_qrV4CL*@S>8A?ugtLPxguM9Z^j^X`;T?VP zz@rM^OsmLEU7k|X#1D5x5)m)%L`Mp-%n$WMc6s)HH*6OZJ7Ma~)doXgNZ9l5c}ZukyS-w@DAJ%?zb3KBJ-znU0hs{ZiRg@`jd8e=YYv`R!en diff --git a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po index a04d5782f5..3b608aa0aa 100644 --- a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 20:44+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -28,6 +27,7 @@ msgid "Sources" msgstr "Fuentes" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "Crear una nueva fuente de documentos" @@ -36,14 +36,11 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Las fuentes de documentos son la manera en la que se almacenan nuevos " -"documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario " -"web para poder cargar documentos desde un navegador." +msgstr "Las fuentes de documentos son la manera en la que se almacenan nuevos documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario web para poder cargar documentos desde un navegador." #: apps.py:65 msgid "Created" -msgstr "" +msgstr "Creado" #: apps.py:71 msgid "Thumbnail" @@ -67,8 +64,7 @@ msgstr "Expandir archivos comprimidos" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Subir los archivos de un archivo comprimido como documentos individuales" +msgstr "Subir los archivos de un archivo comprimido como documentos individuales" #: forms.py:67 views.py:432 msgid "Staging file" @@ -87,14 +83,10 @@ msgid "New document" msgstr "Nuevo documento" #: links.py:35 -#, fuzzy -#| msgid "Add new imap email" msgid "Add new IMAP email" msgstr "Añadir nuevo correo electrónico IMAP" #: links.py:40 -#, fuzzy -#| msgid "Add new pop3 email" msgid "Add new POP3 email" msgstr "Añadir nuevo correo electrónico POP3" @@ -254,8 +246,7 @@ msgstr "Intérvalo" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Asignar un tipo de documento a los documentos subidos desde esta fuente" +msgstr "Asignar un tipo de documento a los documentos subidos desde esta fuente" #: models.py:275 msgid "Document type" @@ -285,9 +276,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para " -"IMAP, 993 para IMAP sobre SSL." +msgstr "Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." #: models.py:338 msgid "Port" @@ -319,10 +308,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -331,10 +319,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -380,11 +366,8 @@ msgid "POP email" msgstr "Correo electrónico POP" #: models.py:534 -#, fuzzy -#| msgid "Mail from which to check for messages with attached documents." msgid "IMAP Mailbox from which to check for messages." msgstr "" -"Correo del cual se va a comprobar si hay mensajes con documentos adjuntos." #: models.py:535 msgid "Mailbox" @@ -423,13 +406,12 @@ msgid "View existing document sources" msgstr "Ver fuentes de documento existentes" #: permissions.py:21 -#, fuzzy -#| msgid "Error deleting staging file; %s" msgid "Delete staging files" -msgstr "Error al borrar archivo de ensayo; %s" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Error procesando fuente: %s" @@ -444,13 +426,12 @@ msgstr "Entradas de bitácora para fuente: %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"No se han definido fuentes de documentos interactivos o no hay ninguna " -"habilitada, cree una antes de continuar." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "No se han definido fuentes de documentos interactivos o no hay ninguna habilitada, cree una antes de continuar." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "Propiedades de documento" @@ -473,10 +454,9 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." -msgstr "" -"Nueva versión del documento en cola para ser cargado, estará disponible en " -"breve." +msgid "" +"New document version queued for uploaded and will be available shortly." +msgstr "Nueva versión del documento en cola para ser cargado, estará disponible en breve." #: views.py:419 #, python-format @@ -490,6 +470,7 @@ msgstr "Crear nuevo tipo de fuente: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "¿Eliminar la fuente: %s?" @@ -507,22 +488,16 @@ msgid "Staging file page image" msgstr "Imagen de página de archivo provisional" #: wizards.py:38 -#, fuzzy -#| msgid "Step 1 of 2: Select document type" msgid "Step 1 of 3: Select document type" -msgstr "Paso 1 de 2: Seleccionar tipo de documento" +msgstr "" #: wizards.py:39 -#, fuzzy -#| msgid "Step 2 of 2: Enter document metadata" msgid "Step 2 of 3: Enter document metadata" -msgstr "Paso 2 de 2: Entrar la metadata del documento" +msgstr "" #: wizards.py:40 -#, fuzzy -#| msgid "Step 1 of 2: Select document type" msgid "Step 3 of 3: Select tags" -msgstr "Paso 1 de 2: Seleccionar tipo de documento" +msgstr "" #: wizards.py:66 msgid "Next step" @@ -532,14 +507,11 @@ msgstr "Siguiente paso" msgid "Document upload wizard" msgstr "" -#~ msgid "Clone" -#~ msgstr "Clon" - #~ msgid "Staging file delete successfully." -#~ msgstr "Archivo provisional borrado con éxito." +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "Error al borrar archivo provisional; %s." +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -617,11 +589,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.mo index 1f0853c9b4118107e2d07c8d18a0a2569a7ee92e..8be33ca2fa97bf28585f69877553058e7c000045 100644 GIT binary patch delta 2194 zcmYk-ZBSHI9LMp)fw)zZ?Ic3B<-pCD17c#6uJN(+ZuQamVb4=<9fslY~k z)7Ho|z41jZAtSRbnbTC0)-+RNjx{>o)t;u($$S&po2Z%k{w|lMGkfmm+;h*KhyOWu z_k-0Zt0Uj#rM+%Q_mOWPf9f-4C-%(YLJFiClZQdidR)N${dhh0dG{~kT<+h%3_OVI za18mF%Ul-W6yAv0G@=+WD=AzMpVD8sEItNdd4@~D6Gfr*np!*ALciF0;lmhwE4E`!$_4GL=F53 zY5}jJ+8scx_zjJcFg^ zV|Ha2M5;^|4y70~fQz~RlUd6}#9tFwi#MZjyJ&I$ zH7fL1(T}N&z5;`&4j#r*>_$Fjgi9NaqeA;P>icteM;Br~Dk1^Y$~&+cBU>n_g9E6& zKkPO5#JfM`J->wNcpAGfm1Tu-JL>!2;$ECW4Y->yD3T+niNuiLnDJU@EkvL6?hq2v4q(+ zVIQiWV@PxNAhziJ50URAYc<+q7T|WI6T5-jLDtHe$?E7XvR0(QmDZ3o5J$xw0Nivt z*Ogwm1a$zl042SSHRQ;>T(lp{$Q#MCiJ-Xu3AZ9!?k4@7>vdJq``tj+FPoAgw~Ab^ zoBt&p(pqvOS=+3%mdxLbqOA2Bv)aART$X@E)|T8&zK5(o4yAT-fLyH`lFo_V2Aybr zv)msiaKo>+LFY+{x7ys|mSzs6&XxXzigc8N-h)|m$aH{oY8QKz`VmrM>)f=SYn4iM zU0qh6{fyPrQrB+Ty`9}X|5dfOwTEV^qE`BA(f8BqiZ%?`ongDn)N{4M-MzM{w;$_# zswbS7PEYgYHg|5bdrWixwu%GVU)!pCcSFbfzSs*yut}Iv+3?{bD%See%=Hz9&b9Ba?i3|IjiD*10 zzi3DQj*vB5W1JWd#+@-|!is)eP#oQ#^HX#vx3fIq#GE6}SaSHs=l402&O~z9&?x4_ zX@10V-budf#F9fM`4RV%R`LZW?i@{A%)RJa;*2`+^FvO;88yj0PMplx$zcs-C0}x4 V=O+?{`JefsHHE#2jH1c3e*w+;BSZiI delta 2368 zcmYk-TWl0n9LMp~Qf)1zWw{ju%RxZA(6!yNr5B+h77zr~dI?5}>+bX-+iq>AL5#_Y zVxhv5E71glAwCpPDP>}Wq@un^A|#r4$qc5(NHk)?i;`&65Wm0af}ZY~&s@&+f6h$L zHI6lBzn@mL-;f?A&m)f&8uKhZaUBPeEjDHrF2EVskiXuD*K?i165NI>(M47Dke@ll zVJ?1(H{m#{-rqRgn5-$Jb|p7vVFN~SDt6!$d=86n5NG0EtiVH9hNGx*r;#?zIh>DQ zquRZUs$X`)MEwX(=6VU%(Z8wVL4K;po9*$UT!lb(lsCYyivgdDKjYa1y?OTCxME zke);h;A2#|GpGoCgH`w=F2DkADl!W(tA?97(Tvuk3OtUB@CDSs4xt);7d0RcpTv`> zaHAa1AcOA=L9xR7Af;P3$6SK)+2P{GsumFxF46|DO5;*Mpe9o zdJ9UKMjb9dZN^7X1KEa}$PQHbL7a{6glUwMpZ+1{+ZwzL<9ii9pu8#)&F^ zg0(n~w_yeG(^52|p0}fx=w;NV8pdWkhm6^j%$XQa6>8~fP@8l)Zp8hliCw@|_y;c2 z``^g)V%+FK&GZll6&yotsxR~R|I9m`&)J)7x+p3FXBb@^15}7B_{`mhTT$&CMv8}% zyC1c@dakzPdjC~On@H=Z*GFkS`Cjrm@_MpDtgtFACu>Gp4lTw1Q#}{AkoCz`QpA)j z`9YnK_`;i;$>I9zh7$WC{2!p#hqok5jU1V@X(F#8YaO+wE#y1Nb>!9LyUACRmQHCc znN1$129Da~taq4J2Y$u z6tDJLOC}Yr+?eP}+xEUpx82^^mF%=`#wI(R9gHVe}AIG>9^av+)kTt-2~54 zHkC;ZbUQt6f7IJj>J`+boV4RQ*6HiZ^flYX{ZZ5ACOW!$I&6Da+Ohe^{R7D)?X?f2 z(>tQME0Y`6w7E{Nt+knU8*8#{G?H|$wQb!Uy$WQ`yq0naFZVDNmwMX^1BAwMcQiM7x{XAQ|Gs}b*hvS$o?vJ2QtqS5IR(+&k;=?d z!RcTZUDsNF*gv7*FrY#IsDF&>!}-2VzEJF1AqFz6ZZ$Os25Fi~!~O_kM-4F?cGRn! H{Xx;cM4WzP diff --git a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po index 61711d452e..c8c627484b 100644 --- a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "سورس" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -37,7 +37,7 @@ msgstr "" #: apps.py:65 msgid "Created" -msgstr "" +msgstr "ساخته‌شده" #: apps.py:71 msgid "Thumbnail" @@ -45,7 +45,7 @@ msgstr "اندازه کوچک" #: apps.py:81 models.py:606 msgid "Date time" -msgstr "" +msgstr "تاریخ زمان" #: apps.py:86 models.py:609 msgid "Message" @@ -73,23 +73,19 @@ msgstr "پرونده" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "پیش فرض" #: links.py:26 msgid "New document" msgstr "" #: links.py:35 -#, fuzzy -#| msgid "IMAP email" msgid "Add new IMAP email" -msgstr "ایمیل IMAP" +msgstr "اضافه کردن IMAP جدید" #: links.py:40 -#, fuzzy -#| msgid "POP3 email" msgid "Add new POP3 email" -msgstr "ایمیل POP3" +msgstr "اضافه کردن pop3 جدید" #: links.py:45 msgid "Add new staging folder" @@ -137,9 +133,7 @@ msgstr "پرسیدن از کاربر" #: literals.py:27 models.py:252 msgid "Web form" -msgstr "" -"وب فرم " -"ا " +msgstr "وب فرم ا " #: literals.py:28 models.py:232 msgid "Staging folder" @@ -159,7 +153,7 @@ msgstr "ایمیل IMAP" #: models.py:48 msgid "Label" -msgstr "" +msgstr "برچسب" #: models.py:49 views.py:514 msgid "Enabled" @@ -279,9 +273,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " -"for IMAP over SSL." +msgstr "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 for IMAP over SSL." #: models.py:338 msgid "Port" @@ -313,10 +305,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -325,10 +316,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -374,10 +363,8 @@ msgid "POP email" msgstr "POP ایمیل" #: models.py:534 -#, fuzzy -#| msgid "Mail from which to check for messages with attached documents." msgid "IMAP Mailbox from which to check for messages." -msgstr "پیامی که میبایست جهت سند پیوستی بررسی گردد." +msgstr "" #: models.py:535 msgid "Mailbox" @@ -393,7 +380,7 @@ msgstr "" #: models.py:616 msgid "Log entries" -msgstr "" +msgstr "ورودیهای لاگ" #: permissions.py:7 msgid "Sources setup" @@ -416,13 +403,12 @@ msgid "View existing document sources" msgstr "دیدن سورس اسناد موجود" #: permissions.py:21 -#, fuzzy -#| msgid "Error deleting staging file; %s" msgid "Delete staging files" -msgstr "خطای حذف فایل مرحله ای : %s" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -437,13 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع " -"بسازید." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع بسازید." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -466,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "نسخه سند جدید که جهت آپلود وارد صف شد بزودی قابل دسترس خواهد بود." #: views.py:419 @@ -481,6 +467,7 @@ msgstr "ایجاد سورس جدید از نوع %s." #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -498,22 +485,16 @@ msgid "Staging file page image" msgstr "تصویر صفحه فایل مرحله ای" #: wizards.py:38 -#, fuzzy -#| msgid "Step 1 of 2: Select document type" msgid "Step 1 of 3: Select document type" -msgstr "پله 1 از 2: انتخاب سند" +msgstr "" #: wizards.py:39 -#, fuzzy -#| msgid "Step 2 of 2: Enter document metadata" msgid "Step 2 of 3: Enter document metadata" -msgstr "پله 2 از 2: وارد کردن متادیتای سند." +msgstr "" #: wizards.py:40 -#, fuzzy -#| msgid "Step 1 of 2: Select document type" msgid "Step 3 of 3: Select tags" -msgstr "پله 1 از 2: انتخاب سند" +msgstr "" #: wizards.py:66 msgid "Next step" @@ -523,14 +504,11 @@ msgstr "مرحله بعدی" msgid "Document upload wizard" msgstr "" -#~ msgid "Clone" -#~ msgstr "کپی کامل Clone" - #~ msgid "Staging file delete successfully." -#~ msgstr "حذف موفق فایل مرحله ای." +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "خطای %s در حذف فایل مرحله ای." +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -608,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.mo index 7ae1d4738c3cc4e3083ad855ce3ac507974036bc..fc8e4f44946248aea3aa99e15201c6c18f18c378 100644 GIT binary patch literal 8366 zcmbW5TZ|-EdB=}~&1DI}fFX`;;Mmw6U$%Q@cD>7bmbDr0g+*5)sKHJP;a$cmTo+0wkiy$ZrsdCqxn@`Tb9w zs;=2tl0d0X|Lfep^WDz()xW&<`cD|1b;@m&{Vy@*1K`_U${)|^mmBk1@QlYNz&B7& z!JEKmeEn0Pru-eq&wP=;hrq9ZF9WZ8g)ujSuK;fa?*QKjJ_M@&36P%&eLVrS-X{1u z@crO#f*%8qfIFb*c)|Do9K4bGtM(c5=ir;bSAqWsYTP%#>%o5oUk|ZvmeHIimRtsP&%%Md#mmd>#~kzYP8p_~-pW6Qc6#ZWXMenyk?fX5DpZOtwEMa~OqB7>+ zLFvzbfs)&;97^=v0czZRpy)UPijOBjhMFfqerCv@_I)3ydC!2_?~lMI!9ND?1b+&O zt~bD}N5I>`888IZ{}E99{##IVe-(Ta_)Spz{}>cKKllAFdrh_PjbMlNTfi=O8ax1Q zfg1mp;D@g>=6Ucf)K4Hx;Q+iJ{0O)od>+&~FM`_tbr{KSfwzI@z{8;A`iyV?IH-Al z1>OaI9~A%o8`QopMajgEn?UjBHt=@vZjYzIL)0&UlK-bc@%M`$B$)4jUjttRIkI^U zW02i_2^4)l04?|QIwpyqc$?f(cU{dp9;5Bx(=dinRh|DVBG>fZxlk$E}9 z$o_8uCC7JxlH0pMtsjGsWZvi7KMtOt{wyedy#UJY{u30PH`6G3ZU@DuL!j1q9E4RS z@%0aYqW6=a`1BXxx4|!i;_F8tT739Za09#oZi6?nnc6=DUIPCNMAggp!oDGcpZ3<(thry^1Hr4{F80`4&@%-CYkFI4T#ps zNc!|7Mf$Br{1VN2bcT0P-bPuWJV<#5Wr?CkG@qeJC-g{%1B!SyPnn^>3iEc#!xYKp zG)269oN|)#9*WK?Ig2M}DHkY`i=MYqB+K8UNCuLR9?4TO(<52HD#t6;S1FQ*9`W}$ z1raxobV&Lv9e&ieo&&{OJ%=feQ68Y^ZmypvcsWm5ro5B#ZpvFIH&E(F^1oPDz&l#+ zi>>!N{k!a^exxIoa)Kf|K1z|FmF%Tw9g6(bZ&QAag1J}EVi?*a+OlVs7guaF3gV%u zn^w-P9K5P2FM^FY*|7a|7)Dt$aw{l$gFTJWdOyuZHc!i}7n#N3R&Y5ti}_Qw%r!U9 zgi&bwSvs=CAkO`2U2{AgX_7gfML`j@m+|}g z4xO#pq3X)(N$RVbY}$9*FW9^4-q4)T!bLoa%!#NUl*0lXMun;Z8}y4P^EB3Nd$#gp zi$P@j@vxr6K?Xr?*P|%0dD-hldEPIF!^_QyyY+&aSkWlj9yTXxZjG~a9A!lu<cMevcK=Pi}{JgFB=^zWu$uKV5U$c8#U+liTAU32iSOjWc?s zj7-bTDgNDGE{@hqj)P)gPC4ta?)`KWZwv~%84OFu9ym1)+%oV=BI%{cCUQiR)`Q+t zQ4)5|=`=4)%OKArbO*g6-mG=O>}|@cHa2Qr9AOa~gi^I)OWM{OM7^gF3jEk5|L$~F z#oMdvxmgOaNQgl$&K_w4QF8Wmp(&L|_qwK@r%XD1zR= z*?$sXYG?U#)(C4_eZ?Rs>{dJ+ieE(#C%I$Zs9whT4lRHpBdvr$SE;9SHsv3>W*%alNYSq*Lt0$_gt8o$PU5_{yDlSusLQJV^&XtbQ-ntC8ioaA^_sa?XzGG&CS}N9IYq1Dc86h(y}mX@?`wQy#NIrq%nTPIn??2 zIVWfxb-#V^!9z{WraA$K*>C3`IOv*X@ftL(HG{h5f@8Mbi15R4rMh|REV=Vl7n0gd znG5df#9P-b-f_+3wFUVG2$cs5Ae7eFsM>T$)RdRFGw!w^=`oyN%4MYxxgoGU*ts_i z!_$sR7{(riWM(Zb8J`gj62`M*W+$Jv!2yHuK?kP;NK2hesGm z6DK>lRv8BbnhKz7FDl?qWtmM7E)s~TCp*>3R~c~K!)(W9PF#oaxgA3>fn~FCJ-Fm9 zsYmfIDFe(W)cp=725+AKDea*B~XcuJf)Y+`_R+oIxWbm$C2*F_~8{{qn;jqdY97|w(hKwsFiqgH>+BI(V zYLQC4YgX>`w&E%CFjV!0mZm{nlOp~Odz#V!FmvQfxFf2H{q(hIqitOqlu8$FR zLS~V)!p;A8lm$#)+YXge|6cMQCxKd)cCgEx!Z}f!Md~A_7$F`OFNZDD^r{c9^ zlu0wF>oOlLP&@qH6tXCE1w{EMpLC~d9u2rNbJB|H9<3MN(_jNQuS?hYA9*kWar^*L z66%2x!fDx%yXXrYEsXPVnpE~FpCz;5Dkr1OqP`7r=s~RTxOHFX7|M{GRruR&gkM4# z*>3NCZ8z?j#%HPjZC_aDH^!e6t&kz18%01GuvqqVdDUKM>i4EL)X!})6KH}i0dB20 ziAj3P*(A0u%|~q-hYZnLkF2nADNZ$#QeRTEHyTHr3r7>KU_w@SNKoP}*o7y{sdGi{ zt3#Dvo%W6a%i~(y;W{AjSB#(tWhuxuyaRC}zPexe7atLv*CCB=1v<*YCRa$`iDwX# zbZ?WD_GDzlef@ZYFirb8J@l8KsjpYgd`*XI7W*2aOb!0JuNZ7cfTgspHYWe-*D~i@ z6!KB24#)QI^5jl8+?MU}NcsOU;Ubo$s7Ub#y4X@?L@Tc2jdTZM^W?+R$VjGe6iKg4CRAP>t>rt*D)|+IAp5)QQVqdKeCK#GF-71 z$C}<+Zc+EO3IR(Mql8##hCm@o2&w!n>UpnJv-)Z#&%-;yYP#x_lZeGs28dT+o!WJ9 zqblp%6@5Z{>pIo>94Whk#oG9P)rsazh$rHD!rr{TL72QwwKYmHjSd^e5%5(pyc^p# z3sXn;ewCKRaP997;agQQTkg?NYGU&lK5#0u#Yb>$z@xTE9BmC-aivvqOLUH|6Y7^&Mlk2HqALTXB3gp>E5&L=)Lz`?>%?U z5*LBeCKPm&{wOko$`uKANf!MgZxn(RSq>srAVdfy5*bB5=>0jnTRrT#uk+*i@qNC} zb9Q?DrPTx9l@=T~l-<;M)c5j@*^dw1zz@Z`$(V9nh_kRMci)LOav#R2xDW3}AJsL3 z{F!(7nTsFcd>ljd`xDEI88G?uuHZpAHeoH^j6GP4{aAoUaW)>qnRpV5@C>Tm2gsP_ z0xrO>QRDuK>R(hi-oFH=bH5ZDnBO#Tp$0uT4I@~J2apKO5Hf~&5gYL}Q~+bBKz~N9 z{2x>RYZ*itXv0?Qz|D9JX=1*@y*P$5nBQz69KE<7d1h?Xgb`F=DV%|iqE(R@#cI@i5loSyV=@;0mmqV@w@x#YQ}YO8r}?OumZ>XcRsC7Td9d*>q-} z!QJ>0HtPGo&P5XsmeE`Pp~9#$@dVzEPa#dr2r88qk@IG*=KLEKco8p~u>;rQQB)>B zM$Tvu^fpvB?x8NFHZp&3Fcg^%nm!*DrBM60g}Rlh6_K%^C_CCq1);6^e_6%NtyJa= z%A%YW-kZDTKfJkxs;p`Lps@WxT6FpqwaOYQiwjn@9+gJzX)9G*(m>rvT}PcL%9zS# zst%fpvU>-$MmH2?Cszi7e*`)>UDTb_T~xL@C_DJocfE4_*0iCvM*kah81-*fMdzY} zx?MLE9n8hS)%e!v;Asmv%fV-!du3X*8Mkq#PfbPpuc8yG!r2MRUHs}Wrejl|EsA(C z$87YXQ77i77Z$dp`wFA!8Ph5Y{DW~P{r$9fX5aL}yltJf8?m|*Uer3!>xOzQ-?Ku! zPH3Oi?Io73c!?Hk35~jZyT^_7Slw>Kv2w4IsZfZ~yHk7b*q}|o6;qvb0?py zXl$-qm043-otHjQ_T#Kgsd&WQpK=ltsj}Tf`t@1&rRU8)lD;^*tYEjY^;!A*nYSxK zc@LA%IBN?#R>(^w60Q>=f|ze9hjz-hlBq)T zyln8Yry0#o_0!t-6HYSybk&^9NL6cods`ymq*$NBnDIETlCBrC!YPs%>UA04i3Kqv z)gm=BTUYVi!i>Lex`YeEc diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po index 5641acd92e..5bb9f3a4b4 100644 --- a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Christophe CHAUVET , 2015 # Pierre Lhoste , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,19 +25,20 @@ msgid "Sources" msgstr "Sources" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" -msgstr "" +msgstr "Créer un document source" #: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" +msgstr "Les sources de document seront la façon pour lesquels les nouveaux documents seront suivis dans Mayan EDMS, créer par au moins un formulaire web pour téléverser le document depuis le navigateur" #: apps.py:65 msgid "Created" -msgstr "" +msgstr "Créé" #: apps.py:71 msgid "Thumbnail" @@ -45,11 +46,11 @@ msgstr "Vignette" #: apps.py:81 models.py:606 msgid "Date time" -msgstr "" +msgstr "Date et heure" #: apps.py:86 models.py:609 msgid "Message" -msgstr "" +msgstr "Message" #: forms.py:29 msgid "Comment" @@ -61,9 +62,7 @@ msgstr "Décompresser les fichiers" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Importer le contenu d'un ensemble de fichiers compressés comme fichiers " -"individuels" +msgstr "Importer le contenu d'un ensemble de fichiers compressés comme fichiers individuels" #: forms.py:67 views.py:432 msgid "Staging file" @@ -75,23 +74,19 @@ msgstr "Fichier" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "Défaut" #: links.py:26 msgid "New document" -msgstr "" +msgstr "Nouveau document" #: links.py:35 -#, fuzzy -#| msgid "IMAP email" msgid "Add new IMAP email" -msgstr "email IMAP" +msgstr "Ajouter un nouveau compte mail IMAP" #: links.py:40 -#, fuzzy -#| msgid "POP3 email" msgid "Add new POP3 email" -msgstr "email POP3" +msgstr "Ajouter un nouveau compte mail POP3" #: links.py:45 msgid "Add new staging folder" @@ -123,7 +118,7 @@ msgstr "Importer une nouvelle version" #: links.py:84 msgid "Logs" -msgstr "" +msgstr "Journaux évènement" #: literals.py:10 literals.py:15 msgid "Always" @@ -159,7 +154,7 @@ msgstr "email IMAP" #: models.py:48 msgid "Label" -msgstr "" +msgstr "Libellé" #: models.py:49 views.py:514 msgid "Enabled" @@ -249,8 +244,7 @@ msgstr "Intervalle" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Assigner un type de document aux documents importés à partir de cette source." +msgstr "Assigner un type de document aux documents importés à partir de cette source." #: models.py:275 msgid "Document type" @@ -280,9 +274,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 " -"pour l'IMAP, 993 pour l'IMAP over SSL." +msgstr "Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 pour l'IMAP, 993 pour l'IMAP over SSL." #: models.py:338 msgid "Port" @@ -301,11 +293,11 @@ msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "" +msgstr "Le nom de la pièce jointe qui contiendra les noms des type de métadonnée et aux couple de valeur qui seront assignés au reste des documents téléversés. Noter que cette pièce jointe sera la première." #: models.py:349 msgid "Metadata attachment name" -msgstr "" +msgstr "Métadonnées de la pièce jointe" #: models.py:353 msgid "" @@ -314,10 +306,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -326,10 +317,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -375,11 +364,8 @@ msgid "POP email" msgstr "Compte POP" #: models.py:534 -#, fuzzy -#| msgid "Mail from which to check for messages with attached documents." msgid "IMAP Mailbox from which to check for messages." msgstr "" -"Compte de courriel dont il faut surveiller les messages avec pièces jointes." #: models.py:535 msgid "Mailbox" @@ -391,11 +377,11 @@ msgstr "surveiller les répertoires" #: models.py:615 msgid "Log entry" -msgstr "" +msgstr "Entrée du journal" #: models.py:616 msgid "Log entries" -msgstr "" +msgstr "Entrées du journal" #: permissions.py:7 msgid "Sources setup" @@ -418,15 +404,14 @@ msgid "View existing document sources" msgstr "Afficher les sources du document en cours" #: permissions.py:21 -#, fuzzy -#| msgid "Error deleting staging file; %s" msgid "Delete staging files" -msgstr "Impossible de supprimer le fichier en cours de modification: %s" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" -msgstr "" +msgstr "Erreur lors du traitement de la source: %s" #: templates/sources/upload_multiform_subtemplate.html:35 msgid "Clear" @@ -435,19 +420,18 @@ msgstr "" #: views.py:64 #, python-format msgid "Log entries for source: %s" -msgstr "" +msgstr "Entrée du journal pour la source: %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Aucune source de document interactifs n'a été définie ou/ni activée, créer " -"en une avant de continuer." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Aucune source de document interactifs n'a été définie ou/ni activée, créer en une avant de continuer." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" -msgstr "" +msgstr "Propriété du document" #: views.py:163 msgid "Files in staging path" @@ -455,9 +439,7 @@ msgstr "Fichiers dans l'index, en cours de modification" #: views.py:262 msgid "New document queued for uploaded and will be available shortly." -msgstr "" -"Nouveau document ajouter dans la file d'attente pour transfert et disponible " -"dans les plus bref délai." +msgstr "Nouveau document ajouter dans la file d'attente pour transfert et disponible dans les plus bref délai." #: views.py:302 #, python-format @@ -470,10 +452,9 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." -msgstr "" -"Une nouvelle version du document mis en fille d'attente pour importation qui " -"sera disponible dans les plus brefs délai." +msgid "" +"New document version queued for uploaded and will be available shortly." +msgstr "Une nouvelle version du document mis en fille d'attente pour importation qui sera disponible dans les plus brefs délai." #: views.py:419 #, python-format @@ -487,8 +468,9 @@ msgstr "Créer une nouvelle source de type:%s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" -msgstr "" +msgstr "Supprimer la source: %s?" #: views.py:499 #, python-format @@ -504,22 +486,16 @@ msgid "Staging file page image" msgstr "Affichage sous forme d'image de la page de fichier" #: wizards.py:38 -#, fuzzy -#| msgid "Step 1 of 2: Select document type" msgid "Step 1 of 3: Select document type" -msgstr "Étape 1 sur 2: Sélectionner le type de document" +msgstr "" #: wizards.py:39 -#, fuzzy -#| msgid "Step 2 of 2: Enter document metadata" msgid "Step 2 of 3: Enter document metadata" -msgstr "Étape 2 sur 2: Saisir les méta-données du document" +msgstr "" #: wizards.py:40 -#, fuzzy -#| msgid "Step 1 of 2: Select document type" msgid "Step 3 of 3: Select tags" -msgstr "Étape 1 sur 2: Sélectionner le type de document" +msgstr "" #: wizards.py:66 msgid "Next step" @@ -527,16 +503,13 @@ msgstr "Prochaine étape" #: wizards.py:68 msgid "Document upload wizard" -msgstr "" - -#~ msgid "Clone" -#~ msgstr "Dupliquer" +msgstr "Assistant d'envoi de document" #~ msgid "Staging file delete successfully." -#~ msgstr "Fichier en cours de modification supprimé avec succès" +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "Erreur de suppression du fichier en cours de modificiation;%s." +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -614,11 +587,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.mo index ebce7ef178eeca40d366de3a9ecad6904b49f9f6..5b9d06f19a4cdbeb6a4ba43c91faefbbc84eb6ff 100644 GIT binary patch delta 536 zcmX}oJuE{}6u|NO>iKA^K3Yvlkr#tS8eUP-g!o>BiOE9bristSdqum{B4VOmZ4z6P z4xJ=IERx0|u^LS_i`nFVU&=}D``vrqZO=KcOWpEfbST_&)WMRtmho`2;s#}JbA?i>~On>e~Ewwy#+=0|lHToCotEf7v2{)#9jy6JBOH5naM#ho{Vs?Lb zSMJ%)l(rC<+uzKngJEaW(mB;ez0300HY{7Fok#68kcbTp$Ks}8CXyp#&ZQ^%pNX4E z)4Y4|jA;HPnc9-6Y_3|ioUgi6gI%qpGnQlOVP{Pr4=q;j52d{=b1wyBr&>;{Ygc;l E7Y{j2^#A|> delta 410 zcmXxfy-UMD7{~D^ZR$&__>O`vgbprpa0yAR8H9-FsJIJuh)@*;V-=?^;^LrixH-Ex z>ZFUCy0{5WPLBNxocvzU2Y!6G|giXQG@H(sC}$lw6p;UYfa9R46}q)d1+uZkVTHti+$cXmQsc5++X$;&oizWgVW z?42}DGfA>tua%{T=E_+y-%e<%g|{eDdO-!D=hxz(u5_q%d3{Z7q{q#yd9bgR8%JsE a1={~Vr=!@f-FwB*F, 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -53,7 +53,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Megjegyzés" #: forms.py:44 msgid "Expand compressed files" @@ -247,7 +247,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Dokumentum típus" #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -305,10 +305,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -317,10 +316,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -406,13 +403,12 @@ msgid "View existing document sources" msgstr "Létező dokumentum források megtekintése" #: permissions.py:21 -#, fuzzy -#| msgid "Staging file" msgid "Delete staging files" -msgstr "Átmeneti fájl" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -427,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -454,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -469,6 +467,7 @@ msgstr "" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -499,12 +498,18 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Következő lépés" #: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Staging file delete successfully." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Staging file delete error; %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -581,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo index 32581c90ec69093c37fad5ff337ef21e37d9b540..f00de6eabdea5a3d554556818887237a3fa18d8d 100644 GIT binary patch delta 704 zcmYk&zi-n(6u@!2u}g`X0_B$~C^b-_3NYAdDG;#`l^>!JM5qHoT~6&OHA(C!wp+5$ zxf4)}v3~($H^jos5|)aE3dU{>j0}9A)vBEI{5hT9-FtT%!|z7ccSo%c2ICZQp7>0R z6N@GvMjr?98xG-jJc7UQ9PXjy+XIGi6ffghbny;8z~lG^OZXN~;}(*)ZfrBLSon%I z_E8SnK`HnXtGI_3@Opv6aUM4)-a~1yz~&JwqU;;P3A}`pSVd`|fzo)2Q`9%!Gm(xy z?I-k6ZnTTC@h?h)7pXFgSMVfGqZE3CFR_kS@gv^F9i+efW#z>V2Fpf~7?p(@A&1Hn zal!mxDaNJpabjOVUgiHG#px}-wcPAjcHbNujM{A-CfN(~-jGVPlLT#@ZJJA^xo9bs zKTgu?=(ed;URQ*{}HicBL?3mgXZVrn*KoRmrA(CX20Wr9_2|hH5!$ zs+pwOmbGX<(P0p0zpdJhyqkq!Sv8%G?uKf`sFB@ND^9FiDtwhDVNV^l_t^gO53Z$c A$^ZZW delta 471 zcmXxgJxfAS9LMo<)oTx0L{SbsDCJPWm8+8MKIf7D|K9Fo$KUQvd#(jzk}QxbGDCie8aYh}FXnL+ zi#U%ZT*M{@P+|)2aSA_h7Qcq)K9>+W>lNI_HCz&+EvifmHZHNl8L1JF14hF^mDK`Edh}FpukahiQC8t$)H|f{YN}_KT}8RgbwN+(eDB z0b+cp`eSO)ukfkKR`tSaIbzGHgqn`ske}LyjJPa$WJOf>oU;|^+aS>M%jR=w%S2k)Hh>YK8s UXZ?reW2+LX+l`uaA`9M^KLaL0H2?qr diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po index 3adbd0c36b..208860d369 100644 --- a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Sehat , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -45,7 +45,7 @@ msgstr "" #: apps.py:81 models.py:606 msgid "Date time" -msgstr "" +msgstr "tanggal waktu" #: apps.py:86 models.py:609 msgid "Message" @@ -53,7 +53,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Komentar" #: forms.py:44 msgid "Expand compressed files" @@ -61,9 +61,7 @@ msgstr "Kembangkan berkas-berkas terkompresi" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-" -"dokumen individual" +msgstr "Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-dokumen individual" #: forms.py:67 views.py:432 msgid "Staging file" @@ -71,7 +69,7 @@ msgstr "" #: forms.py:71 forms.py:76 msgid "File" -msgstr "" +msgstr "File" #: handlers.py:14 msgid "Default" @@ -249,7 +247,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Jenis dokumen" #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -287,7 +285,7 @@ msgstr "" #: models.py:341 msgid "Password" -msgstr "" +msgstr "Password" #: models.py:345 msgid "" @@ -307,10 +305,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -319,10 +316,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -408,13 +403,12 @@ msgid "View existing document sources" msgstr "Lihat sumber-sumber dokumen yang telah ada" #: permissions.py:21 -#, fuzzy -#| msgid "Server staging folder" msgid "Delete staging files" -msgstr "server staging folder" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -429,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -456,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -471,6 +467,7 @@ msgstr "Membuat sumber baru dengan jenis: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -501,12 +498,18 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Langkah selanjutnya" #: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Staging file delete successfully." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Staging file delete error; %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -583,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -601,6 +602,9 @@ msgstr "" #~ msgid "Upload sources" #~ msgstr "Upload sources" +#~ msgid "Server staging folder" +#~ msgstr "server staging folder" + #~ msgid "Server watch folder" #~ msgstr "server watch folder" diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/it/LC_MESSAGES/django.mo index a7b027f2089c8d04ec9ea1e358d9290be1cf6eaa..caa50dda5bb8e3af68957bef463f5d8fd236d257 100644 GIT binary patch delta 1109 zcmZ9~&r1|x7{Kv&*L625t<2OiZ3Igqm)x~XO@!6;V6-B(P#tG?UvX-7XW4l-69OTy zn{=28>R=G{4sd?OP`w~ z4;7`GdYsx5QtB-Bg=r`o7{%|n2Y+G=H?adlbxL(&CpO?kl=qV;-(|23vp9q<9>f>e zsML~L=O#kO8$5z@SxA{n>;(<%Ro6gm67RM`nm zOdX|4l3OL^F4&8{O8Gafs;?_*BI*^3x@3a(@MxQDv}K&4R%tzFS6zdyHaeIM=lj!M zzA6JPvsl(@vf!Al#wzUg`(Cw@*S?x8**RAif_LHBuFG~#yJ}kBVx?()+gQHQWi?~_ z{(@I21l@JRP1*TsF;}u3S7n)a?MdDFP~%{{e;}SrSc$=ra~Fb7k&aqVGBJ`!tVQa3 zL$U3+z2J0oyem~MS4+m0_&lo?{e)f0YuB}d8_`00)+u|nU>TJ03eKF9w}bc5?uJy( zaUEkDFZdC?eo7lBKd+6kRmOJIOvUqkr|4N_!sf$T^i#2sri@c^Y*Ve+O6FhNh;@ek E0uHaI!~g&Q delta 852 zcmZwD&1(}u7{~F6n>2}9ZDZ>TjdmS85WRTx;>GWzF$Zzr+0X1wX6BdY)zE`X>vJalOfU{n zS?UutNhUh?dA& zI~R{(KMNOeFIMmv-p1qD#1r@eFX8*{y2YtE-p80@E$r(O8!h^WoSrFnQCVBsfoF#tYGX6&H7E3Ie4lLt7yn}mi6Q^+tO|W-(0e@f# zPtnG4T*b58FCH?f;5M4B^Se&sG}5Bp80yYUTTQ1-+fCpMWrhi9T5rM~py;sJO_^}} zslS8#y^-b4PPAt75y++f=!=Xs%Pz zSDt4}$MzjFx$g#kC(uqZ*O#{EDIL1zzXY=;+mea=&q8m17)U4ZWjAY(7ne8g23otT TW>XM`%2(X!xjJlT(^l*cr8JMz diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po index 715952ff51..17d8515a92 100644 --- a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Giovanni Tricarico , 2014 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -26,6 +25,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -42,11 +42,11 @@ msgstr "" #: apps.py:71 msgid "Thumbnail" -msgstr "" +msgstr "Miniatura" #: apps.py:81 models.py:606 msgid "Date time" -msgstr "" +msgstr "Appuntamento " #: apps.py:86 models.py:609 msgid "Message" @@ -54,7 +54,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Commento" #: forms.py:44 msgid "Expand compressed files" @@ -74,7 +74,7 @@ msgstr "File" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "Default" #: links.py:26 msgid "New document" @@ -102,11 +102,11 @@ msgstr "" #: links.py:60 links.py:74 msgid "Delete" -msgstr "" +msgstr "Cancella" #: links.py:64 msgid "Edit" -msgstr "" +msgstr "Modifica" #: links.py:68 msgid "Document sources" @@ -154,11 +154,11 @@ msgstr "" #: models.py:48 msgid "Label" -msgstr "" +msgstr "etichetta" #: models.py:49 views.py:514 msgid "Enabled" -msgstr "" +msgstr "Abilitato" #: models.py:144 models.py:603 msgid "Source" @@ -182,8 +182,7 @@ msgstr "" #: models.py:165 msgid "Width value to be passed to the converter backend." -msgstr "" -"valore della larghezza da passare per le operazioni di conversione in backend" +msgstr "valore della larghezza da passare per le operazioni di conversione in backend" #: models.py:166 msgid "Preview width" @@ -191,8 +190,7 @@ msgstr "" #: models.py:170 msgid "Height value to be passed to the converter backend." -msgstr "" -"valore dell'altezza da passare per le operazioni di conversione in backend" +msgstr "valore dell'altezza da passare per le operazioni di conversione in backend" #: models.py:171 msgid "Preview height" @@ -250,7 +248,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Tipo documento " #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -288,7 +286,7 @@ msgstr "" #: models.py:341 msgid "Password" -msgstr "" +msgstr "Password" #: models.py:345 msgid "" @@ -308,10 +306,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -320,10 +317,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -409,13 +404,12 @@ msgid "View existing document sources" msgstr "Visualizza sorgenti documento esistente" #: permissions.py:21 -#, fuzzy -#| msgid "Staging file" msgid "Delete staging files" -msgstr "Mostra file" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -430,11 +424,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -457,7 +452,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -472,6 +468,7 @@ msgstr "Crea nuovo tipo di sorgente:%s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -482,7 +479,7 @@ msgstr "" #: views.py:510 msgid "Type" -msgstr "" +msgstr "Tipo" #: widgets.py:26 msgid "Staging file page image" @@ -502,17 +499,17 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Prossimo passo " #: wizards.py:68 msgid "Document upload wizard" msgstr "" #~ msgid "Staging file delete successfully." -#~ msgstr "File in allestimento cancellato con successo." +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "Errore nella cancellazione del file in allestimento;%s." +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -590,11 +587,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.mo index cee924218b6f02b3ea50bf645ea8530c69750b7f..2a5eeae28ea8682b0cc9916277cc73c61a699dd6 100644 GIT binary patch delta 1525 zcmY+CPiz!b9LL{wmo5bgQq)!{`U(^!VGG-8tql?vT4Q4=6$td8F|V_)+v(2EY-VP= zVoYj1NTP`cCwkFDyciM_6GI{wZ*ubH(S$&PoQwx!^r9C(zuD=g{xa`55k-95WEBX;Dc=b zcPRV+f`jm1I0X+BlzK#|4KZ5InaS= zK*&QMZurpIrt0Q4G)n8HK^loLk>ELBbmKKCktN9{x3t3>@6sF z>_9ni1MY>_;ePlTT!J^@9L#ZuhOfaH=s{8HyX^lVl(@(Dpg)SKM`>Fo69;G_k(dM& zBl$F_BqY^IV5wFr7duAdL8T^d_i37_HAItY$t|@4{SlfJB=1j+f&rS`u{;csbi2u8 z)Y}F|@F^fQdGT^Za^FwVn*yEg< z*?zp5t-5jAb%SIFMrzhK%bu+!KlNNZJ$JscsBOczo?5W$WV>MBj&&5LFP!h6ES;Jt zjhA(Ka{9R!lDmb2-I4L~bh&)1uwyc}bk$vpw6%UW-zW$|vkIUdfOPzkiRygHcUS1U7Oxg zF^#U4ZQF)*>#MV=(@jER_zchaH5)mrrf$7zvb)%v?dVzR2pR<3!Ii+PS-)x#)nuY} zraP*3{HrJyw<)tD?0dzLJjW+r6c68eW@le+yyEF#Mf{iC~SnVBY9jhiAwZn~w}7Nr(qP$JnO>JU%gXwQB7p1k)~Svr^m zorIvFQ$&}jOPwOTN$0wD3hEL;&@sFP^_`~~M8p2(^XAXa{N}fQV6%DUb93^MptTX5 z#0TOqu~tJztFILzjTx-RChWj=Jcxs6{yUAsSi&ZJhWqi&_WFBFGX8=m@EfLtSP`9x zt&4Nm$ijJSz$k?2iv(7+(Z&YuVP6)l|xq-6Yyfn8t(S(o-0*kD$ULOPJ)$ z!~QhhwbMGeJ1+MwGd1ciTh&mEh9y}ERiIxa&g!2DOD`td^n>J7YEmsR+mY(g6RDPw z>ByRQym>k2xJuf}Rgsb^2>jrT>oV`rv+usAUEy0&hpMn9~-sNGVWI*IpZwI+bWVwE;|dh3X~_8EKf#e z;5rK>IiteJ^6b1c`^(C;d2TU&+_iuA$gQU>`R?EI?7W!Zd?%EigJpky>sViJWPhZ_ L0;O#IDKqjL8qTGH 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 90fe0cf22f..163a1a1f15 100644 --- a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2012 @@ -10,21 +10,21 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" -msgstr "" +msgstr "Bronnen" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -45,7 +45,7 @@ msgstr "" #: apps.py:81 models.py:606 msgid "Date time" -msgstr "" +msgstr "Datum en tijd" #: apps.py:86 models.py:609 msgid "Message" @@ -53,7 +53,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Commentaar" #: forms.py:44 msgid "Expand compressed files" @@ -61,8 +61,7 @@ msgstr "Uitpakken gecomprimeerde bestanden" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Upload een gecomprimeerd archief van bestanden als individuele documenten" +msgstr "Upload een gecomprimeerd archief van bestanden als individuele documenten" #: forms.py:67 views.py:432 msgid "Staging file" @@ -74,7 +73,7 @@ msgstr "Bestand" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "Verstekwaarde" #: links.py:26 msgid "New document" @@ -102,11 +101,11 @@ msgstr "" #: links.py:60 links.py:74 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:64 msgid "Edit" -msgstr "" +msgstr "bewerken" #: links.py:68 msgid "Document sources" @@ -146,11 +145,11 @@ msgstr "" #: literals.py:30 msgid "POP3 email" -msgstr "" +msgstr "POP3 e-mail" #: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" -msgstr "" +msgstr "IMAP e-mail" #: models.py:48 msgid "Label" @@ -158,7 +157,7 @@ msgstr "" #: models.py:49 views.py:514 msgid "Enabled" -msgstr "" +msgstr "Ingeschakeld" #: models.py:144 models.py:603 msgid "Source" @@ -215,9 +214,7 @@ msgstr "" #: models.py:207 #, python-format msgid "Unable get list of staging files: %s" -msgstr "" -"Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. " -"Foutmelding: %s" +msgstr "Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. Foutmelding: %s" #: models.py:228 #, python-format @@ -246,15 +243,15 @@ msgstr "" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "" +msgstr "Wijs een documentsoort toe voor documenten die worden geüpload van deze bron." #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Documentsoort" #: models.py:279 msgid "Whether to expand or not, compressed archives." -msgstr "" +msgstr "Al of niet uitpakken van gecomprimeerde archieven." #: models.py:329 msgid "Interval source" @@ -270,7 +267,7 @@ msgstr "" #: models.py:335 msgid "SSL" -msgstr "" +msgstr "SSL" #: models.py:337 msgid "" @@ -288,7 +285,7 @@ msgstr "" #: models.py:341 msgid "Password" -msgstr "" +msgstr "Wachtwoord" #: models.py:345 msgid "" @@ -308,10 +305,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -320,10 +316,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -350,7 +344,7 @@ msgstr "" #: models.py:441 #, python-format msgid "attachment-%i" -msgstr "" +msgstr "attachment-%i" #: models.py:480 msgid "Email source" @@ -366,7 +360,7 @@ msgstr "" #: models.py:525 models.py:526 msgid "POP email" -msgstr "" +msgstr "POP e-mail" #: models.py:534 msgid "IMAP Mailbox from which to check for messages." @@ -409,13 +403,12 @@ msgid "View existing document sources" msgstr "Bekijk bestaande documentbronnen" #: permissions.py:21 -#, fuzzy -#| msgid "Staging file" msgid "Delete staging files" -msgstr "Tijdelijk bestand" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -430,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -457,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -472,6 +467,7 @@ msgstr "Aanmaken van nieuw documentbron van type: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -502,17 +498,17 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Volgende stap" #: wizards.py:68 msgid "Document upload wizard" msgstr "" #~ msgid "Staging file delete successfully." -#~ msgstr "Tijdelijk bestand succesvol verwijderd." +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "Fout bij het verwijderen van tijdelijk bestand. Foutmelding: %s." +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -590,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo index f90f21a8f818458b91e9df4ffa46e9c89108c1ec..5847acc23056a002bea96914ee3a0a9f2a1c4437 100644 GIT binary patch literal 1317 zcmZXSzi%8x6vrnJ2pj}M_#q*IG$|68j$S>gY;IH5d;P2o$@Gp@3{%Q1c&oK5P^c9foZ-W$f5j+pBf@i_a z#=h0)+u(E9zX84k4jTO~_%ig*K&qR8l>Zo{JfDLg-|j0(cuFzbQ!l<&FL& zNcp~Q^lw3``yIFfeh*TfCD;Og2Jx`p@S^&EfNz3-gB14|q;s8tLUAh~#k~bS3tj}# zUM+MVB-9tSYk939f#PwDT9CGmf2GmsPDtqgypBa@AfdBTU(^Hj|0)*MXV=qGRE}MD zb6z-U*|y0tsXg1aQh3R=EV(mUS*Q)$f+n&52n&XHIst! z)FG^wD9?IYj8mDgU6o3~jQsIq_`Mw!T z>ka6HRR#`vR*0DlMp9%kADUFTL%w?GeIB>lWm&F!idIv3Z+&92w*4>8wlg|RAd}3s z(^^x>6xSTu(fTp#}x*2F){b@o`}+*4@SGe)u(<`aVl-l z(-V^@J&XC(vGPxPjd`B7hG}6%8tfXIxtQy`R$ceX7K~)+uIg?#;ve#m!+a?UKj?P& z<;(TwweALeuF`gREeiSl`}IEgglmY25Yt)PYO%YbbPN2=%8MgjEFV>VZc44@g55GS zJHjs5fiF)_?1F1kV$iCbFMqJ7C&}`Gi7|$-8oMyMqCpgVW|D={0>hV8%WqOG*?}vT zU(nECsOI%Ro}QE#$I2H+?9TGRj}IpZM-Qo*v!1W!N_xTWm2yUs$w`TI^rQ!a8pN delta 262 zcmZ3=^@g?no)F7a1|VPqVi_Rz0b*_-t^r~YSOLT!xs^c70mK`CSQdzP0x=5^Uk74V zAie{{#~2wH9sy~vdL{-2As~ALkOrwg45UHo9|CER`e#5IsN53BgaD8vNCGGhHUJ_D zA(=sxV@`QuWif+eakfHfaca@z7mV^;Zkai$41TF)KyC|@FR!Vtfu*jIiGrb-m665d jdrZ=B5d%{zL$l3n%n6K>3s~g119CF68T>NSQz{t%l|m=z diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po index 13c777897f..4a1e29883d 100644 --- a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po @@ -1,31 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012-2013 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -38,15 +38,15 @@ msgstr "" #: apps.py:65 msgid "Created" -msgstr "" +msgstr "Utworzony" #: apps.py:71 msgid "Thumbnail" -msgstr "" +msgstr "Miniaturka" #: apps.py:81 models.py:606 msgid "Date time" -msgstr "" +msgstr "Data godzina" #: apps.py:86 models.py:609 msgid "Message" @@ -54,7 +54,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Komentarz" #: forms.py:44 msgid "Expand compressed files" @@ -74,11 +74,11 @@ msgstr "Plik" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "Domyślne" #: links.py:26 msgid "New document" -msgstr "" +msgstr "Nowy dokument" #: links.py:35 msgid "Add new IMAP email" @@ -102,11 +102,11 @@ msgstr "" #: links.py:60 links.py:74 msgid "Delete" -msgstr "" +msgstr "Usuń" #: links.py:64 msgid "Edit" -msgstr "" +msgstr "Edytuj" #: links.py:68 msgid "Document sources" @@ -154,11 +154,11 @@ msgstr "" #: models.py:48 msgid "Label" -msgstr "" +msgstr "Etykieta" #: models.py:49 views.py:514 msgid "Enabled" -msgstr "" +msgstr "Włączone" #: models.py:144 models.py:603 msgid "Source" @@ -248,7 +248,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Typ dokumentów" #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -286,7 +286,7 @@ msgstr "" #: models.py:341 msgid "Password" -msgstr "" +msgstr "Hasło" #: models.py:345 msgid "" @@ -306,10 +306,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -318,10 +317,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -384,7 +381,7 @@ msgstr "" #: models.py:616 msgid "Log entries" -msgstr "" +msgstr "Wpisy rejestru logów" #: permissions.py:7 msgid "Sources setup" @@ -407,13 +404,12 @@ msgid "View existing document sources" msgstr "" #: permissions.py:21 -#, fuzzy -#| msgid "Server staging folder" msgid "Delete staging files" -msgstr "server staging folder" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -428,11 +424,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -455,7 +452,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -470,6 +468,7 @@ msgstr "Utwórz nowe typ źródło:%s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -480,7 +479,7 @@ msgstr "" #: views.py:510 msgid "Type" -msgstr "" +msgstr "Typ" #: widgets.py:26 msgid "Staging file page image" @@ -506,6 +505,12 @@ msgstr "" msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Staging file delete successfully." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Staging file delete error; %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -582,11 +587,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -600,6 +603,9 @@ msgstr "" #~ msgid "Upload sources" #~ msgstr "Upload sources" +#~ msgid "Server staging folder" +#~ msgstr "server staging folder" + #~ msgid "Server watch folder" #~ msgstr "server watch folder" diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo index 3d2acbaab57e22d0c93219c67860581c9ee63b44..3c5de6b9abbc8d9032ac7a24a1778d10bff3e06a 100644 GIT binary patch delta 974 zcmZ9}&r1|x7{Kwz-EmhpOCAwnMW!!_00f5kk;0 zFeWJq1c?q&H#-G&kq%wz(j}=5)u|ts{(<^FwM6y8JD+#nnfH00_kA9wpLH$2PaCU3 z+e_a=H=0Ba;aAkQ5)(<_4Q#>Nn8bDL!w0BqpEu?|qW=E{cjI?Fj;XjvCr)BJ&Y~f* zEOQLHnYe(u;L7h0vWmmJ-@#^l+3+>C^1g+d&?nTyzo7pljDO?|CxqIu)mC z1(Ba{dp((Te9tV|W~q@8KadTd-z7$jfM28TWd1aa`EE9lkvpK|CH8~PV)A*GqXGM-upQGF45Ufgr5nOz;gc7%A$ zOM!(=9Kp}1E8It&zya#Y$D=}A#uSpdSU|nMgk$LS+`u&R*LVf@P@f;>kP;U00&d|P z_lx(u=+^y0-F3bfCy6+rFX|7SoF2NZx>LHU(?o*MgMz!Qr!iufpu=L2I8K}(`h$A@ zjwE+>+kHeY&DWk-ZBNX5RoU{C>%R@o`M-mY{7R@2Sy1b&{0z-rTWnetyHSxVc1_7; zRZ~qRmFqh0Re8}%i+^o4FQk! diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po index 0e1890d804..7542f15aa4 100644 --- a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po @@ -1,24 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 +# Manuela Silva , 2015 # Vítor Figueiró , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -26,6 +26,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -54,17 +55,15 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Comentário" #: forms.py:44 msgid "Expand compressed files" -msgstr "Expandir ficheiros compactados" +msgstr "Expandir ficheiros comprimidos" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Enviar os ficheiros contidos num ficheiro comprimido como documentos " -"individuais" +msgstr "Enviar os ficheiros contidos num ficheiro comprimido como documentos individuais" #: forms.py:67 views.py:432 msgid "Staging file" @@ -76,7 +75,7 @@ msgstr "Ficheiro" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "Padrão" #: links.py:26 msgid "New document" @@ -104,15 +103,15 @@ msgstr "" #: links.py:60 links.py:74 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:64 msgid "Edit" -msgstr "" +msgstr "Editar" #: links.py:68 msgid "Document sources" -msgstr "Fontes de documentos" +msgstr "Fontes de documentoo" #: links.py:80 msgid "Upload new version" @@ -156,7 +155,7 @@ msgstr "" #: models.py:48 msgid "Label" -msgstr "" +msgstr "Nome" #: models.py:49 views.py:514 msgid "Enabled" @@ -176,7 +175,7 @@ msgstr "" #: models.py:161 models.py:578 msgid "Server side filesystem path." -msgstr "Caminho do sistema do servidor" +msgstr "Caminho do sistema de ficheiros do lado do servidor" #: models.py:162 models.py:579 msgid "Folder path" @@ -184,7 +183,7 @@ msgstr "" #: models.py:165 msgid "Width value to be passed to the converter backend." -msgstr "Valor da largura a ser passado para o backend conversor." +msgstr "Valor da largura para ser passado para o backend conversor." #: models.py:166 msgid "Preview width" @@ -250,7 +249,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Tipo de documento" #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -288,7 +287,7 @@ msgstr "" #: models.py:341 msgid "Password" -msgstr "" +msgstr "Senha" #: models.py:345 msgid "" @@ -308,10 +307,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -320,10 +318,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -409,13 +405,12 @@ msgid "View existing document sources" msgstr "Ver fontes de documentos existentes" #: permissions.py:21 -#, fuzzy -#| msgid "Staging file" msgid "Delete staging files" -msgstr "Ficheiro de preparação" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -430,11 +425,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -457,7 +453,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -472,6 +469,7 @@ msgstr "Criar nova fonte do tipo: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -502,17 +500,17 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Próximo passo" #: wizards.py:68 msgid "Document upload wizard" msgstr "" #~ msgid "Staging file delete successfully." -#~ msgstr "Ficheiro em preparação eliminado com sucesso." +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "Erro ao eliminar ficheiro em preparação; %s." +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -590,11 +588,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo index ca5d8bc21c6468ffc7c54648259a902d668e5b23..32890d5345abdb841acd8ce966a9dbd50b63041c 100644 GIT binary patch delta 2050 zcmY+_eQZ-z7{~Ev6&Z7GD{}?5DPBdf;O5qL8#omx8{o!}&W!kmiC1ogF5QY<4=s?75{+)&u2^IMo%Xxn}q#e-On=luSQ$jAQWOB2^Hs&>$b zdTu!?607kV>_Q#odQ>ELp%$@z+4d>Cle9LhbCdfBmg* z30KfRk9z(x-h<6cD--NO<;Ey#;^$G>ei*gmX=Ls8A!_{3Q42qnr=f|@;VpO`8QU6& zUoSeSBX|t8@+VOD)5xQC2o<@PF^)%(kCph+f-azvF~EiTm!N*%it5j|(b!5Oio^IU zDi`K(6wji5xP>@s0T26nr~&r-PNH`795&;dsAT*Yb@sEU=f6iq=m#XCdHa=ylJE+K zF~m!(i8i2iHi(MQ2r3f0(L)z?<|k1h{vCJV-`Iv*`KzR)oWK@5hRU@WT!mlaQoaB4 zG}xqFLh{CHSdBu|jB9W$-i;%uKR{DRE?O70o2uyPISsy02K>er)FL!q4^=s&yir8@ zsG7f=>1u1$+tr}3mU7rvm#-?>s$b#XR+PxyCU8(RFyj=8ZE)*Tfom3sM ziZ-G|)ch8qD%n)-qjD0qP8Sq~bfM^c6`=%GN1;M6%CFX~xRV;AE|hy|DD*1&U!XTa z<$kJ?cTn@+Ok)#OMd#d3eLxqKwN&K*M_PXEblyrH<%voMRY#{+OJy5XNfxE{Q&l=E zl#|iop684wpK%6u#1l?(%uO|=ul6N&CSv8jbYXV!>xBoaYfRUHS$obk+LrZR7NS*$0uCzTm@v(Eo-YJG*58s-WQ1qWLC zvMG1m%hp(PTa(L|^%o_{QMF_t&*k6W@4p|Mzox z?&-Pb{Lfi;wc}W4er{=C+E5-LRuISi#yo?yw{WAJ4;phDUchDearyHNV+g>Z?P@W%h7u#(j7f=1|`&V52d4^A?rcX?PDe;0GAOKd}x&j2^(1*o3RG7W+`o z2a&F33^mTw#a65emFQ(4M`uaFs;Uy#cL7aP-!4cLG&)Wr6p zUYJC!G=p2v!yWiOa+#al4q$MJG4*%|)&4wknU}dO;{9ftie`KQ)$tT+WwTg?mrz@C z1(mvQP!sqb)$b=%M*hH+Si^Gf!8TMzhEd}t%Iz-R%jap#YepBTXuvC|iF}Ap;3ue# z9gNP{W(>FCQ@94-Mm@iV%HWTv%=wvBX(C9IX+ur4mz$o)Q19JcNB+Z99;2Zhk75+h z;t3xsL>-zJ$-iE78kLD_s7!o^I+Q=)FjlcY+L94u?&eXn@M+Zdj-VEL67Rq>A@Z*W zmuc9DbEpBA-#UL5I#4efK%L@Us1+rVxfvIgnHNwKeFgP`cTrm~iwtS5V?W+NW!NHJ znqW(wiaJD)XJ#8JHDmZ7K8alBBsU$-BC7vY)Ji|cL7c-q*g_}m^|N>Yk0OuE&!`s$ zSe*=^zMo%FuB<|>pcU`LLDb>fkJ`%w>I+9u8F>kn!q-uU>>X6U%czxqjjibCZ%{8> zhxcP|*#xrCym^C)QZ|E1%_&Ua8PuNF@#~|MNAY3Yf*R;m)FHfx%kf*(;rbm{V~|-X zqix9I%_iiSm=RP4_v2dq{U4&zN5c&22k0~OVHcq@!FZ)JqDg2%TBZ7T6B_WJqx@fzFbCGaB{xUnxqf%1%NVQ5hz*T1{*-q4EF`Bebt7+V4uyp&TM~ zhI)w(qEfa~(N<_1A0pNf3-52^gVMQ)(Ee9SlnMzcrL58>*`3n=4AqrxogEczQ46u2 z=poh;cN6+6(Kcy|ItdkiOJb!{9^ivT>>>t;2%(~rt+I;HVdG4h-Grae;nYFX??xe5 zeLRqMGIrt3>Ve{~)t~x`Uo4*WbtUYy?b(){%{tkQR*TziM!on%Dl=gvQ)$~OKX!BD z)@zoPg)VnNm|i?>@$Bs1 z9S+)FJQ4Te#nUy<`RlsFoqgfxdMnb?AKg$0*EcV;bawYgdWw7NTYZId4VUKUp9>8Y zzYMMM7n>V@^KJdF+5WG^ENkl7HxhSUht(wPh1H~-Ogw8j)>vxNQF~==j+yTqEqC6Y Wnn;nq`2{5$_g{V8;?AbS{=WcS=>47m 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 e245bf0f4b..9040a1a34b 100644 --- a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -26,6 +25,7 @@ msgid "Sources" msgstr "Fontes" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -38,7 +38,7 @@ msgstr "" #: apps.py:65 msgid "Created" -msgstr "" +msgstr "Criando" #: apps.py:71 msgid "Thumbnail" @@ -46,7 +46,7 @@ msgstr "miniatura" #: apps.py:81 models.py:606 msgid "Date time" -msgstr "" +msgstr "hora, data" #: apps.py:86 models.py:609 msgid "Message" @@ -62,8 +62,7 @@ msgstr "Expandir arquivos compactados" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Upload de um arquivo compactado contendo arquivos como documentos individuais" +msgstr "Upload de um arquivo compactado contendo arquivos como documentos individuais" #: forms.py:67 views.py:432 msgid "Staging file" @@ -75,23 +74,19 @@ msgstr "Arquivo" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "Padrão" #: links.py:26 msgid "New document" msgstr "" #: links.py:35 -#, fuzzy -#| msgid "IMAP email" msgid "Add new IMAP email" -msgstr "E-mail IMAP" +msgstr "Adicionar um novo email IMAP" #: links.py:40 -#, fuzzy -#| msgid "POP3 email" msgid "Add new POP3 email" -msgstr "E-mail POP3" +msgstr "Adicionar um novo email POP3" #: links.py:45 msgid "Add new staging folder" @@ -159,7 +154,7 @@ msgstr "E-mail IMAP" #: models.py:48 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:49 views.py:514 msgid "Enabled" @@ -249,8 +244,7 @@ msgstr "intervalo" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Atribuir um tipo de documento para documentos enviados a partir desta fonte." +msgstr "Atribuir um tipo de documento para documentos enviados a partir desta fonte." #: models.py:275 msgid "Document type" @@ -280,9 +274,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, " -"993 para IMAP sobre SSL." +msgstr "Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." #: models.py:338 msgid "Port" @@ -314,10 +306,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -326,10 +317,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -392,7 +381,7 @@ msgstr "" #: models.py:616 msgid "Log entries" -msgstr "" +msgstr "As entradas de log" #: permissions.py:7 msgid "Sources setup" @@ -415,13 +404,12 @@ msgid "View existing document sources" msgstr "Ver fontes de documentos existentes" #: permissions.py:21 -#, fuzzy -#| msgid "Staging file" msgid "Delete staging files" -msgstr "Preparação de arquivo" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -436,13 +424,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. " -"Criar uma antes de prosseguir." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. Criar uma antes de prosseguir." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -465,10 +452,9 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." -msgstr "" -"Nova versão do documento na fila para carregados e estará disponível em " -"breve." +msgid "" +"New document version queued for uploaded and will be available shortly." +msgstr "Nova versão do documento na fila para carregados e estará disponível em breve." #: views.py:419 #, python-format @@ -482,6 +468,7 @@ msgstr "Criar nova fonte do tipo: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -499,22 +486,16 @@ msgid "Staging file page image" msgstr "Imagem da página do arquivo temporário" #: wizards.py:38 -#, fuzzy -#| msgid "Step 1 of 2: Select document type" msgid "Step 1 of 3: Select document type" -msgstr "Passo 1 de 2: Selecionar o Tipo de documento" +msgstr "" #: wizards.py:39 -#, fuzzy -#| msgid "Step 2 of 2: Enter document metadata" msgid "Step 2 of 3: Enter document metadata" -msgstr "Passo 2 de 2: Digite metadados de documentos" +msgstr "" #: wizards.py:40 -#, fuzzy -#| msgid "Step 1 of 2: Select document type" msgid "Step 3 of 3: Select tags" -msgstr "Passo 1 de 2: Selecionar o Tipo de documento" +msgstr "" #: wizards.py:66 msgid "Next step" @@ -524,9 +505,6 @@ msgstr "Próximo passo" msgid "Document upload wizard" msgstr "" -#~ msgid "Clone" -#~ msgstr "Clone" - #~ msgid "Staging file delete successfully." #~ msgstr "Staging file delete successfully." @@ -609,11 +587,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo index 2146fadf7eedb5be4dd46ea3eff9dbe4c54fd47d..2c95568fd21095c6101b4fe4a41054e71b5f08c9 100644 GIT binary patch delta 814 zcmX}pyKmD_6u{w|cLF4Up$`a9N4!CiNLo@_384}g=ukl+h}CLc)gmwXK`DztrD9^T z5CZ~+EIh_mVnGa0ip0Xkg!lsx8=Vjm{T&l>l;h97R(#Gq_oen(^S^8HM~c`>?jwJa zhsn1QF2v=iQc1jmX}p0cG%$}A?#JcsdItx1evN1F1Ma{-n8j>NsW|4bPbpvN+{hm) z-4|0h%=1-D-~-IyLzD&|qkL!;x8Zv{gkSJHZr}kNrAiU6V;S$`CpPs4<-0z+8lb*f z=4J~EPf>RA0uSOk%8q|v0e|5+>|^^H)=(OlM`_SQDeU7AK0|)$9T#b29i`3&=I}2L zQeWk$vJ;P@jA{%|<0RJbE=ogR@d*CLV_2Z7oYF3GHz`NBos@4$43g9ci^}s>xe$!K z7e2?*3mL0~G_i-2E~ym;Q&aujdpRx%1`TKtDI3G9Ki8+Jz9!dC1w$ru`$+w<8!A zi7fGzxJqnWTo}oi5D6T>B&Km3FX3f$(7ap0BCcT?-{5&X?CqamAM>Ah3x8o;h_=Yu z-NciaVxxrT@DX0Yr#OKvypH>L4?pzwZN8dgK8Xc_d-_azB(>4ch;xewF zSwF-n@{4cWOrsbO!gQVYq7O2SP5{vu?P=O-I%Q6EfiOjz!GWU!Xp9&k=x|i%APy0K z2j@H;S#n41K5LfB-lp3ML^)WKVW51y8oQ(4#hz(tuj^gAc(>AY>x~z6S!;MoK3AS< zDye*b!@n(W1bOkl?I5gHRS?ud&uis7Uu?%pIk}mITwzYm&My{, 2013 @@ -11,22 +11,21 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:47-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -55,7 +54,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Comentariu" #: forms.py:44 msgid "Expand compressed files" @@ -63,9 +62,7 @@ msgstr "Dezarhivare fișiere comprimate" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Încărcați fișiere de fișier comprimat care sunt incluse ca documente " -"individuale" +msgstr "Încărcați fișiere de fișier comprimat care sunt incluse ca documente individuale" #: forms.py:67 views.py:432 msgid "Staging file" @@ -77,7 +74,7 @@ msgstr "Fișier" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "Iniţial" #: links.py:26 msgid "New document" @@ -109,7 +106,7 @@ msgstr "" #: links.py:64 msgid "Edit" -msgstr "" +msgstr "Editează" #: links.py:68 msgid "Document sources" @@ -251,7 +248,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Tip document" #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -309,10 +306,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -321,10 +317,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -410,13 +404,12 @@ msgid "View existing document sources" msgstr "Vezi sursele existente de documente" #: permissions.py:21 -#, fuzzy -#| msgid "Staging file" msgid "Delete staging files" -msgstr "Structura fisier" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -431,11 +424,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -458,7 +452,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -473,6 +468,7 @@ msgstr "Creați o nouă sursă de tipul:% s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -503,17 +499,17 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Următorul pas" #: wizards.py:68 msgid "Document upload wizard" msgstr "" #~ msgid "Staging file delete successfully." -#~ msgstr "Schema fișier ștearsă cu succes." +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "Schema fișier erarare la ștergere; %s." +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -591,11 +587,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo index c77a2f6b6b71c85935c271640b09029f7912f989..635712e19962c3ce8eedc2f904ce69b05e761922 100644 GIT binary patch delta 1608 zcmZ{iPfT1z7{CYE7O2nywtxaM{X?qZPgtlFNrNKPglMrXX}r`lEBo4R++_*xEm{vQ zZpGTP4JMC9Q`1DPX?onSUAjx$=~<7QVw41=%&_QOFq1k2$pY=R%d7Wg%+gx?hR z@4^PwKf!+Z0M@{^fKt^;B~>2+pBmw}1CBy5d;-eFQ;<(3`SrpN;TD*Ko8Y%l9NsDN z$Kw7k5MSyKD2Y9QVz-h@I99c=3jeAVVGoK9_%b{KpMeXo6J}r+{2lhd8pWq_-Eo3ZH^Dd>USY zFTop7O86&~bN@hT&8{buYKQGm5_kh{g)@*NY7XK;eNx=N0+UjrWdtcv9@fF1p&0%P z?uI)^?@jmuJPSXC$(MmYq*4;xu7}H{-xHA~GAXMB zq?wW-{{1%r{1$B!fkD;%$0pgy8=*6P;J|+?JE2rgh9pqSlmw-UQmIFS`fq=<@}*Y( zQZ5}VxEbYYC6}C=H zMdP8c71k%G<1y`=j@a7X8c$45SY2v39+O*cW9fmKki*4D%u*xP$xtHdxJOGTx<@wJ zRR_Zn$N#OH*S2rTRtG0TZ$+)J`+e!r-qAxthqV<8MWSlVnjy?F>s?3Njy0tYzy9A2 zQg89l`1ot?&ayUlu&mkryllzc9cU=&a0ddT)gi|TO`MhxJKG{|DsZT}ud}zbb6KromIZ2F-jdDW!NEt5BC@0`hbDet28QYL5Cw7F>tX2m;eR!!FA zQ5MXiC~tf7kKOCg*h!m=H_M$Rq^w!>E_ibqYqzv_$+wU(1=ijNvcO^9wB*c+Np~r8 z1^cV(zS7<-*Opyx^Lx)O5L?Qmxu?w{da*mN%ry=dh~^xw@*K{(qve+yzj}P^Y4?74 z6LWam0*-M{jB8vgxGfbY!fO)D!wkI(W?6gl-g)e-Xz7kJS4GBGhV0YI5RbV{6xj_O z!r1?qklrcj+WCss+Rrv*E;e)S^@_1fwDMxf$d|s&o5Yp%Qkn(XQaH2d>#3378;O9h i^Msl8_ca@{-W*34P1^l?OV@V)Mu85{HPl&NgZdW?DbCFR delta 894 zcmZwEPe>F|9Ki9n?w{P%HUFe0nogEfh?{O|rU$jCAhdtdCGfE5DB`xl%x<=HSkr>2 zDB{sc6#4^2C&QMsa*J+J;2Wu9L39a%AUbsD()VpDK|T1*XXgFh{N}yiysf%hmik!i zxg{9oL>2Lls3ESoxG-{agz%vsbFmOBu>!YX3+i|KunkAC5bt3rrdRWC(8Kd*+=E}x zD@00Ex&M5)7K0=@F&}%e8c*X^OyYK&#{KwmHSeZs1JAV>#^YE{@hQ}GrrG^2e1M&} zf_t%e1Dogj;s`g*OibVoOk)>*SbeVM*!tv$xYXk@EWq=qJ9Y*2d-ri0F5_YRfxEH8 zFGN3%;uOBdKI{z$amwK4HaEKPPt;xKyP}9-o$$)s0IVGWqJ9P*s>9yQOJmi+3elbgMpy87ag;gQ&|F*Fi2jX^VN zQq#1oF{{ItjV42~-upxr`NHyquP4~j(73N5+-x+pwujr~Lto|k zOk+!XQ|tVSZ`ma~{paK-zm(Sl74lVJr~DP@56-9s^;Bilyn3wW=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" -msgstr "" +msgstr "Источники" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -46,7 +44,7 @@ msgstr "" #: apps.py:81 models.py:606 msgid "Date time" -msgstr "" +msgstr "Дата и время" #: apps.py:86 models.py:609 msgid "Message" @@ -54,7 +52,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Комментарий" #: forms.py:44 msgid "Expand compressed files" @@ -74,7 +72,7 @@ msgstr "Файл" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "Умолчание" #: links.py:26 msgid "New document" @@ -106,7 +104,7 @@ msgstr "" #: links.py:64 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: links.py:68 msgid "Document sources" @@ -146,11 +144,11 @@ msgstr "" #: literals.py:30 msgid "POP3 email" -msgstr "" +msgstr "почтовый ящик POP3" #: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" -msgstr "" +msgstr "почтовый ящик IMAP" #: models.py:48 msgid "Label" @@ -158,7 +156,7 @@ msgstr "" #: models.py:49 views.py:514 msgid "Enabled" -msgstr "" +msgstr "Доступно" #: models.py:144 models.py:603 msgid "Source" @@ -244,15 +242,15 @@ msgstr "" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "" +msgstr "Назначить тип документов для документов, загружаемых из этого источника." #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Тип документа" #: models.py:279 msgid "Whether to expand or not, compressed archives." -msgstr "" +msgstr "Следует ли извлекать данные из архива." #: models.py:329 msgid "Interval source" @@ -268,7 +266,7 @@ msgstr "" #: models.py:335 msgid "SSL" -msgstr "" +msgstr "SSL" #: models.py:337 msgid "" @@ -306,10 +304,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -318,10 +315,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -348,7 +343,7 @@ msgstr "" #: models.py:441 #, python-format msgid "attachment-%i" -msgstr "" +msgstr "вложение-%i" #: models.py:480 msgid "Email source" @@ -364,7 +359,7 @@ msgstr "" #: models.py:525 models.py:526 msgid "POP email" -msgstr "" +msgstr "POP email" #: models.py:534 msgid "IMAP Mailbox from which to check for messages." @@ -407,13 +402,12 @@ msgid "View existing document sources" msgstr "Просмотр существующих источников документов" #: permissions.py:21 -#, fuzzy -#| msgid "Staging file" msgid "Delete staging files" -msgstr "Промежуточный файл" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -428,11 +422,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -455,7 +450,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -470,6 +466,7 @@ msgstr "Создать новый источник типа: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -500,17 +497,17 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Далее" #: wizards.py:68 msgid "Document upload wizard" msgstr "" #~ msgid "Staging file delete successfully." -#~ msgstr "Транспортный файл удалён." +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "Ошибка удаления транспортного файла %s." +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -588,11 +585,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo index 0c5c58fa397f8e9093a622b2df525abdcceb1da3..049dbb29820c3b75f8b51412582738ecc333cca8 100644 GIT binary patch delta 251 zcmeBU>1D0IC&V(90SH)tSO$n~fS47CV}KY03V@g$hzo(37ll$|Oc42eAk7ct*8*vvG#CJx49q|bvV*}nKQ}iuuY|!RKe;qFRWPqap`@}PmBBBy zqC}y%B(-3og|DfZu7RCsxeR`Z#W|@dd0CkX+4)6@*$e>wGcr*C delta 100 zcmeBW?PIaHC&V(90SFj@SO$nyfS4JGb$}QIEP(h5P|^}egVeyl#0kEs}+J(g22*)mmm<9?d2}*>f+8)3(+1r zbcl!;Jd_ARf+s;p3U)DzE$Pz1i%^H~9lCU>gB^>$Ka~zO@SD%fFmHbE_uFjPXsUc^ zcBd30PP7wC#1Z0(!^C)lyYVgV#Sgd#*RTyg?d*TzVfMf90JcPwis1=#u?Ji50?NJN z?emHnV-e*bhaOI%{K#FD2cBX-&f`)1hR;ai?NX|d{T#0!!bOz*dz5=?DBu4;Dd;!0 zVmry2@hnDFMXAdyXrAx(NQVmSx^TD{W z*PM>%%~UC8tZ`1-M~>&2av@NcZe)#}aT4B8aL4GP2?}=I`5f!*I(??A+t+??qUW4l zjGl)8|Ke+;&uJXU)T`QL>I>GD$b)~?g!GwM3zWxJvyKVmf delta 442 zcmYk%yGz4R6vy$CM}4$a#0LsK8Ygjxq@}5*4id4TixxKphk_l7qF`)A5W0&_mo5&1 z2>t^KPW}fjozzA2f9NRI@0AK3^2;YVx!j!lk!;25?}K(jsD3g*F31r1BDz)$kuF@r z9xUQGZs90aaR4uI1g|^&2ef&A#uzqH@Be~**urIzx|pWO6paF2(cHxZ?`=zD7!&NG zzdJaIOE`u*oqi4V`UY~z4L3c|9nRt-PU9zrXfe$k7SNDwo+y2KU99;%r9QEqQcunt z(o4EYlKe0IW9F5(Zif3OrPD~lXwRue&T`zDmStp J#9 y>v{3whPzp=Riet_fxA*VF6W($m;PJl`T2D2{@hwLRMSqWZ+l*?$3k@*d-?$pm^f|# 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 5f0a8e1fc7..34ed8e446c 100644 --- a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -53,7 +53,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "Chú thích" #: forms.py:44 msgid "Expand compressed files" @@ -73,7 +73,7 @@ msgstr "File" #: handlers.py:14 msgid "Default" -msgstr "" +msgstr "Mặc định" #: links.py:26 msgid "New document" @@ -105,7 +105,7 @@ msgstr "" #: links.py:64 msgid "Edit" -msgstr "" +msgstr "Sửa" #: links.py:68 msgid "Document sources" @@ -247,7 +247,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "Kiểu tài liệu" #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -305,10 +305,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -317,10 +316,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -406,13 +403,12 @@ msgid "View existing document sources" msgstr "Xem các nguồn tài liệu đang tồn tại" #: permissions.py:21 -#, fuzzy -#| msgid "Server staging folder" msgid "Delete staging files" -msgstr "server staging folder" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -427,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -454,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -469,6 +467,7 @@ msgstr "" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -499,12 +498,18 @@ msgstr "" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Bước tiếp theo" #: wizards.py:68 msgid "Document upload wizard" msgstr "" +#~ msgid "Staging file delete successfully." +#~ msgstr "Staging file delete successfully." + +#~ msgid "Staging file delete error; %s." +#~ msgstr "Staging file delete error; %s." + #~ msgid "Transformations" #~ msgstr "transformations" @@ -581,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" @@ -599,6 +602,9 @@ msgstr "" #~ msgid "Upload sources" #~ msgstr "Upload sources" +#~ msgid "Server staging folder" +#~ msgstr "server staging folder" + #~ msgid "Server watch folder" #~ msgstr "server watch folder" diff --git a/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.mo index 028c08be45d01613a46833b81ee0c987bbaae856..bea1f8d7b64a8df88f0f72196e0d904133b92ea3 100644 GIT binary patch delta 714 zcmX}p%P(V59Ki9@R&Nb0^_*!uQek2unz*f0HJOZJVPQe6EG!zjV07BJ8jl4rGhtzQ z5F27*Nyx-bH~s<1%uWQc@LGtC*!%vf@k@W_bAI>sp68=C>s`DmFIZQEkE|tc$j{`y zjfUv5D`j8|3$YJfIEXbkjCGj7kEk(%d+5a*^xz9tp~La^KOYt-wWv%wAzp;hi4*t% z(_(GJY@0cq8Z@qm!i5i1XNq z+b9bf!YD^C~I*(2r?KV$1&=v{=O}`nAws+_fXU+SQpcysIqpY;XG4a_VqGXv z6ucHGg+kp)S5g<+Rktbr0csGnfe?gs+eP1J9wMlRJ?HcOVCOvV^KON|g$th={7)6p zOr9tA$q4zv$AgGfDHXst)}VzgIDi-M7M{a7v`}Lhx3LKiy#1f(XC5+?x`JV>R;r)| z8Pu|nLMb4PbvT13v49uxAzsFHY{MPAjz7HpByW#0Ph$d$xWpmeq8uQ_L*91-rLf!B z%=cB+TX=-+Y`ntL_|aS6!v^L@$WQr$#|4E@=A9@9h@*6|ALajPln;)fbZQ2rbC0nV z*ReOvV3&bZR7-z5@e;~OQ|R47rKR%n5Gmb}I7^-&J&*!D?#fN#c|ut>`2~K1MZZWbM1`2S@lvI#;m??Sl5QKBNLN% zC(Q9l$2P}o$IjZOoykmR`pt;jrT(|==0-^EWLSNezx#+>s@Ja?Qr>ZX<_qlY5Dv6 Xm58g#|Lm3*pOhY~ez{lF`QV4&4TgIg diff --git a/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po index d53f8443ec..daa42c6e61 100644 --- a/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -26,6 +25,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -54,7 +54,7 @@ msgstr "" #: forms.py:29 msgid "Comment" -msgstr "" +msgstr "评论" #: forms.py:44 msgid "Expand compressed files" @@ -248,7 +248,7 @@ msgstr "" #: models.py:275 msgid "Document type" -msgstr "" +msgstr "文档类型" #: models.py:279 msgid "Whether to expand or not, compressed archives." @@ -286,7 +286,7 @@ msgstr "" #: models.py:341 msgid "Password" -msgstr "" +msgstr "密码" #: models.py:345 msgid "" @@ -306,10 +306,9 @@ msgid "" msgstr "" #: models.py:356 -#, fuzzy #| msgid "Current metadata" msgid "Subject metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:360 msgid "" @@ -318,10 +317,8 @@ msgid "" msgstr "" #: models.py:363 -#, fuzzy -#| msgid "Clone metadata" msgid "From metadata type" -msgstr "Current metadata" +msgstr "" #: models.py:367 msgid "Store the body of the email as a text document." @@ -407,13 +404,12 @@ msgid "View existing document sources" msgstr "查看存在数据源" #: permissions.py:21 -#, fuzzy -#| msgid "Staging file" msgid "Delete staging files" -msgstr "临时文件" +msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -428,11 +424,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -455,7 +452,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -470,6 +468,7 @@ msgstr "新建数据源类型:%s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -507,10 +506,10 @@ msgid "Document upload wizard" msgstr "" #~ msgid "Staging file delete successfully." -#~ msgstr "暂存文件删除成功。" +#~ msgstr "Staging file delete successfully." #~ msgid "Staging file delete error; %s." -#~ msgstr "暂存文件删除出错:%s" +#~ msgstr "Staging file delete error; %s." #~ msgid "Transformations" #~ msgstr "transformations" @@ -588,11 +587,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.mo index 3d525b8dd3ead329a7e0c9fc0f00ffb1303a1d20..3e4e8c2d000de430d9d454779de709ca229dc868 100644 GIT binary patch delta 64 zcmX@ha+YPn3R5#(17lqyLj^-KD-#P{0}}%St^j}CpwzO=;>`R!U6;g?R4WA|14EcP NBSR|#(~Wlv7y(AW5x4*V delta 64 zcmX@ha+YPn3R6>E14~^a69q#vD`R!U6;g?R4WA|14EcP N15+zQvyFEP7y(Fy5y}7n diff --git a/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po index ef9c37af5f..d7a0e152d3 100644 --- a/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.mo index 957a25e8a483e5393d75e590ba58d309696a411c..e53b08c0967dad9b2c50ff35234a8da1f852e949 100644 GIT binary patch delta 64 zcmZo, 2012 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.mo index f99d4bc317330069f59f37e0766bd53579e7f220..3e6faf94515a3773b08bcb86c1ae920c1e6c1849 100644 GIT binary patch delta 64 zcmcb|a*t)g3R5#(17lqyLj^-KD-#P{0}}%St^j}CpwzO=;>`R!U6;g?R4WA|14EcP NBSR|#(~Wl<839i~5$gZ| delta 64 zcmcb|a*t)g3R6>E14~^a69q#vD`R!U6;g?R4WA|14EcP N15+zQvyFEf839oR5&ZxF diff --git a/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po index fb9b5835f2..674d1e75c2 100644 --- a/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # www.ping.ba , 2013 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/da/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/da/LC_MESSAGES/django.mo index 18c20fa2435b44b7596ce19c7900b01e7945a85c..8a7d0d7331b746921e6603f223747d479c512d37 100644 GIT binary patch delta 64 zcmey&{F!;e3R5#(17lqyLj^-KD-#P{0}}%St^j}CpwzO=;>`R!U6;g?R4WA|14EcP NBSR|#(~Wn<7y(#B5vTwF delta 64 zcmey&{F!;e3R6>E14~^a69q#vD`R!U6;g?R4WA|14EcP N15+zQvyFGf7y()d5xM{X diff --git a/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po index 184d95e579..3d2559c1ed 100644 --- a/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mads L. Nielsen , 2013 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.mo index de1a24190e1386aef96c29071d986f8496b17d4d..2e8564ee52c506a3e2fae33c44847a8b5d1f018f 100644 GIT binary patch delta 78 zcmcc5eV==S7PG0Du7RSnV06$R|A^-pY delta 78 zcmcc5eV==S7PG0Tu7Rblk%@w#nU#@+u7Qbx0at*(Zcu7jW^rbIo~}z`Nvf5Ck%1vh cosqGXp~dES<{6Cau9, 2015 # Mathias Behrle , 2014 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 23:18+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 @@ -33,7 +32,7 @@ msgstr "Plan" #: links.py:11 msgid "Queue" -msgstr "Einreihen" +msgstr "Anstoßen" #: links.py:15 msgid "View" diff --git a/mayan/apps/statistics/locale/en/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/en/LC_MESSAGES/django.mo index 235ae695fe6be952b2e923e64621908442ddab1f..9ac3626980ef4a42771fc2dc4a6a4863a9103876 100644 GIT binary patch delta 22 dcmeyx^owai7mt~)fw8WUp@N~AmC3|uPXJcb2Xz1d delta 22 dcmeyx^owai7mul~fu*jIiGrb-mC?j$PXJdS2YUbj diff --git a/mayan/apps/statistics/locale/es/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/es/LC_MESSAGES/django.mo index 5fb0f79083e33c04a0c1095a5400aa537453d85c..d476f6e2a6ea980e30429e2c7ee45fe0c1c38494 100644 GIT binary patch delta 730 zcmZ9|ziSjh6u|M>xpd9#&Qs@glpxHJ`qlAxBnBj5k;VeGIBe*qq{{!U$e=)={4p-@~ z&asfmmT@oMz#6s&zwe{m}Q3#-bfcDc!8m&Z+An{zdtr+VG$ zq8pjqM(5S4bw!dp-Ac2Do^xugdCNvcV%1twwEHi-%`=OBFz<(TU0-Z0ob`i+AedNL z_E+ug*u`nbzd)Ua4ukq|Us!L1^RJ$aoc3lStF7yrW}Ir4opfV8v#$Sc)U;Q!w4Ip^ zlc~-3!!>(z6K%beSeUYI1lV8Se^^_q#TEy(O3*quL@uE%npsd6l_KaS5hE7FNK;*li#X^M#915) zPJ(lWI=i_$^k2|X#P2oD3lASIm-oH9+x%y?^Hoee2x@|q$sH+?U!rPL6C#CMn8j_J z#sgG6Eu6w@Ea2mCzl%B6z2W``PO|P}5r2@m9g#^yjd{H1V;R%@@RAfFkFQw45NENE z^Z1AAqH|1HKoiGt4;S$WXYdA9-xJazLR1&&p(Zw>LpXErO7+4~5|?_RYEl=9OC6FS zV?@1B)kqL(mEc=jDKuRF@~rLaCtl0em;B%~@m{MLa?P-+x>>iaRYO*#%u#&ysev{&tvL)`D(ozZ8vhjy+$$a9Yk_tebxR2gL, 2015 # Roberto Rosario, 2014 -# Roberto Rosario, 2015 +# Roberto Rosario, 2015-2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 20:46+0000\n" +"PO-Revision-Date: 2016-03-21 21:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 @@ -29,11 +28,11 @@ msgstr "Estadísticas" #. statistic will be updated #: apps.py:42 msgid "Schedule" -msgstr "" +msgstr "Programa" #: links.py:11 msgid "Queue" -msgstr "" +msgstr "Programar" #: links.py:15 msgid "View" @@ -41,7 +40,7 @@ msgstr "Ver" #: links.py:19 msgid "Namespace details" -msgstr "" +msgstr "Detalles de espacio de nombres" #: links.py:23 msgid "Namespace list" @@ -51,7 +50,7 @@ msgstr "Lista de espacios nombrados" #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug #: models.py:14 msgid "Slug" -msgstr "" +msgstr "Identificador" #: models.py:16 msgid "Date time" @@ -102,4 +101,4 @@ msgstr "No se encontró estadística \"%s\"." #: views.py:78 #, python-format msgid "Queue statistic \"%s\" to be updated?" -msgstr "" +msgstr "¿Programa estadística \"%s\" para ser actualizada?" diff --git a/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.mo index da917832d2fd28926bfa2583945a34433f21b5ce..bf3b8c5b6489197ee38ac9673ac475c514bcf168 100644 GIT binary patch delta 294 zcmZo-JH=LiPl#nI0}yZku?!H$05LZZ&jDf(I03|*KztI2C4u-d5c2`?TOj5K;y*yl z0>nIw3=CXAS`bK!0%;i_-3G))Kr9U8?_^?N&;rtDfwTmW{sE+c`hyt+nIQ%!0%?#V z)PS@Ukk$v%K)nn=bqs7k43Yy1!2!rp5MTvjb`ZlQu_RTYBr`X4;tFf#oYM4(5A%4; zbPbGkjSLkG&8$o&M>ERs!UT*Atqe>zw=l9Z3az@a{Km%HJvY`V+}L!p^~Um>ZIe5h OLRo@=MohlTqzVAvIWCw0 delta 225 zcmX@b*2GqSPl#nI0}!wQu?!IV05LZZ*8njHtN>z3AYKW?d_a5{i1~r|5)g9%@gpD> z1>(0r+{VbjzzoD%Kz0`s1A_#R-U_5a>dygb4j_FGNJ|0f=Rg{$R1<75kPikxF*sm` zvRHsLD-ch-WIb7kF^9)g*T7QO$V9==%*tqT7o!X>Ou)d@%Ft}{W=3|#$>*4YC#x~5 F005fm8&v=R diff --git a/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po index 7387fc6644..4113b7a256 100644 --- a/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014 # Mohammad Dashtizadeh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 @@ -50,11 +49,11 @@ msgstr "فضای نام لیست" #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug #: models.py:14 msgid "Slug" -msgstr "" +msgstr "Slug" #: models.py:16 msgid "Date time" -msgstr "" +msgstr "تاریخ زمان" #: models.py:18 msgid "Data" diff --git a/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.mo index a09b417720b14f5f7fe8111663c7822ffe384fa0..47ccfcdbb61e1a1da15ed8d4500cb54be2157953 100644 GIT binary patch literal 1608 zcmaizzi%8x6vqb=Ai3}}5e2^=L5>|odp}GPS!)~uIa><&!eJk2sK&eR?k4QcEHkrq zuBJnR4n&10(zu~QbVwj0Bq$JnK?-{K3n=)`ZhUu6kQjO9Gq>-}`{noUo<9DCz&eBd zBKCLKFJW&!gahkG@HqGrcoO^td=cuY#|Ei{Mk>yWk1% zLonD&!SG&z4e%2%y#E{w_V0kF!SBJK|0@{m{0@E#Uw6S^?=uLW0KWuZ0q=lI;Ll*l z=P&RDuz{dLoaex+;3Y8RybFf+pMv-kU*UKe{2F{5`~eJk{02S`{tX6uCm*f-FMuJB zCWx>E!V<@@;kJr5}DU6Za#XGr^F-_Qu_e(ChKFN9Mp{Wu& zyWq}}H?+f47I?+!n_`PynRz!gznzRZEi)F|SveBhN8f7Wp;+p)Ig_}#E9t{Tj(oM1 zk9ocNixW2$?^VYvN+L823Bg9Ngs+o7%R4RLMV~(p5Ew6`w=!@EgiyaYGb*`Ce4xZ<8r5&nEVQC=us(0 z91U3JF>P4Z$(WYL-WPGJwYRs|^ud7|^6l`TWsQ?o8QaQ3z7eOnYi0Lrw1&2IzR|nh zTc4Gs(`+}c8SPmk)JcJyJ>T}NB9lt5QZkm-v0wXOuo11y^n%AB+h|=UCRKVA)5?zW z(^z8~+D1Pst<0hgV{;diE~=kyZF!aI>)Mj0E7Uo^+7Ml%^}#;7x}Vw8m`lr|d$3=% zGFqCl#c6w!HhGSU{GXf(Q`QZ?iRKN1@t;=u(gjg^F9u4LD~wi{11B~VrXgLFK9q+= zkG;1{tZ8^eK$)C&-^V4_Q*!VP<+VO;w-5?pR1WsTtVm4DG`K$gJ8Gzss_n!(?2VrG z`P7&;n!GjTF3L2U9EfLA5`G{NM|Gj9qz)@J^;;<%j&t>VDyknJk-arUTw}K4@Iolc Ie5OwP3s%>&MF0Q* delta 309 zcmX@XGmWkOo)F7a1|VPqVi_Rz0b*_-t^r~YSOLV6K)e!&`GEK^5c31^B_QSk;zvL% z3dC=LxSNrIffWf1=7ku`V)`_D%AvA4CI3WPz(;3 zp)3|4%?iYmA2Mq32c;I5=9CmGq~#Y`DX11tZemiJe2>Y;)Ku5NQrE~t!O+ag$U@h^ z#K3?nz+X2gwJftZGe1w)C9x#cO2Np$5T?$+)XLCoay+v*e^7o>YEenPLQsBjVo_%P f diff --git a/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po index 59627d941d..b048637eeb 100644 --- a/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po @@ -1,22 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pierre Lhoste , 2012 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" +"Last-Translator: Thierry Schott \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:28 permissions.py:7 @@ -27,53 +27,53 @@ msgstr "Statistiques" #. statistic will be updated #: apps.py:42 msgid "Schedule" -msgstr "" +msgstr "Planification" #: links.py:11 msgid "Queue" -msgstr "" +msgstr "File d'attente" #: links.py:15 msgid "View" -msgstr "" +msgstr "Afficher" #: links.py:19 msgid "Namespace details" -msgstr "" +msgstr "Détails de l'espace de nommage" #: links.py:23 msgid "Namespace list" -msgstr "Liste de l'espace de nom" +msgstr "Liste de l'espace de nommage" #. Translators: 'Slug' refers to the URL valid ID of the statistic #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug #: models.py:14 msgid "Slug" -msgstr "" +msgstr "Jeton" #: models.py:16 msgid "Date time" -msgstr "" +msgstr "Date et heure" #: models.py:18 msgid "Data" -msgstr "" +msgstr "Données" #: models.py:31 msgid "Statistics result" -msgstr "" +msgstr "Résultat des statistiques" #: models.py:32 msgid "Statistics results" -msgstr "" +msgstr "Résultats des statistiques" #: permissions.py:10 msgid "View statistics" -msgstr "" +msgstr "Afficher les statistiques" #: templates/statistics/backends/chartjs/line.html:19 msgid "No data available yet" -msgstr "" +msgstr "Pas de données disponibles" #: views.py:19 msgid "Statistics namespaces" @@ -92,7 +92,7 @@ msgstr "Résultats pour: %s" #: views.py:62 views.py:85 #, python-format msgid "Statistic \"%s\" not found." -msgstr "" +msgstr "Statistique \"%s\" non trouvée." #. Translators: This text is asking users if they want to queue #. (to send to the queue) a statistic for it to be update ahead @@ -100,4 +100,4 @@ msgstr "" #: views.py:78 #, python-format msgid "Queue statistic \"%s\" to be updated?" -msgstr "" +msgstr "Mettre en file d'attente la statistique \"%s\" à mettre à jour ?" diff --git a/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.mo index cf022468e7c9e3e174570604160dbf480eb0ecbb..5c485e933ec479408b42e90f3b0df33c961c1adb 100644 GIT binary patch delta 64 zcmeyt{DXPI3R5#(17lqyLj^-KD-#P{0}}%St^j}CpwzO=;>`R!U6;g?R4WA|14EcP NBSR|#(~Wnf839_v5w`#U delta 64 zcmeyt{DXPI3R6>E14~^a69q#vD`R!U6;g?R4WA|14EcP N15+zQvyFG983A005y=1m diff --git a/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po index 497d7bdc3e..51b34d180d 100644 --- a/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Dezső József , 2013 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/id/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/id/LC_MESSAGES/django.mo index 205d20dd1f8e4daca8c5370a9d88c50ab5a4446a..cfb15709a820d8c92cf8a5daf6f8388407710ab1 100644 GIT binary patch delta 207 zcmeyxyoe?1o)F7a1|VPtVi_Pd0b*7l_5orLNC09^AWj5gE+EbZ;!Z{ehB6?{3&ade z3=G0RiVsKwg+W}fSwIQ`ToOxC6-qL5Qzr&Qn40Mt80#7tDj1qsnONu=m>3vv1^DX* zrIuwDXXfYWg49|m7#SGC)EOCC8JKRo%gLxzl9-pCo|vOho|s)y$`D+VSdv*>l9{br I3}Z0>00z}2#{d8T delta 143 zcmZ3)@{2j(o)F7a1|VPpVi_RT0b*7lwgF-g2moR(APxlLPDTcX7$7YS#Ls|iAOhCU-@w$$&}`#(PDYX7lEjkC;*!j4-C`Jv0RY`r B7v%r| diff --git a/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po index 2939aba39e..74dccba60e 100644 --- a/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Sehat , 2013 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 @@ -53,7 +52,7 @@ msgstr "" #: models.py:16 msgid "Date time" -msgstr "" +msgstr "tanggal waktu" #: models.py:18 msgid "Data" diff --git a/mayan/apps/statistics/locale/it/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/it/LC_MESSAGES/django.mo index 9c4cc81e044ef8550f21c4ecd0eb2cc6e25a9a76..8c730688665106ef73d39b73f9723c2eaaf29fbe 100644 GIT binary patch literal 1500 zcmZ{j&u>*l6vsyd#RvYvXe7~aK#34DeLqA}Z!JaJVv2pWzCOEgHNAIwJLcY*o0+*S zCGOm~V#kgp8xmH8u-2HE=tBJqSnzkS;CtTd`%#FKocYY1IX`F4eSGTZZGrI)CmoQ=c1|9`}2VVpK1m6b#15blbz&F6B;Je_7BSIVl&w?L;pMY{N7d=I>R!294U`2GWAKYxQrOCT-rG6dlU z`SKa-aSZm)gY%spoF~V6e(-(qfa}5C^P2Da1mrCUznNH4QSqcHno^53Rq9ZwR8yv- zGDUcChqj$h==}6aVL}vZjxsnSwF^77RcPARQG8$PS`TLmQAKE)l+K+G=O{Yb(o|Ql z(%FLO=};FjjNNafJ36ZiEjEfe7aNCdt&32sZ8kGG2~$h5qe2et`az6oz2Qy}n?~;q zrb(7Ttb6y9PNQ7O%Dz`N6e{xN ze`DOPver=Fn^Zv@eVND6`isuhyu=&Kq^`UIW1H71*Rrownb1m9g+T!qc4DlOW^-?E zZzi&9v#oEiMbo=xo#$N$yvuHtHL( zSry9IIZAhw4?52O(7z^UCwd%lTYI@|Q#yk$YRj$dNFiIVC^MmQ)@&K{xL9MlVx6Vv@!nBQ_4*DXk2UdesKikmH|b^8A8q48Mn4m8Zw_h}n>u^$ F;2FWrf}a2Y delta 143 zcmcb^eVp0io)F7a1|VPrVi_P-0b*t#)&XJ=umIv-prj>`2C0F8$#, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" +"Last-Translator: Giovanni Tricarico \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" -msgstr "" +msgstr "Statistiche " #. Translators: Schedule here is a verb, the 'schedule' at which the #. statistic will be updated #: apps.py:42 msgid "Schedule" -msgstr "" +msgstr "Programma " #: links.py:11 msgid "Queue" -msgstr "" +msgstr "Coda " #: links.py:15 msgid "View" -msgstr "" +msgstr "Vista " #: links.py:19 msgid "Namespace details" -msgstr "" +msgstr "Dettagli spazio nome " #: links.py:23 msgid "Namespace list" -msgstr "" +msgstr "Lista spazio nome " #. Translators: 'Slug' refers to the URL valid ID of the statistic #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug #: models.py:14 msgid "Slug" -msgstr "" +msgstr "lumaca " #: models.py:16 msgid "Date time" -msgstr "" +msgstr "Appuntamento " #: models.py:18 msgid "Data" -msgstr "" +msgstr "Dati " #: models.py:31 msgid "Statistics result" -msgstr "" +msgstr "Risultato statistiche " #: models.py:32 msgid "Statistics results" -msgstr "" +msgstr "Risultati statistiche " #: permissions.py:10 msgid "View statistics" -msgstr "" +msgstr "Vedi statistiche " #: templates/statistics/backends/chartjs/line.html:19 msgid "No data available yet" -msgstr "" +msgstr "Nessun dato ancora disponibile " #: views.py:19 msgid "Statistics namespaces" -msgstr "" +msgstr "Statistiche spazio nome " #: views.py:35 #, python-format msgid "Namespace details for: %s" -msgstr "" +msgstr "Dettagli spazio nome per: %s" #: views.py:55 #, python-format msgid "Results for: %s" -msgstr "" +msgstr "Risultati per: %s" #: views.py:62 views.py:85 #, python-format msgid "Statistic \"%s\" not found." -msgstr "" +msgstr "Statistica \"%s\" non trovata." #. Translators: This text is asking users if they want to queue #. (to send to the queue) a statistic for it to be update ahead @@ -99,4 +99,4 @@ msgstr "" #: views.py:78 #, python-format msgid "Queue statistic \"%s\" to be updated?" -msgstr "" +msgstr "Coda statistica \"%s\" da aggiornare? " diff --git a/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.mo index 1533b020727fee9ee219eb0ed616515da2a56e47..9cc3b67597e43de9a52b142c3e75fef1a2bad632 100644 GIT binary patch delta 198 zcmZo?S>Kd6S7@AobO*|*V3*#G@S{a&c{4USP9bA%Fl384mnVQW20O`~e2mk;8 diff --git a/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po index 9051812871..69bd9cc011 100644 --- a/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lucas Weel , 2012 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 @@ -53,7 +52,7 @@ msgstr "" #: models.py:16 msgid "Date time" -msgstr "" +msgstr "Datum en tijd" #: models.py:18 msgid "Data" diff --git a/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.mo index e1190674021314ba8741fe6a9c9b8763424980f8..f0cd70801e3c1fd2250eb906fd41e67dcf83e794 100644 GIT binary patch literal 1585 zcmaKr%WoS+9LEVXU558zOV1K(MP*li?6n)&Sh-oJU=Id@G0;g@Okj)gP!*=_zL(ccp7{f zd>4ES{19~UV$k^uumXMrI{!~W7ym2p82Byd?0*JboL|8|k?YRB{1%i?Kz8jKE|#-*y+BpQdK7fy$q5ct7svH*|8V=|22z!K@4j8lt{+!}J2P*M zS>_f_R%G1UWEnR(i#WyHGLf3Y653Tdq`6s5Dvb3u6~zcf>P#O#p6|Pi<=^~<{*40>hZWpxz|aH#OvJaE0u*|A>-;)V`e@{ z{@2JoQeEblwVOzccUkaZxlF4xUR$d^kF0+w_Ahg7gpwh(*oaA5Uu$(LTRd0V`Yn@) z*gsz+#_y_-D(&~W{sqm^tCGIk+K?JS{j49H@f&rjpA8q6{9rK%VCZl0E5gM+Y}crV z!RxOD7?llXtl!m4nv_|$`P-@=2_E%mo9SrG25M*qf>wsr;mrSANrr={Mk+gp2r?;H z!u>91Sx9Y#6YJ4@&)Ph!)rP}i)w=LvmtS=bHLVQOLg`xOy7hUSnOeFZqn4+&g-YvE zYkj&Y^=eSLprqvzg^qG`Z246SOD5zpMLnhsx6Kc_7yYHFoy)k(wZASS6$_b!w6r7a zL9HR>X{DVOnx+0lr85(f%*$WXJhKd?(=_L0vstHA3JB`CdT_4Upi`&H&z0t)`; zV5J_=wQHr^*#rylsl%tSuw23Ym%Mxll&E+tB=b7sXv~wJzP@>VM7bVwW3fnqYc(GJ zud;j@8@T1{u-|#j26!WK6!p9{6|+9YiUum>{edV2d!LlIZ)EIfuyq==^l zv4JgED#k48i&bxXBn1vXPFb1yZKg9NRiaroc{rPb(^#^Uk8#b^G`=XqPo7ViP~f^B kG|J0Pr`D4+_y3C-L0b*j&F`jyy&Gk`B;ETso=Uxc0W%b)Gynhq delta 144 zcmdnU)4*bJPl#nI0}wC*u?!Ha05LNV>i{tbSOD=cprj>`2C0F8$#, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" +"Last-Translator: Wojciech Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" -msgstr "" +msgstr "Statystyki" #. Translators: Schedule here is a verb, the 'schedule' at which the #. statistic will be updated #: apps.py:42 msgid "Schedule" -msgstr "" +msgstr "Harmonogram" #: links.py:11 msgid "Queue" -msgstr "" +msgstr "Dodaj do kolejki" #: links.py:15 msgid "View" -msgstr "" +msgstr "Pokaż statystykę" #: links.py:19 msgid "Namespace details" -msgstr "" +msgstr "Szczegóły przestrzeni nazw" #: links.py:23 msgid "Namespace list" -msgstr "" +msgstr "Lista przestrzeni nazw" #. Translators: 'Slug' refers to the URL valid ID of the statistic #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug #: models.py:14 msgid "Slug" -msgstr "" +msgstr "Slug" #: models.py:16 msgid "Date time" -msgstr "" +msgstr "Data godzina" #: models.py:18 msgid "Data" -msgstr "" +msgstr "Dane" #: models.py:31 msgid "Statistics result" -msgstr "" +msgstr "Wynik statystyk" #: models.py:32 msgid "Statistics results" -msgstr "" +msgstr "Wyniki statystyk" #: permissions.py:10 msgid "View statistics" -msgstr "" +msgstr "Przegląd statystyk" #: templates/statistics/backends/chartjs/line.html:19 msgid "No data available yet" -msgstr "" +msgstr "Brak danych" #: views.py:19 msgid "Statistics namespaces" -msgstr "" +msgstr "Przestrzenie nazw statystyk" #: views.py:35 #, python-format msgid "Namespace details for: %s" -msgstr "" +msgstr "Szczegóły przestrzeni nazw: %s" #: views.py:55 #, python-format msgid "Results for: %s" -msgstr "" +msgstr "Wyniki dla: %s" #: views.py:62 views.py:85 #, python-format msgid "Statistic \"%s\" not found." -msgstr "" +msgstr "Nie znaleziono statystyki \"%s\"." #. Translators: This text is asking users if they want to queue #. (to send to the queue) a statistic for it to be update ahead @@ -100,4 +99,4 @@ msgstr "" #: views.py:78 #, python-format msgid "Queue statistic \"%s\" to be updated?" -msgstr "" +msgstr "Dodać statystykę \"%s\" do kolejki w celu aktualizacji?" diff --git a/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.mo index 999f64d2432f5f2bf9b73b19aa626f025cf4c3ce..6db0ed0f17e9b2a0da7ca645f50a99b7f2620f9e 100644 GIT binary patch literal 1089 zcmZXSKW`H;7{(2he+LLCVgNCiN|jnw&Rs&Osw+X1HkB$h5R%Zfa&zv*aA%*+zN8(P zU}Eo%gb-6d04yL?%zOi824-d+C!s0S(sRGF{k*SVTkns_iG6}`1-b*hfv!WpAUA?j zgiL^C@Futbo&`6+t6&qn0B(cM_Y%AXW}pYY1zo;HppsW2S=+6BO-UhEB7{6o=bm#jZju?0Wav5^@T58aG1ZgEjOj?#(X{_wfscADsm9{VzDk_b45c1b#XgbBMDf)vCHAi;R$n^`+ zv1~nJn<6(-tB}_D9#^!sT5owxk?GvBx`}1P9v87;Z5>jt@wClWa)HXUVz{6PX(cEx zu;3o6lxcY(oL^+Yd=S9MnxZFN-jlvcISlU41sL82HE({t zbwPfv4bP>{{nXu-i6}LGGRos;)}Qt2>-F0BQOc#jThYo2g+li-+}Mg;>t_j38~5kQ&X)h(cy1( zM$x-fTAp3<$SRMtA|)Yb!qLtHbx23Y4kvOc5`U;}$bch$E>u7CqiU9sg~ip$PPk-;h7A^&>(6 delta 143 zcmX@eaf;dEo)F7a1|VPrVi_P-0b*t#)&XJ=umIu-KuJp=4N?OGlg}~wnwshwSn3*? zC>WYq8CmEWm>3vv1^DX*rIuwDXXfYWx+IpQS}7PA7{b&Um|7W{O%7lZ=MTzHN-ZkM RR|v{4PAtmIpFElA6#(vF9Af|g diff --git a/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po index 44e509f2f1..5b08c95983 100644 --- a/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po @@ -1,40 +1,40 @@ # 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: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" +"Last-Translator: Manuela Silva \n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" -msgstr "" +msgstr "Estatísticas" #. Translators: Schedule here is a verb, the 'schedule' at which the #. statistic will be updated #: apps.py:42 msgid "Schedule" -msgstr "" +msgstr "Agenda" #: links.py:11 msgid "Queue" -msgstr "" +msgstr "Fila" #: links.py:15 msgid "View" -msgstr "" +msgstr "Ver" #: links.py:19 msgid "Namespace details" @@ -48,7 +48,7 @@ msgstr "" #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug #: models.py:14 msgid "Slug" -msgstr "" +msgstr "Slug" #: models.py:16 msgid "Date time" @@ -56,23 +56,23 @@ msgstr "" #: models.py:18 msgid "Data" -msgstr "" +msgstr "Dados" #: models.py:31 msgid "Statistics result" -msgstr "" +msgstr "Resultado da estatística" #: models.py:32 msgid "Statistics results" -msgstr "" +msgstr "Resultados da estatística" #: permissions.py:10 msgid "View statistics" -msgstr "" +msgstr "Ver estatísticas" #: templates/statistics/backends/chartjs/line.html:19 msgid "No data available yet" -msgstr "" +msgstr "Ainda sem dados disponíveis" #: views.py:19 msgid "Statistics namespaces" @@ -86,12 +86,12 @@ msgstr "" #: views.py:55 #, python-format msgid "Results for: %s" -msgstr "" +msgstr "Resultados para: %s" #: views.py:62 views.py:85 #, python-format msgid "Statistic \"%s\" not found." -msgstr "" +msgstr "Estatística \"%s\" não encontrada." #. Translators: This text is asking users if they want to queue #. (to send to the queue) a statistic for it to be update ahead diff --git a/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.mo index 7ab4dc782c636223cfb9aa1054b8911fe22269c1..b06d81166a3ca971a95dd2c178b24435872406cc 100644 GIT binary patch delta 286 zcmbQlc9E_Ao)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~}-qf%qg4O9Js_Am#(&w?NDf#D9R8 z1&DbV85p>Lv>=cc1=2D=dL9rPLB%gJF)+vj#qR)VAt3z+NDDJC1T*k6Lkv&`(!4+k z4InKAq|JadP%i^e9RnK>gB%DHf&-AHAixU5>>!3qVo9n(NoH>9#1+=eIi=|nALj9x z=^7a88W}1Wnpv4lj%JkMg$WoLS{aybZef&TOV delta 225 zcmcb}Hi@nNo)F7a1|VPqVi_Rz0b*_-t^r~YSOLV6K)e!&`GEK^5c31^B_QSk;zvL% z3dC=Lcpf7I12YiI1KEq17#M_r^dTTE45Y6DXF+=qs8kbdF^~@iKruLA zhO$_IG%FBKyktFDh%tx9RM)^#*T_V{(9Ftcau=fvFHFF|)XLCo^JYdl#>sb>+$U== GYXSh-j2q(s diff --git a/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po index 2d37ec6fd6..d5545d67a3 100644 --- a/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rogerio Falcone , 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:28 permissions.py:7 @@ -49,11 +48,11 @@ msgstr "Lista de Namespace" #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug #: models.py:14 msgid "Slug" -msgstr "" +msgstr "Slug" #: models.py:16 msgid "Date time" -msgstr "" +msgstr "hora, data" #: models.py:18 msgid "Data" diff --git a/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.mo index a847f4423cf1b7c3bad30a435c77cf05f6e61db0..a83b1a18789950d38114e72afe9a42a310b328a6 100644 GIT binary patch delta 64 zcmdnMvVmp73R5#(17lqyLj^-KD-#P{0}}%St^j}CpwzO=;>`R!U6;g?R4WA|14EcP NBSR|#(~Wn7838yz5n%uT delta 64 zcmdnMvVmp73R6>E14~^a69q#vD`R!U6;g?R4WA|14EcP N15+zQvyFFy838&45pw_l diff --git a/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po index b70f1e11ae..af186b5679 100644 --- a/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.mo index f8ba53a5b636a55ef56310d3f478ef577841ad64..aa85439fc900967e2f1283c3a68bb3f17608302f 100644 GIT binary patch delta 216 zcmeBV-Nl-9Pl#nI0}wC+u?!HK05K~N`v5TrBmgld5GMjL7Z7Iyu{aY0Lm7}31L8g) zTLefi1=5T_8c2c70#Xp*l30?eP?DLOIx!%^)J)gFSl7r8i~S52 T7J>wUc*n&?5P4zOg$)br5+IuqNQ3kt zgNa!YJf^w^mbykJ3WjD@MibA;@WS{8rdEb#8^6zB6j^w&>B0se-f^)JL|)i+VFLpI DtBD-; diff --git a/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po index ffdfa5a1eb..1aeea7b5a4 100644 --- a/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Sergey Glita , 2013 msgid "" @@ -9,17 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" @@ -55,7 +52,7 @@ msgstr "" #: models.py:16 msgid "Date time" -msgstr "" +msgstr "Дата и время" #: models.py:18 msgid "Data" diff --git a/mayan/apps/statistics/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/sl_SI/LC_MESSAGES/django.mo index 0c5c58fa397f8e9093a622b2df525abdcceb1da3..ed39cd131b57641e6ad89cc066562bac877fe1a7 100644 GIT binary patch delta 46 zcmeBU>0_DD%44Q$V61Cos90_DDI&m!ri=mm7(Zq?HCxX=a(Q!qiOHz*yJFP{Gj5%EUs~z{J3SE5KhjD77rJI5R&_*Cnwe)k?w0z!0X+ N$k58bbmLt$MgSqe5ZV9$ delta 64 zcmZo>X=a(Q!qimPz*5)9M8VL^%E&_3z{J3SE5KhjD77rJI5R&_*Cnwe)k?w0z!0X+ Nz|_jnY~x)uMgSv)5bOW| diff --git a/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po index 2d352224e5..01a1416c9f 100644 --- a/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.mo index 2a34dce279f11fb63ca33e99a7b68ef44e5060e0..0b3f58aa7364f21873a3e10aabc6abeec680fd70 100644 GIT binary patch delta 64 zcmeyt{DXPI3R5#(17lqyLj^-KD-#P{0}}%St^j}CpwzO=;>`R!U6;g?R4WA|14EcP NBSR|#(~Wnf839_v5w`#U delta 64 zcmeyt{DXPI3R6>E14~^a69q#vD`R!U6;g?R4WA|14EcP N15+zQvyFG983A005y=1m diff --git a/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po index a62db15399..906b9b825b 100644 --- a/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ford Guo , 2014 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.mo index 054991d2155f0e364732a5291c9ae5dfa981d5d2..1c812a3c9c40b2ff26d045de3750c0e61278d095 100644 GIT binary patch delta 43 zcmZ3?vY2H;E03A3fw8WUp@N~AmC3}3Yj}JT^U_Nb(^IV!5{o9=Fh);a!dMRg9<2?? delta 43 zcmZ3?vY2H;E03wJfu*jIiGrb-mC?kBYbJX!M)CM0=B1Y=rl(pdBo<9x%-8?`9ySfz diff --git a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.mo index 3c301f9ea8cdd736c91d82a49ef245f10ba90c36..c7b3b4bf901b557bf7faaa7d62f3a89a532cf6d1 100644 GIT binary patch delta 43 zcmcc2e3^MdE03A3fw8WUp@N~AmC3}3>v?<<^U_Nb(^IV!lF}#JGe%Ed&Zq+bEzb?o delta 43 zcmcc2e3^MdE03wJfu*jIiGrb-mC?kB>nHm%M)CM0=B1Y=rl(pdB&APY#;6MbEvF6T diff --git a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.mo index de72ba66ecb5f1e22ec833da206ec1d6eee832b2..babcff1b15479e2a0743bad49725cee12dce946c 100644 GIT binary patch delta 46 zcmdnRvWsOxE03A3fw8WUp@N~AmC3}3C;5F6^U_Nb(^IV!l8WP<94ALIMo&J%SOx%8 CzYi_| delta 46 zcmdnRvWsOxE03wJfu*jIiGrb-mC?kBCnskyM)CV3=B1Y=rl(pdBo)UyIZi&zSPlSI Cdk;ha diff --git a/mayan/apps/storage/locale/da/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/da/LC_MESSAGES/django.mo index b1cda501e45e177f4460a88feb6072145a372206..5430043539d225e7cc77b6a787fd2c00f03ffaa2 100644 GIT binary patch delta 43 zcmcb>e1UmFE03A3fw8WUp@N~AmC3}3Yj}JT^U_Nb(^IV!QW7WIFh);a!l(lPEKv== delta 43 zcmcb>e1UmFE03wJfu*jIiGrb-mC?kBYbJX!M)CM0=B1Y=rl(pdq$EyW%%}?hED{aU diff --git a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.mo index 86d344ef0bfbb21fba0076d3ef352dc9d0dc7cb2..91494a5993b86da546ee4bd4f50fd16dff33f0db 100644 GIT binary patch delta 113 zcmbQtGL2<|4(~cf28Kum1_oXr=9p-i!(*mvV61Cos9, 2015 msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-20 21:29+0000\n" -"Last-Translator: Berny \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:10+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" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/en/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/en/LC_MESSAGES/django.mo index 235ae695fe6be952b2e923e64621908442ddab1f..9ac3626980ef4a42771fc2dc4a6a4863a9103876 100644 GIT binary patch delta 22 dcmeyx^owai7mt~)fw8WUp@N~AmC3|uPXJcb2Xz1d delta 22 dcmeyx^owai7mul~fu*jIiGrb-mC?j$PXJdS2YUbj diff --git a/mayan/apps/storage/locale/es/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/es/LC_MESSAGES/django.mo index 1669f0f57476e2a14c96305a7d31c92844a07c8e..fc290da6b653db1c6deb1df398db11dfd38ef8dc 100644 GIT binary patch delta 40 pcmeyy{Ed0SQXVs117lqyLj^-KE0c*EWq4tHBSR}ggN?Uj7ypJCT^6m0rD+$jSLhFEv<}(brYM W#?{x+)5pQl#U;o!IC!!m<1+yDBO9Us diff --git a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po index 5279fe9f1a..28c16a4bbb 100644 --- a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-20 19:23+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:10 msgid "Storage" -msgstr "" +msgstr "Stockage" diff --git a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.mo index 70ba79c2cac995fd80e2a2ab868c76f5766622b9..2c08d70f656da3c1ab05e9d94f7ff7792c37ad48 100644 GIT binary patch delta 43 zcmcc2e3^MdE03A3fw8WUp@N~AmC3}3>v?<<^U_Nb(^IV!GD;`gGe%Ed&Zq+bE{P51 delta 43 zcmcc2e3^MdE03wJfu*jIiGrb-mC?kB>nHm%M)CM0=B1Y=rl(pdWRy-`#;6MbE)fm+ diff --git a/mayan/apps/storage/locale/id/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/id/LC_MESSAGES/django.mo index f1347b3bda4c010f23c1c7879b40e909734f94ea..6aa33e66fb4caf2c5c84eff8854a1fc7a99d1bb0 100644 GIT binary patch delta 43 zcmX@he3p4aE03A3fw8WUp@N~AmC3}38+d#Y^U_Nb(^IV!GE*iyFh);a!KexVEE^5R delta 43 zcmX@he3p4aE03wJfu*jIiGrb-mC?kB8z%cPM)CM0=B1Y=rl(pdWTs4B&Zq_eEAS23 diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/it/LC_MESSAGES/django.mo index 592296720066c69ae3cb577c61254786771caaf5..2d59282c3d842a13868fd08552b8650a6c085c51 100644 GIT binary patch delta 206 zcmcb}+{Y4ePl#nI0}wC)u?!IF05K~N+W;{L1OPER5C;PBN=62TNFdDx#LPeqKrR@7 z^uj@KNq$jcdg??AUmi1E17lqyLj^-KE0c*6W&B`#BSR}g18oB!;POc#D@zKQ9HRaKdJ H`3ejGl3^_A delta 145 zcmeBUxyWpBPl#nI0}wC*u?!Ha05LNV>i{tbSOD>Kprj>`2C0F8i4nd$rn&}}x<)1n zhGteq6F17(0QnZWMg|IomR3f_+6F+t<&#)kq8n0_m{**WSdw34rQjCoEqz&;u7Q<96VW?@dW_&-y5I+ diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po index 55ff5c0afe..e6c9d250be 100644 --- a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Giovanni Tricarico , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-20 19:23+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"Last-Translator: Giovanni Tricarico \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 msgid "Storage" -msgstr "" +msgstr "Magazzino " diff --git a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.mo index 624ee49fd2f8b1ef0171f62ad6695a6f1f9864f7..ed53561ab3da0aed06b79225b59a50ec920c697c 100644 GIT binary patch delta 46 zcmaFN{Fr${E03A3fw8WUp@N~AmC3}3d-#14^U_Nb(^IV!@^a$+d?x!aMo-?(r~?3D C;}0nS delta 46 zcmaFN{Fr${E03wJfu*jIiGrb-mC?kBdnU&+M)CV3=B1Y=rl(pd0+7C%44Q$V61Cos90+7C%44c)V5w_lqF`udWi)Z(n#o>_Q9M40dFiEz>8Vx<1v!%!Go}Lo79|at diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.mo index 8eda47cea2daf701939922f22b9ac5031720b39f..7fc985a23315f88079799ca28691c47ceaa149db 100644 GIT binary patch delta 210 zcmcb@Je4Klo)F7a1|VPpVi_RT0b*7lwgF-g2moSsAPxlLwTui5kwBUkBnH#~eNH($t(ph2YGbvP1=&jQCuLKzvbtN-;>xAw4%SGe<8uKX>BG*L;pexrtS& Md5O8Hc_sM_0AgP+NdN!< delta 145 zcmbQra)sIAo)F7a1|VPrVi_P-0b*t#)&XJ=umIv&KuJp=4N?OG6C-?iOmz(`b&X6E z49%>JCT^6m0rD+$jSLhFEv<}(brYM W#?{x+)5pQl#U;o!IC!!Q<7)u?!5gsv diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po index 63f52a852b..d051507ada 100644 --- a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Manuela Silva , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-20 19:23+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"Last-Translator: Manuela Silva \n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 msgid "Storage" -msgstr "" +msgstr "Armazenamento" diff --git a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.mo index 3e7ea801ceaef58d0c0ed9f84aa3dbe8229d8971..876e916f2a221d48743ab4c5a55e4a1b62d940d4 100644 GIT binary patch delta 46 zcmaFF{D^r%E03A3fw8WUp@N~AmC3}3d-#14^U_Nb(^IV!3QFRgf+qVgMo-?(s0{#N Czz-?_ delta 46 zcmaFF{D^r%E03wJfu*jIiGrb-mC?kBdnU&+M)CV3=B1Y=rl(pd6qLj}1x?<@r~?3E CEDt~c diff --git a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.mo index 42c945752215577a0c31a3880d5fdea0529d76ef..8959eddf5712cfa2d530282b9c45e4f5fd4a43dd 100644 GIT binary patch delta 46 zcmeBX>1LVG%44Q$V61Cos9<+I0 delta 46 zcmeBX>1LVG%44c)V5w_lqF`udWi)Z(?#VHXQT#rMdFiEz>8VxxGARy* delta 43 zcmcc3a+_sBE03wJfu*jIiGrb-mC?kBYbSd%M)CM0=B1Y=rl(pd6qQb1!nhp(F>el; diff --git a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.mo index 9f3059f5ac98625de7fd616e63fdca18eb20ca0b..06a99ad5ae830e0717128bbfd6f4c6b5be42d892 100644 GIT binary patch delta 46 zcmbQiGJ|D8E03A3fw8WUp@N~AmC3}3d-;75^U_Nb(^IV!igV(FJtzAzMo-?sm;eAs Cj1JQP delta 46 zcmbQiGJ|D8E03wJfu*jIiGrb-mC?kBdnd;+M)CV3=B1Y=rl(pd6z9YTdrscYmLHizk_>L_iad8)k1n4lZ8RwA!*}+CU!V$c{ zQT!;3hnQV0FwI9TIEy}v;2WDyVn6Mb5)l_3qmEhZ!WWFPzPKDBLv+Nj5_712xWyno z;v{}zA5N5tj9~&7@Bzm$z%G;<7{)7{!!KOM873XZJM`l>cCo(rxkoke6c%osmPkEO zS6xnOiQ1GZ^$c#p0fjwD1yRMt{1=D&E!LJg!fgxt{C(ycR8ObMsZQ)6)u|U-rZT*~ zxV5^p7Tc7uNHmt;)4W=Fs5{uxZRl-!Xs|bxu{Txxbr|}fZsecr8O@uv5?0d8nrZXI U+79pX<}1twbn~TVhIEl#6S{FtHq*2buW$%3J#^v!NElbyNRPv{0c%* zTsr8WPL6K62%`0CD5C!pJ9yy9?_417xt!##$D40i{Y+?M#3B!5iZo(;XkDDZ4>a%- zhtz^5G5{GYpoIZ$ViJ#W7EjT^8_eS?&fynQrztb>zl91;vapM*c!XM<4fb9?!9kPq>2RgosCdIiyo%;sQhb#&ujUMYiz(H}IvW zP4x=n8gAhw*3hJC8TW7+uTT|!M)ltq*Tp{7#YG3;JR&, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -32,13 +30,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "الوثائق" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -62,7 +58,7 @@ msgstr "" #: links.py:36 msgid "Edit" -msgstr "" +msgstr "تحرير" #: models.py:20 msgid "Label" @@ -199,16 +195,22 @@ msgstr "ازالة الكلمة الاستدلالية من الوثائق: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -225,8 +227,7 @@ msgstr "الوثيقة \"%(document)s\" لم تربط مع: \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." +msgstr "الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" @@ -279,6 +280,9 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.mo index ad38b63f1e35a623f33e8b8fa8a6daaa7122e301..ff2d5345d1f311023f5b49c2a2eb3a17c751b89a 100644 GIT binary patch delta 587 zcmY+=%PT}t9Ki8&8ISSKf+2JzvANtk=GByfy5 za2X452P<(OOYsbym_P@nbM*tZQ9oe|eqa;UT|EUJSRQ8ldNHccn! zr}na`7^B#U3)qaOSdEWZgD=>M?>LAqZrzVlID{A2gI{Rze$ibhL%~2g~(haHe-aw?Ql?co7T@h zw-vP9SLb=hTKld{%bU!myp>6r%52DMA&(d)>-+>)h_YS}I4Owk}5&!@I delta 365 zcmXZYu};EJ6vpv$+X4zy(aD%%FrX%ohPGN!7MU1~7<~gCfQ{(N0L&)dxVrcPCTu2Z z3@_ot;_9RW1CsE+#FKpa^|ZIS=iV=On(0k8od=;@;*kN_Am7APphUJX!~~w>I$mK0 z+qjAyJiuGr!AIQ2*Z=+#9r`Jn^?z6t=}FQOxuYp#jSnxj$O`^o6=%4M75?7C7Phd9 zm-vAV%rRYv*SLm#%;P;a@fq1hQp6N31F=JP*@~pmOlFE%mP43lbIK$!H)QJ@b*9Ja sLLXXh+1L+G{phF=9@is1w>*~@Cw^2b1aUozNBj1Z(!b7d^qwfG1<$}I, 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -31,13 +30,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "Документи" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -61,7 +58,7 @@ msgstr "" #: links.py:36 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: models.py:20 msgid "Label" @@ -117,7 +114,7 @@ msgstr "" #: views.py:59 msgid "Must provide at least one document." -msgstr "" +msgstr "Трябва да посочите поне един документ." #: views.py:86 #, python-format @@ -190,16 +187,22 @@ msgstr "" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -269,6 +272,9 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.mo index 1ab7d7b4a23055616f7d7d2300cd1bec8c1dce5a..3f65ffc5af4ad174b8d7b2d7b626d991ee76a340 100644 GIT binary patch delta 609 zcmX}pJ4ixd6u|N0%}h(nM-K^mkU|d-@>aJH!UkJ|2A7~I9VAL98^XaUXb2jlC0e2( zTv|kEX$xv;iPqd}i3S^L>3{Ur;hy`u-@W(y&i7~pu7l-9(0L}r5E&s~$T9N7!HsYm zB4PAkCr)4=PGJu&p@nHQv4kGHK_}kY?K_;L{eV&Yz)_L1ggQiKcwyoQZXzF~gu{4_ zDXilPHtp{gqicZ-H!ZkTvxIlfm=Rs%wjXF@gON2`n zx#^E7)CsQPG#+9MuTc9vq89o=T|n5~p16g}wAXDA=zs>*?OmrO zGC=B9d&wZ#O={>d=t@{%Yob2XU}OG63ux$q`blq`&g&sP?7{ zTL(M2-QvEiX7k0`kr6h$R(y6YZYIVPR&u^lbw+%DFU&+TVb-3VF(Z&JY`6O5C9{{K LXTH{Sy*YjX{R2MA delta 535 zcmYk(F-yZh6u|M|1w6+kyhIQ0v5Iflz#n9vSQbaJfo+^;;0W8;!7Y3mj{l;`ca?{3 z;Gu^;ev#B3Y5}{W*}P+%;`;jV6Ky+l2X)>VvZP#N8GESfJs^4N!KDRIkH{gRlhPwaJz{N|c`1DpsUXFri;fNZ zipc&lP3Sdfg?fb!@xR$!%eYM*jaj1@`N4)CuGUtXt*|>V-4Y$^ez;Z(qE;9s1*>i( I?fggX4, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -32,13 +30,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "Dokumenti" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -62,7 +58,7 @@ msgstr "" #: links.py:36 msgid "Edit" -msgstr "" +msgstr "Urediti" #: models.py:20 msgid "Label" @@ -193,16 +189,22 @@ msgstr "Ukloni tag iz dokumenata: %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -272,6 +274,9 @@ msgstr "Tag \"%(tag)s\" uspješno uklonjen iz dokumenta \"%(document)s\"." #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/da/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/da/LC_MESSAGES/django.mo index 6a8786ba0ae7e2933192d2f831366f5d4a10a5be..aed3bd6c5530bee530bc56d389560dfe807e07c5 100644 GIT binary patch delta 587 zcmXxhze@sP7{Kx8?6Nd1vlLAWL8y>~yhQ6FG!W{qC`6<{%E)V~aB8bbifU@C)>~_6 zjV7n2{({I_qOtFL>cc(n=YDuT&vWl#$8dR-!8 z7{C!sU=A11zzTZss^=Zfas7x%Y~u|6VoIbbp@D9}BB}>lIEANJz-uhxd+&Kv7vYd) z7FB2slemHBG+9G6$RFLRhC^KqPErJMb8vOe z;!vDi?B5_ocST(7px@VY@W{K*B^U1AyZbVGX1kw?-6~p|$P&-QDsgPk(cW+g-*F6o za8@QFN=<=@CCs9W`#6c0xQ5qg<0Izq71wcq?9*2HXgE>B3=>DVi5IwqPow!?jPahM zlMQUNQR5X!?V=RWCre3mKsSTNc=*4G8@y+*jCD-1zv?j1e7M6r_Rzv_lnPQ4O0A%e zax!&X#uob6!79Gs97f||qG{w&89G_lM)H({8x}x4N*xd;F+5U~%%#l}$>Atml;RZm zsKn^oG_s#sAmkdPQn|tu@xR4yK8=UqKC&3`JndAqTeJ!#->qn;=s1a;ZN1kxZ=N+z fPjv0D)$lFXDezxKyJgGqeAf#;VqGH$#=FKJ_fs`o diff --git a/mayan/apps/tags/locale/da/LC_MESSAGES/django.po b/mayan/apps/tags/locale/da/LC_MESSAGES/django.po index 8e73b046d1..97ee8aad4a 100644 --- a/mayan/apps/tags/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -31,13 +30,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "Dokumenter" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -190,16 +187,22 @@ msgstr "Fjern tag fra dokumenter: %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -269,6 +272,9 @@ msgstr "Tag \"%(tag)s\" blev fjernet fra dokumentet \"%(document)s\"." #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.mo index 85a82ae02144a2e0a1f54641d88dd713e670886d..90ced9d675c38465c4eeaad73472be4b47f43d24 100644 GIT binary patch delta 438 zcmXxgKTE?<6o&CrwWWWx)w*enorDtTO-q#s7Q{ipNehk=K`@{VBpC|@Cr3p=gifx4 z2%TI61t&)Z5&RNeis0gNA>QS8&wI}yhkO_>#zQyJ>nB9Kv`9fjQdyA(meIg1OyUvF zU8AlH%@B}j$yVA5_p#$6?VTik_Bwg@qL~)DW~a#0iE6THrZZU_*0DO^pRX z1QOU9RBKB^5J8O%{TIETx?5h)_rvq$`Ebw1n{js(=yU@jt}YT2k%_QK4rkH89SmX{ zNAVa(@Eq0sYh+dK{rLe)%r98La6}}JE2!Zi_G1S_coLD0jBz+6U`MV{JR%IIFnCX4=eFmd*$#gMk<;={yZJj;olWTuLx?oya+sY@> yeBlkpYbCdv&c0W7S_e(r+;mzs*YV79wbrax&Bez5Tv=`uy;Q|*mwLk?Yv32i{XDz? 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 db34328f27..ad2a1d8c1e 100644 --- a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-08 23:27+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -34,11 +33,8 @@ msgid "Documents" msgstr "Dokumente" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document" -#| msgid_plural "Attach tag to documents" msgid "Tags to attach to the document." -msgstr "Tag an Dokument anhängen" +msgstr "" #: links.py:14 msgid "Remove tag" @@ -191,17 +187,22 @@ msgstr "Tag von Dokumenten %s entfernen." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" -msgstr "" -"Wollen Sie den Tag %(tag)s wirklich vom Dokument %(document)s entfernen?" +msgstr "Wollen Sie den Tag %(tag)s wirklich vom Dokument %(document)s entfernen?" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "Tag \"%(tag)s\" wirklich von den Dokumenten %(documents)s entfernen?" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "Wollen Sie die Tags %(tags)s vom Dokument %(document)s entfernen?" diff --git a/mayan/apps/tags/locale/en/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/en/LC_MESSAGES/django.mo index 2797a8978dc1800b17e9a2945fbd78c9fb192671..1819fa675f0d0bb86df485725316cb1b87577e13 100644 GIT binary patch delta 25 hcmca8a8Y2xToxWPT?1oXBSQs4Gb@wLD_K@B0{~~X2X+7e delta 25 hcmca8a8Y2xToxWvT?0#9BNGKfGb^LbD_K@B0|00a2Ydhk diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/es/LC_MESSAGES/django.mo index cae51bba654664544759939d6bf3ccdd53bbbd34..45c6fcf63afec35a530b52df92795dd6c4f6103f 100644 GIT binary patch delta 1580 zcma*lKTH!*9Ki8+rBI;MKPVztt8e?FZ}r2z3cD2-}~KtZ+OydeXeyr zRE$o-ODt$g_2Pzue~fo!N>yV9yYM|8#4@K+<>I@M)`dVD{vUycmX4L6?7d1?5q6e#3wF>L85nGT)st@INvE1_!Y~%hC@~0O0cLeX^VO+y@%%BT@WbQy+03enDCAC(1i>(RbM>iUAxzIl(k`;{%j$VjV;H z2_@gn`}Cm~Td^PIpkulDc@O=UN*^&HC;xzFu#w}P!Ye2nKSudzo?{$0umyd5anjO3 zJcJ|25^4%%!+E5^_A_~ir_ zWVEJ-$_BJrJ(U<&gURc2GscaS+?eSl=WWe8Z_Ffb8G34hNQ~<~e*l7}Pam62&e+qV zxumG>59F_dX205brdgV5ZppRmZB3Szl7i;n+isJb&6UOfm0Y^9?0bkyrYzomTp&L J`kULS{RSkK4;KIc delta 913 zcmXZaPe@cz6vy%N9REzsIO$Yl{>d5thw#*%&X`tYNYFw^mx3-_x{;uT8(|Py6lEYX zP!QOn7P$!GK`4UYVixAsRzj!?BS8oRH@4{eyUk(l{oMCw?mhROx0?P_pZ}RGFBs8D zYod*LW?5V)qa(&6W|wgSdvFSG;47@akC?zUyn-93_jj-o_b`V07~n6=VMDpQ&f5fo zOWb&l4fqE6*=M>qenCCo#4aqN7Cyx`Ji}(J<7PMJunK2T&u38yE#Xaki+cYX#w>64 zgMk)4M3S?=_yCpu2#lcqu!yW>AMiSULYEk7p&~AEdcU!j>-nhJLwt$Xa2J`{4ocU@ zm|}gqV4x#RG8;o{!5ZwwF}#cS@CDw-B5FqwIwh7s)-)fl;sEOZk5NZHiJJE{-ogSZ z;VsPfGdN05PUZA2e(9Zls*(ULSJqQw>Z zK6FxMPh9VIsf<(x9SsS(&~6o~pCaS>|6M(F(Dco;(^P_VxE&ew!gR$`FI=b^^5R*) qZ^#b@GPiTX!OC{DshS&i{9rKCmmLnW;YsveS@<<};)U-M5$_+{!cWft diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po index e9fbb09aee..87bd791f12 100644 --- a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -36,11 +35,8 @@ msgid "Documents" msgstr "Documentos" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document" -#| msgid_plural "Attach tag to documents" msgid "Tags to attach to the document." -msgstr "Adjuntar etiqueta al documento" +msgstr "" #: links.py:14 msgid "Remove tag" @@ -80,11 +76,11 @@ msgstr "Etiqueta" #: models.py:53 msgid "Document tag" -msgstr "" +msgstr "Etiqueta de documento" #: models.py:54 msgid "Document tags" -msgstr "" +msgstr "Etiquetas de documentos" #: permissions.py:10 msgid "Create new tags" @@ -193,23 +189,29 @@ msgstr "Quitar etiqueta de los documentos: %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" -msgstr "" +msgstr "¿Remover la etiqueta \"%(tag)s\" del documento: %(document)s?" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" -msgstr "" +msgstr "¿Remover la etiqueta \"%(tag)s\" de los documentos: %(documents)s?" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" -msgstr "" +msgstr "¿Remover las etiquetas: %(tags)s del documento: %(document)s?" #: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" -msgstr "" +msgstr "¿Remover las etiquetas %(tags)s de los documentos: %(documents)s?" #: views.py:379 #, python-format @@ -219,8 +221,7 @@ msgstr "Documento \"%(document)s\" no estaba etiquetado como \"%(tag)s \"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." +msgstr "Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.mo index 3f2e78e776d39224b21c961adcaa7693d5b89471..dc95d9ce59803965e91b42ac906f4c2e18482db5 100644 GIT binary patch delta 907 zcmXxi&r1|>7{~Ev-Ce6SU4N9V{c<%W6h`Jdx=U>vc36x$l!!lw4M9;#1qBPQi=;&! zx`c$Cx<%b&x^?IhNnN_;C5ZYX>LR^A!YuBf=D)*w{D2Mk5sSEo0UqE9vzob-*;#H} zLw+{N=_FQ>3HA^#<0>lQYrKSS@FIT3e*BHcu!%`3pdBw@7i!)xs*q_^zC}!u-!>Tx zbK^PQz^|wmGL+AMS|6Uq0aQU1Q~`JJDcxF)pZ_C!7x%Nrc?TWx$g0?ev#9@F!&A7e z=j6Bd43uCOZ{i-_!YtYJCHJrw=TM#5!gKg4HpJ^(e@D%483W9Hj<+A5R3O>bfpAZKPA-isBg8@Gm)d{!<89c|@F4LYF6c|> delta 839 zcmYk)%`c--6vy#Xt!lkZRZ;IXjR;AreP{>qmLUDSXM1n-(`;#F~+@~X8+gEGd_k?N<7MT^BDrlAN62q~nT+z_5Vi0UdB>ix z247Jd2~my`H{dQ^8b*D8LDn|B!cKfcRo)SxC`_V$_cumx3HAL3){x(}nM_~~C-DkZ zK|5L7F@@^LJT~IWe_b5n|0C4;f0)J_RI6)wIF2)@P8?u8o}xBfKvxOwnP`V$4vMLz z@edB-0`8+;xI>+FkloZ`6zi}XQ#gS%=A&wsny!!%EA+lXcjPC7Ju2Lf$~03;^y96J z7(, 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -34,11 +33,8 @@ msgid "Documents" msgstr "اسناد" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document" -#| msgid_plural "Attach tag to documents" msgid "Tags to attach to the document." -msgstr "اتصال برچسب به سند" +msgstr "" #: links.py:14 msgid "Remove tag" @@ -50,7 +46,7 @@ msgstr "الصاق برچسب" #: links.py:20 msgid "Remove tags" -msgstr "" +msgstr "برداشتن برچسبها" #: links.py:28 msgid "Create new tag" @@ -189,16 +185,22 @@ msgstr "حذف برچسب از اسناد: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.mo index 4fb42b757b2961faf1e571e724944316ad735727..223dc021f2286383ea7b6884a9396a1aa13e6c02 100644 GIT binary patch literal 4217 zcmbW3OKjXk7=Q=LGrU{g&mjPr)Pb6L=^55#9y=gfj0sf+_m;LQGI|Q0$oRa}CP;Hbk}h3O)(H zg^$BO;Ir^vk|z0o71rSf6g{88$Kcm+3jPGe&OHc={|~?{j_?rg=ivhU28!MbP}ZHN zsKl@1a20+EMepxW#`oQ-)P3+lDC;)h1YCuLHye|DYVIev^Gj+<>Rm2O%VKgH6yF}@ z-p9=nneDimt%XW8%`KP2Y@B;Px6~2lW|!njF0n!4D>>ZDEwQJBvYL@N$aQ58>UKz4 zitAyXBxmA})WYyZ31=~s?-C2C2eptSZgWE??t0}>Cz1A|X4*DkGUBtXe79A3tByuN z6sx1LaTB9Mvy~|yd_|}?EbAUKfk{jsB5aH24Wlii&BS;zaCp>!Wu$Mf9-o-XZJ)N| z+PB&bSj^iN4eKa!t;q1g@W^Rft_>%XOHV;XIiDBo?i*2g(p!E)eDMT{hMur$(esn+ zXW)yxFc!yAtUZZ{AFj){(pDx<85y6pYRNrg0=1mlM0et7)Ax*a6CD_r4^e1}?A0zI zgYwG^OSJM>*3`+^Z2D#k`fWGf)^C_?9kp`Tqz2Alh36TsrdCWl+RR+8JnB{)wF`w3 zi>lz@s2v`*6-9PPwixO~xeQrPPJ*AiAwkTarzxA<(96#hi;AiC;<=V#$>DV0y6UQz zoh!OWO|Gsh%dSy&+!Zg~Y!j0#n>L%q+Ey9_lzX{}MYi;Myf!pH&ayQ$eIQvQ6tKUt zS{+(C({E)FVj=b1-xhdc)oE&|SL`qQK_E4gFQ2XG@-3IAK2FBbS@yqk!gEfW*!oe} z(97<&8|uYl%d2B6rW3`9vuxLW&pDE=TW2k5=&_S8t~ptULEbq=A8P2i+4=!z_DN^1 zuImRHPaSk-pPHRT&{?6XMeoIObM;1jZvQOT*b*DdS&QA!25u6?4ZRYbF)aH7S&A9D`J|3HpwmP+uB%Q|0%+}UcEs@!N%bcq>*j_VTaz3*wRYS&Sjx$Y zEfYJ7VKegRCk=h@jGq*?HrO6xCxbM01Lt@Yx2e*wlfBwQbMw0QcxWor&+7X0{Fqwl z*IBGnT1iU{O#Zh8?ab2nH1l zNwTq*$~HB$-?X8xd)=M0-Or1Vbaym`)HY=wxRio$($yVKJ}hNoZZD7SrfF7Gbl=Of zio-=(RQcHsd_VRt2VSPJ8k20>FH?anpNQrUdO(E6Pz(%5nnRIHYyPXq77twd9QmQq z5oIx_s;Trv`euG!miDU?K^9H2BdyZ)W89qdLr;o1mWpjherPH2!uy&!9i_7Lrg@8g zmd2q!AUIHP|6P408`AH(JM^Q}4SY+mmR#Ko$dXiJW@?A!2mM9N)$Z9SC9$Sfskfm` zI-*{^a*Jkp8YM>Y7HxS*a5!Hp{PPkM%c1WB-C)Er#Xn}cVprwdmGkfNQ>(UCCTE9s zWj12@Mo4(>t&NZzY87w)pN2B5mHA?Rr4*N{jiYqk?eEfFCnT%AO)7_b_Y3KRMJB}N zJS*5;QzJC?+6HxGdyVZPoz-X$>s%~4!uSNS8KFWIVz%NUVJxl9%4VU}@|zn}$51;| Tt5U}m+!X%DjCwAi$HsKt$;WZ3!8P)y)Hscd)MTZ4^g*n{7q*>LHo>>nM zI*^}@Ql)SLX<%hMgy&EbuHX>f!+rPyNANwi;7`;7eq%pwqS|%QS@RT-xorkdF~40T zDf3_r)o=spV}EcDZlM;EVLO_*2Oo1vCDciLX4dog1GUgGzp;=@sPV4g0Is6Odx;wF z9fr(rA4$si6;ETxTQ!)YQpW}4l|4jF_;klNsP^lq9eY$07~lv_VF{N|SM(Ou{{tSx zFIYWHvQ46$4RcYXb{1#w0?y)VREMpd_k-L|FaM9A20VkqcojJq>mX=qaY9$1GT5O0 zjqE39%_`OUT`S`>>#Nj`BSIgeu3<0HNvLR%VLfY9Y0!~&5n2d0W$lEHeK(=|{=euH z|CJ0$ua>DD>%&R7Pl@NwdCP8~>6?q1XM<>ArLq{^s9e9hIKOn~cI|#kF_y|_$4_K) zlhM&aG3VC(zBCVxXLHA*@q96tul@4Fczk-^tp?q$(t68ndwwmGx*T)Q(l=dy+kx82 HpcMNHjIL8) diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po index 34a69ac019..872e83666d 100644 --- a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po @@ -1,9 +1,10 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Christophe CHAUVET , 2015 # Pierre Lhoste , 2012 # SadE54 , 2013 msgid "" @@ -11,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -35,11 +35,8 @@ msgid "Documents" msgstr "Documents" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document" -#| msgid_plural "Attach tag to documents" msgid "Tags to attach to the document." -msgstr "Rattacher une étiquette au document" +msgstr "" #: links.py:14 msgid "Remove tag" @@ -51,7 +48,7 @@ msgstr "Rattacher une étiquette" #: links.py:20 msgid "Remove tags" -msgstr "" +msgstr "Supprimer des étiquettes" #: links.py:28 msgid "Create new tag" @@ -79,11 +76,11 @@ msgstr "Étiquette" #: models.py:53 msgid "Document tag" -msgstr "" +msgstr "Étiquette de document" #: models.py:54 msgid "Document tags" -msgstr "" +msgstr "Étiquettes de document" #: permissions.py:10 msgid "Create new tags" @@ -111,7 +108,7 @@ msgstr "Retirer des étiquettes au document" #: serializers.py:46 msgid "Primary key of the tag to be added." -msgstr "" +msgstr "La clé primaire pour l'étiquette sera ajoutée." #: views.py:34 msgid "Create tag" @@ -129,9 +126,7 @@ msgstr "Le document \"%(document)s\" est déjà étiqueté comme \"%(tag)s\"" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s" -"\"." +msgstr "L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s\"." #: views.py:110 msgid "Attach tag to document" @@ -160,8 +155,8 @@ msgstr "Sera supprimée de tous les documents" #: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Supprimer l'étiquette sélectionnée?" +msgstr[1] "Supprimer les étiquettes sélectionnées?" #: views.py:231 #, python-format @@ -194,23 +189,29 @@ msgstr "Supprimer l'étiquette des documents: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" -msgstr "" +msgstr "Supprimer l'étiquette \"%(tag)s\" du document %(document)s?" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" -msgstr "" +msgstr "Supprimer l'étiquette \"%(tag)s\" des documents %(documents)s?" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" -msgstr "" +msgstr "Supprimer les étiquettes \"%(tags)s\" du document %(document)s?" #: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" -msgstr "" +msgstr "Supprimer les étiquettes \"%(tags)s\" des documents %(documents)s?" #: views.py:379 #, python-format @@ -220,9 +221,7 @@ msgstr "Le document \"%(document)s\" n'a pas été étiqueté avec \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"L'étiquette \"%(tag)s\" à été supprimée avec succès du document " -"\"%(document)s\"." +msgstr "L'étiquette \"%(tag)s\" à été supprimée avec succès du document \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.mo index 9f32cf6eeea19745185a3d3804837f6f73ef9e7f..24366adc82a5e905360ec9efc27b7aa6a468b3ff 100644 GIT binary patch delta 267 zcmX@f{DGzZo)F7a1|VPoVi_Q|0b*7ljsap2C;(zkAT9)AWgxBwVvySTK-|yBz_0{J z^8m3469a=Pkah&p96&l9NCTxAn1L9`1Ot#h2ABNg(%jU%l41tm(&7>og@U5|vdolJ zg~SqtoYchP5{3M{RD~3%B0YwX#Ps5c7QQ@Yx(3F&MurN8W>zK>C(7``_(q0ShDIBA z@iW?_`2C0F8iHm)COmz(`b&X6E e49%>JCjOD(1@bL)jm#AcOs$MeH>)!8GXel@1r7HA diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po index 6c0f44e761..ba781fdddc 100644 --- a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,20 +9,19 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 msgid "Tags" -msgstr "" +msgstr "Címkék" #: apps.py:68 apps.py:80 msgid "Preview" @@ -30,13 +29,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "dokumentumok" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -116,7 +113,7 @@ msgstr "" #: views.py:59 msgid "Must provide at least one document." -msgstr "" +msgstr "Adjon meg legalább egy dokumentumot." #: views.py:86 #, python-format @@ -189,16 +186,22 @@ msgstr "" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -268,6 +271,9 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/id/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/id/LC_MESSAGES/django.mo index 4e52d6baba257967f36d91d4df10cda527d26a84..4fd79cec84c55411a27090a9fc88d5aac375a15a 100644 GIT binary patch delta 236 zcmX@ie43^Ho)F7a1|VPtVi_Pd0b*7l_5orLNC09^AWj5gWgyN5;!Z{ehJGN;4#bj7 z3=En;S`kPCg~8?knF!#LpIn-onpaZH;9FW;qEJwjUzVAYs*qTskdvBN%wM9ApO>nT z0#&3p(ZZL1=xm;7vynG7C@MWw|Gxv9BH gsYRLDiFpdesU?{yiP?FTi3-JuC8a=f!3y;l0B^1{H~;_u delta 123 zcmX@ja+ulTo)F7a1|VPrVi_P-0b*t#)&XJ=umIvtprj>`2C0F8iG9ANrn&}}x<)1n zhGteq7P7%Q6vqb$U#5jpKFT-KKuA)wwiBwTI0_{sZWU3BC^hB8Vd9lKfX7`S&YG^IipC1b4%ETL00Q?}9b7w?Qn4{Rtih zuYoUvFJUsWcN&CC>@4^Ycn&1LKL^Q=%iu?d?GLDKsm=2;LT>@$$o`z1*FKY|Z~zkoFVUm)dW7lJ_Y3n2N^ z06BOPoB%%rA<8a-9=HwO5B>&@f&auDL$av}& z@Cf)VI1cVZagkq#L5lAZxEJhzqu|>h!pR=ROLa*y2k<5j<%;r34_u65K=GtCkv{o~ zsn~OP$q$+fCZoB5sD?N=iT7!|a65V^M)XilDZZ3DiYMh9CBz=bOZlTG-a?VzgP!c4 zaz^=}7!E&FNBiT>XTb;Pd)_(G>ToC8xlhZT=Du$AyE1f^E$BcSwqT@il8165k}ftO zG#DmBi!zW-#vozK7Gq<4bZjCqJZVR{vRnkv^fyVaEqyL5$)JJZ8>(#x8;-l3RU%K4 zX$wwd?pVH|99G|vWUI!F>GGC!QA!&TlvSVUZ2CUJy zj`xgSSH9%J@jwc6=uoDiE$<)$<2Me2F$zKOCmq+UqY4Gds^MYTFKb!6YtB!~sobG%8g63b4Yh6cs{h6)0znPmECMuEOW z9`&(o^hw!r-jeT~kj5$<)_6l~ijdbA8^=p4vZsyn8n&%`@0EVrdQDy9rRCR}UUXbQ z-dn_>QsdLrsTr^Of;T(jy`~i18eeiEP;hdh<6N&+scdX)lpU$7HF>Js(%p&~ zD4I%_R^v&(Yb!x)q@rA9veZ~=)U!oTm8+!%9XgzsUURdD6*+mzReFI?;Vf@;gt5}i zz1}?H9m?cr#x-fYdf3uF4wM={w5nX{Y>lI_9Q2I{yd&ClQKn%pYTCK!Sw8rjn+W;- zIX*QxTVnG;AlriDaB6iVijK|qdVy*QBe{wWE1}ZlslllZ;PmBTU$5sCqt1T#-~Fk5 z&K5-2l0hI?Jy2a0rZcgntW5M!b@I#Sxpl}BZ>!6nWZt3!k(VTmy+)`1PDVl^sYI_Rm8;Q$RN|{lt!EQ* zU*wF(0_0oXbXr(N>D;{$T^rG2cG4|6n4a8&ODEHose3ZJKK%R^q--ad+(Dbfup{W| zDl9XvPM+7(QfJ4q{Ab0L>=z_2Iw+io>N~!bGYPT>ShJW=dl D=fev2 delta 428 zcmXZYze>YU6vy#XoBm0gwpx*jR!vo~2$43lQM&hJi%$~;so9e`WH0lzfphxi*q6!i4KWe&@7@J;3g~*#b?anE9wJ3 zaTpDD@o)@n+#c9MJ-{XE1FkWP_c)7B$T1Qly7XlXaYd|tE0RFHP#3dEy#MrnOFfYO zL(Cwm7hbZCW!(?_wr{uV`|8oCsA6PBeMBZzCpNEcW2aWtDXltg#V&g_SFOeKDPF8N z?y_B~*4%2Z5l@HIxmi>X=4fUkXttV%^&{VI_V@cqY^sA~LG4-vl}o#-k@o%o=vO&% diff --git a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po index e756b0fd10..cc513b370d 100644 --- a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po @@ -1,9 +1,10 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Giovanni Tricarico , 2016 # Pierpaolo Baldan , 2011-2012 # Roberto Rosario, 2011 msgid "" @@ -11,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -28,45 +28,43 @@ msgstr "Etichette" #: apps.py:68 apps.py:80 msgid "Preview" -msgstr "" +msgstr "Anteprima " #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "Documenti" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" -msgstr "" +msgstr "Rimuovi etichetta" #: links.py:17 links.py:24 msgid "Attach tag" -msgstr "" +msgstr "Allega etichetta" #: links.py:20 msgid "Remove tags" -msgstr "" +msgstr "Rimuovi etichette" #: links.py:28 msgid "Create new tag" -msgstr "" +msgstr "Crea nuova etichetta" #: links.py:32 links.py:45 msgid "Delete" -msgstr "" +msgstr "Cancella" #: links.py:36 msgid "Edit" -msgstr "" +msgstr "Modifica" #: models.py:20 msgid "Label" -msgstr "" +msgstr "etichetta" #: models.py:22 msgid "Color" @@ -74,15 +72,15 @@ msgstr "Colori" #: models.py:34 msgid "Tag" -msgstr "" +msgstr "Etichetta " #: models.py:53 msgid "Document tag" -msgstr "" +msgstr "Etichetta documento " #: models.py:54 msgid "Document tags" -msgstr "" +msgstr "Etichette documento " #: permissions.py:10 msgid "Create new tags" @@ -110,25 +108,25 @@ msgstr "Rimuovi etichetta dal documento" #: serializers.py:46 msgid "Primary key of the tag to be added." -msgstr "" +msgstr "Chiave primaria dell'etichetta da aggiungere " #: views.py:34 msgid "Create tag" -msgstr "" +msgstr "Crea etichetta " #: views.py:59 msgid "Must provide at least one document." -msgstr "" +msgstr "Fornire almeno un documento " #: views.py:86 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" -msgstr "" +msgstr "Il documento \"%(document)s\" è stato già etichettato come \"%(tag)s\"" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" +msgstr "L'etichetta \"%(tag)s\" è stata allegata con successo al documento \"%(document)s\"" #: views.py:110 msgid "Attach tag to document" @@ -163,61 +161,67 @@ msgstr[1] "" #: views.py:231 #, python-format msgid "Edit tag: %s" -msgstr "" +msgstr "Modifica etichetta: %s" #: views.py:244 #, python-format msgid "Documents with the tag: %s" -msgstr "" +msgstr "Documenti con l'etichetta: %s" #: views.py:271 #, python-format msgid "Tags for document: %s" -msgstr "" +msgstr "Etichette per il documento: %s" #: views.py:286 msgid "Must provide at least one tagged document." -msgstr "" +msgstr "Fornire almeno un documento etichettato " #: views.py:332 #, python-format msgid "Remove tag from document: %s." -msgstr "" +msgstr "Rimuovi l'etichetta dal documento: %s" #: views.py:336 #, python-format msgid "Remove tag from documents: %s." -msgstr "" +msgstr "Rimuovi l'etichetta dai documenti: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" -msgstr "" +msgstr "Rimuovere l'etichetta \"%(tag)s\" dal documento %(document)s?" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" -msgstr "" +msgstr "Rimuovere l'etichetta \"%(tag)s\" dai documenti: %(documents)s?" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" -msgstr "" +msgstr "Rimuovere le etichette: %(tags)s dal documento: %(document)s?" #: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" -msgstr "" +msgstr "Rimuovere le etichette %(tags)s dai documenti: %(documents)s?" #: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" -msgstr "" +msgstr "Il documento \"%(document)s\" non è stato etichettato come \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" +msgstr "Etichetta \"%(tag)s\" rimossa con successo dal documento \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" @@ -270,6 +274,9 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.mo index 1e4f786fa0a4f5bffe582f57ce25b3dc878cd24e..9454d0367d16689a66f984f926ca73729108f807 100644 GIT binary patch delta 659 zcmXxiy)OfC7{KwTr;5^6ixR1(FB&0{xT1oA2#d)kF?l;L5tV4AgP{w9#CEYsbYRd; z8u2%X%_eD05{pe@F!?_1d6MTo_gwFH&;6e3L+~+Fd=I&=gyK{ys6eZdu66L}Ij^G9k;H7iDjQ!Nl zIENoNkApl_*IB3y&Nyhp3rwPoH*DewJE>QBTiw7O>hrSLMt`~BL~pQh0&j5&-_VP} z7Litrpzb_{OE`(cc#1l)JJj_r7(-o@fH=l+5vOqnXR(A~`b(7)ddW9xgJ0B1c-fAA zg%GI`Zcx8RNA7d#4o7`PmvgR@VB_`ZcJ!leRDURZib`brNOBz068`oGZ7 zNz}uxxu)%aQSdJwZJiui*?dlxw)gXubED7b$c&DSkEYF-nVFfe@7)pK|An+UW2P&w b?lqU4@D#iL*IHTGveLq(9f0$Q>=IpFbfu^(*KL$!qc@Q}a=2*G zq5fC~*;mGh{tY8U|H14e>G@S>sn+ttoMC4fXn20zsRS)Q R=rxR;M0k}t>6O!#`UCe$FDL*2 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 54f830696d..5381b94da4 100644 --- a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -30,13 +29,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "Documenten" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -56,11 +53,11 @@ msgstr "" #: links.py:32 links.py:45 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:36 msgid "Edit" -msgstr "" +msgstr "bewerken" #: models.py:20 msgid "Label" @@ -146,8 +143,7 @@ msgstr "Label \"%s\" verwijderd." #: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" -msgstr "" -"Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" +msgstr "Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" #: views.py:196 msgid "Will be removed from all documents." @@ -190,16 +186,22 @@ msgstr "Verwijder label van documenten: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -269,6 +271,9 @@ msgstr "Label: \"%(tag)s\" is verwijdert van document \"%(document)s\"." #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.mo index a19c2cb988f9dffc6cc8a1ea4bd6ee5d5309e7b8..5f6de06ab1a0209b6d165c399ee66558ee784dc9 100644 GIT binary patch delta 909 zcmXxi&r1|>7{~EvcU|44vTZ9jtIb_qs0~JDMt8|=!H8w)WF-_t5d;cZP+%c-h>g&L z;?1^ShwvsHI&B@oLl-rIi2edEo)kKHH{YMpeVF;azB}{Xd7gQ`(@6hG*Vj{R4I}cL zXE-Ynvm)M&G7w(O%t0Ufv4SV@5yo*EJ8=$=;0M(D&)AM%@gOc^34daMJ9xmXZho8D zDK1<>4!gy02=5>Z>;ay`NmRm**oTXF7FX~BZeRy?vPcDVVFq)kb;GDa?xFHM#2EQ) zhRHA&X7MuqLjA#^e4c3qJc0eFf~u$jMsSU8O`-}ON|@ci8mg1;kw@7#OyV*g#owqx z)-geT+hTGUx3P>7vJ7Dbm2iro3tu6*>>aA*pHL6_f*yWH9${Npz->H_8QP(i*HHIg zAh+x_*42u6CTi6Za@Z<^_V_QdO}2?w@E;DKN7iFFhU(CBRDmy%!`?8sxQH|;3>DnX zsm`1ZuY}#H+i`xVDxMvN66-@!^z32#-(vVH&8VW4P|3A5YOCHz+n~^QkP2seLl*L! z>as#bDw5&rFwxs6wC}CR?N8JJ?YCO5F7-C!u}ZXAjNgnDORhKI27cBrl?N}n-k|3> z*RQ#w<5Lq)C!RcZtM{Lcm$QNAx7G!I*$rhTN delta 853 zcmYk)ze`(D7{>88iHS)xHvULst+lZZw#v2fYGMtgYE@7v76+#m2ZuUUP!JS^AXrk0 zTL>K#`WF<0xQLsC4jshFp+m<`;-Vrt`F*YkJ>;Cv$<4XHR*lm-x=lKnn-Vq8Py*Y{F(7#UOsfI-JJ`xP)52fg#+&8Z2TKf1rye7%|IRq{^&? z3ysLfdKhZ44_RQt*ojl9g3H)}tJsD+*o6mJjsH*^IKwA+jarxFX4T0ewQUB6sBg1O zhPhBeEj&T)u}e(g4QeBCj-$dY_=}X@piUeN^Ds=H5?nxTu}zHQH>}5PR1!atkL@$W zsBec%a(Ik`SVJ`x9A|il?@>{HLPh-<^`Lc3<5%<^h%fklh|lp96?K9*^!o%V*%?$4 zbC_2|YfSV`zoVkr#kaVJeRze9*iBU>GlbgM7-}OQ7#v(cg7Mbsy8c3XzFPYoUSiLf zvp2Q8w, 2015 # mic , 2012,2015 +# Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -36,23 +35,20 @@ msgid "Documents" msgstr "Dokumenty" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document" -#| msgid_plural "Attach tag to documents" msgid "Tags to attach to the document." -msgstr "Załącz tag do dokumentu" +msgstr "" #: links.py:14 msgid "Remove tag" -msgstr "Usunąć tag" +msgstr "Usuń tag" #: links.py:17 links.py:24 msgid "Attach tag" -msgstr "Dołączyć tag" +msgstr "Dołącz tag" #: links.py:20 msgid "Remove tags" -msgstr "" +msgstr "Usuń tagi" #: links.py:28 msgid "Create new tag" @@ -195,16 +191,22 @@ msgstr "Usuń tagi z dokumentów: %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.mo index 2fe4692d9dcbb855c35f8a2cdac03868a1a80a8a..b5589b01b6ad6d7515b6ff56931f1aacab6d5750 100644 GIT binary patch delta 629 zcmYk(O-mb56vpv8ajeE@eE~sy9T9X9MrL9Z8{9Q+#5eo^!l)M+Ofr~E#8SksAPj;o zT)5Un#f2M%u3G4-2wilcxDW)l;?6?fD4odUZULa1NV67BM#DkYNU>6?*F>l?_(Qd0hxgYI@BNqYY!Me%4#jx#-B~iLX_^ z9Hsj^K4Cj!cFMKfiA;LZcG8a1w76g|=`FwH2L(Ipg*s!U9Jh8Z>O8M8NG)glC=^e6uTf|Fgl delta 410 zcmXZXu}Z^G6oBEACatDbtb!m#G*VCyLT_WEZC0HWvGf7NB0+*hu}zCx7au?ju0DX^ zB)Ev+6F7HK5LZ{}(!u{$4>|enAt(3VGs^wg{f{~8R)}eGk-Q>j$!}7JGDH@zjA`7( z8LVRtkI=>zu3- z%`OTHxQctYjBPC94eA4)P!IKry6+7+MkYuddKgPeB2(j1B#Zh-9o$7G$E&|7GpzMy zX7XUv(oWnw=_E#KBRNbBeBV_y*Q+??&A_X=s-jf3e&9C3Uet-s&)l7690rc3%JfxT kZ_81B;Q5cI=Dv}?JZ^QPwiCwDMK_F_o#e~fP8#X^UywpIk^lez diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po index 8e29d3eda0..61b64df460 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: # Translators: # Emerson Soares , 2011 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -33,13 +32,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "Documentos" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -59,15 +56,15 @@ msgstr "" #: links.py:32 links.py:45 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:36 msgid "Edit" -msgstr "" +msgstr "Editar" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Nome" #: models.py:22 msgid "Color" @@ -119,7 +116,7 @@ msgstr "" #: views.py:59 msgid "Must provide at least one document." -msgstr "" +msgstr "Deve fornecer pelo menos um documento." #: views.py:86 #, python-format @@ -192,16 +189,22 @@ msgstr "" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -271,6 +274,9 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.mo index 850d9a6bcd5e71df86efba94e62af34ec6a8c0fd..3ad34f6c027f4183670c7d2b50e4af2b304cdf12 100644 GIT binary patch delta 858 zcmYk)KTH#07{~Fa|FkV4Sc)JOIMJXX9^9SKXahJ1F(xJwHV21OJJb-3wAI9=Ix#Sr zhQ$~MHWG+2WhRb}#+5_|9neKh3(f96o%+A5xcuAmvUy#ev%vQi0w&N%&;UrRsKa&w!^obDtYZ~v+l|W73l$ti6W7fiSJer^C z-LpJ_c74!#2u?&lbbhLY%6goxW6}<_3w?C@ApdU^@^8}-=-jm-Rky#j5pRp7u7|hF z3(f6Bq4^>4x>Zl+V-rQ!yWj@C;}=Wg7hP}M^Rja{-1+jOO11LfzB?1v$|Wc8{DX0U eU-E<2R%$UG%{G?)mYJTicF?B#tM6L^fBc!LA@ zg%#Mt-@EL1iP__TKFsK80*;$RZHVEW>M{%$YTc-ZJ5Vg4V5!0n&=AIcqu#zsm@!8 zBP}JGOAFP{e@S5j%znXH>B1k0EF M-g@xKTdREh0lbev=l}o! 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 9d1f2fb82e..615b3e458f 100644 --- a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2012 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -35,10 +34,8 @@ msgid "Documents" msgstr "Documentos" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -50,7 +47,7 @@ msgstr "anexar etiqueta a: %s" #: links.py:20 msgid "Remove tags" -msgstr "" +msgstr "Remover Etiquetas" #: links.py:28 msgid "Create new tag" @@ -66,7 +63,7 @@ msgstr "Editar" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:22 msgid "Color" @@ -128,8 +125,7 @@ msgstr "Documento \"%(document)s\" já está marcado como \"%(tag)s\"" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." +msgstr "Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." #: views.py:110 msgid "Attach tag to document" @@ -192,16 +188,22 @@ msgstr "Remove etiqueta dos documentos: %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -271,6 +273,9 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.mo index 675f36c1cb6532ec03699b31a49697d7cd56c6b6..3f682babf4e958bc4c0a3c8d646c532d5eb8c0da 100644 GIT binary patch delta 611 zcmX}pOG^S#6u|N0G?|u^v^K~h>E=@>(}v4uepK?OksEh1gC=m8l>1_lwdXc0)8 zK7in+jRF59Ut4{CyX*~Vg!G1Or$JEm&hy=CXV6`@<2*Bg7=ug z1}@@n`?;404HD^8)q)tZmu4C4)4!E;>27mQ($#py~0{p>HxbfUP0?W!|sol=$B zLk7rRQib{r>R?>ZzL^(QP?-PVE_Se_43bpa-c(g!fKO8Lj+!rfw0C-t zKP;TcQf|LcztTdQ$BHLXaWgrQw9@mHnjZFcCd_0yY1ZF#Lo+(x638 F_6LldJRJZ4 delta 535 zcmYk(K`+EW6u|MPTHR&KYRMwCHfdNSjc)0(y&!QD32_n^$zCNs0qeA9$;OA^+7K5` z5(i&lBkSNBxFEuRst1$4`E}-{nfIpW&W+uAvGq$~j1w;LNK6yQeN2oVPT(sV_=zJb zp@|GZ5$ot;i2InwHdgThJ-ov*c5xBEkaJox*Z-H;!YL9>T*ouqz=tgVgF5RnlRCgd z4}E;1s6CuvJvks^VgpOKiK@8+jPWG%8XeA;H(r)We4vj$U#kiaaS7Wvi?`W+7Z+HY zIgxFw;SQeSJU%0jyfdkr`o=0+R85`g;?f4_N92eo66uwqx?(jP!b;ynMv>-(`eZQM zDZ{Frm7%iT@+lF|@1XUMp#Z$PXHRxKgRr, 2013 @@ -11,16 +11,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -33,13 +31,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "Documente" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -63,7 +59,7 @@ msgstr "" #: links.py:36 msgid "Edit" -msgstr "" +msgstr "Editează" #: models.py:20 msgid "Label" @@ -129,8 +125,7 @@ msgstr "Documentul \"%(document)s\" este deja etichetat cu \"%(tag)s\"" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." +msgstr "Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." #: views.py:110 msgid "Attach tag to document" @@ -195,16 +190,22 @@ msgstr "Eliminați eticheta de la documentele:% s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -221,9 +222,7 @@ msgstr "Documentul \"%(document)s\" nu a fost etichetat cu \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s" -"\"." +msgstr "Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" @@ -276,6 +275,9 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.mo index a98659b94c74e23e1d0efe251391e6233a3dbfdc..a0f5c1340346573114cf8a5f39a0ec9cd2564669 100644 GIT binary patch delta 636 zcmX}pJ1>J#7{KwTuhN!MdT~o#Lh2U6`=W#dLwy56G$u6|FsR8uibSG|ltm)CS{hMJ zM6inOR16{^d;*if=6|F->2rSP^7dRa{#0P|&1*jrqJ|8TPh=CBv{4XFL!=g6Sd1;` z!453LVGLsgE!;pCX3&mTh4wAB)4s=6{KQ6)P4N|pbkSj91I{A@vVrw@jN_QY3H&OI zhnZb3FioKsoWoX(VGWb-;SlX~35UREY{L(%L#IPzkoBd7N2$a%D5}ZI)T`~RBC@)$ zzPz{+Uz5q$QarnB)Ee$^PhWqJWj34Pk%82iJy`zNVVNVQm3_4D7~O~JPF?4>)s4!j f+k7IwFDgy-Qk~PCP*?daKDbcl3?;Kuju+zx^ov#< delta 539 zcmYk(zb^w}9LMpmbLU!Gs@hcLROO-)anT;vo=Py(A0T3~NLVEP1BotTmK-~y4whRi zehf{_#3)j;&0t`t_j3%M=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -32,13 +29,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "Документы" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -62,7 +57,7 @@ msgstr "" #: links.py:36 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: models.py:20 msgid "Label" @@ -195,16 +190,22 @@ msgstr "Снять метку с документов %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -274,6 +275,9 @@ msgstr "Метка \"%(tag)s\" снята с документа \"%(document)s\" #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.mo index 6c0f3ae1e8d1d59454b804ccb725429034eda803..38040cb3ca3902d238ba474c736da3bd09419835 100644 GIT binary patch delta 344 zcmXxeF-rq66bJBJZ7WqlP!N$S55zH HJghpy5hf^+mTq}rtP(p$ydrHHHFz{$l< zegr{WT>2rLTm=8Q>VqHu+}(S5_gAKTx3Vyw+dyKUVkr)Fd^ks9h9S!5_(SnR%#{@{D{FGQ z!#n|~q=8jgHnGebJiwb6LtouTZnXMgfIIBauqz?CG~PFqJ@w1imdb@{0& zY;L{d9UV+cO342{B~z)Mj}w<**HyX8vYrnkbKyMo4Gn#!gQX(ZeKHQq=1uocmAzlX C@, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -32,13 +30,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "Dokumenti" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -118,7 +114,7 @@ msgstr "" #: views.py:59 msgid "Must provide at least one document." -msgstr "" +msgstr "Potrebno je podati vsaj en dokument" #: views.py:86 #, python-format @@ -195,16 +191,22 @@ msgstr "" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -274,6 +276,9 @@ msgstr "" #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.mo index bd7c3868d3160e215c61edabb0bf0fd53876be8b..5940c2983d7c3a4405d34d0fc216e6346af6aed4 100644 GIT binary patch delta 609 zcmX}pJuE{}6u|M*s%ojys_)MzA(AHEBacXgNF@vmJ`xcI!O+CV(3(0lkqCpWES)SO z9atI(5mN`&O4mw^CJT$n|5Q22xxaVsd%5S_`|f>*{=}=_aV|t7*+%BcPV&^oK)CE8 zP3XpQ?8X}G$0{5}3&Ut)9Nl<>4!kSPAF+@569(}EJ46yvS0*yRf{E?8j=YdKwqOb; z@D?ZWtMuMtcP+5YpaoYkh+CMV`4enr9(4YGH;&r)6zca2I6{3{<6(w{Gt?6mP*3`f zmH2@@_>Cd#tPttNIn>6YsEuc^8*`|IKXDelE|Ga$!B)INdXp@=s4vev3}OyTx6VwY zp45&#q@UDgG_<)oQa7Q7RFfK9%zw~pG4!MXlG_%xFaBm9>OnQ!UWNv;Hd(Nxz2W`M zgWc`DSX8FBBC*Voy~*yeLW4sg)95m+vEgLe(N_JpU>akFnR#*KZN8=KMWkyd^7e3i PAd7Dg*BhBjXTbggCH6pn delta 535 zcmYk(KTE?v7{~FaF^Tc^5!}RA;9$T(ItslbGa)#PcG-yV>x`c^ebUZ5SzS^IdYO>VhnH!KhVH$ zEUE)dBnKsIqK!W8VFoX72`|yX2dv^7Ht+|j6UyR9aQ56^#5=ef$H z3OMMXi`O)@i_<)R(j`kV&7{#Bs{hYo3+uRr`%=y8#%^# z?4T-ihuipyJ6KFp1P@R(aEkmSWb&|s^r, 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -31,13 +30,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "Tài liệu" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -61,7 +58,7 @@ msgstr "" #: links.py:36 msgid "Edit" -msgstr "" +msgstr "Sửa" #: models.py:20 msgid "Label" @@ -188,16 +185,22 @@ msgstr "Xóa tag từ các tài liệu: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -267,6 +270,9 @@ msgstr "Tag \"%(tag)s\" đã được xóa thành công từ tài liệu \"%(doc #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.mo index dfbf1e82b0e3e159bfa2c0bbca6da6015769534a..9f7d4bd7ddfdf80bb35d68e243c147ee2faf50c4 100644 GIT binary patch delta 583 zcmXxh&r1S96u|MfwrQH?W-3}5hEWg+?IsdJWDs=gPY6UJpdXMwWpD~MFoW@^V5UERS=)YhI)xtJT;u)^t9hUIJT~F#F zG+Cijg;p_(n|RG8_b|p>yiSuistuh|O|M&ZFifI%z>I*j^0g?kcF-~u|V|C>!qU4w} z5{V#(bY7}Hfr=1G9p~ig5bDJ0lTMI>pq_JMvTobuN;PAbcWaGrt>xc1svIBe9NM+c sg(u+&7II6=Im^tLg<`((q^ClI2bNhhtxi{OYu;Y-viI=VIq}|Vf4>|#00000 delta 558 zcmYk(J4?e*6u|MDwpOjL*ebqii9{+07t+ww+C_(gqgua!A{`1+2SsqPTUUjugOi&$ z2tpSpCvo))h>xX{y11#J|C46$!pSeWC%N~Wn``sXtUbjeCyFslB#Ap>lGrl1FkWyJ zU$Fzfa6l3vrFy``9467lHSESZ&fpQ+c!Mc?#991C_Nl3KxSc5CIEhVMzyn;w+aUjo z5uQ_AWCI&*)Obu$t0+yhs4|K_D20Z3=*0wP(84s9{P~(v`@uvVr$}6(RQiC^_<>`X z=xnP|PGkwCr#2IvQycv f>f*+3xnQ|YhWGN?owFRT;Cjus$c527i=G;P+$uL1 diff --git a/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po index c34e0dad5c..0162b36200 100644 --- a/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-08-27 05:25+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -32,13 +31,11 @@ msgstr "" #: apps.py:84 models.py:24 msgid "Documents" -msgstr "" +msgstr "文档" #: forms.py:53 -#, fuzzy -#| msgid "Attach tag to document: %s." msgid "Tags to attach to the document." -msgstr "Attach tag to document: %s." +msgstr "" #: links.py:14 msgid "Remove tag" @@ -189,16 +186,22 @@ msgstr "从文档: %s移除标签" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -268,6 +271,9 @@ msgstr "标签\"%(tag)s\"成功从文档\"%(document)s\"移除" #~ msgid "Document created" #~ msgstr "document" +#~ msgid "Attach tag to document: %s." +#~ msgstr "Attach tag to document: %s." + #~ msgid "Attach tag to documents: %s." #~ msgstr "Attach tag to documents: %s." diff --git a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo index faf405a370dfd08ca0880bea1d8decbcade86abf..5e09d81d578749fd50939bed28516e8b7c0e96e0 100644 GIT binary patch delta 766 zcmXxiPe>GT6u|N4w9}fp{;O6?$uSf+a?9Cd0}s(3B)W8~Jp|&4A`6PLQV>W|tsxs; z8uZ#JT*Us!o`OzwP|z-2`VEL)x_Ag8QV(AGzHxl;<}<$;X5O3koBepHd1kvYvLHkY z*-HK+JIT!o4#c1(Qjb||z=p2Zc6;8#3@Yj_&B(8fP_3HLFL&Iyr|A~TZV zq>T#$ScA{-BEH58_#wRi9TTj7<0FhyZ5Z>Y&;JZPz&h4VRMo;=9JHY%YD2eihmU)R z4)rA+73ttc2DR`sYN5B-jq6y2dw2z{T|*y{jzz~7wuvS?^hocevZ0LpOEHd6BGCYwb4W5!=#DS3F!7PtYE4T zL}MsD$~iL2GeKy_$H4@J=7KmM+Kdb!2yH_D1>JZ3H*~Dp5dG?&2IFR%B}R&8TRAUh zU5<=rb7S5cYskKvpLjf3{%dVi*bk;g@>AZI$dj6MvgcYd}BR>KDzbSBMTdOMbzWg7rto=;EDU@L!r`F3tI`{G#_OT8hn@6@S*BGoQ_p PSuPhV7p<^jTXp6?%Fc1+ delta 600 zcmX}pKS)AB9Ki9PPhUM#`(tKNQW_xzT2E0aK`5xfJtBxC%%z~Q*+H7B>5BG-Xs8xj zU4w`gDcXvL3Yw$VzW20#aPM<>@813H{qB6|J6wGZdX9w{q(x{Cv@zO&iw9vDBE9Iv zJ{)e36BuS(zyVyw5N=~XR&fdy=CFZ!-!JrI$SpF?GKtX{WnvNaf=!&n8m{35R?zaa z-tV+M#2)4^Q73MoPTa&74*!l(#y1@z6ZnB76n|%H{~1h>UsmZ%^I{KeyvBKa!wSYN zkpqi!cR=0?G?#j8H;#=`rxmqzb|x&r12DWo<|%(kB@_pU!rspSVUcQT~-e3 z{0#`}|3hC>fJRZA>);Gd`GZJ4C#bNnl~a}0jEG5xf;d;H%dab^!}*3Em2S0eY^ggV zu6~S-ddYq3Qb}{ypH13x$#f=~%H`AQ%8Ug5ChTlJm8(CQF+;hnlB!u}^;z$cp_;yx EU%wwbi~s-t 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 d504af433a..c1115550ec 100644 --- a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -43,7 +41,7 @@ msgstr "" #: apps.py:55 msgid "Email" -msgstr "" +msgstr "البريد الإلكتروني" #: apps.py:58 msgid "Active" @@ -71,11 +69,11 @@ msgstr "" #: links.py:22 links.py:46 msgid "Edit" -msgstr "" +msgstr "تحرير" #: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" -msgstr "" +msgstr "مجموعات" #: links.py:38 views.py:197 msgid "Create new user" @@ -83,7 +81,7 @@ msgstr "" #: links.py:54 links.py:70 views.py:169 msgid "Users" -msgstr "" +msgstr "Users" #: links.py:62 links.py:66 msgid "Reset password" @@ -128,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -175,9 +174,7 @@ msgstr "يجب أن توفر ما لا يقل عن مستخدم واحد." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user and staff user deleting is not allowed, use the admin interface " -"for these cases." +msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." #: views.py:237 #, python-format @@ -191,11 +188,13 @@ msgstr "خطأ أثناء حذف المستخدم \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -207,9 +206,7 @@ msgstr "لا تتطابق كلمات المرور، حاول مرة أخرى." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user and staff user password reseting is not allowed, use the admin " -"interface for these cases." +msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo index da660b329f520412c6d791f15dfc418b377ce617..b73b35d8dd5372c88a9410e99341d5e7a945e7c5 100644 GIT binary patch delta 752 zcmXxi-%Aux6u|N0xRblJ=I^z3w_1Yehb*{jtZA4~fe-|}WT;@RB(#h{=quttz^~2$GK=hNz{VQ<6{oj zkEh5lKPjV)jfNVLPVB+6SinA9LOtnU?8W+EW&a8uV*UsR@fm7Cc1UC|-oZ;)K<&_b zyog`12V*?cOMV&P<}yCTAGm>AxVEqI;3{qDV*Vf7v9q>P&~4O$i+BN-QQulCp&iho zX_nVj@J6FAwaP&vOAc@B_f_biP^34az6X#7ctgJx{TB38`fX@i>85vTn(4Kh*DTZ{ zVr(mCa#mYlJewOcPplEUFF#S3EN@w#tL&>&qxmWGHZUE|B-=ZZ=~N<>={{}F+40)l zg>Q63dEVbSzw^^|9VooE)SL*VlNzKxQ+ud~EkYdW21kU!o3ti#qTV9&`A29HO7E6$#@hCh-x+(XJDjCB972m}KAp^+X95 z^#Z37IEQoe?@`~>@8Pf*!VGSr-hYN!{J=L%){A^$u%WW9iEF3mXEBQVm?Xa3(3r+g z)LGYQ<&fq!ApGaQ=x6d#Ns4(6&SVbNg2Xk23=1($Rw^T0h6V{SPe~Y)IX!3gaA9dw z%htMjutMtF$`x1KC6|iW+uqSgG!==D^u`kDxVo}~zQ2L!XgZcCzSv`y+OG?%d1peM OJ9ovrr|ed{zMWqK_dj?5 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 309061d80f..094ba8c5d8 100644 --- a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -42,7 +41,7 @@ msgstr "" #: apps.py:55 msgid "Email" -msgstr "" +msgstr "Електронна поща" #: apps.py:58 msgid "Active" @@ -70,11 +69,11 @@ msgstr "" #: links.py:22 links.py:46 msgid "Edit" -msgstr "" +msgstr "Редактиране" #: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" -msgstr "" +msgstr "Групи" #: links.py:38 views.py:197 msgid "Create new user" @@ -82,7 +81,7 @@ msgstr "" #: links.py:54 links.py:70 views.py:169 msgid "Users" -msgstr "" +msgstr "Потребители" #: links.py:62 links.py:66 msgid "Reset password" @@ -127,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,9 +174,7 @@ msgstr "Трябва да изберете поне един потребите msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Изтриване на потребители от супер потребител и служител не е разрешено. " -"Използвайте администраторския модул за тези случаи." +msgstr "Изтриване на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." #: views.py:237 #, python-format @@ -190,11 +188,13 @@ msgstr "Грешка при изтриването на потребител \"% #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,9 +206,7 @@ msgstr "Паролата не съвпада. Опитайте отново." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Промяна на парола на потребители от супер потребител и служител не е " -"разрешено. Използвайте администраторския модул за тези случаи." +msgstr "Промяна на парола на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo index 68433c460c6b1da8d0eae4ddc5cd088e1b5dd141..8a5fb36ff6a993d01eabdaddfccd25f67fa1b675 100644 GIT binary patch delta 739 zcmXxize^io7{Ku-XRc?W*2Zeo7-|qx6-_l!Qpn&?C>=!Ul6DZ(XhON-&r4J2QWqC- z>x=(@bI~EIVCmveox6n6u}eWj;w1F@oY$AU_sR3V$vyWx@11pD_U!)Z3Lgq%fSF|8 zFw@M75EsUZCGrSM7(*|J_b^U;h&}if!}uM$@f;sx18uy*F>GQUQ!OG7M0VvZUj|uN z!gl?H0bt0o@dq7RfoeV`ZEq_{U2Bfrc$ zB3*1OqgLc$AMT@e6i!C(eT}`uJII#oV*(BOokBe|{f%}&i=kP5a`1;1s)O9p&n&fR z#CUj*f2D(d0u3~Q4($kq`a|CpeHZlH_1)06YQ^N&GxgieF-r$ijBUBbwZ_96C3oF? zu~zL@-d1h9er^2-*~MzbtD4jB$M$??YC4n4rn33MjG48Q9sd_{*+Mo~e`o&*IYqBh qc0agg!Fg`K^l!K4>~OoLBgC>F7JtiI>=a+1@}y{Er>f9H4ZUGg%q^AZmo3eicX$w#t>+z;?WIF?8& zHews5{QDesa6f@boWTTEu^o4C2o1V;f%@K0jA9}v(#JCC^pf+rUMY^yX)9f!LzcB3;L{_lCf<2tX zbJT{uP&>~!A~_t!ew_8)#u4t1u!{G%j^m9YSv>Z=MV, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -43,7 +41,7 @@ msgstr "" #: apps.py:55 msgid "Email" -msgstr "" +msgstr "Email" #: apps.py:58 msgid "Active" @@ -71,11 +69,11 @@ msgstr "" #: links.py:22 links.py:46 msgid "Edit" -msgstr "" +msgstr "Urediti" #: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" -msgstr "" +msgstr "Grupe" #: links.py:38 views.py:197 msgid "Create new user" @@ -83,7 +81,7 @@ msgstr "" #: links.py:54 links.py:70 views.py:169 msgid "Users" -msgstr "" +msgstr "Korisnici" #: links.py:62 links.py:66 msgid "Reset password" @@ -128,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -175,9 +174,7 @@ msgstr "Mora biti obebjeđen bar jedan korisnik." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user i staff user brisanja nisu dozvoljena, koristite administratorski " -"interface za takve slučajeve" +msgstr "Super user i staff user brisanja nisu dozvoljena, koristite administratorski interface za takve slučajeve" #: views.py:237 #, python-format @@ -191,11 +188,13 @@ msgstr "Greška brisanja korisnika \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -207,9 +206,7 @@ msgstr "Lozinke se ne podudaraju, pokušajte ponovo." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user i staff user reset lozinke nije dozvoljen, koristite " -"administratorski interface za takve slučajeve" +msgstr "Super user i staff user reset lozinke nije dozvoljen, koristite administratorski interface za takve slučajeve" #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/da/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/da/LC_MESSAGES/django.mo index 0b1b11b768b190904a991f670102968c8b041cab..d4f68d17e887807a43f4d93c79ec19fd67b558d7 100644 GIT binary patch delta 43 scmdlkyj^&M5i5_Gu7R, 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -127,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,9 +174,7 @@ msgstr "Der skal angives mindst én bruger." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Det er ikke tilladt at slette superbruger og personalebruger. Anvend " -"administrator brugerfladen i disse tilfælde." +msgstr "Det er ikke tilladt at slette superbruger og personalebruger. Anvend administrator brugerfladen i disse tilfælde." #: views.py:237 #, python-format @@ -190,11 +188,13 @@ msgstr "Fejl ved sletning af bruger \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,9 +206,7 @@ msgstr "De to password stemmer ikke overens, prøv igen." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Det er ikke tilladt at nulstille Superbruger og personale brugeradgangskode. " -"Anvend administrator brugerflade istedet." +msgstr "Det er ikke tilladt at nulstille Superbruger og personale brugeradgangskode. Anvend administrator brugerflade istedet." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo index bddf3eaa2b7152d2e5ca70e368ad85aeaae66f74..00dc3840753c8547a582d30802efe4fffc5b4fd2 100644 GIT binary patch delta 43 tcmX>pds248R1O|9T?1oXBSQs4Gb@wH3pr$XVFE^mR)$8KPjUQb1po)d3)KJs delta 43 tcmX>pds248R1O|fT?0#9BNGKfGb^LX3pr$XVFCuGR)%JqPjUQb1po;h3+Vs= 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 2cadb8e3c1..715c2b77cf 100644 --- a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -14,14 +14,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -131,14 +130,13 @@ msgstr "Gruppe %s bearbeiten" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Gruppe %s löschen?" #: views.py:72 -#, fuzzy -#| msgid "Available groups" msgid "Available users" -msgstr "Verfügbare Gruppen" +msgstr "" #: views.py:73 msgid "Members of groups" @@ -180,9 +178,7 @@ msgstr "Es muss mindestens ein Benutzer angegeben werden" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die " -"Administratoren-Oberfläche dafür." +msgstr "Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die Administratoren-Oberfläche dafür." #: views.py:237 #, python-format @@ -196,11 +192,13 @@ msgstr "Fehler beim Löschen des Benutzers \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "Benutzer %s löschen?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "Die Benutzer %s löschen?" @@ -212,9 +210,7 @@ msgstr "Passwörter stimmen nicht überein, bitte noch einmal versuchen" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die " -"Administratoren-Oberfläche dafür." +msgstr "Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die Administratoren-Oberfläche dafür." #: views.py:319 #, python-format @@ -224,9 +220,7 @@ msgstr "Passwort erfolgreich zurückgesetzt für Benutzer %s" #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": " -"%(error)s" +msgstr "Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": %(error)s" #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/en/LC_MESSAGES/django.mo index c069670d7b0349e1fc35636624737bda68e0279d..36dee436d4117d5e10a0f4d3c3f64e218cd0a30d 100644 GIT binary patch delta 25 gcmcaCbXjPF5i5_Gu7R, 2014 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -130,14 +129,13 @@ msgstr "Editar grupo: %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "¿Borrar el grupo: %s?" #: views.py:72 -#, fuzzy -#| msgid "Available groups" msgid "Available users" -msgstr "Grupos disponibles." +msgstr "" #: views.py:73 msgid "Members of groups" @@ -179,9 +177,7 @@ msgstr "Debe indicar al menos un usuario." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"No se permite eliminar el super usuario y usuario de personal. Use la " -"interfaz de administración para estos casos." +msgstr "No se permite eliminar el super usuario y usuario de personal. Use la interfaz de administración para estos casos." #: views.py:237 #, python-format @@ -195,11 +191,13 @@ msgstr "Error eliminando el usuario \"%(user)s\": %(error)s " #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "¿Borrar el usuario: %s?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "¿Borrar los usuarios: %s?" @@ -211,9 +209,7 @@ msgstr "Las contraseñas no coinciden. Vuelva a intentarlo." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"No se permite cambiar la contraseña del super usuario y del usuario de " -"personal. Use la interfaz de administración para estos casos." +msgstr "No se permite cambiar la contraseña del super usuario y del usuario de personal. Use la interfaz de administración para estos casos." #: views.py:319 #, python-format @@ -223,8 +219,7 @@ msgstr "Contraseña restablecida para el usuario: %s." #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " +msgstr "Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo index 7e6a573c922a5d4a9ed08606c2733c7269b0c690..e96595f93dd306fccc90c0f5d1d732183f66bf99 100644 GIT binary patch delta 43 scmX>ieMEYL4?B;Uu7Rn1GR?m7&q*Ms{a50P%VXE&u=k delta 43 scmX>ieMEYL4?B;ku7Rblk%@w#nU&Gx2zD7>n1F$)m7&?@Ms{a50P@lbLI3~& diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po index da24bf533f..a51fea1c97 100644 --- a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:29 permissions.py:7 @@ -127,6 +126,7 @@ msgstr "ویرایش گروه : %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -188,11 +188,13 @@ msgstr "خطا در حذف کاربر \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo index 3895e9660b40ff65ecf822140e32637a2e087bf5..f4c6638ccfce4d36a91904d3fdfea3475e88c2b6 100644 GIT binary patch delta 1686 zcmZvbO>9(E6vywhBkfFIsr^t&Tj*1%6l$Rzp(G8a6f}jHMj~2FOh~58Ek2xf>U(b* zrXhMv}CT{$Sc4flC@cU2a!H{q=_x1i9Nx!!2+IJ_BRe z3qP#!D=5G3;7jlhJOTTWi>^5XN!DC|dMnFt6TAus;0+J`<*>?xGW#7WGZpGN&;_N; zB-{^YpaODm9A1Mjz`x)@xRbh^gY)ncxCV96GI|ff>rhIqLas7*+t6PJHW8jO9Dpcq zhG>#bCWU0mNSh^PVk*myWB@6BwPZ?0CYhzsE*h`BYD!4SRZaCreKSmx5)Cw!;8~hX zYA90GS+m632YV9BbIB&IASabi2^=wBq$qtm}y3Cn!iamk~{BHK>W3*W5)hI(j! zG7grknJgCl_$}+73QOh1XxII5IkKUKOZlLfpDiX1?o{K2125X5jqQVN}Y*zm~n!?{s^bZmT&d!wnZ zHJQkbj*sS6&Nj8D_P-#M6-k&MQK{1H(u`Mf&DP@OWA&3@B3jz5=?t|u6 zQit4X^U+knyCcJGPl$@M2W|AsSwNsHZ)1c zFW^~K9olyTcQMoMUd?QB*D~EH-`&jg^8GC{#dj!sg75jPzb(llw3085%rx4C_Mx-f zjqKoILSA1=T*$p#pHs42ztzl0&w^dD@A<((A$X^3U02IzZZ^9mEgjs)Ej@0{>uh}} fLD%6;65cVd(i}u_n2&>!``-KL!60b8-Vm94t7#in delta 1174 zcmYk)T}TvB6u|Mjx@)#OyRPO}y5^+$5n-vM)gpu?NkJMBQAE(PJKDzT%6?e+viO+! zP+r6yg4pUMFba%%h`^wTEP_A?D*AwW2#UyupoggcS;y$W% zxJIdr^3dy}qZYlm8C}?g8*vwQVhmT~HIxZ%VhP?s`QZ~>g>UWWPgu+IFEns1Kdr+? zl==4JI_6hLXvo0R*o-rH4CgU|0cMl;J-*s64&EJlpoF6zCaoG1$%G_kK;DC zQXZT}$xs%hG&eA_fyTW3;xkIEzTqa!=PTLS7VN?vlm(1q5U<$%ud$ow3i3RLM{x!h zu>oV$wHc>SGH@TIB#U11FF*W9ht%c|O6FL2?l8*kBxH=NcqL@_vQVj`WQxy}oL5P| zgdAoG$sXtIU$D+xNERehh8kKv#Zpf>-PK&O5DChtDsn9jjjf4t=%iedISHw;)Yr)+ zyOoTQz+A{~bI~16MMo{&@0`$8t_8j1+Bvto;9#E7(bBr3rG2Z})){Qq*}{N#rK7bY z*w#6>P+08HmF_-ASP!}nXurQqKX=#r)&6)SIuNxIc0+spmD^YP%!p+U$J3)$D1F9E zr=qcFGL*8?iKIO^97;vw!)7FH4kqI15li3lRO@G+UVYA0r0a}+G)ns7LuNQWG!nB? zs&{!<)+p6?jb{Dcs4fqh4M}x4o=!5^s5NE|#M6o4sBZLLcUXF#5pc=?ecM}AYsqp( gLdhg|2AMG{`TwGHgRff;`ZD^v?~=YybkCvw0&h#DO8@`> diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po index 0b0d0d0fa1..f3ebfa9366 100644 --- a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: -# Christophe kryskool , 2014 +# Christophe CHAUVET , 2014 # Pierre Lhoste , 2012 # SadE54 , 2013 +# Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:29 permissions.py:7 @@ -28,11 +28,11 @@ msgstr "Gestion des utilisateurs" #: apps.py:39 msgid "All the groups." -msgstr "" +msgstr "Tous les groupes." #: apps.py:43 msgid "All the users." -msgstr "" +msgstr "Tous les utilisateurs." #: apps.py:48 links.py:30 msgid "Members" @@ -52,7 +52,7 @@ msgstr "Actif" #: apps.py:64 msgid "Has usable password?" -msgstr "Possède un mot de passe utilisable?" +msgstr "Possède un mot de passe utilisable ?" #: forms.py:16 msgid "New password" @@ -80,7 +80,7 @@ msgstr "Groupes" #: links.py:38 views.py:197 msgid "Create new user" -msgstr "créer un nouvel utilisateur" +msgstr "Créer un nouvel utilisateur" #: links.py:54 links.py:70 views.py:169 msgid "Users" @@ -96,11 +96,11 @@ msgstr "Créer de nouveaux groupes" #: permissions.py:13 msgid "Delete existing groups" -msgstr "Supprimer les groupes existant" +msgstr "Supprimer des groupes existant" #: permissions.py:16 msgid "Edit existing groups" -msgstr "Modifier les groupes existant" +msgstr "Modifier des groupes existant" #: permissions.py:19 msgid "View existing groups" @@ -112,25 +112,26 @@ msgstr "Créer de nouveaux utilisateurs" #: permissions.py:25 msgid "Delete existing users" -msgstr "Supprimer des utilisateurs existant" +msgstr "Supprimer des utilisateurs existants" #: permissions.py:28 msgid "Edit existing users" -msgstr "Modifier de nouveaux utilisateurs" +msgstr "Modifier des utilisateurs existants" #: permissions.py:31 msgid "View existing users" -msgstr "Afficher les utilisateurs existant" +msgstr "Afficher les utilisateurs existants" #: views.py:45 #, python-format msgid "Edit group: %s" -msgstr "Modification du groupe: %s" +msgstr "Modification du groupe : %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" -msgstr "" +msgstr "Supprimer le groupe : %s ?" #: views.py:72 msgid "Available users" @@ -138,30 +139,30 @@ msgstr "" #: views.py:73 msgid "Members of groups" -msgstr "" +msgstr "Membres des groupes" #: views.py:94 #, python-format msgid "Members of group: %s" -msgstr "Membres du groupe: %s" +msgstr "Membres du groupe : %s" #: views.py:127 #, python-format msgid "Edit user: %s" -msgstr "Modifier l'utilisateur: %s" +msgstr "Modifier l'utilisateur : %s" #: views.py:133 msgid "Available groups" -msgstr "" +msgstr "Groupes disponibles" #: views.py:134 msgid "Groups joined" -msgstr "" +msgstr "Groupes rejoints" #: views.py:143 #, python-format msgid "Groups of user: %s" -msgstr "Membre des groupes: %s" +msgstr "Membre des groupes : %s" #: views.py:188 #, python-format @@ -170,15 +171,13 @@ msgstr "Utilisateur \"%s\" créé avec succès." #: views.py:213 views.py:284 msgid "Must provide at least one user." -msgstr "Vous devez fournir au moins un utilisateur." +msgstr "Vous devez indiquer au moins un utilisateur." #: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"La suppression des comptes super utilisateur et staff n'est pas autorisée " -"ici, veuillez le faire via l'interface d'admin." +msgstr "La suppression des comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'administration." #: views.py:237 #, python-format @@ -188,17 +187,19 @@ msgstr "Utilisateur \"%s\" supprimé avec succès." #: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" -msgstr "Erreur lors de la suppression de l'utilisateur \"%(user)s\": %(error)s" +msgstr "Erreur lors de la suppression de l'utilisateur \"%(user)s\" : %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" -msgstr "" +msgstr "Supprimer l'utilisateur : %s ?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" -msgstr "" +msgstr "Supprimer les utilisateurs : %s ?" #: views.py:300 msgid "Passwords do not match, try again." @@ -208,31 +209,27 @@ msgstr "Les mots de passe ne correspondent pas, veuillez réessayer." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"La réinitialisation des mots de passe pour les comptes super utilisateur et " -"staff n'est pas autorisée ici, veuillez le faire via l'interface d'admin." +msgstr "La réinitialisation des mots de passe pour les comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'administration." #: views.py:319 #, python-format msgid "Successfull password reset for user: %s." -msgstr "Mot de passe ré-initialisé avec succès pour l'utilisateur: %s." +msgstr "Mot de passe ré-initialisé avec succès pour l'utilisateur : %s." #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur " -"\"%(user)s\": %(error)s" +msgstr "Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur \"%(user)s\" : %(error)s" #: views.py:342 #, python-format msgid "Reseting password for user: %s" -msgstr "Ré-initialisation du mote de passe pour l'utilisateur: %s" +msgstr "Ré-initialisation du mot de passe pour l'utilisateur : %s" #: views.py:344 #, python-format msgid "Reseting password for users: %s" -msgstr "Ré-initialisation du mote de passe pour les utilisateur: %s" +msgstr "Ré-initialisation du mot de passe pour les utilisateurs : %s" #~ msgid "" #~ "Super user and staff user editing is not allowed, use the admin interface " diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo index f22e098a516e2441d7735ba0b6c117e3991ada0a..ceb959b8f8b145946addc7546104b27698bcd6fa 100644 GIT binary patch delta 40 pcmX@fe3E%WE03A3fw8WUp@N~AmC3}3GQ2Rpk)f5L(Z*f;i~!$w3PAt> delta 40 pcmX@fe3E%WE03wJfu*jIiGrb-mC?kBGQ2RpfvJ_D*~VS`i~!)a3RM6A diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po index 6bbd6ebb3c..d2b45d1508 100644 --- a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -126,6 +125,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -187,11 +187,13 @@ msgstr "" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo index 8171c4689ec640acc5b870f6f82f383bd484b879..5b9ce2cf256b9cfc1260647d98b29ec5e451c04a 100644 GIT binary patch delta 135 zcmX@i{G2)Lo)F7a1|VPpVi_RT0b*7lwgF-g2moRbKM;sJ85tPDq5OwHHW0x9NIw|3 v<|bz5OtkRjG1E0L)-^IzFf_9=nK)5~7sfX-v@$f>xQmmKEx5EOHHQHJ8>kZ~ delta 98 zcmaFPe3;qdo)F7a1|VPrVi_P-0b*t#)&XJ=umIvtprj>`2C0F8iDAAxrn&}}x<)1n YhGteq6W7b|!uSTJR)%I9Z*VdK07%RY?*IS* diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po index 0c09ca4f15..e350d05ed1 100644 --- a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:29 permissions.py:7 @@ -41,7 +40,7 @@ msgstr "" #: apps.py:55 msgid "Email" -msgstr "" +msgstr "Surel" #: apps.py:58 msgid "Active" @@ -126,6 +125,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -187,11 +187,13 @@ msgstr "" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" diff --git a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.mo index 1ed799fbf176ba68b066008e750426ac0d059672..c9ea0908be2735e5b66a45b1fff0adbf68882c83 100644 GIT binary patch delta 852 zcmY+?PiPZC6vy$&Hh)@8qBf0xYPC!8FB&khMyRcz2=&t5ih`$xgtC&_uuG$ekYg_f z(ZP$osAoYikb{T{f*>9gLG;w4AW;O5qTu(p-3ks&KKpi(dGF1nm-~}%tqsQS8pdAc z2s0fs<}m(7jr)!f>%)mtne{Je$(bb zl|95ZU3a7S995{(i;i}EI!5k_$KlP9wg2W7;^xpa0RQ_#&782^-ad?!&OvaFHtA^9@Xe4RAW7C z>6&*ib@y6S0V+mA_eswGMutfDJIowpvPU@7A^HD}ojfVIhE7Q*!p(&z0%3#PP}yu& z#88DgURB0_D7lA_(dLS%Og`u@6fa=X`l)(8EFv^`>=P!jLVphAXHA zUSbUIaU83@pE$uh;)tX$hiABjE`Hz;9yW`N;U#L}kC@W{0wcg`A0n`=gD8OnxC-D9?qX0kdhZm|Ht--s~|GaL&s& KPCjVfBB?)2**|9h diff --git a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po index 83cae68bf4..9fee8a451a 100644 --- a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -35,7 +34,7 @@ msgstr "" #: apps.py:48 links.py:30 msgid "Members" -msgstr "" +msgstr "Membri " #: apps.py:52 msgid "Full name" @@ -43,7 +42,7 @@ msgstr "" #: apps.py:55 msgid "Email" -msgstr "" +msgstr "Email" #: apps.py:58 msgid "Active" @@ -67,15 +66,15 @@ msgstr "" #: links.py:18 links.py:42 links.py:58 msgid "Delete" -msgstr "" +msgstr "Cancella" #: links.py:22 links.py:46 msgid "Edit" -msgstr "" +msgstr "Modifica" #: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" -msgstr "" +msgstr "Gruppi" #: links.py:38 views.py:197 msgid "Create new user" @@ -83,7 +82,7 @@ msgstr "" #: links.py:54 links.py:70 views.py:169 msgid "Users" -msgstr "" +msgstr "Utenti" #: links.py:62 links.py:66 msgid "Reset password" @@ -128,6 +127,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -151,7 +151,7 @@ msgstr "" #: views.py:133 msgid "Available groups" -msgstr "" +msgstr "Gruppi disponibili " #: views.py:134 msgid "Groups joined" @@ -175,9 +175,7 @@ msgstr "Devi fornire almeno un utente." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Al super utente e utente non è consentito la cancellazione del personale, " -"utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "Al super utente e utente non è consentito la cancellazione del personale, utilizzare l'interfaccia di amministrazione per questi casi." #: views.py:237 #, python-format @@ -191,11 +189,13 @@ msgstr "Errore nella cancellazione dell'utente \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -207,9 +207,7 @@ msgstr "La password non corrisponde, riprova." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Al super utente e utente non è consentito di reimpostare la password " -"personale, utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "Al super utente e utente non è consentito di reimpostare la password personale, utilizzare l'interfaccia di amministrazione per questi casi." #: views.py:319 #, python-format @@ -219,9 +217,7 @@ msgstr "Password reimpostata per l'utente: %s." #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Errore per il reimpostamento della password per l'utente \"%(user)s\": " -"%(error)s" +msgstr "Errore per il reimpostamento della password per l'utente \"%(user)s\": %(error)s" #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo index 8fa75614a45d2e2f978d5bd77ba0557d5ae51998..79229028b871ad49b48707e5e5934a7a84302ad3 100644 GIT binary patch literal 3909 zcmbuB&2N-N9LGlml@$d+loyquh<2sVzLbJwo2F3OQj)edrGSYCGrQ01?$do{APw< z_U*XE(DL|R#&`2E#x8)npTHlqgF6^|50KAv*XYd8|A13`BI~l`Ib{M4bqu_pU0wntj;IrU05dWCOpDfq_&w#hU zUEmKO+5HJ5`TO8L@OO~(J_4Tt_d|&KM?mtw03HQrz};XO904Pc?0*ct3VsQa++A=K zd;q=+?t)SmlpxK2m+&``@{)Nv_WLkMb~#A#od&oKAk9yLv~CR~ z`%RGi{QyMj*eBpQ@N@7ocps$v6p=K9%Fcll?*d4Ey#tay1=9MDK=S`4NP52pbKqT& z>^%fefs_P_djfm|TmVPGCRhYN1wHV4P=Tl6#OvT!;A`NIAnE%PM5t^hoTB*lg5*yY zMB3R&e6(NGD1X!tl9i=Arj2SOn|46jD~g9=p++_-k2!o)=hP^^G5ah2Lw-2;C{K^$ zJBE*Zrbe+Mbel8UFREE;2#+1dN3oFKX`@`w{-^Ct{Gjtgjq*>&`4#G*aeOE6(SB2- zd{S-ase^_TF?POUytZWLeV?1U9ekR>*!RHV2|v5@yP%STR(60>>)%SI(hWU<;x zDyd`1G?%=J_5ZMJzJ<*SMIhNlyITqPdgO)DO?y$*>acDu2#t>2ztqSyTarN;o12nj zK`*dmvO5T|mNvYpqPFKsE)4gjz(5pAYbM8*vGb{Nwvv>E=5EBp$nZdzN_~tQwZTPA zcwvsMQrNu}woCa+b#${}BiMf0ZX>(gs#K)bRZ2})gU#%Ko*V?5*bkds5xQI(QH>MT z+c8gDmxb>~9qEpduss{X4ZM(hp^>U8D$*)O-C?#Ow8SadUiY9&6y|?6awV=OJ;E#Y z$RUPa>>D}Oo3|w>x10||C~7j0p|SFsUG=bin@`-}AmvQ66&0<^ig7Nv&QvnrdBGR~5&d9E|ls%d8}D)G$9+iQ-!At3L};-V<=@j~&8Q#j>}7kTka zY2vI?m?#t==&Z`NM|y|l#*3xm_{joVW)a2btSJ#{Uzi97d^JKbn+ViGc@YG{S_?5c zYf=OyKHEb5@zG_84O2dLUT67e-I!)6pYL=!IYX+vs=S`7L_uD~N>o0e$Qrg$+snX&h| ztkV5$?`qkUIBRiFmQ~AZ*!z4&>Pp>fl!fX_u^HKxxNvK{BPw;%iRf0x)`|uXJ=y9c zf?SA@4UNihcsw@I+Tdy2yHOFR(1d-l3nZ8w7q#fWQ4MEL;6)$j?ueTmUtIvENa?%&rx~UEN-I* z^-0${<#-^WHu^q$+sXAmTqcaz!To)F7a1|VPrVi_P-0b*t#)&XJ=umIxuKuJp=4N?OGlRY?mc}#T;EOm`c b6b#L*j3zJSkl}?17?@fanr%MCA, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 msgid "User management" -msgstr "" +msgstr "Gebruikersbeheer" #: apps.py:39 msgid "All the groups." -msgstr "" +msgstr "Alle groepen." #: apps.py:43 msgid "All the users." -msgstr "" +msgstr "Alle gebruikers." #: apps.py:48 links.py:30 msgid "Members" -msgstr "" +msgstr "Leden" #: apps.py:52 msgid "Full name" -msgstr "" +msgstr "Volledige naam" #: apps.py:55 msgid "Email" -msgstr "" +msgstr "Email" #: apps.py:58 msgid "Active" -msgstr "" +msgstr "Actief" #: apps.py:64 msgid "Has usable password?" -msgstr "" +msgstr "Heeft bruikbaar wachtwoord?" #: forms.py:16 msgid "New password" -msgstr "" +msgstr "Nieuw wachtwoord" #: forms.py:19 msgid "Confirm password" -msgstr "" +msgstr "Bevestig wachtwoord" #: links.py:14 views.py:29 msgid "Create new group" -msgstr "" +msgstr " Maak nieuwe groep aan" #: links.py:18 links.py:42 links.py:58 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:22 links.py:46 msgid "Edit" -msgstr "" +msgstr "Bewerken" #: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" -msgstr "" +msgstr "Groepen" #: links.py:38 views.py:197 msgid "Create new user" -msgstr "" +msgstr "Maak nieuwe gebruiker aan" #: links.py:54 links.py:70 views.py:169 msgid "Users" -msgstr "" +msgstr "Gebruikers" #: links.py:62 links.py:66 msgid "Reset password" -msgstr "" +msgstr "Verander wachtwoord" #: permissions.py:10 msgid "Create new groups" -msgstr "" +msgstr "Maak nieuwe groepen aan" #: permissions.py:13 msgid "Delete existing groups" -msgstr "" +msgstr "Verwijder bestaande groepen" #: permissions.py:16 msgid "Edit existing groups" -msgstr "" +msgstr "Bewerk bestaande groepen" #: permissions.py:19 msgid "View existing groups" -msgstr "" +msgstr "Bekijk bestaande groepen" #: permissions.py:22 msgid "Create new users" -msgstr "" +msgstr "Maak nieuwe gebruikers aan" #: permissions.py:25 msgid "Delete existing users" -msgstr "" +msgstr "Verwijder bestaande gebruikers" #: permissions.py:28 msgid "Edit existing users" -msgstr "" +msgstr "Bewerk bestaande gebruikers" #: permissions.py:31 msgid "View existing users" -msgstr "" +msgstr "Bekijk bestaande gebruikers" #: views.py:45 #, python-format msgid "Edit group: %s" -msgstr "" +msgstr "Bewerk groep: %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" -msgstr "" +msgstr "Verwijder de groep: %s?" #: views.py:72 msgid "Available users" @@ -135,95 +136,97 @@ msgstr "" #: views.py:73 msgid "Members of groups" -msgstr "" +msgstr "Leden van de groepen" #: views.py:94 #, python-format msgid "Members of group: %s" -msgstr "" +msgstr "Leden van de groep: %s" #: views.py:127 #, python-format msgid "Edit user: %s" -msgstr "" +msgstr "Bewerk gebruiker: %s" #: views.py:133 msgid "Available groups" -msgstr "" +msgstr "Beschikbare groepen" #: views.py:134 msgid "Groups joined" -msgstr "" +msgstr "Lid van groepen" #: views.py:143 #, python-format msgid "Groups of user: %s" -msgstr "" +msgstr "Groepen van gebruiker: %s" #: views.py:188 #, python-format msgid "User \"%s\" created successfully." -msgstr "" +msgstr "Gebuiker \"%s\" is succesvol aangemaakt." #: views.py:213 views.py:284 msgid "Must provide at least one user." -msgstr "" +msgstr "U dient minimaal één gebruiker in te voeren." #: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" +msgstr "Super gebruiker en medewerker verwijderen is niet toegestaan, gebruik de admin gebruiker voor deze zaken." #: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." -msgstr "" +msgstr "Gebruiker \"%s\" succesvol verwijderd." #: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" -msgstr "" +msgstr "Fout tijdens het verwijderen van gebruiker \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" -msgstr "" +msgstr "Verwijder de gebruiker: %s?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" -msgstr "" +msgstr "Verwijder de gebruikers: %s?" #: views.py:300 msgid "Passwords do not match, try again." -msgstr "" +msgstr "Wachtwoord is niet het zelfde, probeer het opnieuw." #: views.py:309 msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" +msgstr "Super gebruiker en medewerker wachtwoord aanpassen is niet toegestaan, gebruik de admin gebruiker voor deze zaken." #: views.py:319 #, python-format msgid "Successfull password reset for user: %s." -msgstr "" +msgstr "Succesvol wachtwoord aangepast voor gebruiker: %s" #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" +msgstr "Fout tijdens het veranderen van het wachtwoord voor gebruiker \"%(user)s\": %(error)s" #: views.py:342 #, python-format msgid "Reseting password for user: %s" -msgstr "" +msgstr "Wachtwoord aanpassen voor gebruiker: %s" #: views.py:344 #, python-format msgid "Reseting password for users: %s" -msgstr "" +msgstr "Wachtwoord aanpassen voor gebruikers: %s" #~ msgid "" #~ "Super user and staff user editing is not allowed, use the admin interface " diff --git a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo index 667b677d811bb6d3be3eac712ffc3b89e58b3bb3..40818ee3af7679afe071fcd9f52772eff735fe48 100644 GIT binary patch delta 43 scmew>^;c?x4?B;Uu7Rn1GR?m7&q*M)p6f00mqNRsaA1 delta 43 scmew>^;c?x4?B;ku7Rblk%@w#nU&Gx2zD7>n1F$)m7&?@M)p6f00y)RY5)KL 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 19adfdb3f8..2e55a19ce5 100644 --- a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -11,16 +11,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -129,6 +127,7 @@ msgstr "Edycja grupy: %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -176,9 +175,7 @@ msgstr "Musi podać co najmniej jednego użytkownika." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user oraz staff user usuwanie nie jest możliwa , należy użyć " -"interfejsu administratora w takich przypadkach." +msgstr "Super user oraz staff user usuwanie nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." #: views.py:237 #, python-format @@ -192,11 +189,13 @@ msgstr "Błąd podczas usuwania użytkownika \" %(user)s \": %(error)s " #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -208,9 +207,7 @@ msgstr "Hasła nie pasują, spróbuj ponownie." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu " -"administratora w takich przypadkach." +msgstr "Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.mo index f7ef1f343a7f9f10dc15f5d7d3e5b8d1a6fbed80..73fb13342b9c77637a183f860dcd5903ddb14924 100644 GIT binary patch literal 3751 zcmb`JO>7)B6vqv;6qc`23KR;|4HU9%XE#Z!5N#DzX}hT^H6=>ZUVwwM1K0Q8205UMy74hX>k2~gmMxb=d>=cODFhl&FSkoZ5(>_;{!st{Htzxet2 z`Mu|7J3nmM@FqhG@I8d@l^YnF1b@2`ztDcViLsl(pTWDpU%@-UKf%r5rVTl_6)b~y zLtX<(|9ByP1|&N%cpvD%d%^Ps-vPIx|4GsR2E-5hrI23%??L}Bkk;S4k+D0#9Uy*K zfL~>BA2<#^3*HL80n)l}gImD&z)j$%Ag%WWNd8_1cYs&G+rdqkGz4x1X}u@GN5E;2 z^dvY8o&%o-KLA6p1miTW3%&+Y9zFzNntcw^x?h77&v)SK$ocQZ_)Bn_@_G)WJiP^y z-X)Oy`mz}R7NmH71SyYK!EN9zC4Asc@Ii1l$iX^Ddd))q0{Afc7eKhqJ_c$2XCTFS z86-dc0BPRF+j2j)gZt61f``Bmq2Pw~2!NO!^*4%Z4?c>6_VfXK6eH~u<@_;xv?lFWr_mmeKa>M%lv9+j zZ*Ym>82J_yBwwjfE~vgJH`Hjau*E(n6!#POXrHJCIKG?lbsFVwCqAlQHq~&dE!k8Q zaknUW%jhh%m2N+?(onZ8R3sLnjsiQZlcq8;PldHh+Jx+|k-|xy$fexI8iDPXklDe$ zWk+Nroh-oR8D*VHT7^$*#NM@zwCj6~@3IH`rKGm5(B{&5s2rnTYZhEB%$M^rpCp={ z&+Dwf>M^p!>c(ipLyCpGr%^t%YnWKJLzp%!Nu!L}UeidMYj$$Uo0$JE)21_QRw81_ zj{4myz;)Bl@{Y~OcmX@d3es55>p>yZGV6G1bX$dz3&$fVAkc~Q7Ax!owzcCPn=SU- z@=)_cJ01(ySlr8~c8R8nDc6jN`8?@}^4Ho75tXRkf%_lTX$8VzY}lj81L@M&9R zrvk+k$@ZxeNyx1e%{(W)?NHXcETTv+$#5?z`@$DttP-vgCrwi{q&JMB!e~QSi6d}r z+pAroF#q!+r}AR4L%iY76JqGazFc9wabI6@-SJo?q9tRQIInNnX@%_@JWi{Hlrzg_ zjebrxTyQK5PNT1MQsXmXStPuEWaeaPPNv$pV8*so7#zx4Hkj8nUYdPsKJdpM`oR(0 z0yRE1GCCfN>vb$DqY_v8ywr2#bbR5MO%o~x|NH~qt zJEu|1PJ>n$rJ<0tGQ=3nOA*)jEWFBE8Ew|^qH}4jT3uRNsyMQsn(|Dgq2sE_=bCCv z0R=LQZ8a+FR8vdXnnoz_1H7>)3`%_R)ckZX z(bJ<9o6-dJq@hDpLXA%>DA)D3##2|CjWQ#mU|O3P<(;IyYbVDJ@chro;e_v;I-4)b>XE|15vKb`;bdNKNS?$!SLm#oxvoOt7u^a6 zd((8^#KED}?i8cA&B-H=_58^PD7;P_tGwx(=kKS&P*2}W4{Kwj(wr`Ov+_}*8rt9J zT#zi!3h#G){a1i@Cm9*arb?9Ig8Ti#WoN{7nK+?iTvR$v;fpTnpj!_8K6uaR{>O3f zj{`{8xUa1KLEM-{=J1%dC2q!0HBdaMj5NpHf@xXYw=Z}jbi44IP1!sE+_fw3YB;8n z240pJZv<5YRUn=({6#MX?vz}cP4VkUfp_xSnrrL9FJaZnMREmE<*8keG2N{)RH0a# zXIcai(TtV%5wnSvBSq2K*{(JJZr~pklb;8!Gi1l7mqTAZpQ%*fmGPy9r?u~ep_i5( zozCRk3u$p;=*^*XKInj6CqaW|FdIHV`v19cs(VmS!v1ZdD~IaMr_frBmuWz!I01ud dM-gAK5541rE21|Y9lSm3oLZ9h&*?w1{{T0W6)OM$ delta 931 zcma*kO=uHA6bJCxx|`-ZX-yha+jOkPFHA{l5^Tg!F-1^BDS8kuuGtB$G?}uKMDfys zP(4@?20?oD&`T8|R|`V%BwmVFds8oZ6ED5^pWWo{z{_uTW_I4o+s(<1#LC{N{)%9v z5EF>6h$+N#4L=zEAwuFX07u|>|M?6Y!}A50gg0RVK7a?|3OofREW>T6?)?M9FmZs8 zX&fU*Fv(z{2GxN&JPDt`J8%nH(64*@&A#g}hV{2lCEkWA@h*Ic;(zq_ANmLx#rjit z2yVbM?7=DICtvy-zo9C`H%!P`n1xk%8=io#VGw?Vr{QOqg@2(cc*0Le1uno#YAb4S{|#`HD%DV*DS|*#+|Pj=Zu`}Rc-WlKt4UxWfclcvN5N*s>5z8s2O@Ixas1=OT{7smUqx zR;!_T&64w>W8oU>GTPuyi`AKog%^_-slzPRuv@l6O)n9(98j6+7_pE-b9i*?%*@zGILOIN7~WjLtMxg(eyu!FRmH@ 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 6fdc7a8dd9..8346d518ba 100644 --- a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po @@ -1,9 +1,10 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Manuela Silva , 2015 # Renata Oliveira , 2011 # Roberto Rosario, 2012 # Vítor Figueiró , 2012 @@ -12,43 +13,42 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 msgid "User management" -msgstr "Gerir utilizadores" +msgstr "Gestão de utilizadores" #: apps.py:39 msgid "All the groups." -msgstr "" +msgstr "Todos os grupos." #: apps.py:43 msgid "All the users." -msgstr "" +msgstr "Todos os utilziadores." #: apps.py:48 links.py:30 msgid "Members" -msgstr "" +msgstr "Membros" #: apps.py:52 msgid "Full name" -msgstr "" +msgstr "Nome completo" #: apps.py:55 msgid "Email" -msgstr "" +msgstr "Correio eletrónico" #: apps.py:58 msgid "Active" -msgstr "" +msgstr "Ativo" #: apps.py:64 msgid "Has usable password?" @@ -60,35 +60,35 @@ msgstr "Nova senha" #: forms.py:19 msgid "Confirm password" -msgstr "Confirmar senha" +msgstr "Contrassenha" #: links.py:14 views.py:29 msgid "Create new group" -msgstr "" +msgstr "Criar novo grupo" #: links.py:18 links.py:42 links.py:58 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:22 links.py:46 msgid "Edit" -msgstr "" +msgstr "Editar" #: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" -msgstr "" +msgstr "Grupos" #: links.py:38 views.py:197 msgid "Create new user" -msgstr "" +msgstr "Criar novo utilziador" #: links.py:54 links.py:70 views.py:169 msgid "Users" -msgstr "" +msgstr "Utilizadores" #: links.py:62 links.py:66 msgid "Reset password" -msgstr "" +msgstr "Repor senha" #: permissions.py:10 msgid "Create new groups" @@ -96,7 +96,7 @@ msgstr "Criar novos grupos" #: permissions.py:13 msgid "Delete existing groups" -msgstr "Excluir grupos existentes" +msgstr "Eliminar grupos existentes" #: permissions.py:16 msgid "Edit existing groups" @@ -112,7 +112,7 @@ msgstr "Criar novos utilizadores" #: permissions.py:25 msgid "Delete existing users" -msgstr "Excluir utilizadores existentes" +msgstr "Eliminar utilizadores existentes" #: permissions.py:28 msgid "Edit existing users" @@ -120,17 +120,18 @@ msgstr "Editar utilizadores existentes" #: permissions.py:31 msgid "View existing users" -msgstr "Ver os utilizadores existentes" +msgstr "Ver utilizadores existentes" #: views.py:45 #, python-format msgid "Edit group: %s" -msgstr "" +msgstr "Editar grupo: %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" -msgstr "" +msgstr "Eliminar o grupo: %s?" #: views.py:72 msgid "Available users" @@ -138,21 +139,21 @@ msgstr "" #: views.py:73 msgid "Members of groups" -msgstr "" +msgstr "Membros de grupos" #: views.py:94 #, python-format msgid "Members of group: %s" -msgstr "" +msgstr "Membros do grupo: %s" #: views.py:127 #, python-format msgid "Edit user: %s" -msgstr "" +msgstr "Editar utilizador: %s" #: views.py:133 msgid "Available groups" -msgstr "" +msgstr "Grupos disponíveis" #: views.py:134 msgid "Groups joined" @@ -161,7 +162,7 @@ msgstr "" #: views.py:143 #, python-format msgid "Groups of user: %s" -msgstr "" +msgstr "Grupos do utilizador: %s" #: views.py:188 #, python-format @@ -170,35 +171,35 @@ msgstr "Utilizador \"%s\" criado com sucesso." #: views.py:213 views.py:284 msgid "Must provide at least one user." -msgstr "Deve fornecer pelo menos um utilizador." +msgstr "Deve indicar pelo menos um utilizador." #: views.py:230 msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Não é permitida a exclusão de superutilizadores ou de membros da equipa; use " -"a interface de administração para esses casos." +msgstr "Não é permitida a eliminação de administradores ou membros da equipa, utilize a interface de administrador para estes casos." #: views.py:237 #, python-format msgid "User \"%s\" deleted successfully." -msgstr "Utilizador \"%s\" removido com sucesso." +msgstr "Utilizador \"%s\" eliminado com sucesso." #: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" -msgstr "Erro ao excluir o utilizador \"%(user)s\": %(error)s " +msgstr "Erro ao eliminar o utilizador \"%(user)s\": %(error)s " #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" -msgstr "" +msgstr "Eliminar o utilizador: %s?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" -msgstr "" +msgstr "Eliminar os utilizadores: %s?" #: views.py:300 msgid "Passwords do not match, try again." @@ -208,29 +209,27 @@ msgstr "As senhas não coincidem, tente novamente." 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 superutilizadores ou de membros da " -"equipa; use a interface de administração para esses 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:319 #, python-format msgid "Successfull password reset for user: %s." -msgstr "Redefinição da senha bem-sucedida para o utilizador: %s." +msgstr "Reposição de senha bem sucedida para o utilizador: %s." #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Erro ao redefinir a senha do utilizador \"%(user)s\": %(error)s " +msgstr "Erro ao redefinir a senha para o utilizador \"%(user)s\": %(error)s " #: views.py:342 #, python-format msgid "Reseting password for user: %s" -msgstr "A redefinir a senha do utilizador: %s" +msgstr "A redefinir a senha para o utilizador: %s" #: views.py:344 #, python-format msgid "Reseting password for users: %s" -msgstr "A redefinir a senha dos utilizadores: %s" +msgstr "A redefinir a senha para os utilizadores: %s" #~ msgid "" #~ "Super user and staff user editing is not allowed, use the admin interface " diff --git a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo index 58126e07c4104ce5b2428437538c714d37f76231..ecda4fe07b0d841a6c4437da5c882b88f7857ba5 100644 GIT binary patch delta 43 scmaDQ`ATww4?B;Uu7Rn1GR?m7&q*M)pir0R5Q?n*aa+ delta 43 scmaDQ`ATww4?B;ku7Rblk%@w#nU&Gx2zD7>n1F$)m7&?@M)pir0RHg`uK)l5 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 2903cd0223..75e7ff6523 100644 --- a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2013 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:29 permissions.py:7 @@ -130,6 +129,7 @@ msgstr "Editar grupo:%s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -177,9 +177,7 @@ msgstr "Deve fornecer pelo menos um usuário." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Excluir super usuário e usuário pessoal não é permitido, use a interface de " -"administração para esses casos." +msgstr "Excluir super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." #: views.py:237 #, python-format @@ -193,11 +191,13 @@ msgstr "Erro ao excluir usuário \"%(user)s\": %(error)s " #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -209,9 +209,7 @@ msgstr "Senhas não coincidem, tente novamente." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Redefinir senha de super usuário e usuário pessoal não é permitido, use a " -"interface de administração para esses casos." +msgstr "Redefinir senha de super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo index 50ed375f6df4f36337dd1c5316b47adfb0c7a16b..5871089c0fa9e2368c645f1fe30d0f8edb4711e8 100644 GIT binary patch delta 737 zcmXxi&ubGw6u|M9HS22H`Xk0f+ZY$|N2CPZSaK*5ictCol(q*kxWOn3k(6yCn1cc1 zEhk+fc(%t<54j40NODj?5Za51r=D6UBKG3J@7t~eGoP8+*?lu__HXKWy8R;=?+Ims znx+1xUZQ@A(NOLhA}7$rljuj|XP9Q(!_&BqaeR*{9O5bbh9>UeRs4e`v=50K7HP{8 zo%2joa1@{51?*xDH=^gCG0%7xZ)2Kh_s~aue=Bkyk2B5?RRdq4(G3+)H*^b!9BvVl z#Fw0P@W8aR+q+Ej)^^P_y(JZG4A(Lw=&3Xd7qn+z}DFQo(C@AII<|PU0F~ z#xIyBzUiIFDW2L>sG#gBLrfDSv~SsR5qBuXqu6P;X5Sp&8J%Br9ACVM#_3 zQqEG{k!a#rq(TP66Kj858;SRosHRm^%o4(ioZn?(D!m3yITJCDY_kx>=nSZ;`R%QSI delta 600 zcmX}pJxD@P6u|N0GxHzh)D%FB*7ee$iB8*qYFyqw0h45G+ z-RQ+09BkfCW0?Cn?86ld;V$-K3FBxmi&fNhztE2%r^pzu$taU3i3QXbwr~=UaSd;9 z8$E4}=X*`hu#5aH>c&;nji2#>!`Cs$eYw4nze6qZ4YklujIzJ@+#*9H;y8kfs3$Js zJYL}p)-Zsb9+4@GU<{W~54?|Qyu>4X!V_HfHrD+>{q6^~a}z$10rr;ylW|-{?YchX zaCS8yr2j)J&_mD^`**O1-F~f, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -43,7 +41,7 @@ msgstr "" #: apps.py:55 msgid "Email" -msgstr "" +msgstr "email" #: apps.py:58 msgid "Active" @@ -71,11 +69,11 @@ msgstr "" #: links.py:22 links.py:46 msgid "Edit" -msgstr "" +msgstr "Editează" #: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" -msgstr "" +msgstr "Grupuri" #: links.py:38 views.py:197 msgid "Create new user" @@ -83,7 +81,7 @@ msgstr "" #: links.py:54 links.py:70 views.py:169 msgid "Users" -msgstr "" +msgstr "Utilizatorii" #: links.py:62 links.py:66 msgid "Reset password" @@ -128,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -175,9 +174,7 @@ msgstr "Trebuie să furnizeze cel puțin un utilizator." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super-utilizator și personalul ștergerea utilizator nu este permisă, " -"utilizați interfata de administrare pentru aceste cazuri." +msgstr "Super-utilizator și personalul ștergerea utilizator nu este permisă, utilizați interfata de administrare pentru aceste cazuri." #: views.py:237 #, python-format @@ -191,11 +188,13 @@ msgstr "Eroare la ștergerea utilizator \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -207,9 +206,7 @@ msgstr "Parolele nu corespund, încercați din nou." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super utilizator și parola de utilizator personalul resetarea nu este " -"permisă, utilizați interfata de administrare pentru aceste cazuri." +msgstr "Super utilizator și parola de utilizator personalul resetarea nu este permisă, utilizați interfata de administrare pentru aceste cazuri." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo index 1d72a5b4f01501e81cb0020d970ab2c7f3c0f9e6..9bc3e16135d22326e7048dc72ea56f1deb0e263b 100644 GIT binary patch delta 740 zcmXxi-%Aux6u|N0?2NAMuA0BL)JhCfkriiK7Fjll=m)(CVLm9~iV_=Ix>6uWMr{zR zPhR{Zgz#mb1VQORA1rZR>_G|o0|d#)$NZjQJaFeTcZRv=%(-{7<*aq-SG~O|L@T3> z@t4ub_+G(<7`H^~Fo##M5X_6%%zPD_@GIK*4I6P68}Jw%JjEXThiPmNiByU#$p|;M zc<=(F_#Qj3gg0?Lc>e>tnV;Y&Hj`}<3#i}!3_QnL=5exW;w~;)Py)4}2NyQays1G+sl%P$7} zs1Kxexz5Ou!;hLkg$@cu`=NiXp$Tb-A9_~wEa<-L+0eFXC#YZd)NeN(7U~f(j+Hlg ztJj{%<)_VxHQ_udym>oY{$uS`IK%T(g?Y1Szl)|5{dW^dx7|%=QfAO;i(NiQx*0cF ze(9`Pw)fFnHkt5%If+J0Haz4!^4Bbd%Ms&!@ID=E9c+1}a<=+Q$o#HqGTYI`3mgMn ATmS$7 delta 612 zcmX}pOG`pQ6u|N0RqLAB!yZD~Ljy@l&`>c$Xdywnpf+Jek(+{+tqqD+2GP*2FA(%1 zX{VcZ5wwV?O++idK!MOA`p?xGnERVK_ue@(XFmOvf#SQ@aUwJyJwSh^57SFF9yHSs z=|UHF<3Mvhf&I+0*oTYQi(A-(MU0@r6jo8M`-Sb;YZnRenFJXO5y+wbU<1c+5A%4A z1vDLv_uEYmv6J`(>cmyliJ#C%k{XUO|7j5kW2m*UkvU8--^CpH<(9z=fp470X;WkY zOSp_5IEz_Vqe}ZY$NUuaLN&~yzfB~KOZbS#_=4+hk#S6OY;6JKc!UY^%N>Ip)=^ho zmz7OhrvYJ||E90WL#HU#b+9+9{9a@qR^#wOPOB=7h=`K`1+lJ@G*;#GJL?|~E*)yc z*i;WjSk;ZS@~ZvbrlQWB_GC0R6`f3s#8a6`b?FRv{sOUNCY~z4I?oLCW(HNo%&S4y TP5I4rU{}|k2m!ac^5lL2X|6;S 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 5154a9e65f..0e6052eb62 100644 --- a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,17 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -43,7 +40,7 @@ msgstr "" #: apps.py:55 msgid "Email" -msgstr "" +msgstr "Email" #: apps.py:58 msgid "Active" @@ -71,11 +68,11 @@ msgstr "" #: links.py:22 links.py:46 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" -msgstr "" +msgstr "Группы" #: links.py:38 views.py:197 msgid "Create new user" @@ -83,7 +80,7 @@ msgstr "" #: links.py:54 links.py:70 views.py:169 msgid "Users" -msgstr "" +msgstr "Пользователи" #: links.py:62 links.py:66 msgid "Reset password" @@ -128,6 +125,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -175,9 +173,7 @@ msgstr "Должен быть хотя бы один пользователь." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Удаление суперпользователя и персонала не допускается, используйте " -"интерфейс администратора для этих случаев." +msgstr "Удаление суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." #: views.py:237 #, python-format @@ -191,11 +187,13 @@ msgstr "Ошибка при удалении пользователя \"%(user)s #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -207,9 +205,7 @@ msgstr "Пароли не совпадают, попробуйте еще раз msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Сброс паролей суперпользователя и персонала не допускается, используйте " -"интерфейс администратора для этих случаев." +msgstr "Сброс паролей суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.mo index 0c5c58fa397f8e9093a622b2df525abdcceb1da3..db5a0ab6131fc8ae8770e9f218de1b8e5432adc4 100644 GIT binary patch delta 40 pcmeBU>0_DD%44Q$V61Cos90_DD%44c)V5w_lqF`udWi)Z33@?mtU}|M(wsBVoBLL5m3MK#m 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 fcfb33d2df..f5b4a128f5 100644 --- a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -127,6 +125,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -188,11 +187,13 @@ msgstr "" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" diff --git a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.mo index 75353f0addd1947704083adba27996bb12c68717..f2a551f94d5392b14917fcb1f1ac0912bbae730f 100644 GIT binary patch delta 651 zcmX}pze_?<6u|N0%a>)^56ymvR3uR%=8r`KYxY`bRFN7Fp#2BB98OFVb2eE31 z3}Oj~aMR5#93el%2%e!AZ*UmzFpQ6AVha=aj(Lz&QC9>OqdsVt;vKlEI~3ktFV+UdJW& zV*_>JC)8Wfw(EN>ie}i|13UDJG+5GJLl2-4bg-W^NLb2_lD0%+ltID&p?9ur)RyYz z+7ay%&9d9dH9Ao@jY_>@B)tbamHpZyNq$IUhS6QA$c_yyx7It%~+ delta 584 zcmXxhze_?<6u|N0%a_kmE1&%``wf+prJ_=TThKocG&Dtm6a?)JBGy(kJX#zY8p|eU z=Y}>3+8QMqqd%bUx$1%I=ickP_nv!h$E~~7uc-e)h-q4a_CZ^u-TL?;97|*zgE)cl z{&)+g7?*Go4>5-4=wcO<=wSidsQdn52xCJcD|{x)bQYM{NB!UwH?WS!*u*kA{@(u= zeeZCL`B&6~+o%V3utD-&oMBuW?j_#9IO8Uc;2XM}FC99gOmtCi@{2p@1VpxR7uT_Z zQM^Y@@CmhI?|r{H~8@eQW&2RCspC^Cx&7~y<5p`#mLqE=nYN)F~WV6s&; z^qImmiejFFJx$WOp5-Q}u(^;{We_$U3Syp8%deHwFl$I$B3{Wl^IojA)~EGoh4QKN jUMibg$`p!OuVyF0gNby$m?^ZL?Q5Tx3(U8U0$0{QwRJQp 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 a9ba727fbc..f928b0fbe8 100644 --- a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:29 permissions.py:7 @@ -42,7 +41,7 @@ msgstr "" #: apps.py:55 msgid "Email" -msgstr "" +msgstr "Email" #: apps.py:58 msgid "Active" @@ -70,7 +69,7 @@ msgstr "" #: links.py:22 links.py:46 msgid "Edit" -msgstr "" +msgstr "Sửa" #: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" @@ -127,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,9 +174,7 @@ msgstr "Cần cung cấp ít nhất một user." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user and staff user deleting is not allowed, use the admin interface " -"for these cases." +msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." #: views.py:237 #, python-format @@ -190,11 +188,13 @@ msgstr "Lỗi xóa người dùng \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,9 +206,7 @@ msgstr "Mật khẩu không khớp, thử lại." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user and staff user password reseting is not allowed, use the admin " -"interface for these cases." +msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.mo index 984286c42e32fee4fa9f6baa9bc387ce541a6104..d316c4d418ac0ad2858684d459e1cd90196bdeb7 100644 GIT binary patch delta 711 zcmXxi%WD%+6u{v#V#L|jNI4VF@9QIa;>K#1T@ zapI!Tg-bUIHdLj_%8d*6DhdHLH7Ks?Kj807CKv8}_grS?oH=*;(a*6)KjwKRj5Evx z^DpxPvuAK&+%!cZSjH$;+;|gD5kJI}xPvEf7mwoywD23w;dd-x;E0G97x1h|LvFAL zvayEKSjQx8k8Y56I7|Em@1o%mxrd9$3*^1)4-6BVWYxqmE?Q6=wV*V%`KT+X`94ua znEdjSg>L+FHdsvXFho#aIOE1S)cdaCMZD$OL_hIs)WW-N{1wj;4{#E_zEPKxI7NIJ zOXQb3EXw#CwWWuye%`7HQ>ZOVqZX7$E$}MpDd{uEn0gE}NdnCA&?D194H9P_)qoKi z;p7!MC**X-X;-aS|B3O?e?Z%*1!!`*=zO&nrtRf;onpnd%*URM<+XMDsadhESMP5< z=p33K4eNGorCPIlo_es5zLZO6GpS6Wn78MxL}^=IPT#P)^H9rmavWTyMGwLxL>Jhwy6}82@*>v8@6#4k8uMV zxPzg9_kQ1aj#2V=D23Z7h2OBw<$q8L9rk$pPEpp^W_^ne_0@w(Ji7^{J~6|_Ut=QZ zU9f^-^1GPADoWStn7{^(;}b69H?CqPvc+<))O@s0EWH-oY_@_`OBcd3|JkBAuK)l5 diff --git a/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po index 94682f4537..45bf6ff901 100644 --- a/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-03-21 16:48-0400\n" -"PO-Revision-Date: 2015-09-24 05:16+0000\n" +"PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:29 permissions.py:7 @@ -42,7 +41,7 @@ msgstr "" #: apps.py:55 msgid "Email" -msgstr "" +msgstr "电子邮件" #: apps.py:58 msgid "Active" @@ -74,7 +73,7 @@ msgstr "" #: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" -msgstr "" +msgstr "用户组" #: links.py:38 views.py:197 msgid "Create new user" @@ -82,7 +81,7 @@ msgstr "" #: links.py:54 links.py:70 views.py:169 msgid "Users" -msgstr "" +msgstr "用户" #: links.py:62 links.py:66 msgid "Reset password" @@ -127,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -188,11 +188,13 @@ msgstr "删除用户: \"%(user)s\": %(error)s出错。" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" From c9010f6b5efaa324eeafc79ab3103024c38c559a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 17:42:24 -0400 Subject: [PATCH 119/205] Add test for the document link mailing view. --- mayan/apps/mailer/apps.py | 1 + mayan/apps/mailer/tests/__init__.py | 0 mayan/apps/mailer/tests/test_views.py | 56 +++++++++++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 mayan/apps/mailer/tests/__init__.py create mode 100644 mayan/apps/mailer/tests/test_views.py diff --git a/mayan/apps/mailer/apps.py b/mayan/apps/mailer/apps.py index 1313135125..27c2f23a54 100644 --- a/mayan/apps/mailer/apps.py +++ b/mayan/apps/mailer/apps.py @@ -21,6 +21,7 @@ from .permissions import ( class MailerApp(MayanAppConfig): name = 'mailer' + test = True verbose_name = _('Mailer') def ready(self): diff --git a/mayan/apps/mailer/tests/__init__.py b/mayan/apps/mailer/tests/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/mayan/apps/mailer/tests/test_views.py b/mayan/apps/mailer/tests/test_views.py new file mode 100644 index 0000000000..f57d28399e --- /dev/null +++ b/mayan/apps/mailer/tests/test_views.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- + +from __future__ import unicode_literals + +from django.contrib.contenttypes.models import ContentType +from django.core import mail +from django.test import override_settings +from django.utils.six import BytesIO + +from common.tests.test_views import GenericViewTestCase +from documents.tests.test_views import GenericDocumentViewTestCase +from user_management.tests.literals import ( + TEST_USER_PASSWORD, TEST_USER_USERNAME +) + +from ..models import LogEntry +from ..permissions import ( + permission_mailing_link, permission_mailing_send_document, + permission_view_error_log +) + +TEST_EMAIL_ADDRESS = 'test@example.com' + + +class MailerViewsTestCase(GenericDocumentViewTestCase): + def test_mail_link_view_no_permissions(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + response = self.post( + 'mailer:send_document_link', args=(self.document.pk,), + data={'email': TEST_EMAIL_ADDRESS}, + ) + + self.assertEqual(response.status_code, 302) + + def test_mail_link_view_with_permission(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + self.role.permissions.add( + permission_mailing_link.stored_permission + ) + response = self.post( + 'mailer:send_document_link', args=(self.document.pk,), + data={'email': TEST_EMAIL_ADDRESS}, + follow=True + ) + + self.assertContains( + response, 'queued', status_code=200 + ) + self.assertEqual(len(mail.outbox), 1) + self.assertEqual(mail.outbox[0].to, [TEST_EMAIL_ADDRESS]) From ccd6e8c88c9a15fba4f0c692d43a9437d9260e36 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 18:59:22 -0400 Subject: [PATCH 120/205] Add document mailing view tests. --- mayan/apps/mailer/tests/test_views.py | 38 ++++++++++++++++++++++----- 1 file changed, 32 insertions(+), 6 deletions(-) diff --git a/mayan/apps/mailer/tests/test_views.py b/mayan/apps/mailer/tests/test_views.py index f57d28399e..6bd26e7fb8 100644 --- a/mayan/apps/mailer/tests/test_views.py +++ b/mayan/apps/mailer/tests/test_views.py @@ -1,13 +1,7 @@ -# -*- coding: utf-8 -*- - from __future__ import unicode_literals -from django.contrib.contenttypes.models import ContentType from django.core import mail -from django.test import override_settings -from django.utils.six import BytesIO -from common.tests.test_views import GenericViewTestCase from documents.tests.test_views import GenericDocumentViewTestCase from user_management.tests.literals import ( TEST_USER_PASSWORD, TEST_USER_USERNAME @@ -54,3 +48,35 @@ class MailerViewsTestCase(GenericDocumentViewTestCase): ) self.assertEqual(len(mail.outbox), 1) self.assertEqual(mail.outbox[0].to, [TEST_EMAIL_ADDRESS]) + + def test_mail_document_view_no_permissions(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + response = self.post( + 'mailer:send_document', args=(self.document.pk,), + data={'email': TEST_EMAIL_ADDRESS}, + ) + + self.assertEqual(response.status_code, 302) + + def test_mail_document_view_with_permission(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + self.role.permissions.add( + permission_mailing_send_document.stored_permission + ) + response = self.post( + 'mailer:send_document', args=(self.document.pk,), + data={'email': TEST_EMAIL_ADDRESS}, + follow=True + ) + + self.assertContains( + response, 'queued', status_code=200 + ) + self.assertEqual(len(mail.outbox), 1) + self.assertEqual(mail.outbox[0].to, [TEST_EMAIL_ADDRESS]) From dc5d25fd0095c4db1845a50b449e27bc9f352caa Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 22 Mar 2016 05:10:54 -0400 Subject: [PATCH 121/205] Initial code for database stored GPG keys. --- mayan/apps/django_gpg/admin.py | 27 ++++ .../django_gpg/migrations/0001_initial.py | 32 +++++ mayan/apps/django_gpg/migrations/__init__.py | 0 mayan/apps/django_gpg/models.py | 130 ++++++++++++++++++ 4 files changed, 189 insertions(+) create mode 100644 mayan/apps/django_gpg/admin.py create mode 100644 mayan/apps/django_gpg/migrations/0001_initial.py create mode 100644 mayan/apps/django_gpg/migrations/__init__.py create mode 100644 mayan/apps/django_gpg/models.py diff --git a/mayan/apps/django_gpg/admin.py b/mayan/apps/django_gpg/admin.py new file mode 100644 index 0000000000..4de5c004be --- /dev/null +++ b/mayan/apps/django_gpg/admin.py @@ -0,0 +1,27 @@ +from __future__ import unicode_literals + +from django.contrib import admin + +from .models import Key + + +@admin.register(Key) +class KeyAdmin(admin.ModelAdmin): + #date_hierarchy = 'datetime' + list_display = ('key_id', 'user_id', 'key_type') + #readonly_fields = list_display + + """ + key_id = models.CharField( + max_length=16, unique=True, verbose_name=_('Key ID') + ) + creation_date = models.DateField(verbose_name=_('Creation date')) + expiration_date = models.DateField(verbose_name=_('Expiration date')) + fingerprint = models.CharField( + max_length=40, verbose_name=_('Fingerprint') + ) + length = models.PositiveIntegerField(verbose_name=_('Length')) + algorithm = models.PositiveIntegerField(verbose_name=_('Algorithm')) + user_id = models.TextField(verbose_name=_('User ID')) + key_type = models.CharField(max_length=3, verbose_name=_('Type')) + """ diff --git a/mayan/apps/django_gpg/migrations/0001_initial.py b/mayan/apps/django_gpg/migrations/0001_initial.py new file mode 100644 index 0000000000..df1505e689 --- /dev/null +++ b/mayan/apps/django_gpg/migrations/0001_initial.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Key', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('data', models.TextField(verbose_name='Data')), + ('key_id', models.CharField(unique=True, max_length=16, verbose_name='Key ID')), + ('creation_date', models.DateField(verbose_name='Creation date')), + ('expiration_date', models.DateField(null=True, verbose_name='Expiration date', blank=True)), + ('fingerprint', models.CharField(unique=True, max_length=40, verbose_name='Fingerprint')), + ('length', models.PositiveIntegerField(verbose_name='Length')), + ('algorithm', models.PositiveIntegerField(verbose_name='Algorithm')), + ('user_id', models.TextField(verbose_name='User ID')), + ('key_type', models.CharField(max_length=3, verbose_name='Type')), + ], + options={ + 'verbose_name': 'Key', + 'verbose_name_plural': 'Keys', + }, + ), + ] diff --git a/mayan/apps/django_gpg/migrations/__init__.py b/mayan/apps/django_gpg/migrations/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/mayan/apps/django_gpg/models.py b/mayan/apps/django_gpg/models.py new file mode 100644 index 0000000000..49f7763b51 --- /dev/null +++ b/mayan/apps/django_gpg/models.py @@ -0,0 +1,130 @@ +from __future__ import absolute_import, unicode_literals + +try: + from cStringIO import StringIO +except ImportError: + from StringIO import StringIO + +from datetime import date +import logging +import os +import shutil +import tempfile + +import gnupg + +from django.conf import settings +from django.core.exceptions import PermissionDenied +from django.core.files import File +from django.core.urlresolvers import reverse +from django.db import models, transaction +from django.utils.encoding import python_2_unicode_compatible +from django.utils.timezone import now +from django.utils.translation import ugettext, ugettext_lazy as _ + +from .settings import setting_gpg_path, setting_keyservers + +logger = logging.getLogger(__name__) + + +class KeyManager(models.Manager): + def receive_key(self, key_id): + temporary_directory = tempfile.mkdtemp() + + os.chmod(temporary_directory, 0x1C0) + + gpg = gnupg.GPG( + gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value + ) + + import_results = gpg.recv_keys(setting_keyservers.value[0], key_id) + + key_data = gpg.export_keys(import_results.fingerprints[0]) + + shutil.rmtree(temporary_directory) + + return self.create(data=key_data) + + def search(self, query): + temporary_directory = tempfile.mkdtemp() + + gpg = gnupg.GPG( + gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value + ) + + result = gpg.search_keys(query=query, keyserver=setting_keyservers.value[0]) + shutil.rmtree(temporary_directory) + + return result + + +@python_2_unicode_compatible +class Key(models.Model): + data = models.TextField(verbose_name=_('Data')) + key_id = models.CharField( + max_length=16, unique=True, verbose_name=_('Key ID') + ) + creation_date = models.DateField(verbose_name=_('Creation date')) + expiration_date = models.DateField( + blank=True, null=True, verbose_name=_('Expiration date') + ) + fingerprint = models.CharField( + max_length=40, unique=True, verbose_name=_('Fingerprint') + ) + length = models.PositiveIntegerField(verbose_name=_('Length')) + algorithm = models.PositiveIntegerField(verbose_name=_('Algorithm')) + user_id = models.TextField(verbose_name=_('User ID')) + key_type = models.CharField(max_length=3, verbose_name=_('Type')) + + objects = KeyManager() + + class Meta: + verbose_name = _('Key') + verbose_name_plural = _('Keys') + + def save(self, *args, **kwargs): + temporary_directory = tempfile.mkdtemp() + + logger.debug('temporary_directory: %s', temporary_directory) + + gpg = gnupg.GPG( + gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value + ) + + import_results = gpg.import_keys(key_data=self.data) + + logger.debug('import_results.results: %s', import_results.results) + logger.debug('import_results.fingerprints: %s', import_results.fingerprints) + + key_data = gpg.list_keys(keys=import_results.fingerprints[0])[0] + + logger.debug('key_data: %s', key_data) + + shutil.rmtree(temporary_directory) + + self.key_id = key_data['keyid'] + self.algorithm = key_data['algo'] + self.creation_date = date.fromtimestamp(int(key_data['date'])) + if key_data['expires']: + self.expiration_date = date.fromtimestamp(int(key_data['expires'])) + self.fingerprint = key_data['fingerprint'] + self.length = int(key_data['length']) + self.user_id = key_data['uids'][0] + self.key_type = key_data['type'] + + super(Key, self).save(*args, **kwargs) + + def __str__(self): + return self.key_id + + def sign_file(self, file_object, passphrase=None, clearsign=True, detach=False, binary=False): + output = StringIO() + + temporary_directory = tempfile.mkdtemp() + + gpg = gnupg.GPG( + gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value + ) + + import_results = gpg.import_keys(key_data=self.data) + From 189cda437fec933f036d41fa011e6dd8c7f3f956 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 22 Mar 2016 18:02:40 -0400 Subject: [PATCH 122/205] Add model test. Finish file signing method. Add key signing exceptions. --- mayan/apps/django_gpg/admin.py | 22 +-- mayan/apps/django_gpg/exceptions.py | 12 ++ mayan/apps/django_gpg/literals.py | 8 + .../migrations/0002_auto_20160322_1756.py | 24 +++ .../migrations/0003_auto_20160322_1810.py | 59 ++++++++ .../migrations/0004_auto_20160322_2202.py | 24 +++ mayan/apps/django_gpg/models.py | 141 ++++++++++++------ mayan/apps/django_gpg/settings.py | 12 +- mayan/apps/django_gpg/tests/literals.py | 63 ++++++++ mayan/apps/django_gpg/tests/test_models.py | 16 ++ 10 files changed, 316 insertions(+), 65 deletions(-) create mode 100644 mayan/apps/django_gpg/migrations/0002_auto_20160322_1756.py create mode 100644 mayan/apps/django_gpg/migrations/0003_auto_20160322_1810.py create mode 100644 mayan/apps/django_gpg/migrations/0004_auto_20160322_2202.py create mode 100644 mayan/apps/django_gpg/tests/test_models.py diff --git a/mayan/apps/django_gpg/admin.py b/mayan/apps/django_gpg/admin.py index 4de5c004be..8aa6c2872d 100644 --- a/mayan/apps/django_gpg/admin.py +++ b/mayan/apps/django_gpg/admin.py @@ -7,21 +7,9 @@ from .models import Key @admin.register(Key) class KeyAdmin(admin.ModelAdmin): - #date_hierarchy = 'datetime' - list_display = ('key_id', 'user_id', 'key_type') - #readonly_fields = list_display - - """ - key_id = models.CharField( - max_length=16, unique=True, verbose_name=_('Key ID') + list_display = ( + 'key_id', 'user_id', 'creation_date', 'expiration_date', 'key_type' ) - creation_date = models.DateField(verbose_name=_('Creation date')) - expiration_date = models.DateField(verbose_name=_('Expiration date')) - fingerprint = models.CharField( - max_length=40, verbose_name=_('Fingerprint') - ) - length = models.PositiveIntegerField(verbose_name=_('Length')) - algorithm = models.PositiveIntegerField(verbose_name=_('Algorithm')) - user_id = models.TextField(verbose_name=_('User ID')) - key_type = models.CharField(max_length=3, verbose_name=_('Type')) - """ + list_filter = ('key_type',) + readonly_fields = list_display + ('fingerprint', 'length', 'algorithm') + search_fields = ('key_id', 'user_id',) diff --git a/mayan/apps/django_gpg/exceptions.py b/mayan/apps/django_gpg/exceptions.py index e9473a61bf..31691d4a42 100644 --- a/mayan/apps/django_gpg/exceptions.py +++ b/mayan/apps/django_gpg/exceptions.py @@ -39,3 +39,15 @@ class KeyDoesNotExist(GPGException): class KeyImportError(GPGException): pass + + +class NeedPassphrase(GPGException): + """ + Passphrase is needed but none was provided + """ + + +class PassphraseError(GPGException): + """ + Passphrase provided is incorrect + """ diff --git a/mayan/apps/django_gpg/literals.py b/mayan/apps/django_gpg/literals.py index 85b75e061f..2a8b14997a 100644 --- a/mayan/apps/django_gpg/literals.py +++ b/mayan/apps/django_gpg/literals.py @@ -7,6 +7,14 @@ KEY_TYPES = { 'sec': _('Secret'), } +KEY_TYPE_PUBLIC = 'pub' +KEY_TYPE_SECRET = 'sec' + +KEY_TYPE_CHOICES = ( + (KEY_TYPE_PUBLIC, _('Public')), + (KEY_TYPE_SECRET, _('Secret')), +) + KEY_CLASS_RSA = 'RSA' KEY_CLASS_DSA = 'DSA' KEY_CLASS_ELG = 'ELG-E' diff --git a/mayan/apps/django_gpg/migrations/0002_auto_20160322_1756.py b/mayan/apps/django_gpg/migrations/0002_auto_20160322_1756.py new file mode 100644 index 0000000000..fd085a20d6 --- /dev/null +++ b/mayan/apps/django_gpg/migrations/0002_auto_20160322_1756.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('django_gpg', '0001_initial'), + ] + + operations = [ + migrations.RemoveField( + model_name='key', + name='data', + ), + migrations.AddField( + model_name='key', + name='key_data', + field=models.TextField(default='', verbose_name='Key data'), + preserve_default=False, + ), + ] diff --git a/mayan/apps/django_gpg/migrations/0003_auto_20160322_1810.py b/mayan/apps/django_gpg/migrations/0003_auto_20160322_1810.py new file mode 100644 index 0000000000..40689f948e --- /dev/null +++ b/mayan/apps/django_gpg/migrations/0003_auto_20160322_1810.py @@ -0,0 +1,59 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('django_gpg', '0002_auto_20160322_1756'), + ] + + operations = [ + migrations.AlterField( + model_name='key', + name='algorithm', + field=models.PositiveIntegerField(verbose_name='Algorithm', editable=False), + ), + migrations.AlterField( + model_name='key', + name='creation_date', + field=models.DateField(verbose_name='Creation date', editable=False), + ), + migrations.AlterField( + model_name='key', + name='expiration_date', + field=models.DateField(verbose_name='Expiration date', null=True, editable=False, blank=True), + ), + migrations.AlterField( + model_name='key', + name='fingerprint', + field=models.CharField(verbose_name='Fingerprint', unique=True, max_length=40, editable=False), + ), + migrations.AlterField( + model_name='key', + name='key_data', + field=models.TextField(verbose_name='Key data', editable=False), + ), + migrations.AlterField( + model_name='key', + name='key_id', + field=models.CharField(verbose_name='Key ID', unique=True, max_length=16, editable=False), + ), + migrations.AlterField( + model_name='key', + name='key_type', + field=models.CharField(verbose_name='Type', max_length=3, editable=False), + ), + migrations.AlterField( + model_name='key', + name='length', + field=models.PositiveIntegerField(verbose_name='Length', editable=False), + ), + migrations.AlterField( + model_name='key', + name='user_id', + field=models.TextField(verbose_name='User ID', editable=False), + ), + ] diff --git a/mayan/apps/django_gpg/migrations/0004_auto_20160322_2202.py b/mayan/apps/django_gpg/migrations/0004_auto_20160322_2202.py new file mode 100644 index 0000000000..a2bea9e955 --- /dev/null +++ b/mayan/apps/django_gpg/migrations/0004_auto_20160322_2202.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('django_gpg', '0003_auto_20160322_1810'), + ] + + operations = [ + migrations.AlterField( + model_name='key', + name='key_data', + field=models.TextField(verbose_name='Key data'), + ), + migrations.AlterField( + model_name='key', + name='key_type', + field=models.CharField(verbose_name='Type', max_length=3, editable=False, choices=[('pub', 'Public'), ('sec', 'Secret')]), + ), + ] diff --git a/mayan/apps/django_gpg/models.py b/mayan/apps/django_gpg/models.py index 49f7763b51..14bf97b1e9 100644 --- a/mayan/apps/django_gpg/models.py +++ b/mayan/apps/django_gpg/models.py @@ -1,10 +1,5 @@ from __future__ import absolute_import, unicode_literals -try: - from cStringIO import StringIO -except ImportError: - from StringIO import StringIO - from datetime import date import logging import os @@ -13,20 +8,37 @@ import tempfile import gnupg -from django.conf import settings -from django.core.exceptions import PermissionDenied -from django.core.files import File -from django.core.urlresolvers import reverse -from django.db import models, transaction +from django.core.exceptions import ValidationError +from django.db import models from django.utils.encoding import python_2_unicode_compatible -from django.utils.timezone import now -from django.utils.translation import ugettext, ugettext_lazy as _ +from django.utils.translation import ugettext_lazy as _ -from .settings import setting_gpg_path, setting_keyservers +from .literals import KEY_TYPE_CHOICES, KEY_TYPE_SECRET +from .exceptions import NeedPassphrase, PassphraseError +from .settings import setting_gpg_path, setting_keyserver +ERROR_MSG_NEED_PASSPHRASE = 'NEED_PASSPHRASE' +ERROR_MSG_BAD_PASSPHRASE = 'BAD_PASSPHRASE' +ERROR_MSG_GOOD_PASSPHRASE = 'GOOD_PASSPHRASE' +OUTPUT_MESSAGE_CONTAINS_PRIVATE_KEY = 'Contains private key' logger = logging.getLogger(__name__) +def gpg_command(function): + temporary_directory = tempfile.mkdtemp() + os.chmod(temporary_directory, 0x1C0) + + gpg = gnupg.GPG( + gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value + ) + + result = function(gpg=gpg) + + shutil.rmtree(temporary_directory) + + return result + + class KeyManager(models.Manager): def receive_key(self, key_id): temporary_directory = tempfile.mkdtemp() @@ -37,7 +49,7 @@ class KeyManager(models.Manager): gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value ) - import_results = gpg.recv_keys(setting_keyservers.value[0], key_id) + import_results = gpg.recv_keys(setting_keyserver.value, key_id) key_data = gpg.export_keys(import_results.fingerprints[0]) @@ -52,29 +64,48 @@ class KeyManager(models.Manager): gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value ) - result = gpg.search_keys(query=query, keyserver=setting_keyservers.value[0]) + result = gpg.search_keys( + query=query, keyserver=setting_keyserver.value + ) shutil.rmtree(temporary_directory) return result + def public_keys(self): + return self.filter(key_type='pub') + + def private_keys(self): + return self.filter(key_type='') + @python_2_unicode_compatible class Key(models.Model): - data = models.TextField(verbose_name=_('Data')) + key_data = models.TextField(verbose_name=_('Key data')) key_id = models.CharField( - max_length=16, unique=True, verbose_name=_('Key ID') + editable=False, max_length=16, unique=True, verbose_name=_('Key ID') + ) + creation_date = models.DateField( + editable=False, verbose_name=_('Creation date') ) - creation_date = models.DateField(verbose_name=_('Creation date')) expiration_date = models.DateField( - blank=True, null=True, verbose_name=_('Expiration date') + blank=True, editable=False, null=True, + verbose_name=_('Expiration date') ) fingerprint = models.CharField( - max_length=40, unique=True, verbose_name=_('Fingerprint') + editable=False, max_length=40, unique=True, + verbose_name=_('Fingerprint') + ) + length = models.PositiveIntegerField( + editable=False, verbose_name=_('Length') + ) + algorithm = models.PositiveIntegerField( + editable=False, verbose_name=_('Algorithm') + ) + user_id = models.TextField(editable=False, verbose_name=_('User ID')) + key_type = models.CharField( + choices=KEY_TYPE_CHOICES, editable=False, max_length=3, + verbose_name=_('Type') ) - length = models.PositiveIntegerField(verbose_name=_('Length')) - algorithm = models.PositiveIntegerField(verbose_name=_('Algorithm')) - user_id = models.TextField(verbose_name=_('User ID')) - key_type = models.CharField(max_length=3, verbose_name=_('Type')) objects = KeyManager() @@ -82,44 +113,49 @@ class Key(models.Model): verbose_name = _('Key') verbose_name_plural = _('Keys') + def clean(self): + def import_key(gpg): + return gpg.import_keys(key_data=self.key_data) + + import_results = gpg_command(function=import_key) + + if not import_results.count: + raise ValidationError('Invalid key data') + def save(self, *args, **kwargs): temporary_directory = tempfile.mkdtemp() - logger.debug('temporary_directory: %s', temporary_directory) - gpg = gnupg.GPG( gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value ) - import_results = gpg.import_keys(key_data=self.data) + import_results = gpg.import_keys(key_data=self.key_data) - logger.debug('import_results.results: %s', import_results.results) - logger.debug('import_results.fingerprints: %s', import_results.fingerprints) + key_info = gpg.list_keys(keys=import_results.fingerprints[0])[0] - key_data = gpg.list_keys(keys=import_results.fingerprints[0])[0] - - logger.debug('key_data: %s', key_data) + logger.debug('key_info: %s', key_info) shutil.rmtree(temporary_directory) - self.key_id = key_data['keyid'] - self.algorithm = key_data['algo'] - self.creation_date = date.fromtimestamp(int(key_data['date'])) - if key_data['expires']: - self.expiration_date = date.fromtimestamp(int(key_data['expires'])) - self.fingerprint = key_data['fingerprint'] - self.length = int(key_data['length']) - self.user_id = key_data['uids'][0] - self.key_type = key_data['type'] + self.key_id = key_info['keyid'] + self.algorithm = key_info['algo'] + self.creation_date = date.fromtimestamp(int(key_info['date'])) + if key_info['expires']: + self.expiration_date = date.fromtimestamp(int(key_info['expires'])) + self.fingerprint = key_info['fingerprint'] + self.length = int(key_info['length']) + self.user_id = key_info['uids'][0] + if OUTPUT_MESSAGE_CONTAINS_PRIVATE_KEY in import_results.results[0]['text']: + self.key_type = KEY_TYPE_SECRET + else: + self.key_type = key_info['type'] super(Key, self).save(*args, **kwargs) def __str__(self): return self.key_id - def sign_file(self, file_object, passphrase=None, clearsign=True, detach=False, binary=False): - output = StringIO() - + def sign_file(self, file_object, passphrase=None, clearsign=True, detached=False, binary=False, output=None): temporary_directory = tempfile.mkdtemp() gpg = gnupg.GPG( @@ -128,3 +164,20 @@ class Key(models.Model): import_results = gpg.import_keys(key_data=self.data) + file_sign_results = gpg.sign_file( + file=file_object, keyid=import_results.fingerprints[0], + passphrase=passphrase, clearsign=clearsign, detach=detached, + binary=binary, output=output + ) + + shutil.rmtree(temporary_directory) + + logger.debug('file_sign_results.stderr: %s', file_sign_results.stderr) + + if ERROR_MSG_NEED_PASSPHRASE in file_sign_results.stderr: + if ERROR_MSG_BAD_PASSPHRASE in file_sign_results.stderr: + raise PassphraseError + elif ERROR_MSG_GOOD_PASSPHRASE not in file_sign_results.stderr: + raise NeedPassphrase + + return file_sign_results diff --git a/mayan/apps/django_gpg/settings.py b/mayan/apps/django_gpg/settings.py index 10d7464fb1..c7d3da34f1 100644 --- a/mayan/apps/django_gpg/settings.py +++ b/mayan/apps/django_gpg/settings.py @@ -8,10 +8,6 @@ from django.utils.translation import ugettext_lazy as _ from smart_settings import Namespace namespace = Namespace(name='django_gpg', label=_('Signatures')) -setting_keyservers = namespace.add_setting( - global_name='SIGNATURES_KEYSERVERS', default=['pool.sks-keyservers.net'], - help_text=_('List of keyservers to be queried for unknown keys.') -) setting_gpg_home = namespace.add_setting( global_name='SIGNATURES_GPG_HOME', default=os.path.join(settings.MEDIA_ROOT, 'gpg_home'), @@ -24,3 +20,11 @@ setting_gpg_path = namespace.add_setting( global_name='SIGNATURES_GPG_PATH', default='/usr/bin/gpg', help_text=_('Path to the GPG binary.'), is_path=True ) +setting_keyserver = namespace.add_setting( + global_name='SIGNATURES_KEYSERVER', default='pool.sks-keyservers.net', + help_text=_('Keyserver used to query for keys.') +) +setting_keyservers = namespace.add_setting( + global_name='SIGNATURES_KEYSERVERS', default=['pool.sks-keyservers.net'], + help_text=_('List of keyservers to be queried for unknown keys.') +) diff --git a/mayan/apps/django_gpg/tests/literals.py b/mayan/apps/django_gpg/tests/literals.py index 6d18beb52d..822bdcd593 100644 --- a/mayan/apps/django_gpg/tests/literals.py +++ b/mayan/apps/django_gpg/tests/literals.py @@ -4,3 +4,66 @@ TEST_GPG_HOME = '/tmp/test_gpg_home' TEST_KEY_ID = '607138F1AECC5A5CA31CB7715F3F7F75D210724D' TEST_KEYSERVERS = ['pool.sks-keyservers.net'] TEST_UIDS = 'Roberto Rosario' + +TEST_KEY_DATA = '''-----BEGIN PGP PRIVATE KEY BLOCK----- +Version: GnuPG v1 + +lQO+BFbxfC8BCACnUZoD96W4+CSIaU9G8I08kXu2zJLzy2XgUtwLx8VQ8dOHr0E/ +UembHkjMeH6Gjxu2Yrrbl9/Anzd+lkP0L9BV7WqjXpHmPxuaRlsrNXuMyX0YWtjo +zvCo/mVBKEt1aEejuE6YbeZdBQraym32ew8hTXQhPwqbKPC9LTUa2tDjkJHs0DLU +5Hvg2/16IYd94ZHAH+wOa4WrR/6wU1VBfFCGBl+xbSvburLYDwhNZC9+sIu61BO8 +fZh48IIQ89Hin7cS/ovHTBF2Sr3n5yRzatV2eXXmT5AQdpTEpD3HPF82HXNRrSUK +I+BIoIGXnPg3wotOyahFGrC8RluY7QhU/KBdABEBAAH+AwMCyBnD0YX+KwtgKrBg +Nxz+lWc6bWQ4CvdxW4rlLTujXBbTYQ0YUpZ44qLXhq9Yso7760LF/ZZK4I12AZ+J +PCxubmYCBKg7HIHG1/tT6ACJyoWhCaO2rNXx7zh3SnYFNjvEoCUXoEoupoZ/Hk6J +NGCdJPUZe4mTY9lVHTSnwPusyGeSu9i51J4kREb0E1sN9UgMHNoJawu5BJw0Yl97 +wD0U1cP93BB9FA+3KHUZDcj0v5exSkvWO1HQKzkZAaWOPfHoGCVRRBe4fYhjgumv +cbu7p1ve4ysooOO28DD/bIgbLA9swQjJT9CgwTnudmrn+3PEY9ghPFm4pLjUMWBK +nkBsSGQ1y7rCeGNGg5lAAKQfzL7gseiS0f+lmfSXsl1VTFWI89cCwnP7rTYHjsyS +Fs1V5/HhwCUL3SVJL+p6VMtZ4VWVlZ+Hm27hD0VYnmvd/cO8h14NRF3R/If7Ut+8 +nqDwwtxTUPcDLzs2gbjGt9XhpVXCvoUExxZuf/q91wTUJGQ96wjKOopyH67i22m/ +Orr29VGdzaE9iLe+cicf4ZwwKLzLczTVSjk2KUpSFx5KaFMcekHaBo+h1ABYfYQd +DE+3zKnuVMgF3Z2VXdKj4meibByc0BvrILLhcZ08eqWAd+Duyo2eSZyWV+1FKbKw +qtzudRxKMtEh5h4y1vn4eRd1zEQPBG9m9CTLUeO0l60Q1/gy/VwmAsiJZkcI8KSS +9HVw672+Q3gAcblLyYJrIvKT2EyLD2rSijxgx61//s9UR9k0a9iFXB11FtQ6N3Ct ++msBMO3wFGviZ2iqWiMYiGDoIXMil6G1KtJLkDc5uDXFMc5see12vlsFmEDFScvj +Nnslh9ajbC+mfgRPZFtprtoaGFUd4VRDM7/rr7kuuCZFQ1QebEVjJjmQnfgpowa7 +C7QhRXhhbXBsZSBhZG1pbiA8YWRtaW5AZXhhbXBsZS5jb20+iQE4BBMBAgAiAhsD +BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAUCVvGFyAAKCRBBJenFcfN4rIwSB/4l +PbS0F8tGtetzPIgPYerI2OwZDbVyrTVGbrY0ZJJfWXR0vyTJ38s3dZNC22ct3+g1 +t1RVxFGssSZYW0StlPyb2u+5VUI4LDWmbaDL3QbN5KTkyXtGLaWUwJ/TC4EkAKEa +8HKqRpZOfeUj4gTIm2uwpYwihyVY2M6EW6we5DUOScX1kIO/VTB+QWChFcLEjZb3 +LdSSOEKI56QHV/Sxn38jp0tD7E/yBBVw+HhFamhqwrYTnxy2/W/xHBvWQk34ZnTf +o/mZyBlWz5h6JaKhHyw0akRQbBSfo3huW6+RKI3QHj82f85zv01Uzvjxvaz/N5SP +/MuHTPgG8g69Bg4Ik6jjnQO+BFbxfC8BCADQYEUpx79976Ut5ZtMj3CNpndUWHB1 +l2wa/vd+Gb6Yzm+/hu3t5GG8uxzFk9TC33G7/Ugyob2V0eVXS8rqIbiqbRW7Nmb6 +RF4xeEZkUlLTmzXu9vJLRCW0f0ui+YJz6Rdgn4BCRJ+/OkLIoB9axDxDL+961ftw +LqBTK3IpQc+VwjBLPTofApJGjM/pExJDskAi4IJpd8sz5Djc7MkF/tANSWVdvNOA +lTIWZkfSiY2cThmC1WgL1KfSSYcFH0Z6/8M2qzF/9+D//j7WSq2GPahqVueVIE4r +CIi3ffayXdPsiEzgkZqJxeZyt8ht74qTgZhAhmIxnobrLg1nbwOVGx0tABEBAAH+ +AwMCyBnD0YX+Kwtgqas29fXB07iu+YJbSEXDsg56zrdDBToOFODrpRsqQtVofRyO +1GVDt1qE8jJF+zxnxSWawFLwR3mUs8/RKmdOm9cLnsadjCSWXWXPgb0w5mzcaVBa +tn9CtnF2G30D77LtBrkhnKtmjpW2Etudd7wkBYtSL4mqADX+8SgbFlR5jYtlFcUl +6HziXFzFSDEJ3YOE4LMm39pk+p7Kn/1GvxLleXu46uQZU3yEUxmnrHFSmolehWJk +1OR6CZ4SDmsKyFF9aNJPo+0ytU/VyOOuruaEQwp6r+zuM9sanrZJVGwlN5PRhfmr ++TrUwStsh2sdKrQ10xDxBBp7xThR3wz3+REO2c6uIEIkXhSAOARK1EQGXpAeK35x +uAUief4yMMiBKweKADT9ic36xxmc52Ov7Nrkwgj8PXma3gWiktTPhGWLZQ/YdXTW +fV+IwDShJEmTPOAAtxqPljj9isC1qPS2ylJXrHyws3jz0xIMYe8GbgK1UmURC7DI +CAXC4K6x5/3Uuz+kirbQRXVt1c8O8azy/Zc9a97qodWd7NBHTAr8xk2JlcesjHmk +rGSKsm53sGV0PTweoi4n1YiEE6yBpCEoobcAABWfojCYIe5W54PTf7nkc+Ayzd9t +7ipTELF8RKHHBU42penurBAX+U3aSe6rUfhlTuVs8KykzT/4pQeUzndNYQos6KLH +C50CHXQbeLchdvDAzO0j80j8YGciRv0U+juaZMct+NCi/SNU46RD7qs85M9rB77/ +GzOyrpsfVA0lfS5Z/g25+TqxEBTypiGMSh5Exza1Nwc2tIRExoYThW22SAM2PWqg +zw+aeNyC4uJWc9Qzf9sVMC1vaUUkf7cRMl8Lh7fNkX/sBUB4X8E3IG2UpeHKiWxp +UjRRioHbL6k8qEviaSyJLIkBJQQYAQIADwUCVvF8LwIbDAUJAA0vAAAKCRBBJenF +cfN4rAkxB/9Xyvsny6iBY1aFrIr2roOyXg1rX+NjEfo+HZqUIjpESQcviIatQcGB +1MVnvABVKCQWzQyoIkOyAmTUHKb0aLDynDblIctMVOy80wEtWRHcMQo4PzGUPJn3 +hZOukiotQTeawLvyeoBY1M4FJaCvPYvUNl+PEUVLi2h2VFkANrtzJMjZpmI5iR62 +h4oCbUV5JHhOyB+89Y1w8haFU9LrgOER2kXff1xU6wMfLdcO5ApV/sRJcNdYL7Cg +7nJLpOu33rvGW97adFMStZxXz4k+VXLErvtkT72XZX9TjS8hmIRxHKZgpb12ZkUe +8aeg3z/W+YctdRt81bi5isgM+oML9LAQ +=JZ5G +-----END PGP PRIVATE KEY BLOCK-----''' + +TEST_KEY_ID = '4125E9C571F378AC' +TEST_KEY_FINGERPRINT = '6A24574E0A35004CDDFD22704125E9C571F378AC' diff --git a/mayan/apps/django_gpg/tests/test_models.py b/mayan/apps/django_gpg/tests/test_models.py new file mode 100644 index 0000000000..69d74f3b04 --- /dev/null +++ b/mayan/apps/django_gpg/tests/test_models.py @@ -0,0 +1,16 @@ +from __future__ import unicode_literals + +from django.test import TestCase + +from ..models import Key + +from .literals import TEST_KEY_DATA, TEST_KEY_FINGERPRINT, TEST_KEY_ID + + +class KeyTestCase(TestCase): + def test_key_instance_creation(self): + # Creating a Key instance is analogous to importing a key + key = Key.objects.create(key_data=TEST_KEY_DATA) + + self.assertEqual(key.key_id, TEST_KEY_ID) + self.assertEqual(key.fingerprint, TEST_KEY_FINGERPRINT) From 2748d5959fa17c90542c60acb740cb6002ec1486 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 23 Mar 2016 00:35:32 -0400 Subject: [PATCH 123/205] Place KeyManage on a seprate module. Convert views to use the new Key model. Add KeyStub class and use it to return query results. Add Key detail link and view. Remove the setting for multiple keyservers. --- mayan/apps/django_gpg/apps.py | 57 +++++++--- mayan/apps/django_gpg/classes.py | 11 ++ mayan/apps/django_gpg/forms.py | 38 +++++++ mayan/apps/django_gpg/links.py | 15 ++- mayan/apps/django_gpg/literals.py | 5 + mayan/apps/django_gpg/managers.py | 59 ++++++++++ mayan/apps/django_gpg/models.py | 56 ++-------- mayan/apps/django_gpg/permissions.py | 12 +- mayan/apps/django_gpg/runtime.py | 7 -- mayan/apps/django_gpg/settings.py | 4 - mayan/apps/django_gpg/urls.py | 13 ++- mayan/apps/django_gpg/views.py | 158 ++++++++++++--------------- 12 files changed, 259 insertions(+), 176 deletions(-) create mode 100644 mayan/apps/django_gpg/classes.py create mode 100644 mayan/apps/django_gpg/managers.py delete mode 100644 mayan/apps/django_gpg/runtime.py diff --git a/mayan/apps/django_gpg/apps.py b/mayan/apps/django_gpg/apps.py index b972569438..1062fbf3a4 100644 --- a/mayan/apps/django_gpg/apps.py +++ b/mayan/apps/django_gpg/apps.py @@ -1,18 +1,24 @@ -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals from datetime import datetime from django.utils.translation import ugettext_lazy as _ -from common import MayanAppConfig, menu_object, menu_setup, menu_sidebar +from acls import ModelPermission +from acls.links import link_acl_list +from acls.permissions import permission_acl_edit, permission_acl_view +from common import ( + MayanAppConfig, menu_facet, menu_object, menu_setup, menu_sidebar +) from common.classes import Package from navigation import SourceColumn -from .api import Key, KeyStub +from .classes import KeyStub from .links import ( - link_key_delete, link_key_query, link_key_receive, link_key_setup, - link_public_keys + link_key_delete, link_key_detail, link_key_query, link_key_receive, + link_key_setup, link_private_keys, link_public_keys ) +from .permissions import permission_key_delete, permission_key_view class DjangoGPGApp(MayanAppConfig): @@ -24,6 +30,15 @@ class DjangoGPGApp(MayanAppConfig): def ready(self): super(DjangoGPGApp, self).ready() + Key = self.get_model('Key') + + ModelPermission.register( + model=Key, permissions=( + permission_acl_edit, permission_acl_view, + permission_key_delete, permission_key_view + ) + ) + Package(label='python-gnupg', license_text=''' Copyright (c) 2008-2014 by Vinay Sajip. All rights reserved. @@ -52,11 +67,8 @@ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ''') - SourceColumn(source=Key, label=_('ID'), attribute='key_id') - SourceColumn( - source=Key, label=_('Owner'), - func=lambda context: ', '.join(context['object'].uids) - ) + SourceColumn(source=Key, label=_('Key ID'), attribute='key_id') + SourceColumn(source=Key, label=_('User ID'), attribute='user_id') SourceColumn( source=KeyStub, label=_('ID'), @@ -75,17 +87,30 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ) SourceColumn(source=KeyStub, label=_('Length'), attribute='length') SourceColumn( - source=KeyStub, label=_('Identities'), + source=KeyStub, label=_('User ID'), func=lambda context: ', '.join(context['object'].uids) ) - menu_object.bind_links(links=(link_key_delete,), sources=(Key,)) + menu_object.bind_links(links=(link_key_detail,), sources=(Key,)) menu_object.bind_links(links=(link_key_receive,), sources=(KeyStub,)) + + menu_object.bind_links( + links=(link_acl_list, link_key_delete,), sources=(Key,) + ) menu_setup.bind_links(links=(link_key_setup,)) - menu_sidebar.bind_links( - links=(link_public_keys, link_key_query), + menu_facet.bind_links( + links=(link_private_keys, link_public_keys), sources=( - 'django_gpg:key_delete', 'django_gpg:key_public_list', - 'django_gpg:key_query', 'django_gpg:key_query_results', + 'django_gpg:key_public_list', 'django_gpg:key_private_list', + 'django_gpg:key_query', 'django_gpg:key_query_results', Key, + KeyStub + ) + ) + menu_sidebar.bind_links( + links=(link_key_query,), + sources=( + 'django_gpg:key_public_list', 'django_gpg:key_private_list', + 'django_gpg:key_query', 'django_gpg:key_query_results', Key, + KeyStub ) ) diff --git a/mayan/apps/django_gpg/classes.py b/mayan/apps/django_gpg/classes.py new file mode 100644 index 0000000000..6d72870e38 --- /dev/null +++ b/mayan/apps/django_gpg/classes.py @@ -0,0 +1,11 @@ +from __future__ import absolute_import, unicode_literals + + +class KeyStub(object): + def __init__(self, raw): + self.key_id = raw['keyid'] + self.key_type = raw['type'] + self.date = raw['date'] + self.expires = raw['expires'] + self.length = raw['length'] + self.uids = raw['uids'] diff --git a/mayan/apps/django_gpg/forms.py b/mayan/apps/django_gpg/forms.py index c58b0eb02f..ecc934db39 100644 --- a/mayan/apps/django_gpg/forms.py +++ b/mayan/apps/django_gpg/forms.py @@ -1,8 +1,46 @@ from __future__ import unicode_literals from django import forms +from django.utils.html import escape from django.utils.translation import ugettext_lazy as _ +from common.forms import DetailForm + +from .models import Key + + +class KeyDetailForm(DetailForm): + def __init__(self, *args, **kwargs): + instance = kwargs['instance'] + + extra_fields = ( + {'label': _('Key ID'), 'field': 'key_id'}, + { + 'label': _('User ID'), + 'field': lambda x: escape(instance.user_id), + }, + { + 'label': _('Creation date'), 'field': 'creation_date', + 'widget': forms.widgets.DateInput + }, + { + 'label': _('Expiration date'), + 'field': lambda x: instance.expiration_date or _('None'), + 'widget': forms.widgets.DateInput + }, + {'label': _('Fingerprint'), 'field': 'fingerprint'}, + {'label': _('length'), 'field': 'length'}, + {'label': _('algorithm'), 'field': 'algorithm'}, + {'label': _('key_type'), 'field': 'key_type'}, + ) + + kwargs['extra_fields'] = extra_fields + super(KeyDetailForm, self).__init__(*args, **kwargs) + + class Meta: + fields = () + model = Key + class KeySearchForm(forms.Form): term = forms.CharField( diff --git a/mayan/apps/django_gpg/links.py b/mayan/apps/django_gpg/links.py index 2f71491674..3a6cda3ee0 100644 --- a/mayan/apps/django_gpg/links.py +++ b/mayan/apps/django_gpg/links.py @@ -10,18 +10,21 @@ from .permissions import ( ) link_private_keys = Link( - icon='fa fa-key', permissions=(permission_key_view,), - text=_('Private keys'), view='django_gpg:key_private_list' + permissions=(permission_key_view,), text=_('Private keys'), + view='django_gpg:key_private_list' ) link_public_keys = Link( - icon='fa fa-key', permissions=(permission_key_view,), - text=_('Public keys'), view='django_gpg:key_public_list' + permissions=(permission_key_view,), text=_('Public keys'), + view='django_gpg:key_public_list' ) link_key_delete = Link( permissions=(permission_key_delete,), tags='dangerous', text=_('Delete'), - view='django_gpg:key_delete', args=('object.fingerprint', 'object.type',) + view='django_gpg:key_delete', args=('resolved_object.pk',) +) +link_key_detail = Link( + permissions=(permission_key_view,), text=_('Details'), + view='django_gpg:key_detail', args=('resolved_object.pk',) ) - link_key_query = Link( permissions=(permission_keyserver_query,), text=_('Query keyservers'), view='django_gpg:key_query' diff --git a/mayan/apps/django_gpg/literals.py b/mayan/apps/django_gpg/literals.py index 2a8b14997a..6af8911ce9 100644 --- a/mayan/apps/django_gpg/literals.py +++ b/mayan/apps/django_gpg/literals.py @@ -61,3 +61,8 @@ SIGNATURE_STATES = { 'text': _('Document is signed with a valid signature.'), }, } + +ERROR_MSG_NEED_PASSPHRASE = 'NEED_PASSPHRASE' +ERROR_MSG_BAD_PASSPHRASE = 'BAD_PASSPHRASE' +ERROR_MSG_GOOD_PASSPHRASE = 'GOOD_PASSPHRASE' +OUTPUT_MESSAGE_CONTAINS_PRIVATE_KEY = 'Contains private key' diff --git a/mayan/apps/django_gpg/managers.py b/mayan/apps/django_gpg/managers.py new file mode 100644 index 0000000000..20b9074ab7 --- /dev/null +++ b/mayan/apps/django_gpg/managers.py @@ -0,0 +1,59 @@ +from __future__ import absolute_import, unicode_literals + +import logging +import os +import shutil +import tempfile + +import gnupg + +from django.db import models + +from .classes import KeyStub +from .literals import KEY_TYPE_PUBLIC, KEY_TYPE_SECRET +from .settings import setting_gpg_path, setting_keyserver + +logger = logging.getLogger(__name__) + + +class KeyManager(models.Manager): + def receive_key(self, key_id): + temporary_directory = tempfile.mkdtemp() + + os.chmod(temporary_directory, 0x1C0) + + gpg = gnupg.GPG( + gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value + ) + + import_results = gpg.recv_keys(setting_keyserver.value, key_id) + + key_data = gpg.export_keys(import_results.fingerprints[0]) + + shutil.rmtree(temporary_directory) + + return self.create(key_data=key_data) + + def search(self, query): + temporary_directory = tempfile.mkdtemp() + + gpg = gnupg.GPG( + gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value + ) + + key_data_list = gpg.search_keys( + query=query, keyserver=setting_keyserver.value + ) + shutil.rmtree(temporary_directory) + + result = [] + for key_data in key_data_list: + result.append(KeyStub(raw=key_data)) + + return result + + def public_keys(self): + return self.filter(key_type=KEY_TYPE_PUBLIC) + + def private_keys(self): + return self.filter(key_type=KEY_TYPE_SECRET) diff --git a/mayan/apps/django_gpg/models.py b/mayan/apps/django_gpg/models.py index 14bf97b1e9..a5b61afc32 100644 --- a/mayan/apps/django_gpg/models.py +++ b/mayan/apps/django_gpg/models.py @@ -9,18 +9,20 @@ import tempfile import gnupg from django.core.exceptions import ValidationError +from django.core.urlresolvers import reverse from django.db import models from django.utils.encoding import python_2_unicode_compatible from django.utils.translation import ugettext_lazy as _ -from .literals import KEY_TYPE_CHOICES, KEY_TYPE_SECRET from .exceptions import NeedPassphrase, PassphraseError -from .settings import setting_gpg_path, setting_keyserver +from .literals import ( + ERROR_MSG_NEED_PASSPHRASE, ERROR_MSG_BAD_PASSPHRASE, + ERROR_MSG_GOOD_PASSPHRASE, KEY_TYPE_CHOICES, KEY_TYPE_SECRET, + OUTPUT_MESSAGE_CONTAINS_PRIVATE_KEY +) +from .managers import KeyManager +from .settings import setting_gpg_path -ERROR_MSG_NEED_PASSPHRASE = 'NEED_PASSPHRASE' -ERROR_MSG_BAD_PASSPHRASE = 'BAD_PASSPHRASE' -ERROR_MSG_GOOD_PASSPHRASE = 'GOOD_PASSPHRASE' -OUTPUT_MESSAGE_CONTAINS_PRIVATE_KEY = 'Contains private key' logger = logging.getLogger(__name__) @@ -39,45 +41,6 @@ def gpg_command(function): return result -class KeyManager(models.Manager): - def receive_key(self, key_id): - temporary_directory = tempfile.mkdtemp() - - os.chmod(temporary_directory, 0x1C0) - - gpg = gnupg.GPG( - gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value - ) - - import_results = gpg.recv_keys(setting_keyserver.value, key_id) - - key_data = gpg.export_keys(import_results.fingerprints[0]) - - shutil.rmtree(temporary_directory) - - return self.create(data=key_data) - - def search(self, query): - temporary_directory = tempfile.mkdtemp() - - gpg = gnupg.GPG( - gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value - ) - - result = gpg.search_keys( - query=query, keyserver=setting_keyserver.value - ) - shutil.rmtree(temporary_directory) - - return result - - def public_keys(self): - return self.filter(key_type='pub') - - def private_keys(self): - return self.filter(key_type='') - - @python_2_unicode_compatible class Key(models.Model): key_data = models.TextField(verbose_name=_('Key data')) @@ -122,6 +85,9 @@ class Key(models.Model): if not import_results.count: raise ValidationError('Invalid key data') + def get_absolute_url(self): + return reverse('django_gpg:key_detail', args=(self.pk,)) + def save(self, *args, **kwargs): temporary_directory = tempfile.mkdtemp() diff --git a/mayan/apps/django_gpg/permissions.py b/mayan/apps/django_gpg/permissions.py index dc5536b2ca..fc984d3567 100644 --- a/mayan/apps/django_gpg/permissions.py +++ b/mayan/apps/django_gpg/permissions.py @@ -6,15 +6,15 @@ from permissions import PermissionNamespace namespace = PermissionNamespace('django_gpg', _('Key management')) -permission_key_view = namespace.add_permission( - name='key_view', label=_('View keys') -) permission_key_delete = namespace.add_permission( name='key_delete', label=_('Delete keys') ) -permission_keyserver_query = namespace.add_permission( - name='keyserver_query', label=_('Query keyservers') -) permission_key_receive = namespace.add_permission( name='key_receive', label=_('Import keys from keyservers') ) +permission_key_view = namespace.add_permission( + name='key_view', label=_('View keys') +) +permission_keyserver_query = namespace.add_permission( + name='keyserver_query', label=_('Query keyservers') +) diff --git a/mayan/apps/django_gpg/runtime.py b/mayan/apps/django_gpg/runtime.py deleted file mode 100644 index af8bfe4c42..0000000000 --- a/mayan/apps/django_gpg/runtime.py +++ /dev/null @@ -1,7 +0,0 @@ -from .api import GPG -from .settings import setting_gpg_home, setting_gpg_path, setting_keyservers - -gpg = GPG( - binary_path=setting_gpg_path.value, home=setting_gpg_home.value, - keyservers=setting_keyservers.value -) diff --git a/mayan/apps/django_gpg/settings.py b/mayan/apps/django_gpg/settings.py index c7d3da34f1..e8cb60c1d7 100644 --- a/mayan/apps/django_gpg/settings.py +++ b/mayan/apps/django_gpg/settings.py @@ -24,7 +24,3 @@ setting_keyserver = namespace.add_setting( global_name='SIGNATURES_KEYSERVER', default='pool.sks-keyservers.net', help_text=_('Keyserver used to query for keys.') ) -setting_keyservers = namespace.add_setting( - global_name='SIGNATURES_KEYSERVERS', default=['pool.sks-keyservers.net'], - help_text=_('List of keyservers to be queried for unknown keys.') -) diff --git a/mayan/apps/django_gpg/urls.py b/mayan/apps/django_gpg/urls.py index aae4d12c9e..47126ee413 100644 --- a/mayan/apps/django_gpg/urls.py +++ b/mayan/apps/django_gpg/urls.py @@ -3,14 +3,17 @@ from __future__ import unicode_literals from django.conf.urls import patterns, url from .views import ( - KeyQueryView, KeyQueryResultView, PrivateKeyListView, PublicKeyListView + KeyDeleteView, KeyDetailView, KeyQueryView, KeyQueryResultView, KeyReceive, + PrivateKeyListView, PublicKeyListView ) urlpatterns = patterns( 'django_gpg.views', url( - r'^delete/(?P.+)/(?P\w+)/$', 'key_delete', - name='key_delete' + r'^(?P\d+)/$', KeyDetailView.as_view(), name='key_detail' + ), + url( + r'^delete/(?P\d+)/$', KeyDeleteView.as_view(), name='key_delete' ), url( r'^list/private/$', PrivateKeyListView.as_view(), @@ -24,5 +27,7 @@ urlpatterns = patterns( r'^query/results/$', KeyQueryResultView.as_view(), name='key_query_results' ), - url(r'^receive/(?P.+)/$', 'key_receive', name='key_receive'), + url( + r'^receive/(?P.+)/$', KeyReceive.as_view(), name='key_receive' + ), ) diff --git a/mayan/apps/django_gpg/views.py b/mayan/apps/django_gpg/views.py index a075aad618..54e575fde6 100644 --- a/mayan/apps/django_gpg/views.py +++ b/mayan/apps/django_gpg/views.py @@ -2,117 +2,77 @@ from __future__ import absolute_import, unicode_literals import logging -from django.conf import settings from django.contrib import messages -from django.core.urlresolvers import reverse -from django.http import HttpResponseRedirect -from django.shortcuts import redirect, render_to_response -from django.template import RequestContext +from django.core.urlresolvers import reverse, reverse_lazy from django.utils.translation import ugettext_lazy as _ -from common.generics import SimpleView, SingleObjectListView -from permissions import Permission +from common.generics import ( + ConfirmView, SimpleView, SingleObjectDeleteView, SingleObjectDetailView, + SingleObjectListView +) -from .api import Key -from .forms import KeySearchForm +from .forms import KeyDetailForm, KeySearchForm +from .models import Key from .permissions import ( permission_key_delete, permission_key_receive, permission_key_view, permission_keyserver_query ) -from .runtime import gpg logger = logging.getLogger(__name__) -def key_receive(request, key_id): - Permission.check_permissions(request.user, (permission_key_receive,)) - - previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - - if request.method == 'POST': - try: - gpg.receive_key(key_id=key_id) - except Exception as exception: - messages.error( - request, - _('Unable to import key: %(key_id)s; %(error)s') % - { - 'key_id': key_id, - 'error': exception, - } - ) - return HttpResponseRedirect(previous) - else: - messages.success( - request, - _('Successfully received key: %(key_id)s') % - { - 'key_id': key_id, - } - ) - - return redirect('django_gpg:key_public_list') - - return render_to_response('appearance/generic_confirm.html', { - 'message': _('Import key ID: %s?') % key_id, - 'previous': previous, - 'title': _('Import key'), - }, context_instance=RequestContext(request)) - - -class PublicKeyListView(SingleObjectListView): - view_permission = permission_key_view +class KeyDeleteView(SingleObjectDeleteView): + model = Key + object_permission = permission_key_delete def get_extra_context(self): return { - 'hide_object': True, - 'title': self.get_title() + 'title': _('Delete key'), + 'message': _( + 'Delete key %s? If you delete a public key that is part of a ' + 'public/private pair the private key will be deleted as well.' + ) % self.get_object(), } - def get_queryset(self): - return Key.get_all(gpg) - def get_title(self): - return _('Public keys') +class KeyDetailView(SingleObjectDetailView): + form_class = KeyDetailForm + model = Key + object_permission = permission_key_view + + def get_extra_context(self): + return { + 'title': _('Details for key: %s') % self.get_object(), + } -class PrivateKeyListView(PublicKeyListView): - def get_title(self): - return _('Private keys') +class KeyReceive(ConfirmView): + post_action_redirect = reverse_lazy('django_gpg:key_public_list') + view_permission = permission_key_receive - def get_queryset(self): - return Key.get_all(gpg, secret=True) + def get_extra_context(self): + return { + 'message': _('Import key ID: %s?') % self.kwargs['key_id'], + 'title': _('Import key'), + } - -def key_delete(request, fingerprint, key_type): - Permission.check_permissions(request.user, (permission_key_delete,)) - - secret = key_type == 'sec' - key = Key.get(gpg, fingerprint, secret=secret) - - post_action_redirect = redirect('django_gpg:key_public_list') - previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - next = request.POST.get('next', request.GET.get('next', post_action_redirect if post_action_redirect else request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - - if request.method == 'POST': + def view_action(self): try: - gpg.delete_key(key) - messages.success(request, _('Key: %s, deleted successfully.') % fingerprint) - return HttpResponseRedirect(next) + Key.objects.receive_key(key_id=self.kwargs['key_id']) except Exception as exception: - messages.error(request, exception) - return HttpResponseRedirect(previous) - - return render_to_response('appearance/generic_confirm.html', { - 'title': _('Delete key'), - 'delete_view': True, - 'message': _( - 'Delete key %s? If you delete a public key that is part of a ' - 'public/private pair the private key will be deleted as well.' - ) % key, - 'next': next, - 'previous': previous, - }, context_instance=RequestContext(request)) + messages.error( + self.request, + _('Unable to import key: %(key_id)s; %(error)s') % { + 'key_id': self.kwargs['key_id'], + 'error': exception, + } + ) + else: + messages.success( + self.request, _('Successfully received key: %(key_id)s') % { + 'key_id': self.kwargs['key_id'], + } + ) class KeyQueryView(SimpleView): @@ -149,6 +109,28 @@ class KeyQueryResultView(SingleObjectListView): def get_queryset(self): term = self.request.GET.get('term') if term: - return gpg.query(term) + return Key.objects.search(query=term) else: return () + + +class PublicKeyListView(SingleObjectListView): + object_permission = permission_key_view + queryset = Key.objects.public_keys() + + def get_extra_context(self): + return { + 'hide_object': True, + 'title': _('Public keys') + } + + +class PrivateKeyListView(SingleObjectListView): + object_permission = permission_key_view + queryset = Key.objects.private_keys() + + def get_extra_context(self): + return { + 'hide_object': True, + 'title': _('Private keys') + } From f82b2000c3c82863c9f9a22e3900649d52a617d4 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 23 Mar 2016 00:37:26 -0400 Subject: [PATCH 124/205] Properly render date widgets on form instances. --- .../appearance/templates/appearance/generic_form_instance.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/appearance/templates/appearance/generic_form_instance.html b/mayan/apps/appearance/templates/appearance/generic_form_instance.html index 08a7e68fb1..ac6cf98582 100644 --- a/mayan/apps/appearance/templates/appearance/generic_form_instance.html +++ b/mayan/apps/appearance/templates/appearance/generic_form_instance.html @@ -69,7 +69,7 @@ {{ option.render }}

    {% endfor %} - {% elif field|widget_type == 'datetimeinput' %} + {% elif field|widget_type == 'datetimeinput' or field|widget_type == 'dateinput' %} {% if read_only %} {{ field.value }} {% else %} From cd077cb07688d514b28503b11ee54e0f39ba665a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 23 Mar 2016 11:58:08 -0400 Subject: [PATCH 125/205] Add more tests for the Key model. Remove the key_id field and made it a property derived from the fingerprint. --- mayan/apps/django_gpg/apps.py | 5 +-- mayan/apps/django_gpg/classes.py | 6 ++- mayan/apps/django_gpg/exceptions.py | 4 +- mayan/apps/django_gpg/forms.py | 6 +-- mayan/apps/django_gpg/managers.py | 11 +++-- .../migrations/0005_remove_key_key_id.py | 18 ++++++++ mayan/apps/django_gpg/models.py | 8 ++-- mayan/apps/django_gpg/tests/literals.py | 6 ++- mayan/apps/django_gpg/tests/test_classes.py | 45 ------------------- mayan/apps/django_gpg/tests/test_models.py | 21 ++++++++- 10 files changed, 65 insertions(+), 65 deletions(-) create mode 100644 mayan/apps/django_gpg/migrations/0005_remove_key_key_id.py delete mode 100644 mayan/apps/django_gpg/tests/test_classes.py diff --git a/mayan/apps/django_gpg/apps.py b/mayan/apps/django_gpg/apps.py index 1062fbf3a4..938fc2896b 100644 --- a/mayan/apps/django_gpg/apps.py +++ b/mayan/apps/django_gpg/apps.py @@ -70,10 +70,7 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SourceColumn(source=Key, label=_('Key ID'), attribute='key_id') SourceColumn(source=Key, label=_('User ID'), attribute='user_id') - SourceColumn( - source=KeyStub, label=_('ID'), - func=lambda context: '...{0}'.format(context['object'].key_id[-16:]) - ) + SourceColumn(source=KeyStub, label=_('Key ID'), attribute='key_id') SourceColumn(source=KeyStub, label=_('Type'), attribute='key_type') SourceColumn( source=KeyStub, label=_('Creation date'), diff --git a/mayan/apps/django_gpg/classes.py b/mayan/apps/django_gpg/classes.py index 6d72870e38..6f16e4076c 100644 --- a/mayan/apps/django_gpg/classes.py +++ b/mayan/apps/django_gpg/classes.py @@ -3,9 +3,13 @@ from __future__ import absolute_import, unicode_literals class KeyStub(object): def __init__(self, raw): - self.key_id = raw['keyid'] + self.fingerprint = raw['keyid'] self.key_type = raw['type'] self.date = raw['date'] self.expires = raw['expires'] self.length = raw['length'] self.uids = raw['uids'] + + @property + def key_id(self): + return self.fingerprint[-8:] diff --git a/mayan/apps/django_gpg/exceptions.py b/mayan/apps/django_gpg/exceptions.py index 31691d4a42..14dbe5ffa8 100644 --- a/mayan/apps/django_gpg/exceptions.py +++ b/mayan/apps/django_gpg/exceptions.py @@ -30,7 +30,9 @@ class KeyGenerationError(GPGException): class KeyFetchingError(GPGException): - pass + """ + Unable to receive key or key not found + """ class KeyDoesNotExist(GPGException): diff --git a/mayan/apps/django_gpg/forms.py b/mayan/apps/django_gpg/forms.py index ecc934db39..a2d1235c9e 100644 --- a/mayan/apps/django_gpg/forms.py +++ b/mayan/apps/django_gpg/forms.py @@ -29,9 +29,9 @@ class KeyDetailForm(DetailForm): 'widget': forms.widgets.DateInput }, {'label': _('Fingerprint'), 'field': 'fingerprint'}, - {'label': _('length'), 'field': 'length'}, - {'label': _('algorithm'), 'field': 'algorithm'}, - {'label': _('key_type'), 'field': 'key_type'}, + {'label': _('Length'), 'field': 'length'}, + {'label': _('Algorithm'), 'field': 'algorithm'}, + {'label': _('Type'), 'field': lambda x: instance.get_key_type_display()}, ) kwargs['extra_fields'] = extra_fields diff --git a/mayan/apps/django_gpg/managers.py b/mayan/apps/django_gpg/managers.py index 20b9074ab7..89c5100308 100644 --- a/mayan/apps/django_gpg/managers.py +++ b/mayan/apps/django_gpg/managers.py @@ -10,6 +10,7 @@ import gnupg from django.db import models from .classes import KeyStub +from .exceptions import KeyFetchingError from .literals import KEY_TYPE_PUBLIC, KEY_TYPE_SECRET from .settings import setting_gpg_path, setting_keyserver @@ -28,11 +29,15 @@ class KeyManager(models.Manager): import_results = gpg.recv_keys(setting_keyserver.value, key_id) - key_data = gpg.export_keys(import_results.fingerprints[0]) + if not import_results.count: + shutil.rmtree(temporary_directory) + raise KeyFetchingError('No key found') + else: + key_data = gpg.export_keys(import_results.fingerprints[0]) - shutil.rmtree(temporary_directory) + shutil.rmtree(temporary_directory) - return self.create(key_data=key_data) + return self.create(key_data=key_data) def search(self, query): temporary_directory = tempfile.mkdtemp() diff --git a/mayan/apps/django_gpg/migrations/0005_remove_key_key_id.py b/mayan/apps/django_gpg/migrations/0005_remove_key_key_id.py new file mode 100644 index 0000000000..6acb9c702e --- /dev/null +++ b/mayan/apps/django_gpg/migrations/0005_remove_key_key_id.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('django_gpg', '0004_auto_20160322_2202'), + ] + + operations = [ + migrations.RemoveField( + model_name='key', + name='key_id', + ), + ] diff --git a/mayan/apps/django_gpg/models.py b/mayan/apps/django_gpg/models.py index a5b61afc32..9235adb65c 100644 --- a/mayan/apps/django_gpg/models.py +++ b/mayan/apps/django_gpg/models.py @@ -44,9 +44,6 @@ def gpg_command(function): @python_2_unicode_compatible class Key(models.Model): key_data = models.TextField(verbose_name=_('Key data')) - key_id = models.CharField( - editable=False, max_length=16, unique=True, verbose_name=_('Key ID') - ) creation_date = models.DateField( editable=False, verbose_name=_('Creation date') ) @@ -103,7 +100,6 @@ class Key(models.Model): shutil.rmtree(temporary_directory) - self.key_id = key_info['keyid'] self.algorithm = key_info['algo'] self.creation_date = date.fromtimestamp(int(key_info['date'])) if key_info['expires']: @@ -147,3 +143,7 @@ class Key(models.Model): raise NeedPassphrase return file_sign_results + + @property + def key_id(self): + return self.fingerprint[-8:] diff --git a/mayan/apps/django_gpg/tests/literals.py b/mayan/apps/django_gpg/tests/literals.py index 822bdcd593..0936a239d1 100644 --- a/mayan/apps/django_gpg/tests/literals.py +++ b/mayan/apps/django_gpg/tests/literals.py @@ -1,9 +1,11 @@ from __future__ import unicode_literals TEST_GPG_HOME = '/tmp/test_gpg_home' -TEST_KEY_ID = '607138F1AECC5A5CA31CB7715F3F7F75D210724D' +TEST_KEY_FINGERPRINT = '6A24574E0A35004CDDFD22704125E9C571F378AC' TEST_KEYSERVERS = ['pool.sks-keyservers.net'] -TEST_UIDS = 'Roberto Rosario' + +TEST_SEARCH_UID = 'Roberto Rosario' +TEST_SEARCH_FINGERPRINT = '607138F1AECC5A5CA31CB7715F3F7F75D210724D' TEST_KEY_DATA = '''-----BEGIN PGP PRIVATE KEY BLOCK----- Version: GnuPG v1 diff --git a/mayan/apps/django_gpg/tests/test_classes.py b/mayan/apps/django_gpg/tests/test_classes.py deleted file mode 100644 index a31618414c..0000000000 --- a/mayan/apps/django_gpg/tests/test_classes.py +++ /dev/null @@ -1,45 +0,0 @@ -from __future__ import unicode_literals - -import shutil - -from django.test import TestCase - -from ..api import GPG, Key -from ..settings import setting_gpg_path - -from .literals import TEST_GPG_HOME, TEST_KEY_ID, TEST_KEYSERVERS, TEST_UIDS - - -class DjangoGPGTestCase(TestCase): - def setUp(self): - try: - shutil.rmtree(TEST_GPG_HOME) - except OSError: - pass - - self.gpg = GPG( - binary_path=setting_gpg_path.value, home=TEST_GPG_HOME, - keyservers=TEST_KEYSERVERS - ) - - def test_main(self): - # No private or public keys in the keyring - self.assertEqual(Key.get_all(self.gpg, secret=True), []) - self.assertEqual(Key.get_all(self.gpg), []) - - # Test querying the keyservers - self.assertTrue( - TEST_KEY_ID in [ - key_stub.key_id for key_stub in self.gpg.query(TEST_UIDS) - ] - ) - - # Receive a public key from the keyserver - self.gpg.receive_key(key_id=TEST_KEY_ID[-8:]) - - # Check that the received key is indeed in the keyring - self.assertTrue( - TEST_KEY_ID[-16:] in [ - key_stub.key_id for key_stub in Key.get_all(self.gpg) - ] - ) diff --git a/mayan/apps/django_gpg/tests/test_models.py b/mayan/apps/django_gpg/tests/test_models.py index 69d74f3b04..bcb97cda34 100644 --- a/mayan/apps/django_gpg/tests/test_models.py +++ b/mayan/apps/django_gpg/tests/test_models.py @@ -4,7 +4,10 @@ from django.test import TestCase from ..models import Key -from .literals import TEST_KEY_DATA, TEST_KEY_FINGERPRINT, TEST_KEY_ID +from .literals import ( + TEST_KEY_DATA, TEST_KEY_FINGERPRINT, TEST_SEARCH_FINGERPRINT, + TEST_SEARCH_UID +) class KeyTestCase(TestCase): @@ -12,5 +15,19 @@ class KeyTestCase(TestCase): # Creating a Key instance is analogous to importing a key key = Key.objects.create(key_data=TEST_KEY_DATA) - self.assertEqual(key.key_id, TEST_KEY_ID) self.assertEqual(key.fingerprint, TEST_KEY_FINGERPRINT) + + def test_key_search(self): + search_results = Key.objects.search(query=TEST_SEARCH_UID) + + self.assertTrue( + TEST_SEARCH_FINGERPRINT in [ + key_stub.fingerprint for key_stub in search_results + ] + ) + + def test_key_receive(self): + Key.objects.receive_key(key_id=TEST_SEARCH_FINGERPRINT) + + self.assertEqual(Key.objects.all().count(), 1) + self.assertEqual(Key.objects.first().fingerprint, TEST_SEARCH_FINGERPRINT) From 2f7c6ed0d970692e9559df936da250127d38bd4e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 23 Mar 2016 13:03:48 -0400 Subject: [PATCH 126/205] Add embedded file signature verification. --- mayan/apps/django_gpg/managers.py | 26 +++++++++++++++++- .../migrations/0005_remove_key_key_id.py | 2 +- .../contrib/test_files/test_file.txt.gpg | Bin 0 -> 337 bytes mayan/apps/django_gpg/tests/literals.py | 18 ++++++++---- mayan/apps/django_gpg/tests/test_models.py | 17 +++++++++++- 5 files changed, 55 insertions(+), 8 deletions(-) create mode 100644 mayan/apps/django_gpg/tests/contrib/test_files/test_file.txt.gpg diff --git a/mayan/apps/django_gpg/managers.py b/mayan/apps/django_gpg/managers.py index 89c5100308..a84a3d45b2 100644 --- a/mayan/apps/django_gpg/managers.py +++ b/mayan/apps/django_gpg/managers.py @@ -10,7 +10,7 @@ import gnupg from django.db import models from .classes import KeyStub -from .exceptions import KeyFetchingError +from .exceptions import KeyDoesNotExist, KeyFetchingError from .literals import KEY_TYPE_PUBLIC, KEY_TYPE_SECRET from .settings import setting_gpg_path, setting_keyserver @@ -62,3 +62,27 @@ class KeyManager(models.Manager): def private_keys(self): return self.filter(key_type=KEY_TYPE_SECRET) + + def verify_file(self, file_object, signature_file=None): + temporary_directory = tempfile.mkdtemp() + + gpg = gnupg.GPG( + gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value + ) + + verify_result = gpg.verify_file(file=file_object) + + if 'no public key' in verify_result.status: + # File is signed but we need the key for full verification + try: + key = self.get(fingerprint__endswith=verify_result.key_id) + except self.model.DoesNotExist: + raise KeyDoesNotExist('Signature key is not found in keyring') + else: + gpg.import_keys(key_data=key.key_data) + file_object.seek(0) + verify_result = gpg.verify_file(file=file_object) + + shutil.rmtree(temporary_directory) + + return verify_result diff --git a/mayan/apps/django_gpg/migrations/0005_remove_key_key_id.py b/mayan/apps/django_gpg/migrations/0005_remove_key_key_id.py index 6acb9c702e..7f6b0718aa 100644 --- a/mayan/apps/django_gpg/migrations/0005_remove_key_key_id.py +++ b/mayan/apps/django_gpg/migrations/0005_remove_key_key_id.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -from django.db import migrations, models +from django.db import migrations class Migration(migrations.Migration): diff --git a/mayan/apps/django_gpg/tests/contrib/test_files/test_file.txt.gpg b/mayan/apps/django_gpg/tests/contrib/test_files/test_file.txt.gpg new file mode 100644 index 0000000000000000000000000000000000000000..97c77a242b4eb7e5ac9f22657aaa73ac26474961 GIT binary patch literal 337 zcmV-X0j~a|0h_?f%)rFxsQU6~;pd7qjB6B=cuP`?OXAZqb5iw6DoVmW9gRm3;Ob(^=;Cz1}zi75Gq=3cwQFX;SgL*qg}Uhj%qN073Jflb^r+e?@Bf zDX}xJZ7WYTd1gIb*C};c(!0QAFUzX7pqW#9A8Q?2b^8|6r6b1{PnqZVK5v@5`PIcO zF7~fkZhr4wC3kY2;uoHNrBkvR;>E2pDSG?7l#3F?znxg^ryLV%%UZrBBfI&lc);Xe jE=u?2{pt(opY<%~r+MMsy$KN; Date: Wed, 23 Mar 2016 18:56:29 -0400 Subject: [PATCH 127/205] Add SignatureVerification class to return verification results. Add support for specifing against which key to verify a signature. Add support to preload all keys before verifing a signature. All test for specific key verificatio and all key preloading. --- mayan/apps/django_gpg/apps.py | 9 +++---- mayan/apps/django_gpg/classes.py | 29 +++++++++++++++++++--- mayan/apps/django_gpg/managers.py | 24 +++++++++++++++--- mayan/apps/django_gpg/tests/test_models.py | 16 ++++++++++++ 4 files changed, 65 insertions(+), 13 deletions(-) diff --git a/mayan/apps/django_gpg/apps.py b/mayan/apps/django_gpg/apps.py index 938fc2896b..4efb36ac89 100644 --- a/mayan/apps/django_gpg/apps.py +++ b/mayan/apps/django_gpg/apps.py @@ -73,19 +73,16 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SourceColumn(source=KeyStub, label=_('Key ID'), attribute='key_id') SourceColumn(source=KeyStub, label=_('Type'), attribute='key_type') SourceColumn( - source=KeyStub, label=_('Creation date'), - func=lambda context: datetime.fromtimestamp( - int(context['object'].date) - ) + source=KeyStub, label=_('Creation date'), attribute='date' ) SourceColumn( source=KeyStub, label=_('Expiration date'), - func=lambda context: datetime.fromtimestamp(int(context['object'].expires)) if context['object'].expires else _('No expiration') + func=lambda context: context['object'].expires or _('No expiration') ) SourceColumn(source=KeyStub, label=_('Length'), attribute='length') SourceColumn( source=KeyStub, label=_('User ID'), - func=lambda context: ', '.join(context['object'].uids) + func=lambda context: ', '.join(context['object'].user_id) ) menu_object.bind_links(links=(link_key_detail,), sources=(Key,)) diff --git a/mayan/apps/django_gpg/classes.py b/mayan/apps/django_gpg/classes.py index 6f16e4076c..42fa79c76b 100644 --- a/mayan/apps/django_gpg/classes.py +++ b/mayan/apps/django_gpg/classes.py @@ -1,15 +1,38 @@ from __future__ import absolute_import, unicode_literals +from datetime import date + class KeyStub(object): def __init__(self, raw): self.fingerprint = raw['keyid'] self.key_type = raw['type'] - self.date = raw['date'] - self.expires = raw['expires'] + self.date = date.fromtimestamp(int(raw['date'])) + if raw['expires']: + self.expires = date.fromtimestamp(int(raw['expires'])) + else: + self.expires = None self.length = raw['length'] - self.uids = raw['uids'] + self.user_id = raw['uids'] @property def key_id(self): return self.fingerprint[-8:] + + +class SignatureVerification(object): + def __init__(self, raw): + self.user_id = raw['username'] + self.status = raw['status'] + self.pubkey_fingerprint = raw['pubkey_fingerprint'] + self.date = date.fromtimestamp(int(raw['sig_timestamp'])) + if raw['expire_timestamp']: + self.expires = date.fromtimestamp(int(raw['expire_timestamp'])) + else: + self.expires = None + self.trust_text = raw['trust_text'] + self.valid = raw['valid'] + self.stderr = raw['stderr'] + self.fingerprint = raw['fingerprint'] + self.signature_id = raw['signature_id'] + self.trust_level = raw['trust_level'] diff --git a/mayan/apps/django_gpg/managers.py b/mayan/apps/django_gpg/managers.py index a84a3d45b2..f99e703d01 100644 --- a/mayan/apps/django_gpg/managers.py +++ b/mayan/apps/django_gpg/managers.py @@ -9,7 +9,7 @@ import gnupg from django.db import models -from .classes import KeyStub +from .classes import KeyStub, SignatureVerification from .exceptions import KeyDoesNotExist, KeyFetchingError from .literals import KEY_TYPE_PUBLIC, KEY_TYPE_SECRET from .settings import setting_gpg_path, setting_keyserver @@ -63,20 +63,36 @@ class KeyManager(models.Manager): def private_keys(self): return self.filter(key_type=KEY_TYPE_SECRET) - def verify_file(self, file_object, signature_file=None): + def verify_file(self, file_object, signature_file=None, key_fingerprint=None, all_keys=False): temporary_directory = tempfile.mkdtemp() gpg = gnupg.GPG( gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value ) + # Preload keys + if all_keys: + for key in Key.objects.all(): + gpg.import_keys(key_data=key.key_data) + elif key_fingerprint: + try: + key = self.get(fingerprint=key_fingerprint) + except self.model.DoesNotExist: + shutil.rmtree(temporary_directory) + raise KeyDoesNotExist('Specified key for verification not found in keyring') + else: + gpg.import_keys(key_data=key.key_data) + verify_result = gpg.verify_file(file=file_object) - if 'no public key' in verify_result.status: + logger.debug('verify_result.status: %s', verify_result.status) + + if 'no public key' in verify_result.status and not key_fingerprint and not all_keys: # File is signed but we need the key for full verification try: key = self.get(fingerprint__endswith=verify_result.key_id) except self.model.DoesNotExist: + shutil.rmtree(temporary_directory) raise KeyDoesNotExist('Signature key is not found in keyring') else: gpg.import_keys(key_data=key.key_data) @@ -85,4 +101,4 @@ class KeyManager(models.Manager): shutil.rmtree(temporary_directory) - return verify_result + return SignatureVerification(verify_result.__dict__) diff --git a/mayan/apps/django_gpg/tests/test_models.py b/mayan/apps/django_gpg/tests/test_models.py index a4fd8426db..484e8b64d9 100644 --- a/mayan/apps/django_gpg/tests/test_models.py +++ b/mayan/apps/django_gpg/tests/test_models.py @@ -46,3 +46,19 @@ class KeyTestCase(TestCase): self.assertTrue(result) self.assertEqual(result.fingerprint, TEST_KEY_FINGERPRINT) + + def test_embedded_verification_with_correct_fingerprint(self): + Key.objects.create(key_data=TEST_KEY_DATA) + + with open(TEST_SIGNED_FILE) as signed_file: + result = Key.objects.verify_file(signed_file, key_fingerprint=TEST_KEY_FINGERPRINT) + + self.assertTrue(result) + self.assertEqual(result.fingerprint, TEST_KEY_FINGERPRINT) + + def test_embedded_verification_with_incorrect_fingerprint(self): + Key.objects.create(key_data=TEST_KEY_DATA) + + with open(TEST_SIGNED_FILE) as signed_file: + with self.assertRaises(KeyDoesNotExist): + Key.objects.verify_file(signed_file, key_fingerprint='999') From 048ba4b5cdb55873a2a0296eeb805e3e6e37aea0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 23 Mar 2016 19:47:41 -0400 Subject: [PATCH 128/205] Add file decryption support. --- mayan/apps/django_gpg/exceptions.py | 4 ++-- mayan/apps/django_gpg/managers.py | 22 +++++++++++++++++++- mayan/apps/django_gpg/tests/literals.py | 1 + mayan/apps/django_gpg/tests/test_models.py | 24 ++++++++++++++++++++-- 4 files changed, 46 insertions(+), 5 deletions(-) diff --git a/mayan/apps/django_gpg/exceptions.py b/mayan/apps/django_gpg/exceptions.py index 14dbe5ffa8..0afb08945a 100644 --- a/mayan/apps/django_gpg/exceptions.py +++ b/mayan/apps/django_gpg/exceptions.py @@ -9,7 +9,7 @@ class GPGException(Exception): pass -class GPGVerificationError(GPGException): +class VerificationError(GPGException): pass @@ -17,7 +17,7 @@ class GPGSigningError(GPGException): pass -class GPGDecryptionError(GPGException): +class DecryptionError(GPGException): pass diff --git a/mayan/apps/django_gpg/managers.py b/mayan/apps/django_gpg/managers.py index f99e703d01..e1435ca0dc 100644 --- a/mayan/apps/django_gpg/managers.py +++ b/mayan/apps/django_gpg/managers.py @@ -10,7 +10,7 @@ import gnupg from django.db import models from .classes import KeyStub, SignatureVerification -from .exceptions import KeyDoesNotExist, KeyFetchingError +from .exceptions import DecryptionError, KeyDoesNotExist, KeyFetchingError from .literals import KEY_TYPE_PUBLIC, KEY_TYPE_SECRET from .settings import setting_gpg_path, setting_keyserver @@ -18,6 +18,26 @@ logger = logging.getLogger(__name__) class KeyManager(models.Manager): + def decrypt_file(self, file_object): + temporary_directory = tempfile.mkdtemp() + + os.chmod(temporary_directory, 0x1C0) + + gpg = gnupg.GPG( + gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value + ) + + decrypt_result = gpg.decrypt_file(file=file_object) + + shutil.rmtree(temporary_directory) + + logger.debug('decrypt_result.__dict__: %s', decrypt_result.__dict__) + + if not decrypt_result.status or decrypt_result.status == 'no data was provided': + raise DecryptionError('Unable to decrypt file') + + return str(decrypt_result) + def receive_key(self, key_id): temporary_directory = tempfile.mkdtemp() diff --git a/mayan/apps/django_gpg/tests/literals.py b/mayan/apps/django_gpg/tests/literals.py index d37e28ba1f..908181254a 100644 --- a/mayan/apps/django_gpg/tests/literals.py +++ b/mayan/apps/django_gpg/tests/literals.py @@ -77,3 +77,4 @@ TEST_SIGNED_FILE = os.path.join( settings.BASE_DIR, 'mayan', 'apps', 'django_gpg', 'tests', 'contrib', 'test_files', 'test_file.txt.gpg' ) +TEST_SIGNED_FILE_CONTENT = 'test_file.txt\n' diff --git a/mayan/apps/django_gpg/tests/test_models.py b/mayan/apps/django_gpg/tests/test_models.py index 484e8b64d9..fc098846bf 100644 --- a/mayan/apps/django_gpg/tests/test_models.py +++ b/mayan/apps/django_gpg/tests/test_models.py @@ -1,13 +1,15 @@ from __future__ import unicode_literals +import tempfile + from django.test import TestCase -from ..exceptions import KeyDoesNotExist +from ..exceptions import DecryptionError, KeyDoesNotExist from ..models import Key from .literals import ( TEST_KEY_DATA, TEST_KEY_FINGERPRINT, TEST_SEARCH_FINGERPRINT, - TEST_SEARCH_UID, TEST_SIGNED_FILE + TEST_SEARCH_UID, TEST_SIGNED_FILE, TEST_SIGNED_FILE_CONTENT ) @@ -62,3 +64,21 @@ class KeyTestCase(TestCase): with open(TEST_SIGNED_FILE) as signed_file: with self.assertRaises(KeyDoesNotExist): Key.objects.verify_file(signed_file, key_fingerprint='999') + + def test_signed_file_decryption(self): + Key.objects.create(key_data=TEST_KEY_DATA) + + with open(TEST_SIGNED_FILE) as signed_file: + result = Key.objects.decrypt_file(file_object=signed_file) + + self.assertEqual(result, TEST_SIGNED_FILE_CONTENT) + + def test_cleartext_file_decryption(self): + cleartext_file = tempfile.TemporaryFile() + cleartext_file.write('test') + cleartext_file.seek(0) + + with self.assertRaises(DecryptionError): + Key.objects.decrypt_file(file_object=cleartext_file) + + cleartext_file.close() From e96f74843991698a23cb165763892d86208c4f8c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 23 Mar 2016 19:57:16 -0400 Subject: [PATCH 129/205] Add key_id property to SignatureVerification class --- mayan/apps/django_gpg/classes.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mayan/apps/django_gpg/classes.py b/mayan/apps/django_gpg/classes.py index 42fa79c76b..5e49317cc8 100644 --- a/mayan/apps/django_gpg/classes.py +++ b/mayan/apps/django_gpg/classes.py @@ -36,3 +36,7 @@ class SignatureVerification(object): self.fingerprint = raw['fingerprint'] self.signature_id = raw['signature_id'] self.trust_level = raw['trust_level'] + + @property + def key_id(self): + return self.fingerprint[-8:] From c8f7c4ef86c8c25469e2df591eb60242944a50b7 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 23 Mar 2016 19:57:45 -0400 Subject: [PATCH 130/205] Update document signature app to work with new django_gpg changes. --- mayan/apps/document_signatures/hooks.py | 24 +++++++++++++--------- mayan/apps/document_signatures/managers.py | 8 ++++---- mayan/apps/document_signatures/models.py | 13 ++++++++---- mayan/apps/document_signatures/views.py | 10 ++++----- 4 files changed, 31 insertions(+), 24 deletions(-) diff --git a/mayan/apps/document_signatures/hooks.py b/mayan/apps/document_signatures/hooks.py index 0065d2c425..8443e66adc 100644 --- a/mayan/apps/document_signatures/hooks.py +++ b/mayan/apps/document_signatures/hooks.py @@ -4,33 +4,37 @@ import io import logging from django.apps import apps -from django_gpg.exceptions import GPGDecryptionError -from django_gpg.runtime import gpg +from django_gpg.exceptions import DecryptionError logger = logging.getLogger(__name__) -def document_pre_open_hook(descriptor, instance): +def document_pre_open_hook(file_object, instance): logger.debug('instance: %s', instance) DocumentVersionSignature = apps.get_model( app_label='document_signatures', model_name='DocumentVersionSignature' ) + Key = apps.get_model( + app_label='django_gpg', model_name='Key' + ) + if DocumentVersionSignature.objects.has_embedded_signature(document_version=instance): # If it has an embedded signature, decrypt try: - result = gpg.decrypt_file(descriptor, close_descriptor=False) + result = Key.objects.decrypt_file(file_object=file_object) # gpg return a string, turn it into a file like object - except GPGDecryptionError: + except DecryptionError: # At least return the original raw content - descriptor.seek(0) - return descriptor + file_object.seek(0) + return file_object else: - descriptor.close() - return io.BytesIO(result.data) + file_object.close() + return io.BytesIO(result) + #return result else: - return descriptor + return file_object def document_version_post_save_hook(instance): diff --git a/mayan/apps/document_signatures/managers.py b/mayan/apps/document_signatures/managers.py index c03e2b5699..4b9e64b673 100644 --- a/mayan/apps/document_signatures/managers.py +++ b/mayan/apps/document_signatures/managers.py @@ -4,8 +4,8 @@ import logging from django.db import models -from django_gpg.exceptions import GPGVerificationError -from django_gpg.runtime import gpg +from django_gpg.exceptions import VerificationError +from django_gpg.models import Key logger = logging.getLogger(__name__) @@ -84,8 +84,8 @@ class DocumentVersionSignatureManager(models.Manager): args = (document_version_descriptor,) try: - return gpg.verify_file(*args, fetch_key=False) - except GPGVerificationError: + return Key.objects.verify_file(*args) + except VerificationError: return None finally: document_version_descriptor.close() diff --git a/mayan/apps/document_signatures/models.py b/mayan/apps/document_signatures/models.py index 931bdde8eb..cf1ca82e3b 100644 --- a/mayan/apps/document_signatures/models.py +++ b/mayan/apps/document_signatures/models.py @@ -6,7 +6,8 @@ import uuid from django.db import models from django.utils.translation import ugettext_lazy as _ -from django_gpg.runtime import gpg +from django_gpg.exceptions import DecryptionError +from django_gpg.models import Key from documents.models import DocumentVersion from .managers import DocumentVersionSignatureManager @@ -40,9 +41,13 @@ class DocumentVersionSignature(models.Model): logger.debug('checking for embedded signature') with self.document_version.open(raw=True) as file_object: - self.has_embedded_signature = gpg.has_embedded_signature( - file_object - ) + try: + Key.objects.decrypt_file(file_object=file_object) + except DecryptionError: + self.has_embedded_signature = False + else: + self.has_embedded_signature = True + self.save() def delete_detached_signature_file(self): diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index 00c691b9b1..0b443402bd 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -10,7 +10,7 @@ from django.core.urlresolvers import reverse from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404, render_to_response from django.template import RequestContext -from django.template.defaultfilters import force_escape +from django.utils.html import escape from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList @@ -70,11 +70,9 @@ def document_verify(request, document_pk): [ _('Signature ID: %s') % signature.signature_id, _('Signature type: %s') % signature_type, - _('Key ID: %s') % signature.key_id, - _('Timestamp: %s') % datetime.fromtimestamp( - int(signature.sig_timestamp) - ), - _('Signee: %s') % force_escape(getattr(signature, 'username', '')), + _('Key fingerprint: %s') % signature.fingerprint, + _('Timestamp: %s') % signature.date, + _('Signee: %s') % escape(signature.user_id), ] ) From a5f3d46373b59e272b9543236dd971b77e33305a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 24 Mar 2016 00:26:53 -0400 Subject: [PATCH 131/205] Add a cleartext test file with a detached signature. --- .../django_gpg/tests/contrib/test_files/test_file.txt | 1 + .../tests/contrib/test_files/test_file.txt.asc | 11 +++++++++++ mayan/apps/django_gpg/tests/literals.py | 10 ++++++++++ 3 files changed, 22 insertions(+) create mode 100644 mayan/apps/django_gpg/tests/contrib/test_files/test_file.txt create mode 100644 mayan/apps/django_gpg/tests/contrib/test_files/test_file.txt.asc diff --git a/mayan/apps/django_gpg/tests/contrib/test_files/test_file.txt b/mayan/apps/django_gpg/tests/contrib/test_files/test_file.txt new file mode 100644 index 0000000000..85cdf2f0a0 --- /dev/null +++ b/mayan/apps/django_gpg/tests/contrib/test_files/test_file.txt @@ -0,0 +1 @@ +test_file content diff --git a/mayan/apps/django_gpg/tests/contrib/test_files/test_file.txt.asc b/mayan/apps/django_gpg/tests/contrib/test_files/test_file.txt.asc new file mode 100644 index 0000000000..7a6ff24ddd --- /dev/null +++ b/mayan/apps/django_gpg/tests/contrib/test_files/test_file.txt.asc @@ -0,0 +1,11 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1 + +iQEcBAABAgAGBQJW8z8CAAoJEEEl6cVx83isoK0IAKa7TGyBBhebx/EM8/tzKwgd +mKmXFtgpSoJhqoLZiBdFVP4gJtxfaDnqSFt7uQA69V0TMqI6cIuX0x7h0lRrNLea ++FQZGsa8HwnJzsTQXIRzszY/wvvFyHfk8jYjBQi7BRwg5kZdW5fUgprYsE8j08WA +cn/VAP5xigxKJfM0ny3pL3mbJj7rdoz+bEu4z7yMg5EsRLbF4MZDU9mUo5QjAvQg +oMMIjv6fFpuvBP9xY/D03IstyqoEEfwl/+36ZQwyGNsA3ZHWXgSb5fwcpXWPdqaD +PuX5l137B2VHz9YNPK9sJdnr5ZRyY0vebzkAvCFPfysAaGWH36iTE58V3uhLNMk= +=yL7D +-----END PGP SIGNATURE----- diff --git a/mayan/apps/django_gpg/tests/literals.py b/mayan/apps/django_gpg/tests/literals.py index 908181254a..a35d0ae523 100644 --- a/mayan/apps/django_gpg/tests/literals.py +++ b/mayan/apps/django_gpg/tests/literals.py @@ -4,6 +4,16 @@ import os from django.conf import settings +TEST_DETACHED_SIGNATURE = os.path.join( + settings.BASE_DIR, 'mayan', 'apps', 'django_gpg', 'tests', 'contrib', + 'test_files', 'test_file.txt.asc' +) + +TEST_FILE = os.path.join( + settings.BASE_DIR, 'mayan', 'apps', 'django_gpg', 'tests', 'contrib', + 'test_files', 'test_file.txt' +) + TEST_KEY_DATA = '''-----BEGIN PGP PRIVATE KEY BLOCK----- Version: GnuPG v1 From d41dac5587b7fa2b22e4e3fdbcf44aae174d5184 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 24 Mar 2016 00:27:49 -0400 Subject: [PATCH 132/205] Add support for verification of detached signatures. --- mayan/apps/django_gpg/managers.py | 66 ++++++++++++++----- mayan/apps/django_gpg/tests/test_models.py | 23 ++++++- mayan/apps/document_signatures/hooks.py | 1 - .../document_signatures/tests/test_models.py | 7 +- 4 files changed, 71 insertions(+), 26 deletions(-) diff --git a/mayan/apps/django_gpg/managers.py b/mayan/apps/django_gpg/managers.py index e1435ca0dc..940f207e08 100644 --- a/mayan/apps/django_gpg/managers.py +++ b/mayan/apps/django_gpg/managers.py @@ -1,5 +1,6 @@ from __future__ import absolute_import, unicode_literals +import io import logging import os import shutil @@ -10,7 +11,9 @@ import gnupg from django.db import models from .classes import KeyStub, SignatureVerification -from .exceptions import DecryptionError, KeyDoesNotExist, KeyFetchingError +from .exceptions import ( + DecryptionError, KeyDoesNotExist, KeyFetchingError, VerificationError +) from .literals import KEY_TYPE_PUBLIC, KEY_TYPE_SECRET from .settings import setting_gpg_path, setting_keyserver @@ -31,7 +34,7 @@ class KeyManager(models.Manager): shutil.rmtree(temporary_directory) - logger.debug('decrypt_result.__dict__: %s', decrypt_result.__dict__) + logger.debug('decrypt_result.status: %s', decrypt_result.status) if not decrypt_result.status or decrypt_result.status == 'no data was provided': raise DecryptionError('Unable to decrypt file') @@ -83,7 +86,7 @@ class KeyManager(models.Manager): def private_keys(self): return self.filter(key_type=KEY_TYPE_SECRET) - def verify_file(self, file_object, signature_file=None, key_fingerprint=None, all_keys=False): + def verify_file(self, file_object, signature_file=None, key_id=None, key_fingerprint=None, all_keys=False): temporary_directory = tempfile.mkdtemp() gpg = gnupg.GPG( @@ -102,23 +105,50 @@ class KeyManager(models.Manager): raise KeyDoesNotExist('Specified key for verification not found in keyring') else: gpg.import_keys(key_data=key.key_data) + elif key_id: + try: + key = self.get(fingerprint__endswith=key_id) + except self.model.DoesNotExist: + shutil.rmtree(temporary_directory) + raise KeyDoesNotExist('Specified key for verification not found in keyring') + else: + gpg.import_keys(key_data=key.key_data) - verify_result = gpg.verify_file(file=file_object) + if signature_file: + # Save the original data and invert the argument order + # Signature first, file second + temporary_file_object, temporary_filename = tempfile.mkstemp() + os.write(temporary_file_object, file_object.read()) + os.close(temporary_file_object) + + signature_file_buffer = io.BytesIO() + signature_file_buffer.write(signature_file.read()) + signature_file_buffer.seek(0) + verify_result = gpg.verify_file( + file=signature_file_buffer, data_filename=temporary_filename + ) + signature_file_buffer.close() + # TODO: delete file + else: + verify_result = gpg.verify_file(file=file_object) logger.debug('verify_result.status: %s', verify_result.status) - if 'no public key' in verify_result.status and not key_fingerprint and not all_keys: + if verify_result: + shutil.rmtree(temporary_directory) + SignatureVerification(verify_result.__dict__) + elif verify_result.status == 'no public key' and not (key_fingerprint or all_keys): # File is signed but we need the key for full verification - try: - key = self.get(fingerprint__endswith=verify_result.key_id) - except self.model.DoesNotExist: - shutil.rmtree(temporary_directory) - raise KeyDoesNotExist('Signature key is not found in keyring') - else: - gpg.import_keys(key_data=key.key_data) - file_object.seek(0) - verify_result = gpg.verify_file(file=file_object) - - shutil.rmtree(temporary_directory) - - return SignatureVerification(verify_result.__dict__) + #try: + # key = self.get(fingerprint__endswith=verify_result.key_id) + #except self.model.DoesNotExist: + # shutil.rmtree(temporary_directory) + # raise KeyDoesNotExist('Signature key is not found in keyring') + #else: + # gpg.import_keys(key_data=key.key_data) + file_object.seek(0) + return self.verify_file(file_object=file_object, signature_file=signature_file, key_id=verify_result.key_id, key_fingerprint=key_fingerprint, all_keys=all_keys) + # verify_result = gpg.verify_file(file=file_object) + else: + shutil.rmtree(temporary_directory) + raise VerificationError('File not signed') diff --git a/mayan/apps/django_gpg/tests/test_models.py b/mayan/apps/django_gpg/tests/test_models.py index fc098846bf..13a6e9d5bf 100644 --- a/mayan/apps/django_gpg/tests/test_models.py +++ b/mayan/apps/django_gpg/tests/test_models.py @@ -4,12 +4,13 @@ import tempfile from django.test import TestCase -from ..exceptions import DecryptionError, KeyDoesNotExist +from ..exceptions import DecryptionError, KeyDoesNotExist, VerificationError from ..models import Key from .literals import ( - TEST_KEY_DATA, TEST_KEY_FINGERPRINT, TEST_SEARCH_FINGERPRINT, - TEST_SEARCH_UID, TEST_SIGNED_FILE, TEST_SIGNED_FILE_CONTENT + TEST_DETACHED_SIGNATURE, TEST_FILE, TEST_KEY_DATA, TEST_KEY_FINGERPRINT, + TEST_SEARCH_FINGERPRINT, TEST_SEARCH_UID, TEST_SIGNED_FILE, + TEST_SIGNED_FILE_CONTENT ) @@ -82,3 +83,19 @@ class KeyTestCase(TestCase): Key.objects.decrypt_file(file_object=cleartext_file) cleartext_file.close() + + def test_detached_verification_no_key(self): + with open(TEST_DETACHED_SIGNATURE) as signature_file: + with open(TEST_FILE) as test_file: + with self.assertRaises(VerificationError): + Key.objects.verify_file(file_object=test_file, signature_file=signature_file) + + def test_detached_verification_with_key(self): + Key.objects.create(key_data=TEST_KEY_DATA) + + with open(TEST_DETACHED_SIGNATURE) as signature_file: + with open(TEST_FILE) as test_file: + result = Key.objects.verify_file(file_object=test_file, signature_file=signature_file) + + self.assertTrue(result) + self.assertEqual(result.fingerprint, TEST_KEY_FINGERPRINT) diff --git a/mayan/apps/document_signatures/hooks.py b/mayan/apps/document_signatures/hooks.py index 8443e66adc..323edeb386 100644 --- a/mayan/apps/document_signatures/hooks.py +++ b/mayan/apps/document_signatures/hooks.py @@ -32,7 +32,6 @@ def document_pre_open_hook(file_object, instance): else: file_object.close() return io.BytesIO(result) - #return result else: return file_object diff --git a/mayan/apps/document_signatures/tests/test_models.py b/mayan/apps/document_signatures/tests/test_models.py index 7f1733db77..5516e029e5 100644 --- a/mayan/apps/document_signatures/tests/test_models.py +++ b/mayan/apps/document_signatures/tests/test_models.py @@ -7,10 +7,9 @@ from django.conf import settings from django.core.files.base import File from django.test import TestCase, override_settings +from django_gpg.models import Key from documents.models import DocumentType from documents.tests import TEST_DOCUMENT_PATH, TEST_DOCUMENT_TYPE -from django_gpg.literals import SIGNATURE_STATE_VALID -from django_gpg.runtime import gpg from ..models import DocumentVersionSignature @@ -39,7 +38,7 @@ class DocumentTestCase(TestCase): ) with open(TEST_KEY_FILE) as file_object: - gpg.import_key(file_object.read()) + Key.objects.create(key_data=file_object.read()) def tearDown(self): self.document_type.delete() @@ -60,7 +59,7 @@ class DocumentTestCase(TestCase): # Artifical delay since MySQL doesn't store microsecond data in # timestamps. Version timestamp is used to determine which version # is the latest. - time.sleep(1) + time.sleep(2) self.assertEqual( DocumentVersionSignature.objects.has_detached_signature( From ab6e2d8c230c4249677bb783f5c079cb439790b5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 24 Mar 2016 02:47:53 -0400 Subject: [PATCH 133/205] Fix verification using detached signature. --- mayan/apps/django_gpg/managers.py | 20 ++++++-------------- mayan/apps/django_gpg/tests/test_models.py | 6 +++--- 2 files changed, 9 insertions(+), 17 deletions(-) diff --git a/mayan/apps/django_gpg/managers.py b/mayan/apps/django_gpg/managers.py index 940f207e08..79a29b5af5 100644 --- a/mayan/apps/django_gpg/managers.py +++ b/mayan/apps/django_gpg/managers.py @@ -112,7 +112,7 @@ class KeyManager(models.Manager): shutil.rmtree(temporary_directory) raise KeyDoesNotExist('Specified key for verification not found in keyring') else: - gpg.import_keys(key_data=key.key_data) + result = gpg.import_keys(key_data=key.key_data) if signature_file: # Save the original data and invert the argument order @@ -124,11 +124,12 @@ class KeyManager(models.Manager): signature_file_buffer = io.BytesIO() signature_file_buffer.write(signature_file.read()) signature_file_buffer.seek(0) + signature_file.seek(0) verify_result = gpg.verify_file( file=signature_file_buffer, data_filename=temporary_filename ) signature_file_buffer.close() - # TODO: delete file + os.unlink(temporary_filename) else: verify_result = gpg.verify_file(file=file_object) @@ -136,19 +137,10 @@ class KeyManager(models.Manager): if verify_result: shutil.rmtree(temporary_directory) - SignatureVerification(verify_result.__dict__) - elif verify_result.status == 'no public key' and not (key_fingerprint or all_keys): - # File is signed but we need the key for full verification - #try: - # key = self.get(fingerprint__endswith=verify_result.key_id) - #except self.model.DoesNotExist: - # shutil.rmtree(temporary_directory) - # raise KeyDoesNotExist('Signature key is not found in keyring') - #else: - # gpg.import_keys(key_data=key.key_data) + return SignatureVerification(verify_result.__dict__) + elif verify_result.status == 'no public key' and not (key_fingerprint or all_keys or key_id): file_object.seek(0) - return self.verify_file(file_object=file_object, signature_file=signature_file, key_id=verify_result.key_id, key_fingerprint=key_fingerprint, all_keys=all_keys) - # verify_result = gpg.verify_file(file=file_object) + return self.verify_file(file_object=file_object, signature_file=signature_file, key_id=verify_result.key_id) else: shutil.rmtree(temporary_directory) raise VerificationError('File not signed') diff --git a/mayan/apps/django_gpg/tests/test_models.py b/mayan/apps/django_gpg/tests/test_models.py index 13a6e9d5bf..5b11afd959 100644 --- a/mayan/apps/django_gpg/tests/test_models.py +++ b/mayan/apps/django_gpg/tests/test_models.py @@ -47,7 +47,7 @@ class KeyTestCase(TestCase): with open(TEST_SIGNED_FILE) as signed_file: result = Key.objects.verify_file(signed_file) - self.assertTrue(result) + self.assertTrue(result.valid) self.assertEqual(result.fingerprint, TEST_KEY_FINGERPRINT) def test_embedded_verification_with_correct_fingerprint(self): @@ -56,7 +56,7 @@ class KeyTestCase(TestCase): with open(TEST_SIGNED_FILE) as signed_file: result = Key.objects.verify_file(signed_file, key_fingerprint=TEST_KEY_FINGERPRINT) - self.assertTrue(result) + self.assertTrue(result.valid) self.assertEqual(result.fingerprint, TEST_KEY_FINGERPRINT) def test_embedded_verification_with_incorrect_fingerprint(self): @@ -87,7 +87,7 @@ class KeyTestCase(TestCase): def test_detached_verification_no_key(self): with open(TEST_DETACHED_SIGNATURE) as signature_file: with open(TEST_FILE) as test_file: - with self.assertRaises(VerificationError): + with self.assertRaises(KeyDoesNotExist): Key.objects.verify_file(file_object=test_file, signature_file=signature_file) def test_detached_verification_with_key(self): From 355190e919444510402917d657eb669c0de836e4 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 25 Mar 2016 04:07:57 -0400 Subject: [PATCH 134/205] Start of document_signatures app refactor. --- HISTORY.rst | 1 + mayan/apps/document_signatures/admin.py | 5 +- mayan/apps/document_signatures/apps.py | 96 ++++++++--- mayan/apps/document_signatures/forms.py | 41 +++++ mayan/apps/document_signatures/hooks.py | 54 ------ mayan/apps/document_signatures/links.py | 79 +++++---- mayan/apps/document_signatures/managers.py | 119 ++++++------- .../migrations/0003_auto_20160325_0052.py | 78 +++++++++ .../migrations/0004_auto_20160325_0418.py | 39 +++++ .../migrations/0005_auto_20160325_0748.py | 21 +++ mayan/apps/document_signatures/models.py | 95 +++++++---- mayan/apps/document_signatures/permissions.py | 24 ++- .../document_signatures/tests/test_models.py | 133 +++++++++------ mayan/apps/document_signatures/urls.py | 34 +++- mayan/apps/document_signatures/views.py | 156 +++++++++++------- .../migrations/0033_auto_20160325_0052.py | 18 ++ 16 files changed, 650 insertions(+), 343 deletions(-) delete mode 100644 mayan/apps/document_signatures/hooks.py create mode 100644 mayan/apps/document_signatures/migrations/0003_auto_20160325_0052.py create mode 100644 mayan/apps/document_signatures/migrations/0004_auto_20160325_0418.py create mode 100644 mayan/apps/document_signatures/migrations/0005_auto_20160325_0748.py create mode 100644 mayan/apps/documents/migrations/0033_auto_20160325_0052.py diff --git a/HISTORY.rst b/HISTORY.rst index afd4fca80e..b5a0e194f6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -27,6 +27,7 @@ - More tests added. - Handle unicode filenames in staging folders. - Add staging file deletion permission. +- New document_signature_view permission. 2.0.2 (2016-02-09) ================== diff --git a/mayan/apps/document_signatures/admin.py b/mayan/apps/document_signatures/admin.py index 67ea829c13..4d069195b9 100644 --- a/mayan/apps/document_signatures/admin.py +++ b/mayan/apps/document_signatures/admin.py @@ -2,9 +2,9 @@ from __future__ import unicode_literals from django.contrib import admin -from .models import DocumentVersionSignature - +#from .models import DocumentVersionSignature +""" @admin.register(DocumentVersionSignature) class DocumentVersionSignatureAdmin(admin.ModelAdmin): def document(self, instance): @@ -20,3 +20,4 @@ class DocumentVersionSignatureAdmin(admin.ModelAdmin): ) list_display_links = ('document_version',) search_fields = ('document_version__document__label',) +""" diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index dcf953a593..d541eaf410 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -6,16 +6,26 @@ from django.apps import apps from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission -from common import MayanAppConfig, menu_facet, menu_sidebar +from common import ( + MayanAppConfig, menu_facet, menu_object, menu_secondary, menu_sidebar +) +from common.widgets import two_state_template +from navigation import SourceColumn -from .hooks import document_pre_open_hook, document_version_post_save_hook from .links import ( - link_document_signature_delete, link_document_signature_download, - link_document_signature_upload, link_document_verify + link_document_version_signature_delete, + link_document_version_signature_details, + link_document_version_signature_download, + link_document_version_signature_list, + link_document_version_signature_upload, + link_document_version_signature_verify ) from .permissions import ( - permission_document_verify, permission_signature_delete, - permission_signature_download, permission_signature_upload + permission_document_version_signature_delete, + permission_document_version_signature_download, + permission_document_version_signature_upload, + permission_document_version_signature_verify, + permission_document_version_signature_view, ) logger = logging.getLogger(__name__) @@ -39,30 +49,74 @@ class DocumentSignaturesApp(MayanAppConfig): app_label='documents', model_name='DocumentVersion' ) + DetachedSignature = self.get_model('DetachedSignature') + + EmbeddedSignature = self.get_model('EmbeddedSignature') + + SignatureBaseModel = self.get_model('SignatureBaseModel') + DocumentVersion.register_post_save_hook( - 1, document_version_post_save_hook + order=1, func=EmbeddedSignature.objects.check_signature + ) + DocumentVersion.register_pre_open_hook( + order=1, func=EmbeddedSignature.objects.open_signed ) - DocumentVersion.register_pre_open_hook(1, document_pre_open_hook) ModelPermission.register( model=Document, permissions=( - permission_document_verify, permission_signature_delete, - permission_signature_download, permission_signature_upload, + permission_document_version_signature_delete, + permission_document_version_signature_download, + permission_document_version_signature_verify, + permission_document_version_signature_view, + permission_document_version_signature_upload, ) ) - menu_facet.bind_links( - links=(link_document_verify,), sources=(Document,) + SourceColumn( + source=SignatureBaseModel, label=_('Date'), attribute='date' + ) + SourceColumn( + source=SignatureBaseModel, label=_('Key ID'), attribute='key_id' + ) + SourceColumn( + source=SignatureBaseModel, label=_('Signature ID'), + func=lambda context: context['object'].signature_id or _('None') + ) + SourceColumn( + source=SignatureBaseModel, label=_('Public key ID'), + func=lambda context: context['object'].public_key_fingerprint or _('None') + ) + SourceColumn( + source=SignatureBaseModel, label=_('Is embedded?'), + func=lambda context: two_state_template( + SignatureBaseModel.objects.get_subclass( + pk=context['object'].pk + ).is_embedded + ) + ) + SourceColumn( + source=SignatureBaseModel, label=_('Is detached?'), + func=lambda context: two_state_template( + SignatureBaseModel.objects.get_subclass( + pk=context['object'].pk + ).is_detached + ) + ) + + menu_object.bind_links( + links=(link_document_version_signature_list,), + sources=(DocumentVersion,) + ) + menu_object.bind_links( + links=( + link_document_version_signature_details, + link_document_version_signature_download, + link_document_version_signature_delete, + ), sources=(SignatureBaseModel,) ) menu_sidebar.bind_links( links=( - link_document_signature_upload, - link_document_signature_download, - link_document_signature_delete - ), sources=( - 'signatures:document_verify', - 'signatures:document_signature_upload', - 'signatures:document_signature_download', - 'signatures:document_signature_delete' - ) + link_document_version_signature_upload, + link_document_version_signature_verify, + ), sources=(DocumentVersion,) ) diff --git a/mayan/apps/document_signatures/forms.py b/mayan/apps/document_signatures/forms.py index a79d2b1718..050597aadf 100644 --- a/mayan/apps/document_signatures/forms.py +++ b/mayan/apps/document_signatures/forms.py @@ -3,8 +3,49 @@ from __future__ import unicode_literals from django import forms from django.utils.translation import ugettext_lazy as _ +from common.forms import DetailForm + +from .models import SignatureBaseModel + class DetachedSignatureForm(forms.Form): file = forms.FileField( label=_('Signature file'), ) + + +class DocumentVersionSignatureDetailForm(DetailForm): + def __init__(self, *args, **kwargs): + extra_fields = ( + {'label': _('Is embedded?'), 'field': 'is_embedded'}, + {'label': _('Date'), 'field': 'date'}, + {'label': _('Key ID'), 'field': 'key_id'}, + ) + + kwargs['extra_fields'] = extra_fields + super(DocumentVersionSignatureDetailForm, self).__init__(*args, **kwargs) + + class Meta: + fields = () + model = SignatureBaseModel + + +""" +{ + 'label': _('User ID'), + 'field': lambda x: escape(instance.user_id), +}, +{ + 'label': _('Creation date'), 'field': 'creation_date', + 'widget': forms.widgets.DateInput +}, +{ + 'label': _('Expiration date'), + 'field': lambda x: instance.expiration_date or _('None'), + 'widget': forms.widgets.DateInput +}, +{'label': _('Fingerprint'), 'field': 'fingerprint'}, +{'label': _('Length'), 'field': 'length'}, +{'label': _('Algorithm'), 'field': 'algorithm'}, +{'label': _('Type'), 'field': lambda x: instance.get_key_type_display()}, +""" diff --git a/mayan/apps/document_signatures/hooks.py b/mayan/apps/document_signatures/hooks.py deleted file mode 100644 index 323edeb386..0000000000 --- a/mayan/apps/document_signatures/hooks.py +++ /dev/null @@ -1,54 +0,0 @@ -from __future__ import unicode_literals - -import io -import logging - -from django.apps import apps -from django_gpg.exceptions import DecryptionError - -logger = logging.getLogger(__name__) - - -def document_pre_open_hook(file_object, instance): - logger.debug('instance: %s', instance) - - DocumentVersionSignature = apps.get_model( - app_label='document_signatures', model_name='DocumentVersionSignature' - ) - - Key = apps.get_model( - app_label='django_gpg', model_name='Key' - ) - - if DocumentVersionSignature.objects.has_embedded_signature(document_version=instance): - # If it has an embedded signature, decrypt - try: - result = Key.objects.decrypt_file(file_object=file_object) - # gpg return a string, turn it into a file like object - except DecryptionError: - # At least return the original raw content - file_object.seek(0) - return file_object - else: - file_object.close() - return io.BytesIO(result) - else: - return file_object - - -def document_version_post_save_hook(instance): - logger.debug('instance: %s', instance) - - DocumentVersionSignature = apps.get_model( - app_label='document_signatures', model_name='DocumentVersionSignature' - ) - - try: - document_signature = DocumentVersionSignature.objects.get( - document_version=instance - ) - except DocumentVersionSignature.DoesNotExist: - document_signature = DocumentVersionSignature.objects.create( - document_version=instance - ) - document_signature.check_for_embedded_signature() diff --git a/mayan/apps/document_signatures/links.py b/mayan/apps/document_signatures/links.py index 955d7eb266..fd5b8a6ef4 100644 --- a/mayan/apps/document_signatures/links.py +++ b/mayan/apps/document_signatures/links.py @@ -6,50 +6,57 @@ from django.utils.translation import ugettext_lazy as _ from navigation import Link from .permissions import ( - permission_document_verify, permission_signature_delete, - permission_signature_download, permission_signature_upload, + permission_document_version_signature_delete, + permission_document_version_signature_download, + permission_document_version_signature_upload, + permission_document_version_signature_verify, + permission_document_version_signature_view ) -def can_upload_detached_signature(context): - DocumentVersionSignature = apps.get_model( - app_label='document_signatures', model_name='DocumentVersionSignature' +def is_detached_signature(context): + SignatureBaseModel = apps.get_model( + app_label='document_signatures', model_name='SignatureBaseModel' ) - return not DocumentVersionSignature.objects.has_detached_signature( - context['object'].latest_version - ) and not DocumentVersionSignature.objects.has_embedded_signature( - context['object'].latest_version - ) + return SignatureBaseModel.objects.select_subclasses().get( + pk=context['object'].pk + ).is_detached -def can_delete_detached_signature(context): - DocumentVersionSignature = apps.get_model( - app_label='document_signatures', model_name='DocumentVersionSignature' - ) - - return DocumentVersionSignature.objects.has_detached_signature( - context['object'].latest_version - ) - - -link_document_signature_delete = Link( - condition=can_delete_detached_signature, - permissions=(permission_signature_delete,), tags='dangerous', - text=_('Delete signature'), view='signatures:document_signature_delete', - args='object.pk' +link_document_version_signature_delete = Link( + condition=is_detached_signature, + #permissions=(permission_document_version_signature_delete,), + tags='dangerous', text=_('Delete'), + view='signatures:document_version_signature_delete', + args='resolved_object.pk' ) -link_document_signature_download = Link( - condition=can_delete_detached_signature, text=_('Download signature'), - view='signatures:document_signature_download', args='object.pk', - permissions=(permission_signature_download,) +link_document_version_signature_details = Link( + #permissions=(permission_document_version_signature_view,), + text=_('Details'), + view='signatures:document_version_signature_details', + args='resolved_object.pk' ) -link_document_signature_upload = Link( - condition=can_upload_detached_signature, - permissions=(permission_signature_upload,), text=_('Upload signature'), - view='signatures:document_signature_upload', args='object.pk' +link_document_version_signature_list = Link( + #permissions=(permission_document_version_signature_view,), + text=_('Signature list'), + view='signatures:document_version_signature_list', + args='resolved_object.pk' ) -link_document_verify = Link( - icon='fa fa-certificate', permissions=(permission_document_verify,), - text=_('Signatures'), view='signatures:document_verify', args='object.pk' +link_document_version_signature_download = Link( + condition=is_detached_signature, + text=_('Download'), + view='signatures:document_signature_download', args='resolved_object.pk', + #permissions=(permission_document_version_signature_download,) +) +link_document_version_signature_upload = Link( + #permissions=(permission_document_version_signature_upload,), + text=_('Upload signature'), view='signatures:document_version_signature_upload', + args='resolved_object.pk' +) +link_document_version_signature_verify = Link( + icon='fa fa-certificate', + #permissions=(permission_document_version_signature_verify,), + text=_('Verify signatures'), view='signatures:document_verify', + args='resolved_object.pk' ) diff --git a/mayan/apps/document_signatures/managers.py b/mayan/apps/document_signatures/managers.py index 4b9e64b673..8b21116f80 100644 --- a/mayan/apps/document_signatures/managers.py +++ b/mayan/apps/document_signatures/managers.py @@ -4,73 +4,66 @@ import logging from django.db import models -from django_gpg.exceptions import VerificationError +from django_gpg.exceptions import DecryptionError, VerificationError from django_gpg.models import Key logger = logging.getLogger(__name__) -class DocumentVersionSignatureManager(models.Manager): - def get_document_signature(self, document_version): - document_signature, created = self.model.objects.get_or_create( - document_version=document_version, - ) - - return document_signature - - def add_detached_signature(self, document_version, detached_signature): - document_signature = self.get_document_signature( - document_version=document_version - ) - - if document_signature.has_embedded_signature: - raise Exception( - 'Document version already has an embedded signature' - ) - else: - if document_signature.signature_file: - logger.debug('Existing detached signature') - document_signature.delete_detached_signature_file() - document_signature.signature_file = None - document_signature.save() - - document_signature.signature_file = detached_signature - document_signature.save() - - def has_detached_signature(self, document_version): - try: - document_signature = self.get_document_signature( - document_version=document_version - ) - except ValueError: - return False - else: - if document_signature.signature_file: - return True +class DetachedSignatureManager(models.Manager): + def upload_signature(self, document_version, signature_file): + with document_version.open() as file_object: + try: + verify_result = Key.objects.verify_file( + file_object=file_object, signature_file=signature_file + ) + except VerificationError: + # Not signed + pass else: - return False + instance = self.create( + document_version=document_version, + date=verify_result.date, + key_id=verify_result.key_id, + signature_id=verify_result.signature_id, + public_key_fingerprint=verify_result.pubkey_fingerprint, + ) - def has_embedded_signature(self, document_version): - logger.debug('document_version: %s', document_version) - try: - document_signature = self.get_document_signature( - document_version=document_version - ) - except ValueError: - return False +class EmbeddedSignatureManager(models.Manager): + def check_signature(self, document_version): + logger.debug('checking for embedded signature') + + with document_version.open() as file_object: + try: + verify_result = Key.objects.verify_file(file_object=file_object) + except VerificationError: + # Not signed + pass + else: + instance = self.create( + document_version=document_version, + date=verify_result.date, + key_id=verify_result.key_id, + signature_id=verify_result.signature_id, + public_key_fingerprint=verify_result.pubkey_fingerprint, + ) + + def open_signed(self, file_object, document_version): + for signature in self.filter(document_version=document_version): + try: + return self.open_signed( + file_object=Key.objects.decrypt_file( + file_object=file_object + ), document_version=document_version + ) + except DecryptionError: + file_object.seek(0) + return file_object else: - return document_signature.has_embedded_signature - - def detached_signature(self, document_version): - document_signature = self.get_document_signature( - document_version=document_version - ) - - return document_signature.signature_file.storage.open( - document_signature.signature_file.name - ) + return file_object + """ def verify_signature(self, document_version): document_version_descriptor = document_version.open(raw=True) detached_signature = None @@ -91,14 +84,4 @@ class DocumentVersionSignatureManager(models.Manager): document_version_descriptor.close() if detached_signature: detached_signature.close() - - def clear_detached_signature(self, document_version): - document_signature = self.get_document_signature( - document_version=document_version - ) - if not document_signature.signature_file: - raise Exception('document doesn\'t have a detached signature') - - document_signature.delete_detached_signature_file() - document_signature.signature_file = None - document_signature.save() + """ diff --git a/mayan/apps/document_signatures/migrations/0003_auto_20160325_0052.py b/mayan/apps/document_signatures/migrations/0003_auto_20160325_0052.py new file mode 100644 index 0000000000..76fa8f097f --- /dev/null +++ b/mayan/apps/document_signatures/migrations/0003_auto_20160325_0052.py @@ -0,0 +1,78 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models +import storage.backends.filebasedstorage +import document_signatures.models + + +class Migration(migrations.Migration): + + dependencies = [ + ('documents', '0033_auto_20160325_0052'), + ('document_signatures', '0002_auto_20150608_1902'), + ] + + operations = [ + migrations.CreateModel( + name='SignatureBaseModel', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('date', models.DateField(null=True, verbose_name='Date signed', blank=True)), + ('key_id', models.CharField(max_length=40, verbose_name='Key ID')), + ('signature_id', models.CharField(max_length=64, null=True, verbose_name='Signature ID', blank=True)), + ('public_key_fingerprint', models.CharField(verbose_name='Public key fingerprint', unique=True, max_length=40, editable=False)), + ], + options={ + 'verbose_name': 'Document version signature', + 'verbose_name_plural': 'Document version signatures', + }, + ), + migrations.RemoveField( + model_name='documentversionsignature', + name='has_embedded_signature', + ), + migrations.AddField( + model_name='documentversionsignature', + name='date', + field=models.DateField(null=True, verbose_name='Date signed', blank=True), + ), + migrations.AddField( + model_name='documentversionsignature', + name='signature_id', + field=models.CharField(max_length=64, null=True, verbose_name='Signature ID', blank=True), + ), + migrations.AlterField( + model_name='documentversionsignature', + name='document_version', + field=models.ForeignKey(related_name='signature', editable=False, to='documents.DocumentVersion', verbose_name='Document version'), + ), + migrations.CreateModel( + name='DetachedSignature', + fields=[ + ('signaturebasemodel_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='document_signatures.SignatureBaseModel')), + ('signature_file', models.FileField(storage=storage.backends.filebasedstorage.FileBasedStorage(), upload_to=document_signatures.models.upload_to, null=True, verbose_name='Signature file', blank=True)), + ], + options={ + 'verbose_name': 'Document version detached signature', + 'verbose_name_plural': 'Document version detached signatures', + }, + bases=('document_signatures.signaturebasemodel',), + ), + migrations.CreateModel( + name='EmbeddedSignature', + fields=[ + ('signaturebasemodel_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='document_signatures.SignatureBaseModel')), + ], + options={ + 'verbose_name': 'Document version embedded signature', + 'verbose_name_plural': 'Document version embedded signatures', + }, + bases=('document_signatures.signaturebasemodel',), + ), + migrations.AddField( + model_name='signaturebasemodel', + name='document_version', + field=models.ForeignKey(related_name='signaturebasemodel', editable=False, to='documents.DocumentVersion', verbose_name='Document version'), + ), + ] diff --git a/mayan/apps/document_signatures/migrations/0004_auto_20160325_0418.py b/mayan/apps/document_signatures/migrations/0004_auto_20160325_0418.py new file mode 100644 index 0000000000..469cf232b9 --- /dev/null +++ b/mayan/apps/document_signatures/migrations/0004_auto_20160325_0418.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('document_signatures', '0003_auto_20160325_0052'), + ] + + operations = [ + migrations.AlterField( + model_name='documentversionsignature', + name='document_version', + field=models.ForeignKey(editable=False, to='documents.DocumentVersion', verbose_name='Document version'), + ), + migrations.AlterField( + model_name='signaturebasemodel', + name='date', + field=models.DateField(verbose_name='Date signed', null=True, editable=False, blank=True), + ), + migrations.AlterField( + model_name='signaturebasemodel', + name='document_version', + field=models.ForeignKey(related_name='signatures', editable=False, to='documents.DocumentVersion', verbose_name='Document version'), + ), + migrations.AlterField( + model_name='signaturebasemodel', + name='public_key_fingerprint', + field=models.CharField(null=True, editable=False, max_length=40, blank=True, unique=True, verbose_name='Public key fingerprint'), + ), + migrations.AlterField( + model_name='signaturebasemodel', + name='signature_id', + field=models.CharField(verbose_name='Signature ID', max_length=64, null=True, editable=False, blank=True), + ), + ] diff --git a/mayan/apps/document_signatures/migrations/0005_auto_20160325_0748.py b/mayan/apps/document_signatures/migrations/0005_auto_20160325_0748.py new file mode 100644 index 0000000000..cc087b93e2 --- /dev/null +++ b/mayan/apps/document_signatures/migrations/0005_auto_20160325_0748.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('document_signatures', '0004_auto_20160325_0418'), + ] + + operations = [ + migrations.RemoveField( + model_name='documentversionsignature', + name='document_version', + ), + migrations.DeleteModel( + name='DocumentVersionSignature', + ), + ] diff --git a/mayan/apps/document_signatures/models.py b/mayan/apps/document_signatures/models.py index cf1ca82e3b..397ac92354 100644 --- a/mayan/apps/document_signatures/models.py +++ b/mayan/apps/document_signatures/models.py @@ -1,16 +1,21 @@ from __future__ import unicode_literals +from datetime import date import logging import uuid +from django.core.urlresolvers import reverse from django.db import models +from django.utils.encoding import python_2_unicode_compatible from django.utils.translation import ugettext_lazy as _ -from django_gpg.exceptions import DecryptionError +from model_utils.managers import InheritanceManager + +from django_gpg.exceptions import DecryptionError, VerificationError from django_gpg.models import Key from documents.models import DocumentVersion -from .managers import DocumentVersionSignatureManager +from .managers import EmbeddedSignatureManager, DetachedSignatureManager from .runtime import storage_backend logger = logging.getLogger(__name__) @@ -20,39 +25,71 @@ def upload_to(*args, **kwargs): return unicode(uuid.uuid4()) -class DocumentVersionSignature(models.Model): - """ - Model that describes a document version signature properties - """ +@python_2_unicode_compatible +class SignatureBaseModel(models.Model): document_version = models.ForeignKey( - DocumentVersion, editable=False, verbose_name=_('Document version') + DocumentVersion, editable=False, related_name='signatures', + verbose_name=_('Document version') ) - signature_file = models.FileField( - blank=True, null=True, storage=storage_backend, upload_to=upload_to, - verbose_name=_('Signature file') + # Basic fields + date = models.DateField( + blank=True, editable=False, null=True, verbose_name=_('Date signed') ) - has_embedded_signature = models.BooleanField( - default=False, verbose_name=_('Has embedded signature') + key_id = models.CharField(max_length=40, verbose_name=_('Key ID')) + # With proper key + signature_id = models.CharField( + blank=True, editable=False, null=True, max_length=64, + verbose_name=_('Signature ID') + ) + public_key_fingerprint = models.CharField( + blank=True, editable=False, null=True, max_length=40, unique=True, + verbose_name=_('Public key fingerprint') ) - objects = DocumentVersionSignatureManager() - - def check_for_embedded_signature(self): - logger.debug('checking for embedded signature') - - with self.document_version.open(raw=True) as file_object: - try: - Key.objects.decrypt_file(file_object=file_object) - except DecryptionError: - self.has_embedded_signature = False - else: - self.has_embedded_signature = True - - self.save() - - def delete_detached_signature_file(self): - self.signature_file.storage.delete(self.signature_file.name) + objects = InheritanceManager() class Meta: verbose_name = _('Document version signature') verbose_name_plural = _('Document version signatures') + + def __str__(self): + return self.signature_id or '{} - {}'.format(self.date, self.key_id) + + def get_absolute_url(self): + return reverse( + 'document_signatures:document_version_signature_detail', + args=(self.pk,) + ) + + @property + def is_detached(self): + return hasattr(self, 'signature_file') + + @property + def is_embedded(self): + return not hasattr(self, 'signature_file') + + +class EmbeddedSignature(SignatureBaseModel): + objects = EmbeddedSignatureManager() + + class Meta: + verbose_name = _('Document version embedded signature') + verbose_name_plural = _('Document version embedded signatures') + + +class DetachedSignature(SignatureBaseModel): + signature_file = models.FileField( + blank=True, null=True, storage=storage_backend, upload_to=upload_to, + verbose_name=_('Signature file') + ) + + objects = DetachedSignatureManager() + + class Meta: + verbose_name = _('Document version detached signature') + verbose_name_plural = _('Document version detached signatures') + + def delete(self, *args, **kwargs): + self.signature_file.storage.delete(self.signature_file.name) + super(DetachedSignature, self).delete(*args, **kwargs) diff --git a/mayan/apps/document_signatures/permissions.py b/mayan/apps/document_signatures/permissions.py index 90f8270503..e973aac602 100644 --- a/mayan/apps/document_signatures/permissions.py +++ b/mayan/apps/document_signatures/permissions.py @@ -8,15 +8,23 @@ namespace = PermissionNamespace( 'document_signatures', _('Document signatures') ) -permission_document_verify = namespace.add_permission( - name='document_verify', label=_('Verify document signatures') +permission_document_version_signature_view = namespace.add_permission( + name='document_version_signature_view', + label=_('View details of document signatures') ) -permission_signature_delete = namespace.add_permission( - name='signature_delete', label=_('Delete detached signatures') +permission_document_version_signature_verify = namespace.add_permission( + name='document_version_signature_verify', + label=_('Verify document signatures') ) -permission_signature_download = namespace.add_permission( - name='signature_download', label=_('Download detached signatures') +permission_document_version_signature_delete = namespace.add_permission( + name='document_version_signature_delete', + label=_('Delete detached signatures') ) -permission_signature_upload = namespace.add_permission( - name='signature_upload', label=_('Upload detached signatures') +permission_document_version_signature_download = namespace.add_permission( + name='document_version_signature_download', + label=_('Download detached document signatures') +) +permission_document_version_signature_upload = namespace.add_permission( + name='document_version_signature_upload', + label=_('Upload detached document signatures') ) diff --git a/mayan/apps/document_signatures/tests/test_models.py b/mayan/apps/document_signatures/tests/test_models.py index 5516e029e5..12338f3d4c 100644 --- a/mayan/apps/document_signatures/tests/test_models.py +++ b/mayan/apps/document_signatures/tests/test_models.py @@ -4,14 +4,13 @@ import os import time from django.conf import settings -from django.core.files.base import File from django.test import TestCase, override_settings from django_gpg.models import Key from documents.models import DocumentType from documents.tests import TEST_DOCUMENT_PATH, TEST_DOCUMENT_TYPE -from ..models import DocumentVersionSignature +from ..models import DetachedSignature, EmbeddedSignature TEST_SIGNED_DOCUMENT_PATH = os.path.join( settings.BASE_DIR, 'contrib', 'sample_documents', 'mayan_11_1.pdf.gpg' @@ -23,6 +22,7 @@ TEST_KEY_FILE = os.path.join( settings.BASE_DIR, 'contrib', 'sample_documents', 'key0x5F3F7F75D210724D.asc' ) +TEST_KEY_ID = '5F3F7F75D210724D' @override_settings(OCR_AUTO_OCR=False) @@ -32,28 +32,82 @@ class DocumentTestCase(TestCase): label=TEST_DOCUMENT_TYPE ) - with open(TEST_DOCUMENT_PATH) as file_object: - self.document = self.document_type.new_document( - file_object=File(file_object), label='mayan_11_1.pdf' - ) - - with open(TEST_KEY_FILE) as file_object: - Key.objects.create(key_data=file_object.read()) - def tearDown(self): self.document_type.delete() - def test_document_no_signature(self): - self.assertEqual( - DocumentVersionSignature.objects.has_detached_signature( - self.document.latest_version - ), False - ) - - def test_new_document_version_signed(self): + def test_embedded_signature(self): with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: - self.document.new_version( - file_object=File(file_object), comment='test comment 1' + signed_document = self.document_type.new_document( + file_object=file_object + ) + + self.assertEqual(EmbeddedSignature.objects.count(), 1) + + signature = EmbeddedSignature.objects.first() + + self.assertEqual( + signature.document_version, signed_document.latest_version + ) + self.assertEqual(signature.key_id, TEST_KEY_ID) + + def test_embedded_signature_with_key(self): + with open(TEST_KEY_FILE) as file_object: + key = Key.objects.create(key_data=file_object.read()) + + with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: + self.signed_document = self.document_type.new_document( + file_object=file_object + ) + + self.assertEqual(EmbeddedSignature.objects.count(), 1) + + signature = EmbeddedSignature.objects.first() + + self.assertEqual( + signature.document_version, + self.signed_document.latest_version + ) + self.assertEqual(signature.key_id, TEST_KEY_ID) + self.assertEqual(signature.public_key_fingerprint, key.fingerprint) + + def test_detached_signature(self): + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + DetachedSignature.objects.upload_signature( + document_version=document.latest_version, + signature_file=file_object + ) + + self.assertEqual(DetachedSignature.objects.count(), 1) + self.assertEqual( + DetachedSignature.objects.first().document_version, + document.latest_version + ) + self.assertEqual(DetachedSignature.objects.first().key_id, TEST_KEY_ID) + + # TODO: test_verify_signature_after_new_key(self): + + def test_document_no_signature(self): + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + self.assertEqual(EmbeddedSignature.objects.count(), 0) + + def test_new_signed_version(self): + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: + signed_version = document.new_version( + file_object=file_object, comment='test comment 1' ) # Artifical delay since MySQL doesn't store microsecond data in @@ -61,40 +115,9 @@ class DocumentTestCase(TestCase): # is the latest. time.sleep(2) - self.assertEqual( - DocumentVersionSignature.objects.has_detached_signature( - self.document.latest_version - ), False - ) - self.assertEqual( - DocumentVersionSignature.objects.verify_signature( - self.document.latest_version - ).status, SIGNATURE_STATE_VALID - ) + self.assertEqual(EmbeddedSignature.objects.count(), 1) - def test_detached_signatures(self): - with open(TEST_DOCUMENT_PATH) as file_object: - self.document.new_version( - file_object=File(file_object), comment='test comment 2' - ) + signature = EmbeddedSignature.objects.first() - # GPGVerificationError - self.assertEqual(DocumentVersionSignature.objects.verify_signature( - self.document.latest_version), None - ) - - with open(TEST_SIGNATURE_FILE_PATH, 'rb') as file_object: - DocumentVersionSignature.objects.add_detached_signature( - self.document.latest_version, File(file_object) - ) - - self.assertEqual( - DocumentVersionSignature.objects.has_detached_signature( - self.document.latest_version - ), True - ) - self.assertEqual( - DocumentVersionSignature.objects.verify_signature( - self.document.latest_version - ).status, SIGNATURE_STATE_VALID - ) + self.assertEqual(signature.document_version, signed_version) + self.assertEqual(signature.key_id, TEST_KEY_ID) diff --git a/mayan/apps/document_signatures/urls.py b/mayan/apps/document_signatures/urls.py index 408b385fae..061aa95e53 100644 --- a/mayan/apps/document_signatures/urls.py +++ b/mayan/apps/document_signatures/urls.py @@ -2,22 +2,40 @@ from __future__ import unicode_literals from django.conf.urls import patterns, url +from .views import ( + DocumentVersionSignatureDeleteView, DocumentVersionSignatureDetailView, + DocumentVersionSignatureListView +) + urlpatterns = patterns( 'document_signatures.views', url( - r'^verify/(?P\d+)/$', 'document_verify', - name='document_verify' + r'^(?P\d+)/details/$', + DocumentVersionSignatureDetailView.as_view(), + name='document_version_signature_details' ), url( - r'^upload/signature/(?P\d+)/$', - 'document_signature_upload', name='document_signature_upload' + r'^signature/(?P\d+)/download/$', + 'document_signature_download', + name='document_version_signature_download' ), url( - r'^download/signature/(?P\d+)/$', - 'document_signature_download', name='document_signature_download' + r'^document/version/(?P\d+)/signatures/list/$', + DocumentVersionSignatureListView.as_view(), + name='document_version_signature_list' ), url( - r'^document/(?P\d+)/signature/delete/$', - 'document_signature_delete', name='document_signature_delete' + r'^documents/version/(?P\d+)/signature/verify/$', + 'document_verify', name='document_version_signature_verify' + ), + url( + r'^documents/version/(?P\d+)/signature/upload/$', + 'document_version_signature_upload', + name='document_version_signature_upload' + ), + url( + r'^signature/(?P\d+)/delete/$', + DocumentVersionSignatureDeleteView.as_view(), + name='document_version_signature_delete' ), ) diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index 0b443402bd..99d8be3715 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -14,21 +14,95 @@ from django.utils.html import escape from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList +from common.generics import ( + SingleObjectDeleteView, SingleObjectDetailView, SingleObjectListView +) from django_gpg.literals import SIGNATURE_STATE_NONE, SIGNATURE_STATES -from documents.models import Document +from documents.models import Document, DocumentVersion from filetransfers.api import serve_file from permissions import Permission -from .forms import DetachedSignatureForm -from .models import DocumentVersionSignature +from .forms import DetachedSignatureForm, DocumentVersionSignatureDetailForm +from .models import DetachedSignature, SignatureBaseModel from .permissions import ( - permission_document_verify, permission_signature_upload, - permission_signature_download, permission_signature_delete + permission_document_version_signature_view, + permission_document_version_signature_verify, + permission_document_version_signature_upload, + permission_document_version_signature_download, + permission_document_version_signature_delete ) logger = logging.getLogger(__name__) +class DocumentVersionSignatureDeleteView(SingleObjectDeleteView): + model = DetachedSignature + + def get_extra_context(self): + return { + 'document': self.get_object().document_version.document, + 'document_version': self.get_object().document_version, + 'navigation_object_list': ('document', 'document_version', 'signature'), + 'signature': self.get_object(), + 'title': _('Delete detached signature: %s') % self.get_object() + } + + def get_post_action_redirect(self): + return reverse( + 'signatures:document_version_signature_list', + args=(self.get_object().document_version.pk,) + ) + + +class DocumentVersionSignatureDetailView(SingleObjectDetailView): + form_class = DocumentVersionSignatureDetailForm + + def get_extra_context(self): + return { + 'document': self.get_object().document_version.document, + 'document_version': self.get_object().document_version, + 'signature': self.get_object(), + 'navigation_object_list': ('document', 'document_version', 'signature'), + 'hide_object': True, + 'title': _( + 'Details for signature: %s' + ) % self.get_object(), + } + + def get_queryset(self): + return SignatureBaseModel.objects.select_subclasses() + + +class DocumentVersionSignatureListView(SingleObjectListView): + def get_document_version(self): + return get_object_or_404(DocumentVersion, pk=self.kwargs['pk']) + + def get_extra_context(self): + return { + 'document': self.get_document_version().document, + 'document_version': self.get_document_version(), + 'navigation_object_list': ('document', 'document_version'), + 'hide_object': True, + 'title': _( + 'Signatures for document version: %s' + ) % self.get_document_version(), + } + + def get_queryset(self): + queryset = self.get_document_version().signatures.all() + + try: + Permission.check_permissions( + self.request.user, (permission_document_version_signature_view,) + ) + except PermissionDenied: + return AccessControlList.objects.filter_by_access( + permission_document_version_signature_view, self.request.user, queryset + ) + else: + return queryset + + def document_verify(request, document_pk): document = get_object_or_404(Document, pk=document_pk) @@ -84,19 +158,20 @@ def document_verify(request, document_pk): }, context_instance=RequestContext(request)) -def document_signature_upload(request, document_pk): - document = get_object_or_404(Document, pk=document_pk) + +def document_version_signature_upload(request, pk): + document_version = get_object_or_404(DocumentVersion, pk=pk) try: Permission.check_permissions( - request.user, (permission_signature_upload,) + request.user, (permission_document_version_signature_upload,) ) except PermissionDenied: AccessControlList.objects.check_access( - permission_signature_upload, request.user, document + permission_document_version_signature_upload, request.user, document_version.document ) - document.add_as_recent_document_for_user(request.user) + document_version.document.add_as_recent_document_for_user(request.user) post_action_redirect = None previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) @@ -106,8 +181,9 @@ def document_signature_upload(request, document_pk): form = DetachedSignatureForm(request.POST, request.FILES) if form.is_valid(): try: - DocumentVersionSignature.objects.add_detached_signature( - document.latest_version, request.FILES['file'] + DetachedSignature.objects.upload_signature( + document_version=document_version, + signature_file=request.FILES['file'] ) messages.success( request, _('Detached signature uploaded successfully.') @@ -122,9 +198,11 @@ def document_signature_upload(request, document_pk): return render_to_response('appearance/generic_form.html', { 'form': form, 'next': next, - 'object': document, + 'document': document_version.document, + 'document_version': document_version, + 'navigation_object_list': ('document', 'document_version'), 'previous': previous, - 'title': _('Upload detached signature for document: %s') % document, + 'title': _('Upload detached signature for document version: %s') % document_version, }, context_instance=RequestContext(request)) @@ -133,11 +211,11 @@ def document_signature_download(request, document_pk): try: Permission.check_permissions( - request.user, (permission_signature_download,) + request.user, (permission_document_version_signature_download,) ) except PermissionDenied: AccessControlList.objects.check_access( - permission_signature_download, request.user, document + permission_document_version_signature_download, request.user, document ) try: @@ -156,49 +234,3 @@ def document_signature_download(request, document_pk): return HttpResponseRedirect(request.META['HTTP_REFERER']) return HttpResponseRedirect(request.META['HTTP_REFERER']) - - -def document_signature_delete(request, document_pk): - document = get_object_or_404(Document, pk=document_pk) - - try: - Permission.check_permissions( - request.user, (permission_signature_delete,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - permission_signature_delete, request.user, document - ) - - document.add_as_recent_document_for_user(request.user) - - post_action_redirect = None - previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - next = request.POST.get('next', request.GET.get('next', post_action_redirect if post_action_redirect else request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - - if request.method == 'POST': - try: - DocumentVersionSignature.objects.clear_detached_signature( - document.latest_version - ) - messages.success( - request, _('Detached signature deleted successfully.') - ) - return HttpResponseRedirect(next) - except Exception as exception: - messages.error( - request, _( - 'Error while deleting the detached signature; %s' - ) % exception - ) - return HttpResponseRedirect(previous) - - return render_to_response('appearance/generic_confirm.html', { - 'delete_view': True, - 'next': next, - 'object': document, - 'previous': previous, - 'title': _( - 'Delete the detached signature from document: %s?' - ) % document, - }, context_instance=RequestContext(request)) diff --git a/mayan/apps/documents/migrations/0033_auto_20160325_0052.py b/mayan/apps/documents/migrations/0033_auto_20160325_0052.py new file mode 100644 index 0000000000..b3fa863e17 --- /dev/null +++ b/mayan/apps/documents/migrations/0033_auto_20160325_0052.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('documents', '0032_auto_20160315_0537'), + ] + + operations = [ + migrations.AlterModelOptions( + name='documenttypefilename', + options={'ordering': ('filename',), 'verbose_name': 'Quick label', 'verbose_name_plural': 'Quick labels'}, + ), + ] From 09b92858d9a7d02a1c2b3095d6acef245de3917a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 25 Mar 2016 04:08:25 -0400 Subject: [PATCH 135/205] Raise MayanAppConfig initialization exception if they are not bening about missing URLs. --- mayan/apps/common/apps.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mayan/apps/common/apps.py b/mayan/apps/common/apps.py index a514036aff..457ecc2073 100644 --- a/mayan/apps/common/apps.py +++ b/mayan/apps/common/apps.py @@ -61,6 +61,8 @@ class MayanAppConfig(apps.AppConfig): 'App %s doesn\'t have URLs defined. Exception: %s', self.name, exception ) + if 'No module named urls' not in unicode(exception): + raise exception class CommonApp(MayanAppConfig): From 7e801ef02e8ad1501040ef75911109855e0caef1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 25 Mar 2016 04:09:30 -0400 Subject: [PATCH 136/205] Fix verifyresult timestamp field. Remove Key ID property and verify return a separate small key id without a fingerprint when the signing key is not available. --- mayan/apps/django_gpg/classes.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/mayan/apps/django_gpg/classes.py b/mayan/apps/django_gpg/classes.py index 5e49317cc8..510f14ada0 100644 --- a/mayan/apps/django_gpg/classes.py +++ b/mayan/apps/django_gpg/classes.py @@ -24,8 +24,9 @@ class SignatureVerification(object): def __init__(self, raw): self.user_id = raw['username'] self.status = raw['status'] + self.key_id = raw['key_id'] self.pubkey_fingerprint = raw['pubkey_fingerprint'] - self.date = date.fromtimestamp(int(raw['sig_timestamp'])) + self.date = date.fromtimestamp(int(raw['timestamp'])) if raw['expire_timestamp']: self.expires = date.fromtimestamp(int(raw['expire_timestamp'])) else: @@ -36,7 +37,3 @@ class SignatureVerification(object): self.fingerprint = raw['fingerprint'] self.signature_id = raw['signature_id'] self.trust_level = raw['trust_level'] - - @property - def key_id(self): - return self.fingerprint[-8:] From ffb29e0f54239ee922cf338702954f344593923b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 25 Mar 2016 04:10:20 -0400 Subject: [PATCH 137/205] Remove obsolete Document property. Use resolved_object in documents links to avoid context variable clashes with signatures. --- mayan/apps/django_gpg/managers.py | 18 ++++++++--- mayan/apps/django_gpg/tests/test_models.py | 37 ++++++++++++++++------ mayan/apps/documents/links.py | 22 ++++++------- mayan/apps/documents/models.py | 4 --- 4 files changed, 52 insertions(+), 29 deletions(-) diff --git a/mayan/apps/django_gpg/managers.py b/mayan/apps/django_gpg/managers.py index 79a29b5af5..3ef0545fa2 100644 --- a/mayan/apps/django_gpg/managers.py +++ b/mayan/apps/django_gpg/managers.py @@ -39,7 +39,9 @@ class KeyManager(models.Manager): if not decrypt_result.status or decrypt_result.status == 'no data was provided': raise DecryptionError('Unable to decrypt file') - return str(decrypt_result) + file_object.close() + + return io.BytesIO(str(decrypt_result)) def receive_key(self, key_id): temporary_directory = tempfile.mkdtemp() @@ -109,8 +111,9 @@ class KeyManager(models.Manager): try: key = self.get(fingerprint__endswith=key_id) except self.model.DoesNotExist: - shutil.rmtree(temporary_directory) - raise KeyDoesNotExist('Specified key for verification not found in keyring') + pass + #shutil.rmtree(temporary_directory) + #raise KeyDoesNotExist('Specified key for verification not found in keyring') else: result = gpg.import_keys(key_data=key.key_data) @@ -135,12 +138,17 @@ class KeyManager(models.Manager): logger.debug('verify_result.status: %s', verify_result.status) + shutil.rmtree(temporary_directory) + if verify_result: - shutil.rmtree(temporary_directory) + # Signed and key present return SignatureVerification(verify_result.__dict__) elif verify_result.status == 'no public key' and not (key_fingerprint or all_keys or key_id): + # Signed but key not present, retry with key fetch file_object.seek(0) return self.verify_file(file_object=file_object, signature_file=signature_file, key_id=verify_result.key_id) + elif verify_result.key_id: + # Signed, retried and key still not found + return SignatureVerification(verify_result.__dict__) else: - shutil.rmtree(temporary_directory) raise VerificationError('File not signed') diff --git a/mayan/apps/django_gpg/tests/test_models.py b/mayan/apps/django_gpg/tests/test_models.py index 5b11afd959..e871ecf1b3 100644 --- a/mayan/apps/django_gpg/tests/test_models.py +++ b/mayan/apps/django_gpg/tests/test_models.py @@ -34,12 +34,25 @@ class KeyTestCase(TestCase): Key.objects.receive_key(key_id=TEST_SEARCH_FINGERPRINT) self.assertEqual(Key.objects.all().count(), 1) - self.assertEqual(Key.objects.first().fingerprint, TEST_SEARCH_FINGERPRINT) + self.assertEqual( + Key.objects.first().fingerprint, TEST_SEARCH_FINGERPRINT + ) + + def test_cleartext_file_verification(self): + cleartext_file = tempfile.TemporaryFile() + cleartext_file.write('test') + cleartext_file.seek(0) + + with self.assertRaises(VerificationError): + Key.objects.verify_file(file_object=cleartext_file) + + cleartext_file.close() def test_embedded_verification_no_key(self): with open(TEST_SIGNED_FILE) as signed_file: - with self.assertRaises(KeyDoesNotExist): - Key.objects.verify_file(signed_file) + result = Key.objects.verify_file(signed_file) + + self.assertTrue(result.key_id in TEST_KEY_FINGERPRINT) def test_embedded_verification_with_key(self): Key.objects.create(key_data=TEST_KEY_DATA) @@ -47,14 +60,15 @@ class KeyTestCase(TestCase): with open(TEST_SIGNED_FILE) as signed_file: result = Key.objects.verify_file(signed_file) - self.assertTrue(result.valid) self.assertEqual(result.fingerprint, TEST_KEY_FINGERPRINT) def test_embedded_verification_with_correct_fingerprint(self): Key.objects.create(key_data=TEST_KEY_DATA) with open(TEST_SIGNED_FILE) as signed_file: - result = Key.objects.verify_file(signed_file, key_fingerprint=TEST_KEY_FINGERPRINT) + result = Key.objects.verify_file( + signed_file, key_fingerprint=TEST_KEY_FINGERPRINT + ) self.assertTrue(result.valid) self.assertEqual(result.fingerprint, TEST_KEY_FINGERPRINT) @@ -72,7 +86,7 @@ class KeyTestCase(TestCase): with open(TEST_SIGNED_FILE) as signed_file: result = Key.objects.decrypt_file(file_object=signed_file) - self.assertEqual(result, TEST_SIGNED_FILE_CONTENT) + self.assertEqual(result.read(), TEST_SIGNED_FILE_CONTENT) def test_cleartext_file_decryption(self): cleartext_file = tempfile.TemporaryFile() @@ -87,15 +101,20 @@ class KeyTestCase(TestCase): def test_detached_verification_no_key(self): with open(TEST_DETACHED_SIGNATURE) as signature_file: with open(TEST_FILE) as test_file: - with self.assertRaises(KeyDoesNotExist): - Key.objects.verify_file(file_object=test_file, signature_file=signature_file) + result = Key.objects.verify_file( + file_object=test_file, signature_file=signature_file + ) + + self.assertTrue(result.key_id in TEST_KEY_FINGERPRINT) def test_detached_verification_with_key(self): Key.objects.create(key_data=TEST_KEY_DATA) with open(TEST_DETACHED_SIGNATURE) as signature_file: with open(TEST_FILE) as test_file: - result = Key.objects.verify_file(file_object=test_file, signature_file=signature_file) + result = Key.objects.verify_file( + file_object=test_file, signature_file=signature_file + ) self.assertTrue(result) self.assertEqual(result.fingerprint, TEST_KEY_FINGERPRINT) diff --git a/mayan/apps/documents/links.py b/mayan/apps/documents/links.py index e48512402b..f1bb286c83 100644 --- a/mayan/apps/documents/links.py +++ b/mayan/apps/documents/links.py @@ -18,7 +18,7 @@ from .settings import setting_zoom_max_level, setting_zoom_min_level def is_not_current_version(context): - return context['object'].document.latest_version.timestamp != context['object'].timestamp + return context['resolved_object'].document.latest_version.timestamp != context['resolved_object'].timestamp def is_first_page(context): @@ -40,12 +40,12 @@ def is_min_zoom(context): # Facet link_document_preview = Link( icon='fa fa-eye', permissions=(permission_document_view,), - text=_('Preview'), view='documents:document_preview', args='object.id' + text=_('Preview'), view='documents:document_preview', args='resolved_object.id' ) link_document_properties = Link( icon='fa fa-info', permissions=(permission_document_view,), text=_('Properties'), view='documents:document_properties', - args='object.id' + args='resolved_object.id' ) link_document_version_list = Link( icon='fa fa-code-fork', permissions=(permission_document_view,), @@ -61,32 +61,32 @@ link_document_pages = Link( link_document_clear_transformations = Link( permissions=(permission_transformation_delete,), text=_('Clear transformations'), - view='documents:document_clear_transformations', args='object.id' + view='documents:document_clear_transformations', args='resolved_object.id' ) link_document_delete = Link( permissions=(permission_document_delete,), tags='dangerous', - text=_('Delete'), view='documents:document_delete', args='object.id' + text=_('Delete'), view='documents:document_delete', args='resolved_object.id' ) link_document_trash = Link( permissions=(permission_document_trash,), tags='dangerous', - text=_('Move to trash'), view='documents:document_trash', args='object.id' + text=_('Move to trash'), view='documents:document_trash', args='resolved_object.id' ) link_document_edit = Link( permissions=(permission_document_properties_edit,), text=_('Edit properties'), view='documents:document_edit', - args='object.id' + args='resolved_object.id' ) link_document_document_type_edit = Link( permissions=(permission_document_properties_edit,), text=_('Change type'), - view='documents:document_document_type_edit', args='object.id' + view='documents:document_document_type_edit', args='resolved_object.id' ) link_document_download = Link( permissions=(permission_document_download,), text=_('Download'), - view='documents:document_download', args='object.id' + view='documents:document_download', args='resolved_object.id' ) link_document_print = Link( permissions=(permission_document_print,), text=_('Print'), - view='documents:document_print', args='object.id' + view='documents:document_print', args='resolved_object.id' ) link_document_update_page_count = Link( permissions=(permission_document_tools,), text=_('Recalculate page count'), @@ -125,7 +125,7 @@ link_document_multiple_restore = Link( ) link_document_version_download = Link( args='object.pk', permissions=(permission_document_download,), - text=_('Download'), view='documents:document_version_download' + text=_('Download version'), view='documents:document_version_download' ) # Views diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index 7f32be5832..04f0d49a3d 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -322,10 +322,6 @@ class Document(models.Model): # Document has no version yet return 0 - @property - def signature_state(self): - return self.latest_version.signature_state - class DeletedDocument(Document): objects = TrashCanManager() From 467ad0dadb0b6684dc517b9b72d608ecd42da164 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 26 Mar 2016 04:04:34 -0400 Subject: [PATCH 138/205] Add more logging. Add preloading of keys to decrypt_file method. Cleanups. --- mayan/apps/django_gpg/managers.py | 54 +++++++++++++++++++++++++++---- 1 file changed, 47 insertions(+), 7 deletions(-) diff --git a/mayan/apps/django_gpg/managers.py b/mayan/apps/django_gpg/managers.py index 3ef0545fa2..b6bdbab7db 100644 --- a/mayan/apps/django_gpg/managers.py +++ b/mayan/apps/django_gpg/managers.py @@ -21,7 +21,7 @@ logger = logging.getLogger(__name__) class KeyManager(models.Manager): - def decrypt_file(self, file_object): + def decrypt_file(self, file_object, all_keys=False, key_fingerprint=None, key_id=None): temporary_directory = tempfile.mkdtemp() os.chmod(temporary_directory, 0x1C0) @@ -30,6 +30,33 @@ class KeyManager(models.Manager): gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value ) + # Preload keys + if all_keys: + logger.debug('preloading all keys') + for key in Key.objects.all(): + gpg.import_keys(key_data=key.key_data) + elif key_fingerprint: + logger.debug('preloading key fingerprint: %s', key_fingerprint) + try: + key = self.get(fingerprint=key_fingerprint) + except self.model.DoesNotExist: + logger.debug('key fingerprint %s not found', key_fingerprint) + shutil.rmtree(temporary_directory) + raise KeyDoesNotExist( + 'Specified key for verification not found' + ) + else: + gpg.import_keys(key_data=key.key_data) + elif key_id: + logger.debug('preloading key id: %s', key_id) + try: + key = self.get(fingerprint__endswith=key_id) + except self.model.DoesNotExist: + logger.debug('key id %s not found', key_id) + else: + gpg.import_keys(key_data=key.key_data) + logger.debug('key id %s impored', key_id) + decrypt_result = gpg.decrypt_file(file=file_object) shutil.rmtree(temporary_directory) @@ -67,6 +94,8 @@ class KeyManager(models.Manager): def search(self, query): temporary_directory = tempfile.mkdtemp() + os.chmod(temporary_directory, 0x1C0) + gpg = gnupg.GPG( gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value ) @@ -88,34 +117,41 @@ class KeyManager(models.Manager): def private_keys(self): return self.filter(key_type=KEY_TYPE_SECRET) - def verify_file(self, file_object, signature_file=None, key_id=None, key_fingerprint=None, all_keys=False): + def verify_file(self, file_object, signature_file=None, all_keys=False, key_fingerprint=None, key_id=None): temporary_directory = tempfile.mkdtemp() + os.chmod(temporary_directory, 0x1C0) + gpg = gnupg.GPG( gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value ) # Preload keys if all_keys: + logger.debug('preloading all keys') for key in Key.objects.all(): gpg.import_keys(key_data=key.key_data) elif key_fingerprint: + logger.debug('preloading key fingerprint: %s', key_fingerprint) try: key = self.get(fingerprint=key_fingerprint) except self.model.DoesNotExist: + logger.debug('key fingerprint %s not found', key_fingerprint) shutil.rmtree(temporary_directory) - raise KeyDoesNotExist('Specified key for verification not found in keyring') + raise KeyDoesNotExist( + 'Specified key for verification not found' + ) else: gpg.import_keys(key_data=key.key_data) elif key_id: + logger.debug('preloading key id: %s', key_id) try: key = self.get(fingerprint__endswith=key_id) except self.model.DoesNotExist: - pass - #shutil.rmtree(temporary_directory) - #raise KeyDoesNotExist('Specified key for verification not found in keyring') + logger.debug('key id %s not found', key_id) else: - result = gpg.import_keys(key_data=key.key_data) + gpg.import_keys(key_data=key.key_data) + logger.debug('key id %s impored', key_id) if signature_file: # Save the original data and invert the argument order @@ -142,13 +178,17 @@ class KeyManager(models.Manager): if verify_result: # Signed and key present + logger.debug('signed and key present') return SignatureVerification(verify_result.__dict__) elif verify_result.status == 'no public key' and not (key_fingerprint or all_keys or key_id): # Signed but key not present, retry with key fetch + logger.debug('no public key') file_object.seek(0) return self.verify_file(file_object=file_object, signature_file=signature_file, key_id=verify_result.key_id) elif verify_result.key_id: # Signed, retried and key still not found + logger.debug('signed, retried and key still not found') return SignatureVerification(verify_result.__dict__) else: + logger.debug('file not signed') raise VerificationError('File not signed') From 4a4573fb1bc3f0845a3e331eeb2ded35e0d011b8 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 26 Mar 2016 04:05:15 -0400 Subject: [PATCH 139/205] Add missing gpg directory chmod. --- mayan/apps/django_gpg/models.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mayan/apps/django_gpg/models.py b/mayan/apps/django_gpg/models.py index 9235adb65c..9f4ab45239 100644 --- a/mayan/apps/django_gpg/models.py +++ b/mayan/apps/django_gpg/models.py @@ -88,6 +88,8 @@ class Key(models.Model): def save(self, *args, **kwargs): temporary_directory = tempfile.mkdtemp() + os.chmod(temporary_directory, 0x1C0) + gpg = gnupg.GPG( gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value ) @@ -120,6 +122,8 @@ class Key(models.Model): def sign_file(self, file_object, passphrase=None, clearsign=True, detached=False, binary=False, output=None): temporary_directory = tempfile.mkdtemp() + os.chmod(temporary_directory, 0x1C0) + gpg = gnupg.GPG( gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value ) From 9744cdd35879a4cd6e7d5d8ab986df7b7f6b4440 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 26 Mar 2016 04:05:40 -0400 Subject: [PATCH 140/205] Redirect to public or private key list after deletion of a key. --- mayan/apps/django_gpg/views.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mayan/apps/django_gpg/views.py b/mayan/apps/django_gpg/views.py index 54e575fde6..4defb8c90b 100644 --- a/mayan/apps/django_gpg/views.py +++ b/mayan/apps/django_gpg/views.py @@ -12,6 +12,7 @@ from common.generics import ( ) from .forms import KeyDetailForm, KeySearchForm +from .literals import KEY_TYPE_PUBLIC from .models import Key from .permissions import ( permission_key_delete, permission_key_receive, permission_key_view, @@ -25,6 +26,12 @@ class KeyDeleteView(SingleObjectDeleteView): model = Key object_permission = permission_key_delete + def get_post_action_redirect(self): + if self.get_object().key_type == KEY_TYPE_PUBLIC: + post_action_redirect = reverse_lazy('django_gpg:key_public_list') + else: + post_action_redirect = reverse_lazy('django_gpg:key_private_list') + def get_extra_context(self): return { 'title': _('Delete key'), From 779a14977d57fa1b7b6a9f5b87a4e4e6e0e5fb2f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 26 Mar 2016 04:06:08 -0400 Subject: [PATCH 141/205] Add admin interface for embedded and detached signatures. --- mayan/apps/document_signatures/admin.py | 29 +++++++++++++------------ 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/mayan/apps/document_signatures/admin.py b/mayan/apps/document_signatures/admin.py index 4d069195b9..c930da3b3d 100644 --- a/mayan/apps/document_signatures/admin.py +++ b/mayan/apps/document_signatures/admin.py @@ -2,22 +2,23 @@ from __future__ import unicode_literals from django.contrib import admin -#from .models import DocumentVersionSignature +from .models import DetachedSignature, EmbeddedSignature -""" -@admin.register(DocumentVersionSignature) -class DocumentVersionSignatureAdmin(admin.ModelAdmin): - def document(self, instance): - return instance.document_version.document - def has_detached_signature(self, instance): - return True if instance.signature_file else False - - has_detached_signature.boolean = True +@admin.register(DetachedSignature) +class DetachedSignatureAdmin(admin.ModelAdmin): list_display = ( - 'document', 'document_version', 'has_embedded_signature', - 'has_detached_signature' + 'document_version', 'date', 'key_id', 'signature_id', + 'public_key_fingerprint', 'signature_file' ) list_display_links = ('document_version',) - search_fields = ('document_version__document__label',) -""" + + +@admin.register(EmbeddedSignature) +class EmbeddedSignatureAdmin(admin.ModelAdmin): + list_display = ( + 'document_version', 'date', 'key_id', 'signature_id', + 'public_key_fingerprint' + ) + list_display_links = ('document_version',) + From 1f0dedc9aa3b2d75893edea9a5758d4b6cefb22e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 26 Mar 2016 04:06:43 -0400 Subject: [PATCH 142/205] Add more fields to signature detail form. --- mayan/apps/document_signatures/forms.py | 74 +++++++++++++++++-------- 1 file changed, 50 insertions(+), 24 deletions(-) diff --git a/mayan/apps/document_signatures/forms.py b/mayan/apps/document_signatures/forms.py index 050597aadf..b323b1abf6 100644 --- a/mayan/apps/document_signatures/forms.py +++ b/mayan/apps/document_signatures/forms.py @@ -4,6 +4,7 @@ from django import forms from django.utils.translation import ugettext_lazy as _ from common.forms import DetailForm +from django_gpg.models import Key from .models import SignatureBaseModel @@ -17,35 +18,60 @@ class DetachedSignatureForm(forms.Form): class DocumentVersionSignatureDetailForm(DetailForm): def __init__(self, *args, **kwargs): extra_fields = ( - {'label': _('Is embedded?'), 'field': 'is_embedded'}, - {'label': _('Date'), 'field': 'date'}, - {'label': _('Key ID'), 'field': 'key_id'}, + {'label': _('Signature is embedded?'), 'field': 'is_embedded'}, + { + 'label': _('Signature date'), 'field': 'date', + 'widget': forms.widgets.DateInput + }, + {'label': _('Signature key ID'), 'field': 'key_id'}, + { + 'label': _('Signature key present?'), + 'field': lambda x: x.public_key_fingerprint is not None + }, ) + if kwargs['instance'].public_key_fingerprint: + key = Key.objects.get( + fingerprint=kwargs['instance'].public_key_fingerprint + ) + + extra_fields += ( + {'label': _('Signature ID'), 'field': 'signature_id'}, + { + 'label': _('Key fingerprint'), + 'field': lambda x: key.fingerprint + }, + { + 'label': _('Key creation date'), + 'field': lambda x: key.creation_date, + 'widget': forms.widgets.DateInput + }, + { + 'label': _('Key expiration date'), + 'field': lambda x: key.expiration_date or _('None'), + 'widget': forms.widgets.DateInput + }, + { + 'label': _('Key length'), + 'field': lambda x: key.length + }, + { + 'label': _('Key algorithm'), + 'field': lambda x: key.algorithm + }, + { + 'label': _('Key user ID'), + 'field': lambda x: key.user_id + }, + { + 'label': _('Key type'), + 'field': lambda x: key.get_key_type_display() + }, + ) + kwargs['extra_fields'] = extra_fields super(DocumentVersionSignatureDetailForm, self).__init__(*args, **kwargs) class Meta: fields = () model = SignatureBaseModel - - -""" -{ - 'label': _('User ID'), - 'field': lambda x: escape(instance.user_id), -}, -{ - 'label': _('Creation date'), 'field': 'creation_date', - 'widget': forms.widgets.DateInput -}, -{ - 'label': _('Expiration date'), - 'field': lambda x: instance.expiration_date or _('None'), - 'widget': forms.widgets.DateInput -}, -{'label': _('Fingerprint'), 'field': 'fingerprint'}, -{'label': _('Length'), 'field': 'length'}, -{'label': _('Algorithm'), 'field': 'algorithm'}, -{'label': _('Type'), 'field': lambda x: instance.get_key_type_display()}, -""" From 5de63c44779b9e4a505007184807c042b782a6da Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 26 Mar 2016 04:23:16 -0400 Subject: [PATCH 143/205] Add support for verifying and unverifying signatures after a key is added or deleted. --- mayan/apps/django_gpg/apps.py | 2 - mayan/apps/django_gpg/exceptions.py | 6 +- mayan/apps/django_gpg/managers.py | 4 +- mayan/apps/django_gpg/views.py | 4 +- mayan/apps/document_signatures/admin.py | 1 - mayan/apps/document_signatures/apps.py | 40 ++++- mayan/apps/document_signatures/handlers.py | 15 ++ mayan/apps/document_signatures/managers.py | 61 ------- .../migrations/0006_auto_20160326_0616.py | 19 +++ mayan/apps/document_signatures/models.py | 51 +++++- mayan/apps/document_signatures/tasks.py | 50 ++++++ .../document_signatures/tests/test_models.py | 152 ++++++++++++++++-- mayan/apps/document_signatures/views.py | 60 +------ mayan/apps/documents/models.py | 8 +- 14 files changed, 325 insertions(+), 148 deletions(-) create mode 100644 mayan/apps/document_signatures/handlers.py create mode 100644 mayan/apps/document_signatures/migrations/0006_auto_20160326_0616.py create mode 100644 mayan/apps/document_signatures/tasks.py diff --git a/mayan/apps/django_gpg/apps.py b/mayan/apps/django_gpg/apps.py index 4efb36ac89..f187bf25ba 100644 --- a/mayan/apps/django_gpg/apps.py +++ b/mayan/apps/django_gpg/apps.py @@ -1,7 +1,5 @@ from __future__ import absolute_import, unicode_literals -from datetime import datetime - from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission diff --git a/mayan/apps/django_gpg/exceptions.py b/mayan/apps/django_gpg/exceptions.py index 0afb08945a..a725ee0e8a 100644 --- a/mayan/apps/django_gpg/exceptions.py +++ b/mayan/apps/django_gpg/exceptions.py @@ -1,6 +1,6 @@ __all__ = ( - 'GPGException', 'GPGVerificationError', 'GPGSigningError', - 'GPGDecryptionError', 'KeyDeleteError', 'KeyGenerationError', + 'GPGException', 'VerificationError', 'SigningError', + 'DecryptionError', 'KeyDeleteError', 'KeyGenerationError', 'KeyFetchingError', 'KeyDoesNotExist', 'KeyImportError' ) @@ -13,7 +13,7 @@ class VerificationError(GPGException): pass -class GPGSigningError(GPGException): +class SigningError(GPGException): pass diff --git a/mayan/apps/django_gpg/managers.py b/mayan/apps/django_gpg/managers.py index b6bdbab7db..1a26a4e0cf 100644 --- a/mayan/apps/django_gpg/managers.py +++ b/mayan/apps/django_gpg/managers.py @@ -33,7 +33,7 @@ class KeyManager(models.Manager): # Preload keys if all_keys: logger.debug('preloading all keys') - for key in Key.objects.all(): + for key in self.all(): gpg.import_keys(key_data=key.key_data) elif key_fingerprint: logger.debug('preloading key fingerprint: %s', key_fingerprint) @@ -129,7 +129,7 @@ class KeyManager(models.Manager): # Preload keys if all_keys: logger.debug('preloading all keys') - for key in Key.objects.all(): + for key in self.all(): gpg.import_keys(key_data=key.key_data) elif key_fingerprint: logger.debug('preloading key fingerprint: %s', key_fingerprint) diff --git a/mayan/apps/django_gpg/views.py b/mayan/apps/django_gpg/views.py index 4defb8c90b..d7fa69928a 100644 --- a/mayan/apps/django_gpg/views.py +++ b/mayan/apps/django_gpg/views.py @@ -28,9 +28,9 @@ class KeyDeleteView(SingleObjectDeleteView): def get_post_action_redirect(self): if self.get_object().key_type == KEY_TYPE_PUBLIC: - post_action_redirect = reverse_lazy('django_gpg:key_public_list') + return reverse_lazy('django_gpg:key_public_list') else: - post_action_redirect = reverse_lazy('django_gpg:key_private_list') + return reverse_lazy('django_gpg:key_private_list') def get_extra_context(self): return { diff --git a/mayan/apps/document_signatures/admin.py b/mayan/apps/document_signatures/admin.py index c930da3b3d..0c104fbd25 100644 --- a/mayan/apps/document_signatures/admin.py +++ b/mayan/apps/document_signatures/admin.py @@ -21,4 +21,3 @@ class EmbeddedSignatureAdmin(admin.ModelAdmin): 'public_key_fingerprint' ) list_display_links = ('document_version',) - diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index d541eaf410..73ef1bc865 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -2,7 +2,10 @@ from __future__ import unicode_literals import logging +from kombu import Exchange, Queue + from django.apps import apps +from django.db.models.signals import post_save, post_delete from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission @@ -10,8 +13,10 @@ from common import ( MayanAppConfig, menu_facet, menu_object, menu_secondary, menu_sidebar ) from common.widgets import two_state_template +from mayan.celery import app from navigation import SourceColumn +from .handlers import unverify_signatures, verify_signatures from .links import ( link_document_version_signature_delete, link_document_version_signature_details, @@ -49,6 +54,10 @@ class DocumentSignaturesApp(MayanAppConfig): app_label='documents', model_name='DocumentVersion' ) + Key = apps.get_model( + app_label='django_gpg', model_name='Key' + ) + DetachedSignature = self.get_model('DetachedSignature') EmbeddedSignature = self.get_model('EmbeddedSignature') @@ -56,7 +65,7 @@ class DocumentSignaturesApp(MayanAppConfig): SignatureBaseModel = self.get_model('SignatureBaseModel') DocumentVersion.register_post_save_hook( - order=1, func=EmbeddedSignature.objects.check_signature + order=1, func=EmbeddedSignature.objects.create ) DocumentVersion.register_pre_open_hook( order=1, func=EmbeddedSignature.objects.open_signed @@ -83,7 +92,7 @@ class DocumentSignaturesApp(MayanAppConfig): func=lambda context: context['object'].signature_id or _('None') ) SourceColumn( - source=SignatureBaseModel, label=_('Public key ID'), + source=SignatureBaseModel, label=_('Public key fingerprint'), func=lambda context: context['object'].public_key_fingerprint or _('None') ) SourceColumn( @@ -103,6 +112,23 @@ class DocumentSignaturesApp(MayanAppConfig): ) ) + app.conf.CELERY_QUEUES.append( + Queue( + 'signatures', Exchange('signatures'), routing_key='signatures' + ), + ) + + app.conf.CELERY_ROUTES.update( + { + 'document_signatures.tasks.task_verify_signatures': { + 'queue': 'signatures' + }, + 'document_signatures.tasks.task_unverify_signatures': { + 'queue': 'signatures' + }, + } + ) + menu_object.bind_links( links=(link_document_version_signature_list,), sources=(DocumentVersion,) @@ -120,3 +146,13 @@ class DocumentSignaturesApp(MayanAppConfig): link_document_version_signature_verify, ), sources=(DocumentVersion,) ) + post_delete.connect( + unverify_signatures, + dispatch_uid='unverify_signatures', + sender=Key + ) + post_save.connect( + verify_signatures, + dispatch_uid='verify_signatures', + sender=Key + ) diff --git a/mayan/apps/document_signatures/handlers.py b/mayan/apps/document_signatures/handlers.py new file mode 100644 index 0000000000..38a91cc821 --- /dev/null +++ b/mayan/apps/document_signatures/handlers.py @@ -0,0 +1,15 @@ +from __future__ import unicode_literals + +from .tasks import task_unverify_signatures, task_verify_signatures + + +def unverify_signatures(sender, **kwargs): + task_unverify_signatures.apply_async( + kwargs=dict(key_id=kwargs['instance'].key_id) + ) + + +def verify_signatures(sender, **kwargs): + task_verify_signatures.apply_async( + kwargs=dict(key_pk=kwargs['instance'].pk) + ) diff --git a/mayan/apps/document_signatures/managers.py b/mayan/apps/document_signatures/managers.py index 8b21116f80..41297a0cd4 100644 --- a/mayan/apps/document_signatures/managers.py +++ b/mayan/apps/document_signatures/managers.py @@ -10,45 +10,7 @@ from django_gpg.models import Key logger = logging.getLogger(__name__) -class DetachedSignatureManager(models.Manager): - def upload_signature(self, document_version, signature_file): - with document_version.open() as file_object: - try: - verify_result = Key.objects.verify_file( - file_object=file_object, signature_file=signature_file - ) - except VerificationError: - # Not signed - pass - else: - instance = self.create( - document_version=document_version, - date=verify_result.date, - key_id=verify_result.key_id, - signature_id=verify_result.signature_id, - public_key_fingerprint=verify_result.pubkey_fingerprint, - ) - - class EmbeddedSignatureManager(models.Manager): - def check_signature(self, document_version): - logger.debug('checking for embedded signature') - - with document_version.open() as file_object: - try: - verify_result = Key.objects.verify_file(file_object=file_object) - except VerificationError: - # Not signed - pass - else: - instance = self.create( - document_version=document_version, - date=verify_result.date, - key_id=verify_result.key_id, - signature_id=verify_result.signature_id, - public_key_fingerprint=verify_result.pubkey_fingerprint, - ) - def open_signed(self, file_object, document_version): for signature in self.filter(document_version=document_version): try: @@ -62,26 +24,3 @@ class EmbeddedSignatureManager(models.Manager): return file_object else: return file_object - - """ - def verify_signature(self, document_version): - document_version_descriptor = document_version.open(raw=True) - detached_signature = None - if self.has_detached_signature(document_version=document_version): - logger.debug('has detached signature') - detached_signature = self.detached_signature( - document_version=document_version - ) - args = (document_version_descriptor, detached_signature) - else: - args = (document_version_descriptor,) - - try: - return Key.objects.verify_file(*args) - except VerificationError: - return None - finally: - document_version_descriptor.close() - if detached_signature: - detached_signature.close() - """ diff --git a/mayan/apps/document_signatures/migrations/0006_auto_20160326_0616.py b/mayan/apps/document_signatures/migrations/0006_auto_20160326_0616.py new file mode 100644 index 0000000000..e5db17f576 --- /dev/null +++ b/mayan/apps/document_signatures/migrations/0006_auto_20160326_0616.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('document_signatures', '0005_auto_20160325_0748'), + ] + + operations = [ + migrations.AlterField( + model_name='signaturebasemodel', + name='public_key_fingerprint', + field=models.CharField(verbose_name='Public key fingerprint', max_length=40, null=True, editable=False, blank=True), + ), + ] diff --git a/mayan/apps/document_signatures/models.py b/mayan/apps/document_signatures/models.py index 397ac92354..0e78c833fa 100644 --- a/mayan/apps/document_signatures/models.py +++ b/mayan/apps/document_signatures/models.py @@ -15,7 +15,7 @@ from django_gpg.exceptions import DecryptionError, VerificationError from django_gpg.models import Key from documents.models import DocumentVersion -from .managers import EmbeddedSignatureManager, DetachedSignatureManager +from .managers import EmbeddedSignatureManager from .runtime import storage_backend logger = logging.getLogger(__name__) @@ -42,7 +42,7 @@ class SignatureBaseModel(models.Model): verbose_name=_('Signature ID') ) public_key_fingerprint = models.CharField( - blank=True, editable=False, null=True, max_length=40, unique=True, + blank=True, editable=False, null=True, max_length=40, verbose_name=_('Public key fingerprint') ) @@ -77,6 +77,30 @@ class EmbeddedSignature(SignatureBaseModel): verbose_name = _('Document version embedded signature') verbose_name_plural = _('Document version embedded signatures') + def save(self, *args, **kwargs): + logger.debug('checking for embedded signature') + + if self.pk: + raw = True + else: + raw = False + + with self.document_version.open(raw=raw) as file_object: + try: + verify_result = Key.objects.verify_file(file_object=file_object) + except VerificationError as exception: + # Not signed + logger.debug( + 'embedded signature verification error; %s', exception + ) + else: + self.date = verify_result.date + self.key_id = verify_result.key_id + self.signature_id = verify_result.signature_id + self.public_key_fingerprint = verify_result.pubkey_fingerprint + + super(EmbeddedSignature, self).save(*args, **kwargs) + class DetachedSignature(SignatureBaseModel): signature_file = models.FileField( @@ -84,8 +108,6 @@ class DetachedSignature(SignatureBaseModel): verbose_name=_('Signature file') ) - objects = DetachedSignatureManager() - class Meta: verbose_name = _('Document version detached signature') verbose_name_plural = _('Document version detached signatures') @@ -93,3 +115,24 @@ class DetachedSignature(SignatureBaseModel): def delete(self, *args, **kwargs): self.signature_file.storage.delete(self.signature_file.name) super(DetachedSignature, self).delete(*args, **kwargs) + + def save(self, *args, **kwargs): + with self.document_version.open() as file_object: + try: + verify_result = Key.objects.verify_file( + file_object=file_object, signature_file=self.signature_file + ) + except VerificationError: + # Not signed + logger.debug( + 'detached signature verification error; %s', exception + ) + else: + self.signature_file.seek(0) + + self.date = verify_result.date + self.key_id = verify_result.key_id + self.signature_id = verify_result.signature_id + self.public_key_fingerprint = verify_result.pubkey_fingerprint + + return super(DetachedSignature, self).save(*args, **kwargs) diff --git a/mayan/apps/document_signatures/tasks.py b/mayan/apps/document_signatures/tasks.py new file mode 100644 index 0000000000..854b5bb1d4 --- /dev/null +++ b/mayan/apps/document_signatures/tasks.py @@ -0,0 +1,50 @@ +from __future__ import unicode_literals + +import logging + +from django.apps import apps + +from mayan.celery import app + +RETRY_DELAY = 10 +logger = logging.getLogger(__name__) + + +@app.task(bind=True, ignore_result=True) +def task_unverify_signatures(self, key_id): + DetachedSignature = apps.get_model( + app_label='document_signatures', model_name='DetachedSignature' + ) + + EmbeddedSignature = apps.get_model( + app_label='document_signatures', model_name='EmbeddedSignature' + ) + + for signature in DetachedSignature.objects.filter(key_id__endswith=key_id).filter(signature_id__isnull=False): + signature.save() + + for signature in EmbeddedSignature.objects.filter(key_id__endswith=key_id).filter(signature_id__isnull=False): + signature.save() + + +@app.task(bind=True, ignore_result=True) +def task_verify_signatures(self, key_pk): + Key = apps.get_model( + app_label='django_gpg', model_name='Key' + ) + + DetachedSignature = apps.get_model( + app_label='document_signatures', model_name='DetachedSignature' + ) + + EmbeddedSignature = apps.get_model( + app_label='document_signatures', model_name='EmbeddedSignature' + ) + + key = Key.objects.get(pk=key_pk) + + for signature in DetachedSignature.objects.filter(key_id__endswith=key.key_id).filter(signature_id__isnull=True): + signature.save() + + for signature in EmbeddedSignature.objects.filter(key_id__endswith=key.key_id).filter(signature_id__isnull=True): + signature.save() diff --git a/mayan/apps/document_signatures/tests/test_models.py b/mayan/apps/document_signatures/tests/test_models.py index 12338f3d4c..fa032d7621 100644 --- a/mayan/apps/document_signatures/tests/test_models.py +++ b/mayan/apps/document_signatures/tests/test_models.py @@ -4,6 +4,7 @@ import os import time from django.conf import settings +from django.core.files import File from django.test import TestCase, override_settings from django_gpg.models import Key @@ -23,10 +24,11 @@ TEST_KEY_FILE = os.path.join( 'key0x5F3F7F75D210724D.asc' ) TEST_KEY_ID = '5F3F7F75D210724D' +TEST_SIGNATURE_ID = 'XVkoGKw35yU1iq11dZPiv7uAY7k' @override_settings(OCR_AUTO_OCR=False) -class DocumentTestCase(TestCase): +class DocumentSignaturesTestCase(TestCase): def setUp(self): self.document_type = DocumentType.objects.create( label=TEST_DOCUMENT_TYPE @@ -35,7 +37,7 @@ class DocumentTestCase(TestCase): def tearDown(self): self.document_type.delete() - def test_embedded_signature(self): + def test_embedded_signature_no_key(self): with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: signed_document = self.document_type.new_document( file_object=file_object @@ -49,6 +51,55 @@ class DocumentTestCase(TestCase): signature.document_version, signed_document.latest_version ) self.assertEqual(signature.key_id, TEST_KEY_ID) + self.assertEqual(signature.signature_id, None) + + def test_embedded_signature_post_key_verify(self): + with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: + signed_document = self.document_type.new_document( + file_object=file_object + ) + + self.assertEqual(EmbeddedSignature.objects.count(), 1) + + signature = EmbeddedSignature.objects.first() + + self.assertEqual( + signature.document_version, signed_document.latest_version + ) + self.assertEqual(signature.key_id, TEST_KEY_ID) + self.assertEqual(signature.signature_id, None) + + with open(TEST_KEY_FILE) as file_object: + key = Key.objects.create(key_data=file_object.read()) + + signature = EmbeddedSignature.objects.first() + + self.assertEqual(signature.signature_id, TEST_SIGNATURE_ID) + + def test_embedded_signature_post_no_key_verify(self): + with open(TEST_KEY_FILE) as file_object: + key = Key.objects.create(key_data=file_object.read()) + + with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: + signed_document = self.document_type.new_document( + file_object=file_object + ) + + self.assertEqual(EmbeddedSignature.objects.count(), 1) + + signature = EmbeddedSignature.objects.first() + + self.assertEqual( + signature.document_version, signed_document.latest_version + ) + self.assertEqual(signature.key_id, TEST_KEY_ID) + self.assertEqual(signature.signature_id, TEST_SIGNATURE_ID) + + key.delete() + + signature = EmbeddedSignature.objects.first() + + self.assertEqual(signature.signature_id, None) def test_embedded_signature_with_key(self): with open(TEST_KEY_FILE) as file_object: @@ -69,27 +120,106 @@ class DocumentTestCase(TestCase): ) self.assertEqual(signature.key_id, TEST_KEY_ID) self.assertEqual(signature.public_key_fingerprint, key.fingerprint) + self.assertEqual(signature.signature_id, TEST_SIGNATURE_ID) - def test_detached_signature(self): + def test_detached_signature_no_key(self): with open(TEST_DOCUMENT_PATH) as file_object: document = self.document_type.new_document( file_object=file_object ) with open(TEST_SIGNATURE_FILE_PATH) as file_object: - DetachedSignature.objects.upload_signature( + DetachedSignature.objects.create( document_version=document.latest_version, - signature_file=file_object + signature_file=File(file_object) ) self.assertEqual(DetachedSignature.objects.count(), 1) - self.assertEqual( - DetachedSignature.objects.first().document_version, - document.latest_version - ) - self.assertEqual(DetachedSignature.objects.first().key_id, TEST_KEY_ID) - # TODO: test_verify_signature_after_new_key(self): + signature = DetachedSignature.objects.first() + + self.assertEqual(signature.document_version, document.latest_version) + self.assertEqual(signature.key_id, TEST_KEY_ID) + self.assertEqual(signature.public_key_fingerprint, None) + + def test_detached_signature_with_key(self): + with open(TEST_KEY_FILE) as file_object: + key = Key.objects.create(key_data=file_object.read()) + + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.assertEqual(DetachedSignature.objects.count(), 1) + + signature = DetachedSignature.objects.first() + + self.assertEqual(signature.document_version, document.latest_version) + self.assertEqual(signature.key_id, TEST_KEY_ID) + self.assertEqual(signature.public_key_fingerprint, key.fingerprint) + + def test_detached_signature_post_key_verify(self): + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.assertEqual(DetachedSignature.objects.count(), 1) + + signature = DetachedSignature.objects.first() + + self.assertEqual(signature.document_version, document.latest_version) + self.assertEqual(signature.key_id, TEST_KEY_ID) + self.assertEqual(signature.public_key_fingerprint, None) + + with open(TEST_KEY_FILE) as file_object: + key = Key.objects.create(key_data=file_object.read()) + + signature = DetachedSignature.objects.first() + + self.assertEqual(signature.public_key_fingerprint, key.fingerprint) + + def test_detached_signature_post_no_key_verify(self): + with open(TEST_KEY_FILE) as file_object: + key = Key.objects.create(key_data=file_object.read()) + + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.assertEqual(DetachedSignature.objects.count(), 1) + + signature = DetachedSignature.objects.first() + + self.assertEqual(signature.document_version, document.latest_version) + self.assertEqual(signature.key_id, TEST_KEY_ID) + self.assertEqual(signature.public_key_fingerprint, key.fingerprint) + + key.delete() + + signature = DetachedSignature.objects.first() + + self.assertEqual(signature.public_key_fingerprint, None) def test_document_no_signature(self): with open(TEST_DOCUMENT_PATH) as file_object: diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index 99d8be3715..b1c655dc1b 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -40,7 +40,7 @@ class DocumentVersionSignatureDeleteView(SingleObjectDeleteView): def get_extra_context(self): return { - 'document': self.get_object().document_version.document, + 'document': self.get_object().document_version.document, 'document_version': self.get_object().document_version, 'navigation_object_list': ('document', 'document_version', 'signature'), 'signature': self.get_object(), @@ -103,62 +103,6 @@ class DocumentVersionSignatureListView(SingleObjectListView): return queryset -def document_verify(request, document_pk): - document = get_object_or_404(Document, pk=document_pk) - - try: - Permission.check_permissions( - request.user, (permission_document_verify,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - permission_document_verify, request.user, document - ) - - document.add_as_recent_document_for_user(request.user) - - try: - signature = DocumentVersionSignature.objects.verify_signature( - document.latest_version - ) - except AttributeError: - signature_state = SIGNATURE_STATES.get(SIGNATURE_STATE_NONE) - signature = None - else: - signature_state = SIGNATURE_STATES.get( - getattr(signature, 'status', None) - ) - - paragraphs = [_('Signature status: %s') % signature_state['text']] - - try: - if DocumentVersionSignature.objects.has_embedded_signature(document.latest_version): - signature_type = _('Embedded') - else: - signature_type = _('Detached') - except ValueError: - signature_type = _('None') - - if signature: - paragraphs.extend( - [ - _('Signature ID: %s') % signature.signature_id, - _('Signature type: %s') % signature_type, - _('Key fingerprint: %s') % signature.fingerprint, - _('Timestamp: %s') % signature.date, - _('Signee: %s') % escape(signature.user_id), - ] - ) - - return render_to_response('appearance/generic_template.html', { - 'document': document, - 'object': document, - 'paragraphs': paragraphs, - 'title': _('Signature properties for document: %s') % document, - }, context_instance=RequestContext(request)) - - - def document_version_signature_upload(request, pk): document_version = get_object_or_404(DocumentVersion, pk=pk) @@ -181,7 +125,7 @@ def document_version_signature_upload(request, pk): form = DetachedSignatureForm(request.POST, request.FILES) if form.is_valid(): try: - DetachedSignature.objects.upload_signature( + DetachedSignature.objects.create( document_version=document_version, signature_file=request.FILES['file'] ) diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index 04f0d49a3d..e795bf74bf 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -401,7 +401,9 @@ class DocumentVersion(models.Model): super(DocumentVersion, self).save(*args, **kwargs) for key in sorted(DocumentVersion._post_save_hooks): - DocumentVersion._post_save_hooks[key](self) + DocumentVersion._post_save_hooks[key]( + document_version=self + ) if new_document_version: # Only do this for new documents @@ -499,7 +501,9 @@ class DocumentVersion(models.Model): else: result = self.file.storage.open(self.file.name) for key in sorted(DocumentVersion._pre_open_hooks): - result = DocumentVersion._pre_open_hooks[key](result, self) + result = DocumentVersion._pre_open_hooks[key]( + file_object=result, document_version=self + ) return result From 0ffe20befd17c885e6122c22b57e6c463bd500f5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 26 Mar 2016 16:27:47 -0400 Subject: [PATCH 144/205] Fix link resolution in the document signature list view. This view exposes 3 navigable objects, use 'resolved_object' for correct link resolution. --- mayan/apps/checkouts/links.py | 3 ++- mayan/apps/document_comments/links.py | 3 ++- mayan/apps/document_indexing/links.py | 2 +- mayan/apps/document_signatures/apps.py | 4 ---- mayan/apps/document_signatures/links.py | 11 ++-------- mayan/apps/document_signatures/permissions.py | 4 ---- mayan/apps/document_signatures/urls.py | 4 ---- mayan/apps/document_signatures/views.py | 1 - mayan/apps/document_states/links.py | 3 ++- mayan/apps/documents/links.py | 20 +++++++++++-------- mayan/apps/folders/links.py | 3 ++- mayan/apps/linking/links.py | 2 +- mayan/apps/mailer/links.py | 8 ++++---- mayan/apps/metadata/links.py | 2 +- mayan/apps/ocr/links.py | 4 ++-- mayan/apps/sources/links.py | 3 +-- mayan/apps/tags/links.py | 2 +- 17 files changed, 33 insertions(+), 46 deletions(-) diff --git a/mayan/apps/checkouts/links.py b/mayan/apps/checkouts/links.py index 23dfa6c805..fbf4a8a372 100644 --- a/mayan/apps/checkouts/links.py +++ b/mayan/apps/checkouts/links.py @@ -45,5 +45,6 @@ link_checkout_info = Link( icon='fa fa-shopping-cart', permissions=( permission_document_checkin, permission_document_checkin_override, permission_document_checkout - ), text=_('Check in/out'), view='checkouts:checkout_info', args='object.pk' + ), text=_('Check in/out'), view='checkouts:checkout_info', + args='resolved_object.pk' ) diff --git a/mayan/apps/document_comments/links.py b/mayan/apps/document_comments/links.py index bf53b39a56..5e73468415 100644 --- a/mayan/apps/document_comments/links.py +++ b/mayan/apps/document_comments/links.py @@ -19,5 +19,6 @@ link_comment_delete = Link( ) link_comments_for_document = Link( icon='fa fa-comment', permissions=(permission_comment_view,), - text=_('Comments'), view='comments:comments_for_document', args='object.pk' + text=_('Comments'), view='comments:comments_for_document', + args='resolved_object.pk' ) diff --git a/mayan/apps/document_indexing/links.py b/mayan/apps/document_indexing/links.py index 2bf89f7dbc..34079fe382 100644 --- a/mayan/apps/document_indexing/links.py +++ b/mayan/apps/document_indexing/links.py @@ -16,7 +16,7 @@ def is_not_root_node(context): link_document_index_list = Link( icon='fa fa-list-ul', text=_('Indexes'), - view='indexing:document_index_list', args='object.pk' + view='indexing:document_index_list', args='resolved_object.pk' ) link_index_main_menu = Link( icon='fa fa-list-ul', text=_('Indexes'), view='indexing:index_list' diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index 73ef1bc865..d4d0907706 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -23,13 +23,11 @@ from .links import ( link_document_version_signature_download, link_document_version_signature_list, link_document_version_signature_upload, - link_document_version_signature_verify ) from .permissions import ( permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_upload, - permission_document_version_signature_verify, permission_document_version_signature_view, ) @@ -75,7 +73,6 @@ class DocumentSignaturesApp(MayanAppConfig): model=Document, permissions=( permission_document_version_signature_delete, permission_document_version_signature_download, - permission_document_version_signature_verify, permission_document_version_signature_view, permission_document_version_signature_upload, ) @@ -143,7 +140,6 @@ class DocumentSignaturesApp(MayanAppConfig): menu_sidebar.bind_links( links=( link_document_version_signature_upload, - link_document_version_signature_verify, ), sources=(DocumentVersion,) ) post_delete.connect( diff --git a/mayan/apps/document_signatures/links.py b/mayan/apps/document_signatures/links.py index fd5b8a6ef4..c49c85a120 100644 --- a/mayan/apps/document_signatures/links.py +++ b/mayan/apps/document_signatures/links.py @@ -9,8 +9,6 @@ from .permissions import ( permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_upload, - permission_document_version_signature_verify, - permission_document_version_signature_view ) @@ -51,12 +49,7 @@ link_document_version_signature_download = Link( ) link_document_version_signature_upload = Link( #permissions=(permission_document_version_signature_upload,), - text=_('Upload signature'), view='signatures:document_version_signature_upload', - args='resolved_object.pk' -) -link_document_version_signature_verify = Link( - icon='fa fa-certificate', - #permissions=(permission_document_version_signature_verify,), - text=_('Verify signatures'), view='signatures:document_verify', + text=_('Upload signature'), + view='signatures:document_version_signature_upload', args='resolved_object.pk' ) diff --git a/mayan/apps/document_signatures/permissions.py b/mayan/apps/document_signatures/permissions.py index e973aac602..f81ad66806 100644 --- a/mayan/apps/document_signatures/permissions.py +++ b/mayan/apps/document_signatures/permissions.py @@ -12,10 +12,6 @@ permission_document_version_signature_view = namespace.add_permission( name='document_version_signature_view', label=_('View details of document signatures') ) -permission_document_version_signature_verify = namespace.add_permission( - name='document_version_signature_verify', - label=_('Verify document signatures') -) permission_document_version_signature_delete = namespace.add_permission( name='document_version_signature_delete', label=_('Delete detached signatures') diff --git a/mayan/apps/document_signatures/urls.py b/mayan/apps/document_signatures/urls.py index 061aa95e53..2b5d34ed13 100644 --- a/mayan/apps/document_signatures/urls.py +++ b/mayan/apps/document_signatures/urls.py @@ -24,10 +24,6 @@ urlpatterns = patterns( DocumentVersionSignatureListView.as_view(), name='document_version_signature_list' ), - url( - r'^documents/version/(?P\d+)/signature/verify/$', - 'document_verify', name='document_version_signature_verify' - ), url( r'^documents/version/(?P\d+)/signature/upload/$', 'document_version_signature_upload', diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index b1c655dc1b..e3256661c5 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -26,7 +26,6 @@ from .forms import DetachedSignatureForm, DocumentVersionSignatureDetailForm from .models import DetachedSignature, SignatureBaseModel from .permissions import ( permission_document_version_signature_view, - permission_document_version_signature_verify, permission_document_version_signature_upload, permission_document_version_signature_download, permission_document_version_signature_delete diff --git a/mayan/apps/document_states/links.py b/mayan/apps/document_states/links.py index be928ac56d..f9a0e3bba3 100644 --- a/mayan/apps/document_states/links.py +++ b/mayan/apps/document_states/links.py @@ -13,7 +13,8 @@ from .permissions import ( link_document_workflow_instance_list = Link( icon='fa fa-sitemap', permissions=(permission_workflow_view,), text=_('Workflows'), - view='document_states:document_workflow_instance_list', args='object.pk' + view='document_states:document_workflow_instance_list', + args='resolved_object.pk' ) link_setup_workflow_create = Link( permissions=(permission_workflow_create,), text=_('Create workflow'), diff --git a/mayan/apps/documents/links.py b/mayan/apps/documents/links.py index f1bb286c83..33ab42f630 100644 --- a/mayan/apps/documents/links.py +++ b/mayan/apps/documents/links.py @@ -18,7 +18,7 @@ from .settings import setting_zoom_max_level, setting_zoom_min_level def is_not_current_version(context): - return context['resolved_object'].document.latest_version.timestamp != context['resolved_object'].timestamp + return context['object'].document.latest_version.timestamp != context['object'].timestamp def is_first_page(context): @@ -40,7 +40,8 @@ def is_min_zoom(context): # Facet link_document_preview = Link( icon='fa fa-eye', permissions=(permission_document_view,), - text=_('Preview'), view='documents:document_preview', args='resolved_object.id' + text=_('Preview'), view='documents:document_preview', + args='resolved_object.id' ) link_document_properties = Link( icon='fa fa-info', permissions=(permission_document_view,), @@ -50,7 +51,7 @@ link_document_properties = Link( link_document_version_list = Link( icon='fa fa-code-fork', permissions=(permission_document_view,), text=_('Versions'), view='documents:document_version_list', - args='object.pk' + args='resolved_object.pk' ) link_document_pages = Link( icon='fa fa-files-o', permissions=(permission_document_view,), @@ -65,11 +66,13 @@ link_document_clear_transformations = Link( ) link_document_delete = Link( permissions=(permission_document_delete,), tags='dangerous', - text=_('Delete'), view='documents:document_delete', args='resolved_object.id' + text=_('Delete'), view='documents:document_delete', + args='resolved_object.id' ) link_document_trash = Link( permissions=(permission_document_trash,), tags='dangerous', - text=_('Move to trash'), view='documents:document_trash', args='resolved_object.id' + text=_('Move to trash'), view='documents:document_trash', + args='resolved_object.id' ) link_document_edit = Link( permissions=(permission_document_properties_edit,), @@ -89,8 +92,9 @@ link_document_print = Link( view='documents:document_print', args='resolved_object.id' ) link_document_update_page_count = Link( - permissions=(permission_document_tools,), text=_('Recalculate page count'), - view='documents:document_update_page_count', args='object.pk' + args='resolved_object.pk', permissions=(permission_document_tools,), + text=_('Recalculate page count'), + view='documents:document_update_page_count' ) link_document_restore = Link( permissions=(permission_document_restore,), text=_('Restore'), @@ -124,7 +128,7 @@ link_document_multiple_restore = Link( text=_('Restore'), view='documents:document_multiple_restore' ) link_document_version_download = Link( - args='object.pk', permissions=(permission_document_download,), + args='resolved_object.pk', permissions=(permission_document_download,), text=_('Download version'), view='documents:document_version_download' ) diff --git a/mayan/apps/folders/links.py b/mayan/apps/folders/links.py index ab8a3f95f6..ce0163cde9 100644 --- a/mayan/apps/folders/links.py +++ b/mayan/apps/folders/links.py @@ -13,7 +13,8 @@ from .permissions import ( link_document_folder_list = Link( icon='fa fa-folder', permissions=(permission_document_view,), - text=_('Folders'), view='folders:document_folder_list', args='object.pk' + text=_('Folders'), view='folders:document_folder_list', + args='resolved_object.pk' ) link_folder_add_document = Link( permissions=(permission_folder_add_document,), text=_('Add to a folder'), diff --git a/mayan/apps/linking/links.py b/mayan/apps/linking/links.py index 2071f6b151..baf74586a5 100644 --- a/mayan/apps/linking/links.py +++ b/mayan/apps/linking/links.py @@ -52,7 +52,7 @@ link_smart_link_instance_view = Link( link_smart_link_instances_for_document = Link( icon='fa fa-link', permissions=(permission_document_view,), text=_('Smart links'), view='linking:smart_link_instances_for_document', - args='object.pk' + args='resolved_object.pk' ) link_smart_link_list = Link( permissions=(permission_smart_link_create,), text=_('Smart links'), diff --git a/mayan/apps/mailer/links.py b/mayan/apps/mailer/links.py index ebafcd33f0..2909f83a10 100644 --- a/mayan/apps/mailer/links.py +++ b/mayan/apps/mailer/links.py @@ -10,12 +10,12 @@ from .permissions import ( ) link_send_document = Link( - permissions=(permission_mailing_send_document,), text=_('Email document'), - view='mailer:send_document', args='object.pk' + args='resolved_object.pk', permissions=(permission_mailing_send_document,), + text=_('Email document'), view='mailer:send_document' ) link_send_document_link = Link( - permissions=(permission_mailing_link,), text=_('Email link'), - view='mailer:send_document_link', args='object.pk' + args='resolved_object.pk', permissions=(permission_mailing_link,), + text=_('Email link'), view='mailer:send_document_link' ) link_document_mailing_error_log = Link( icon='fa fa-envelope', permissions=(permission_view_error_log,), diff --git a/mayan/apps/metadata/links.py b/mayan/apps/metadata/links.py index 39412bbfcb..1750dcef35 100644 --- a/mayan/apps/metadata/links.py +++ b/mayan/apps/metadata/links.py @@ -36,7 +36,7 @@ link_metadata_remove = Link( ) link_metadata_view = Link( icon='fa fa-pencil', permissions=(permission_metadata_document_view,), - text=_('Metadata'), view='metadata:metadata_view', args='object.pk' + text=_('Metadata'), view='metadata:metadata_view', args='resolved_object.pk' ) link_setup_document_type_metadata = Link( permissions=(permission_document_type_edit,), text=_('Optional metadata'), diff --git a/mayan/apps/ocr/links.py b/mayan/apps/ocr/links.py index bc4a935d81..70a827294d 100644 --- a/mayan/apps/ocr/links.py +++ b/mayan/apps/ocr/links.py @@ -14,8 +14,8 @@ link_document_content = Link( text=_('OCR'), view='ocr:document_content', args='resolved_object.id' ) link_document_submit = Link( - permissions=(permission_ocr_document,), text=_('Submit for OCR'), - view='ocr:document_submit', args='object.id' + args='resolved_object.id', permissions=(permission_ocr_document,), + text=_('Submit for OCR'), view='ocr:document_submit' ) link_document_submit_all = Link( icon='fa fa-font', permissions=(permission_ocr_document,), diff --git a/mayan/apps/sources/links.py b/mayan/apps/sources/links.py index 0a3846bec5..926fada9ce 100644 --- a/mayan/apps/sources/links.py +++ b/mayan/apps/sources/links.py @@ -75,10 +75,9 @@ link_staging_file_delete = Link( args=('source.pk', 'object.encoded_filename',) ) link_upload_version = Link( - condition=document_new_version_not_blocked, + args='resolved_object.pk', condition=document_new_version_not_blocked, permissions=(permission_document_new_version,), text=_('Upload new version'), view='sources:upload_version', - args='object.pk' ) link_setup_source_logs = Link( text=_('Logs'), view='sources:setup_source_logs', diff --git a/mayan/apps/tags/links.py b/mayan/apps/tags/links.py index 8627cca4d3..7acd009875 100644 --- a/mayan/apps/tags/links.py +++ b/mayan/apps/tags/links.py @@ -38,7 +38,7 @@ link_tag_edit = Link( ) link_tag_document_list = Link( icon='fa fa-tag', permissions=(permission_tag_view,), text=_('Tags'), - view='tags:document_tags', args='object.pk' + view='tags:document_tags', args='resolved_object.pk' ) link_tag_list = Link(icon='fa fa-tag', text=_('Tags'), view='tags:tag_list') link_tag_multiple_delete = Link( From fa1450fe5a0b4b5182c925555b94f2c7622f1109 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 27 Mar 2016 03:27:56 -0400 Subject: [PATCH 145/205] PEP8 cleanups. --- mayan/apps/document_signatures/apps.py | 2 +- mayan/apps/document_signatures/links.py | 2 +- mayan/apps/document_signatures/managers.py | 2 +- .../migrations/0005_auto_20160325_0748.py | 2 +- mayan/apps/document_signatures/models.py | 5 +-- .../document_signatures/tests/test_models.py | 20 +++------- mayan/apps/document_signatures/views.py | 39 ++++++++----------- mayan/apps/documents/links.py | 2 +- mayan/apps/documents/tests/test_views.py | 2 +- 9 files changed, 29 insertions(+), 47 deletions(-) diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index d4d0907706..dacb9278e0 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -10,7 +10,7 @@ from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission from common import ( - MayanAppConfig, menu_facet, menu_object, menu_secondary, menu_sidebar + MayanAppConfig, menu_object, menu_sidebar ) from common.widgets import two_state_template from mayan.celery import app diff --git a/mayan/apps/document_signatures/links.py b/mayan/apps/document_signatures/links.py index c49c85a120..b5bb879275 100644 --- a/mayan/apps/document_signatures/links.py +++ b/mayan/apps/document_signatures/links.py @@ -44,7 +44,7 @@ link_document_version_signature_list = Link( link_document_version_signature_download = Link( condition=is_detached_signature, text=_('Download'), - view='signatures:document_signature_download', args='resolved_object.pk', + view='signatures:document_version_signature_download', args='resolved_object.pk', #permissions=(permission_document_version_signature_download,) ) link_document_version_signature_upload = Link( diff --git a/mayan/apps/document_signatures/managers.py b/mayan/apps/document_signatures/managers.py index 41297a0cd4..0c5cf80ca3 100644 --- a/mayan/apps/document_signatures/managers.py +++ b/mayan/apps/document_signatures/managers.py @@ -4,7 +4,7 @@ import logging from django.db import models -from django_gpg.exceptions import DecryptionError, VerificationError +from django_gpg.exceptions import DecryptionError from django_gpg.models import Key logger = logging.getLogger(__name__) diff --git a/mayan/apps/document_signatures/migrations/0005_auto_20160325_0748.py b/mayan/apps/document_signatures/migrations/0005_auto_20160325_0748.py index cc087b93e2..76bbc3bee3 100644 --- a/mayan/apps/document_signatures/migrations/0005_auto_20160325_0748.py +++ b/mayan/apps/document_signatures/migrations/0005_auto_20160325_0748.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -from django.db import migrations, models +from django.db import migrations class Migration(migrations.Migration): diff --git a/mayan/apps/document_signatures/models.py b/mayan/apps/document_signatures/models.py index 0e78c833fa..942379a483 100644 --- a/mayan/apps/document_signatures/models.py +++ b/mayan/apps/document_signatures/models.py @@ -1,6 +1,5 @@ from __future__ import unicode_literals -from datetime import date import logging import uuid @@ -11,7 +10,7 @@ from django.utils.translation import ugettext_lazy as _ from model_utils.managers import InheritanceManager -from django_gpg.exceptions import DecryptionError, VerificationError +from django_gpg.exceptions import VerificationError from django_gpg.models import Key from documents.models import DocumentVersion @@ -122,7 +121,7 @@ class DetachedSignature(SignatureBaseModel): verify_result = Key.objects.verify_file( file_object=file_object, signature_file=self.signature_file ) - except VerificationError: + except VerificationError as exception: # Not signed logger.debug( 'detached signature verification error; %s', exception diff --git a/mayan/apps/document_signatures/tests/test_models.py b/mayan/apps/document_signatures/tests/test_models.py index fa032d7621..5366c3bac3 100644 --- a/mayan/apps/document_signatures/tests/test_models.py +++ b/mayan/apps/document_signatures/tests/test_models.py @@ -1,9 +1,7 @@ from __future__ import unicode_literals -import os import time -from django.conf import settings from django.core.files import File from django.test import TestCase, override_settings @@ -13,18 +11,10 @@ from documents.tests import TEST_DOCUMENT_PATH, TEST_DOCUMENT_TYPE from ..models import DetachedSignature, EmbeddedSignature -TEST_SIGNED_DOCUMENT_PATH = os.path.join( - settings.BASE_DIR, 'contrib', 'sample_documents', 'mayan_11_1.pdf.gpg' +from .literals import ( + TEST_SIGNED_DOCUMENT_PATH, TEST_SIGNATURE_FILE_PATH, TEST_KEY_FILE, + TEST_KEY_ID, TEST_SIGNATURE_ID ) -TEST_SIGNATURE_FILE_PATH = os.path.join( - settings.BASE_DIR, 'contrib', 'sample_documents', 'mayan_11_1.pdf.sig' -) -TEST_KEY_FILE = os.path.join( - settings.BASE_DIR, 'contrib', 'sample_documents', - 'key0x5F3F7F75D210724D.asc' -) -TEST_KEY_ID = '5F3F7F75D210724D' -TEST_SIGNATURE_ID = 'XVkoGKw35yU1iq11dZPiv7uAY7k' @override_settings(OCR_AUTO_OCR=False) @@ -70,7 +60,7 @@ class DocumentSignaturesTestCase(TestCase): self.assertEqual(signature.signature_id, None) with open(TEST_KEY_FILE) as file_object: - key = Key.objects.create(key_data=file_object.read()) + Key.objects.create(key_data=file_object.read()) signature = EmbeddedSignature.objects.first() @@ -223,7 +213,7 @@ class DocumentSignaturesTestCase(TestCase): def test_document_no_signature(self): with open(TEST_DOCUMENT_PATH) as file_object: - document = self.document_type.new_document( + self.document_type.new_document( file_object=file_object ) diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index e3256661c5..e47da28d8d 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -1,6 +1,5 @@ from __future__ import absolute_import, unicode_literals -from datetime import datetime import logging from django.conf import settings @@ -10,15 +9,13 @@ from django.core.urlresolvers import reverse from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404, render_to_response from django.template import RequestContext -from django.utils.html import escape from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList from common.generics import ( SingleObjectDeleteView, SingleObjectDetailView, SingleObjectListView ) -from django_gpg.literals import SIGNATURE_STATE_NONE, SIGNATURE_STATES -from documents.models import Document, DocumentVersion +from documents.models import DocumentVersion from filetransfers.api import serve_file from permissions import Permission @@ -55,6 +52,8 @@ class DocumentVersionSignatureDeleteView(SingleObjectDeleteView): class DocumentVersionSignatureDetailView(SingleObjectDetailView): form_class = DocumentVersionSignatureDetailForm + object_permission = permission_document_version_signature_view + object_permission_related = 'document_version.document' def get_extra_context(self): return { @@ -73,6 +72,9 @@ class DocumentVersionSignatureDetailView(SingleObjectDetailView): class DocumentVersionSignatureListView(SingleObjectListView): + object_permission = permission_document_version_signature_view + object_permission_related = 'document_version.document' + def get_document_version(self): return get_object_or_404(DocumentVersion, pk=self.kwargs['pk']) @@ -149,8 +151,8 @@ def document_version_signature_upload(request, pk): }, context_instance=RequestContext(request)) -def document_signature_download(request, document_pk): - document = get_object_or_404(Document, pk=document_pk) +def document_signature_download(request, pk): + signature = get_object_or_404(DetachedSignature, pk=pk) try: Permission.check_permissions( @@ -158,22 +160,13 @@ def document_signature_download(request, document_pk): ) except PermissionDenied: AccessControlList.objects.check_access( - permission_document_version_signature_download, request.user, document + permission_document_version_signature_download, request.user, + signature.document_version.signature ) - try: - if DocumentVersionSignature.objects.has_detached_signature(document.latest_version): - signature = DocumentVersionSignature.objects.detached_signature( - document.latest_version - ) - return serve_file( - request, - signature, - save_as='"%s.sig"' % document.filename, - content_type='application/octet-stream' - ) - except Exception as exception: - messages.error(request, exception) - return HttpResponseRedirect(request.META['HTTP_REFERER']) - - return HttpResponseRedirect(request.META['HTTP_REFERER']) + return serve_file( + request, + signature, + save_as='"%s.sig"' % signature.document_version.document, + content_type='application/octet-stream' + ) diff --git a/mayan/apps/documents/links.py b/mayan/apps/documents/links.py index 33ab42f630..6b64e5fb2b 100644 --- a/mayan/apps/documents/links.py +++ b/mayan/apps/documents/links.py @@ -18,7 +18,7 @@ from .settings import setting_zoom_max_level, setting_zoom_min_level def is_not_current_version(context): - return context['object'].document.latest_version.timestamp != context['object'].timestamp + return context['resolved_object'].document.latest_version.timestamp != context['resolved_object'].timestamp def is_first_page(context): diff --git a/mayan/apps/documents/tests/test_views.py b/mayan/apps/documents/tests/test_views.py index 7eaeec594f..d952db9aab 100644 --- a/mayan/apps/documents/tests/test_views.py +++ b/mayan/apps/documents/tests/test_views.py @@ -49,7 +49,7 @@ class GenericDocumentViewTestCase(GenericViewTestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=file_object, label='mayan_11_1.pdf' + file_object=file_object ) def tearDown(self): From e708e0250e4d8e624447ab441f444b3981f7cb1c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 27 Mar 2016 03:28:14 -0400 Subject: [PATCH 146/205] Support related object permission ACLs for more than just 1 level of relationship. --- mayan/apps/acls/managers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mayan/apps/acls/managers.py b/mayan/apps/acls/managers.py index e4b3acadd1..fb6c4f822c 100644 --- a/mayan/apps/acls/managers.py +++ b/mayan/apps/acls/managers.py @@ -8,6 +8,7 @@ from django.db import models from django.db.models import Q from django.utils.translation import ugettext +from common.utils import return_attrib from permissions.models import StoredPermission from .classes import ModelPermission @@ -57,7 +58,7 @@ class AccessControlListManager(models.Manager): stored_permissions = [permissions.stored_permission] if related: - obj = getattr(obj, related) + obj = return_attrib(obj, related) try: parent_accessor = ModelPermission.get_inheritance(obj._meta.model) From 35df61bca1e27c43c2fca53edf8e714de8c24a4a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 27 Mar 2016 03:29:19 -0400 Subject: [PATCH 147/205] Add view test for the document signatures app. --- .../document_signatures/tests/literals.py | 18 +++ .../document_signatures/tests/test_views.py | 130 ++++++++++++++++++ 2 files changed, 148 insertions(+) create mode 100644 mayan/apps/document_signatures/tests/literals.py create mode 100644 mayan/apps/document_signatures/tests/test_views.py diff --git a/mayan/apps/document_signatures/tests/literals.py b/mayan/apps/document_signatures/tests/literals.py new file mode 100644 index 0000000000..1d3f3380a4 --- /dev/null +++ b/mayan/apps/document_signatures/tests/literals.py @@ -0,0 +1,18 @@ +from __future__ import unicode_literals + +import os + +from django.conf import settings + +TEST_SIGNED_DOCUMENT_PATH = os.path.join( + settings.BASE_DIR, 'contrib', 'sample_documents', 'mayan_11_1.pdf.gpg' +) +TEST_SIGNATURE_FILE_PATH = os.path.join( + settings.BASE_DIR, 'contrib', 'sample_documents', 'mayan_11_1.pdf.sig' +) +TEST_KEY_FILE = os.path.join( + settings.BASE_DIR, 'contrib', 'sample_documents', + 'key0x5F3F7F75D210724D.asc' +) +TEST_KEY_ID = '5F3F7F75D210724D' +TEST_SIGNATURE_ID = 'XVkoGKw35yU1iq11dZPiv7uAY7k' diff --git a/mayan/apps/document_signatures/tests/test_views.py b/mayan/apps/document_signatures/tests/test_views.py new file mode 100644 index 0000000000..9f37484206 --- /dev/null +++ b/mayan/apps/document_signatures/tests/test_views.py @@ -0,0 +1,130 @@ +from __future__ import absolute_import, unicode_literals + +from django.core.files import File + +from django_gpg.models import Key +from documents.permissions import permission_document_view +from documents.tests.literals import TEST_DOCUMENT_PATH +from documents.tests.test_views import GenericDocumentViewTestCase +from user_management.tests import ( + TEST_USER_USERNAME, TEST_USER_PASSWORD +) + +from ..models import DetachedSignature +from ..permissions import ( + permission_document_version_signature_view, + permission_document_version_signature_delete, + permission_document_version_signature_download, + permission_document_version_signature_upload, +) + +from .literals import ( + TEST_SIGNED_DOCUMENT_PATH, TEST_SIGNATURE_FILE_PATH, TEST_KEY_FILE, + TEST_KEY_ID, TEST_SIGNATURE_ID +) + + +class SignaturesViewTestCase(GenericDocumentViewTestCase): + def test_signature_list_view_no_permission(self): + with open(TEST_KEY_FILE) as file_object: + Key.objects.create(key_data=file_object.read()) + + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.get( + 'signatures:document_version_signature_list', + args=(document.latest_version.pk,) + ) + + self.assertContains(response, 'Total: 0', status_code=200) + + def test_signature_list_view_with_permission(self): + with open(TEST_KEY_FILE) as file_object: + Key.objects.create(key_data=file_object.read()) + + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_version_signature_view.stored_permission + ) + + response = self.get( + 'signatures:document_version_signature_list', + args=(document.latest_version.pk,) + ) + + self.assertContains(response, 'Total: 1', status_code=200) + + def test_signature_detail_view_no_permission(self): + with open(TEST_KEY_FILE) as file_object: + Key.objects.create(key_data=file_object.read()) + + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + signature = DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.get( + 'signatures:document_version_signature_details', + args=(signature.pk,) + ) + + self.assertEqual(response.status_code, 403) + + def test_signature_detail_view_with_permission(self): + with open(TEST_KEY_FILE) as file_object: + Key.objects.create(key_data=file_object.read()) + + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + signature = DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_version_signature_view.stored_permission + ) + + response = self.get( + 'signatures:document_version_signature_details', + args=(signature.pk,) + ) + + self.assertContains(response, signature.signature_id, status_code=200) From e5c47f16d499bb94c8ebb66c63ce99acae72b730 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 28 Mar 2016 14:56:49 -0400 Subject: [PATCH 148/205] Update document version signature upload view to CBV and add test. --- .../document_signatures/tests/test_views.py | 40 +++++++++ mayan/apps/document_signatures/urls.py | 4 +- mayan/apps/document_signatures/views.py | 84 +++++++++---------- 3 files changed, 82 insertions(+), 46 deletions(-) diff --git a/mayan/apps/document_signatures/tests/test_views.py b/mayan/apps/document_signatures/tests/test_views.py index 9f37484206..85088784ba 100644 --- a/mayan/apps/document_signatures/tests/test_views.py +++ b/mayan/apps/document_signatures/tests/test_views.py @@ -128,3 +128,43 @@ class SignaturesViewTestCase(GenericDocumentViewTestCase): ) self.assertContains(response, signature.signature_id, status_code=200) + + def test_signature_upload_view_no_permission(self): + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + response = self.post( + 'signatures:document_version_signature_upload', + args=(document.latest_version.pk,), + data={'signature_file': file_object} + ) + + self.assertEqual(response.status_code, 403) + self.assertEqual(DetachedSignature.objects.count(), 0) + + def test_signature_upload_view_with_permission(self): + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_version_signature_upload.stored_permission + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + response = self.post( + 'signatures:document_version_signature_upload', + args=(document.latest_version.pk,), + data={'signature_file': file_object} + ) + + self.assertEqual(response.status_code, 302) + self.assertEqual(DetachedSignature.objects.count(), 1) diff --git a/mayan/apps/document_signatures/urls.py b/mayan/apps/document_signatures/urls.py index 2b5d34ed13..1695d51de3 100644 --- a/mayan/apps/document_signatures/urls.py +++ b/mayan/apps/document_signatures/urls.py @@ -4,7 +4,7 @@ from django.conf.urls import patterns, url from .views import ( DocumentVersionSignatureDeleteView, DocumentVersionSignatureDetailView, - DocumentVersionSignatureListView + DocumentVersionSignatureListView, DocumentVersionSignatureUploadView ) urlpatterns = patterns( @@ -26,7 +26,7 @@ urlpatterns = patterns( ), url( r'^documents/version/(?P\d+)/signature/upload/$', - 'document_version_signature_upload', + DocumentVersionSignatureUploadView.as_view(), name='document_version_signature_upload' ), url( diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index e47da28d8d..e1703ce687 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -13,7 +13,8 @@ from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList from common.generics import ( - SingleObjectDeleteView, SingleObjectDetailView, SingleObjectListView + SingleObjectCreateView, SingleObjectDeleteView, SingleObjectDetailView, + SingleObjectListView ) from documents.models import DocumentVersion from filetransfers.api import serve_file @@ -104,51 +105,46 @@ class DocumentVersionSignatureListView(SingleObjectListView): return queryset -def document_version_signature_upload(request, pk): - document_version = get_object_or_404(DocumentVersion, pk=pk) +class DocumentVersionSignatureUploadView(SingleObjectCreateView): + fields = ('signature_file',) + model = DetachedSignature - try: - Permission.check_permissions( - request.user, (permission_document_version_signature_upload,) + def dispatch(self, request, *args, **kwargs): + try: + Permission.check_permissions( + request.user, (permission_document_version_signature_upload,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_document_version_signature_upload, request.user, + self.get_document_version() + ) + + return super( + DocumentVersionSignatureUploadView, self + ).dispatch(request, *args, **kwargs) + + def get_document_version(self): + return get_object_or_404(DocumentVersion, pk=self.kwargs['pk']) + + def get_extra_context(self): + return { + 'document': self.get_document_version().document, + 'document_version': self.get_document_version(), + 'navigation_object_list': ('document', 'document_version'), + 'title': _( + 'Upload detached signature for document version: %s' + ) % self.get_document_version(), + } + + def get_instance_extra_data(self): + return {'document_version': self.get_document_version()} + + def get_post_action_redirect(self): + return reverse( + 'signatures:document_version_signature_list', + args=(self.get_document_version().pk,) ) - except PermissionDenied: - AccessControlList.objects.check_access( - permission_document_version_signature_upload, request.user, document_version.document - ) - - document_version.document.add_as_recent_document_for_user(request.user) - - post_action_redirect = None - previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - next = request.POST.get('next', request.GET.get('next', post_action_redirect if post_action_redirect else request.META.get('HTTP_REFERER', reverse(settings.LOGIN_REDIRECT_URL)))) - - if request.method == 'POST': - form = DetachedSignatureForm(request.POST, request.FILES) - if form.is_valid(): - try: - DetachedSignature.objects.create( - document_version=document_version, - signature_file=request.FILES['file'] - ) - messages.success( - request, _('Detached signature uploaded successfully.') - ) - return HttpResponseRedirect(next) - except Exception as exception: - messages.error(request, exception) - return HttpResponseRedirect(previous) - else: - form = DetachedSignatureForm() - - return render_to_response('appearance/generic_form.html', { - 'form': form, - 'next': next, - 'document': document_version.document, - 'document_version': document_version, - 'navigation_object_list': ('document', 'document_version'), - 'previous': previous, - 'title': _('Upload detached signature for document version: %s') % document_version, - }, context_instance=RequestContext(request)) def document_signature_download(request, pk): From c1cb9838691f0cf3958d57068a4b844142ca65d6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 28 Mar 2016 14:57:19 -0400 Subject: [PATCH 149/205] Just display the signature type to conserve UI space. --- mayan/apps/document_signatures/apps.py | 23 +++++------------------ mayan/apps/document_signatures/models.py | 12 ++++++++++++ 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index dacb9278e0..e8b2468e04 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -82,31 +82,18 @@ class DocumentSignaturesApp(MayanAppConfig): source=SignatureBaseModel, label=_('Date'), attribute='date' ) SourceColumn( - source=SignatureBaseModel, label=_('Key ID'), attribute='key_id' + source=SignatureBaseModel, label=_('Key ID'), + attribute='get_key_id' ) SourceColumn( source=SignatureBaseModel, label=_('Signature ID'), func=lambda context: context['object'].signature_id or _('None') ) - SourceColumn( - source=SignatureBaseModel, label=_('Public key fingerprint'), - func=lambda context: context['object'].public_key_fingerprint or _('None') - ) SourceColumn( source=SignatureBaseModel, label=_('Is embedded?'), - func=lambda context: two_state_template( - SignatureBaseModel.objects.get_subclass( - pk=context['object'].pk - ).is_embedded - ) - ) - SourceColumn( - source=SignatureBaseModel, label=_('Is detached?'), - func=lambda context: two_state_template( - SignatureBaseModel.objects.get_subclass( - pk=context['object'].pk - ).is_detached - ) + func=lambda context: SignatureBaseModel.objects.get_subclass( + pk=context['object'].pk + ).get_signature_type_display() ) app.conf.CELERY_QUEUES.append( diff --git a/mayan/apps/document_signatures/models.py b/mayan/apps/document_signatures/models.py index 942379a483..197ab83103 100644 --- a/mayan/apps/document_signatures/models.py +++ b/mayan/apps/document_signatures/models.py @@ -60,6 +60,18 @@ class SignatureBaseModel(models.Model): args=(self.pk,) ) + def get_key_id(self): + if self.public_key_fingerprint: + return self.public_key_fingerprint[-16:] + else: + return self.key_id + + def get_signature_type_display(self): + if self.is_detached: + return _('Detached') + else: + return _('Embedded') + @property def is_detached(self): return hasattr(self, 'signature_file') From 3b593e10fd2f1076eabe7e8b2c39032c2ae640ab Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 29 Mar 2016 05:11:08 -0400 Subject: [PATCH 150/205] Add django-downloadview to the used packages. Add a Mayan generic sub class download view based on django-downloadviews' virtual download view class. --- mayan/apps/common/generics.py | 8 ++++++++ requirements/base.txt | 1 + 2 files changed, 9 insertions(+) diff --git a/mayan/apps/common/generics.py b/mayan/apps/common/generics.py index 6fd6e03bf4..639c5cecea 100644 --- a/mayan/apps/common/generics.py +++ b/mayan/apps/common/generics.py @@ -8,11 +8,15 @@ from django.utils.translation import ugettext_lazy as _ from django.views.generic import ( FormView as DjangoFormView, DetailView, TemplateView ) +from django.views.generic.base import ContextMixin +from django.views.generic.detail import SingleObjectMixin from django.views.generic.edit import ( CreateView, DeleteView, ModelFormMixin, UpdateView ) from django.views.generic.list import ListView +from django_downloadview import VirtualDownloadView +from django_downloadview import VirtualFile from pure_pagination.mixins import PaginationMixin from .forms import ChoiceForm @@ -344,6 +348,10 @@ class SingleObjectDetailView(ViewPermissionCheckMixin, ObjectPermissionCheckMixi return context +class SingleObjectDownloadView(ViewPermissionCheckMixin, ObjectPermissionCheckMixin, VirtualDownloadView, SingleObjectMixin): + VirtualFile = VirtualFile + + class SingleObjectEditView(ObjectNameMixin, ViewPermissionCheckMixin, ObjectPermissionCheckMixin, ExtraContextMixin, RedirectionMixin, UpdateView): template_name = 'appearance/generic_form.html' diff --git a/requirements/base.txt b/requirements/base.txt index cc68b931b2..0e12651d4b 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -10,6 +10,7 @@ django-celery==3.1.17 django-colorful==1.1.0 django-compressor==2.0 django-cors-headers==1.1.0 +django-downloadview==1.9 django-filetransfers==0.1.0 django-formtools==1.0 django-pure-pagination==0.3.0 From b9d75e525f1f524e18cc8292965aadbf7a5bfc5d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 29 Mar 2016 05:12:04 -0400 Subject: [PATCH 151/205] Convert the signature download view to CBV and add corresponding test. --- mayan/apps/document_signatures/apps.py | 3 - mayan/apps/document_signatures/forms.py | 10 +-- mayan/apps/document_signatures/models.py | 8 ++- .../document_signatures/tests/test_views.py | 51 ++++++++++++++- mayan/apps/document_signatures/urls.py | 7 ++- mayan/apps/document_signatures/views.py | 62 +++++++++---------- 6 files changed, 93 insertions(+), 48 deletions(-) diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index e8b2468e04..6be04810e7 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -12,7 +12,6 @@ from acls import ModelPermission from common import ( MayanAppConfig, menu_object, menu_sidebar ) -from common.widgets import two_state_template from mayan.celery import app from navigation import SourceColumn @@ -56,8 +55,6 @@ class DocumentSignaturesApp(MayanAppConfig): app_label='django_gpg', model_name='Key' ) - DetachedSignature = self.get_model('DetachedSignature') - EmbeddedSignature = self.get_model('EmbeddedSignature') SignatureBaseModel = self.get_model('SignatureBaseModel') diff --git a/mayan/apps/document_signatures/forms.py b/mayan/apps/document_signatures/forms.py index b323b1abf6..09139f78cd 100644 --- a/mayan/apps/document_signatures/forms.py +++ b/mayan/apps/document_signatures/forms.py @@ -9,12 +9,6 @@ from django_gpg.models import Key from .models import SignatureBaseModel -class DetachedSignatureForm(forms.Form): - file = forms.FileField( - label=_('Signature file'), - ) - - class DocumentVersionSignatureDetailForm(DetailForm): def __init__(self, *args, **kwargs): extra_fields = ( @@ -70,7 +64,9 @@ class DocumentVersionSignatureDetailForm(DetailForm): ) kwargs['extra_fields'] = extra_fields - super(DocumentVersionSignatureDetailForm, self).__init__(*args, **kwargs) + super( + DocumentVersionSignatureDetailForm, self + ).__init__(*args, **kwargs) class Meta: fields = () diff --git a/mayan/apps/document_signatures/models.py b/mayan/apps/document_signatures/models.py index 197ab83103..2a7b3bff95 100644 --- a/mayan/apps/document_signatures/models.py +++ b/mayan/apps/document_signatures/models.py @@ -98,7 +98,9 @@ class EmbeddedSignature(SignatureBaseModel): with self.document_version.open(raw=raw) as file_object: try: - verify_result = Key.objects.verify_file(file_object=file_object) + verify_result = Key.objects.verify_file( + file_object=file_object + ) except VerificationError as exception: # Not signed logger.debug( @@ -113,6 +115,7 @@ class EmbeddedSignature(SignatureBaseModel): super(EmbeddedSignature, self).save(*args, **kwargs) +@python_2_unicode_compatible class DetachedSignature(SignatureBaseModel): signature_file = models.FileField( blank=True, null=True, storage=storage_backend, upload_to=upload_to, @@ -123,6 +126,9 @@ class DetachedSignature(SignatureBaseModel): verbose_name = _('Document version detached signature') verbose_name_plural = _('Document version detached signatures') + def __str__(self): + return '{}-{}'.format(self.document_version, _('signature')) + def delete(self, *args, **kwargs): self.signature_file.storage.delete(self.signature_file.name) super(DetachedSignature, self).delete(*args, **kwargs) diff --git a/mayan/apps/document_signatures/tests/test_views.py b/mayan/apps/document_signatures/tests/test_views.py index 85088784ba..eaa1f82ed2 100644 --- a/mayan/apps/document_signatures/tests/test_views.py +++ b/mayan/apps/document_signatures/tests/test_views.py @@ -2,8 +2,9 @@ from __future__ import absolute_import, unicode_literals from django.core.files import File +from django_downloadview.test import assert_download_response + from django_gpg.models import Key -from documents.permissions import permission_document_view from documents.tests.literals import TEST_DOCUMENT_PATH from documents.tests.test_views import GenericDocumentViewTestCase from user_management.tests import ( @@ -168,3 +169,51 @@ class SignaturesViewTestCase(GenericDocumentViewTestCase): self.assertEqual(response.status_code, 302) self.assertEqual(DetachedSignature.objects.count(), 1) + + def test_signature_download_view_no_permission(self): + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + signature = DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.get( + 'signatures:document_version_signature_download', + args=(signature.pk,), + ) + + self.assertEqual(response.status_code, 403) + + def test_signature_download_view_with_permission(self): + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + signature = DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_version_signature_download.stored_permission + ) + + response = self.get( + 'signatures:document_version_signature_download', + args=(signature.pk,), + ) + + assert_download_response( + self, response=response, content=signature.signature_file.read(), + ) diff --git a/mayan/apps/document_signatures/urls.py b/mayan/apps/document_signatures/urls.py index 1695d51de3..971b615877 100644 --- a/mayan/apps/document_signatures/urls.py +++ b/mayan/apps/document_signatures/urls.py @@ -4,11 +4,12 @@ from django.conf.urls import patterns, url from .views import ( DocumentVersionSignatureDeleteView, DocumentVersionSignatureDetailView, - DocumentVersionSignatureListView, DocumentVersionSignatureUploadView + DocumentSignatureDownloadView, DocumentVersionSignatureListView, + DocumentVersionSignatureUploadView ) urlpatterns = patterns( - 'document_signatures.views', + '', url( r'^(?P\d+)/details/$', DocumentVersionSignatureDetailView.as_view(), @@ -16,7 +17,7 @@ urlpatterns = patterns( ), url( r'^signature/(?P\d+)/download/$', - 'document_signature_download', + DocumentSignatureDownloadView.as_view(), name='document_version_signature_download' ), url( diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index e1703ce687..f05b483983 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -2,25 +2,20 @@ from __future__ import absolute_import, unicode_literals import logging -from django.conf import settings -from django.contrib import messages from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse -from django.http import HttpResponseRedirect -from django.shortcuts import get_object_or_404, render_to_response -from django.template import RequestContext +from django.shortcuts import get_object_or_404 from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList from common.generics import ( SingleObjectCreateView, SingleObjectDeleteView, SingleObjectDetailView, - SingleObjectListView + SingleObjectDownloadView, SingleObjectListView ) from documents.models import DocumentVersion -from filetransfers.api import serve_file from permissions import Permission -from .forms import DetachedSignatureForm, DocumentVersionSignatureDetailForm +from .forms import DocumentVersionSignatureDetailForm from .models import DetachedSignature, SignatureBaseModel from .permissions import ( permission_document_version_signature_view, @@ -34,12 +29,16 @@ logger = logging.getLogger(__name__) class DocumentVersionSignatureDeleteView(SingleObjectDeleteView): model = DetachedSignature + object_permission = permission_document_version_signature_delete + object_permission_related = 'document_version.document' def get_extra_context(self): return { 'document': self.get_object().document_version.document, 'document_version': self.get_object().document_version, - 'navigation_object_list': ('document', 'document_version', 'signature'), + 'navigation_object_list': ( + 'document', 'document_version', 'signature' + ), 'signature': self.get_object(), 'title': _('Delete detached signature: %s') % self.get_object() } @@ -61,7 +60,9 @@ class DocumentVersionSignatureDetailView(SingleObjectDetailView): 'document': self.get_object().document_version.document, 'document_version': self.get_object().document_version, 'signature': self.get_object(), - 'navigation_object_list': ('document', 'document_version', 'signature'), + 'navigation_object_list': ( + 'document', 'document_version', 'signature' + ), 'hide_object': True, 'title': _( 'Details for signature: %s' @@ -72,6 +73,19 @@ class DocumentVersionSignatureDetailView(SingleObjectDetailView): return SignatureBaseModel.objects.select_subclasses() +class DocumentSignatureDownloadView(SingleObjectDownloadView): + model = DetachedSignature + object_permission = permission_document_version_signature_download + object_permission_related = 'document_version.document' + + def get_file(self): + signature = self.get_object() + + return DocumentSignatureDownloadView.VirtualFile( + signature.signature_file, name=unicode(signature) + ) + + class DocumentVersionSignatureListView(SingleObjectListView): object_permission = permission_document_version_signature_view object_permission_related = 'document_version.document' @@ -95,11 +109,14 @@ class DocumentVersionSignatureListView(SingleObjectListView): try: Permission.check_permissions( - self.request.user, (permission_document_version_signature_view,) + self.request.user, ( + permission_document_version_signature_view, + ) ) except PermissionDenied: return AccessControlList.objects.filter_by_access( - permission_document_version_signature_view, self.request.user, queryset + permission_document_version_signature_view, self.request.user, + queryset ) else: return queryset @@ -145,24 +162,3 @@ class DocumentVersionSignatureUploadView(SingleObjectCreateView): 'signatures:document_version_signature_list', args=(self.get_document_version().pk,) ) - - -def document_signature_download(request, pk): - signature = get_object_or_404(DetachedSignature, pk=pk) - - try: - Permission.check_permissions( - request.user, (permission_document_version_signature_download,) - ) - except PermissionDenied: - AccessControlList.objects.check_access( - permission_document_version_signature_download, request.user, - signature.document_version.signature - ) - - return serve_file( - request, - signature, - save_as='"%s.sig"' % signature.document_version.document, - content_type='application/octet-stream' - ) From 0783806fd1a620f729f73aafc903786abc24c5a6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 29 Mar 2016 13:52:35 -0400 Subject: [PATCH 152/205] Add signature deletion view tests. --- .../document_signatures/tests/test_views.py | 54 +++++++++++++++++++ mayan/apps/document_signatures/urls.py | 4 +- mayan/apps/document_signatures/views.py | 4 +- 3 files changed, 58 insertions(+), 4 deletions(-) diff --git a/mayan/apps/document_signatures/tests/test_views.py b/mayan/apps/document_signatures/tests/test_views.py index eaa1f82ed2..3565604c22 100644 --- a/mayan/apps/document_signatures/tests/test_views.py +++ b/mayan/apps/document_signatures/tests/test_views.py @@ -217,3 +217,57 @@ class SignaturesViewTestCase(GenericDocumentViewTestCase): assert_download_response( self, response=response, content=signature.signature_file.read(), ) + + def test_signature_delete_view_no_permission(self): + with open(TEST_KEY_FILE) as file_object: + Key.objects.create(key_data=file_object.read()) + + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + signature = DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.post( + 'signatures:document_version_signature_delete', + args=(signature.pk,) + ) + + self.assertEqual(response.status_code, 403) + self.assertEqual(DetachedSignature.objects.count(), 1) + + def test_signature_delete_view_with_permission(self): + with open(TEST_KEY_FILE) as file_object: + Key.objects.create(key_data=file_object.read()) + + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + signature = DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_version_signature_delete.stored_permission + ) + + response = self.post( + 'signatures:document_version_signature_delete', + args=(signature.pk,), follow=True + ) + + self.assertContains(response, 'deleted', status_code=200) + self.assertEqual(DetachedSignature.objects.count(), 0) diff --git a/mayan/apps/document_signatures/urls.py b/mayan/apps/document_signatures/urls.py index 971b615877..f143168f6e 100644 --- a/mayan/apps/document_signatures/urls.py +++ b/mayan/apps/document_signatures/urls.py @@ -4,7 +4,7 @@ from django.conf.urls import patterns, url from .views import ( DocumentVersionSignatureDeleteView, DocumentVersionSignatureDetailView, - DocumentSignatureDownloadView, DocumentVersionSignatureListView, + DocumentVersionSignatureDownloadView, DocumentVersionSignatureListView, DocumentVersionSignatureUploadView ) @@ -17,7 +17,7 @@ urlpatterns = patterns( ), url( r'^signature/(?P\d+)/download/$', - DocumentSignatureDownloadView.as_view(), + DocumentVersionSignatureDownloadView.as_view(), name='document_version_signature_download' ), url( diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index f05b483983..848f946e84 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -73,7 +73,7 @@ class DocumentVersionSignatureDetailView(SingleObjectDetailView): return SignatureBaseModel.objects.select_subclasses() -class DocumentSignatureDownloadView(SingleObjectDownloadView): +class DocumentVersionSignatureDownloadView(SingleObjectDownloadView): model = DetachedSignature object_permission = permission_document_version_signature_download object_permission_related = 'document_version.document' @@ -81,7 +81,7 @@ class DocumentSignatureDownloadView(SingleObjectDownloadView): def get_file(self): signature = self.get_object() - return DocumentSignatureDownloadView.VirtualFile( + return DocumentVersionSignatureDownloadView.VirtualFile( signature.signature_file, name=unicode(signature) ) From 739b96ed3745ef12c22637f178e9f1e233ff7140 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 29 Mar 2016 16:27:53 -0400 Subject: [PATCH 153/205] Add related object link permission support. --- mayan/apps/acls/managers.py | 1 + mayan/apps/navigation/classes.py | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/mayan/apps/acls/managers.py b/mayan/apps/acls/managers.py index fb6c4f822c..ef66326d31 100644 --- a/mayan/apps/acls/managers.py +++ b/mayan/apps/acls/managers.py @@ -55,6 +55,7 @@ class AccessControlListManager(models.Manager): permission.stored_permission for permission in permissions ] except TypeError: + # Not a list of permissions, just one stored_permissions = [permissions.stored_permission] if related: diff --git a/mayan/apps/navigation/classes.py b/mayan/apps/navigation/classes.py index 6a32c07466..2151585b08 100644 --- a/mayan/apps/navigation/classes.py +++ b/mayan/apps/navigation/classes.py @@ -202,7 +202,7 @@ class Link(object): def __init__(self, text, view, args=None, condition=None, conditional_disable=None, description=None, icon=None, keep_query=False, kwargs=None, permissions=None, - remove_from_query=None, tags=None): + permissions_related=None, remove_from_query=None, tags=None): self.args = args or [] self.condition = condition @@ -245,7 +245,8 @@ class Link(object): if resolved_object: try: AccessControlList.objects.check_access( - self.permissions, request.user, resolved_object + self.permissions, request.user, resolved_object, + related=getattr(self, 'permissions_related', None) ) except PermissionDenied: return None From d83a80c65be0054e840b1bec12a9c9b337770dc3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 29 Mar 2016 16:28:24 -0400 Subject: [PATCH 154/205] Add document signature app link tests. --- mayan/apps/document_signatures/links.py | 32 ++--- .../migrations/0003_auto_20160325_0052.py | 76 +++++++++-- .../migrations/0004_auto_20160325_0418.py | 25 +++- .../migrations/0006_auto_20160326_0616.py | 5 +- mayan/apps/document_signatures/permissions.py | 8 +- .../document_signatures/tests/test_links.py | 129 ++++++++++++++++++ .../document_signatures/tests/test_views.py | 5 +- mayan/apps/document_signatures/views.py | 32 ++--- 8 files changed, 253 insertions(+), 59 deletions(-) create mode 100644 mayan/apps/document_signatures/tests/test_links.py diff --git a/mayan/apps/document_signatures/links.py b/mayan/apps/document_signatures/links.py index b5bb879275..66a93d8317 100644 --- a/mayan/apps/document_signatures/links.py +++ b/mayan/apps/document_signatures/links.py @@ -9,6 +9,7 @@ from .permissions import ( permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_upload, + permission_document_version_signature_view ) @@ -23,33 +24,32 @@ def is_detached_signature(context): link_document_version_signature_delete = Link( - condition=is_detached_signature, - #permissions=(permission_document_version_signature_delete,), - tags='dangerous', text=_('Delete'), - view='signatures:document_version_signature_delete', - args='resolved_object.pk' + args='resolved_object.pk', condition=is_detached_signature, + permissions=(permission_document_version_signature_delete,), + permissions_related='document_version.document', tags='dangerous', + text=_('Delete'), view='signatures:document_version_signature_delete', ) link_document_version_signature_details = Link( - #permissions=(permission_document_version_signature_view,), - text=_('Details'), + args='resolved_object.pk', + permissions=(permission_document_version_signature_view,), + permissions_related='document_version.document', text=_('Details'), view='signatures:document_version_signature_details', - args='resolved_object.pk' ) link_document_version_signature_list = Link( - #permissions=(permission_document_version_signature_view,), + args='resolved_object.pk', + permissions=(permission_document_version_signature_view,), text=_('Signature list'), view='signatures:document_version_signature_list', - args='resolved_object.pk' ) link_document_version_signature_download = Link( - condition=is_detached_signature, - text=_('Download'), - view='signatures:document_version_signature_download', args='resolved_object.pk', - #permissions=(permission_document_version_signature_download,) + args='resolved_object.pk', condition=is_detached_signature, + permissions=(permission_document_version_signature_download,), + permissions_related='document_version.document', text=_('Download'), + view='signatures:document_version_signature_download', ) link_document_version_signature_upload = Link( - #permissions=(permission_document_version_signature_upload,), + args='resolved_object.pk', + permissions=(permission_document_version_signature_upload,), text=_('Upload signature'), view='signatures:document_version_signature_upload', - args='resolved_object.pk' ) diff --git a/mayan/apps/document_signatures/migrations/0003_auto_20160325_0052.py b/mayan/apps/document_signatures/migrations/0003_auto_20160325_0052.py index 76fa8f097f..044e6f5a35 100644 --- a/mayan/apps/document_signatures/migrations/0003_auto_20160325_0052.py +++ b/mayan/apps/document_signatures/migrations/0003_auto_20160325_0052.py @@ -17,11 +17,34 @@ class Migration(migrations.Migration): migrations.CreateModel( name='SignatureBaseModel', fields=[ - ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), - ('date', models.DateField(null=True, verbose_name='Date signed', blank=True)), - ('key_id', models.CharField(max_length=40, verbose_name='Key ID')), - ('signature_id', models.CharField(max_length=64, null=True, verbose_name='Signature ID', blank=True)), - ('public_key_fingerprint', models.CharField(verbose_name='Public key fingerprint', unique=True, max_length=40, editable=False)), + ( + 'id', models.AutoField( + verbose_name='ID', serialize=False, auto_created=True, + primary_key=True + ) + ), + ( + 'date', models.DateField( + null=True, verbose_name='Date signed', blank=True + ) + ), + ( + 'key_id', models.CharField( + max_length=40, verbose_name='Key ID' + ) + ), + ( + 'signature_id', models.CharField( + max_length=64, null=True, verbose_name='Signature ID', + blank=True + ) + ), + ( + 'public_key_fingerprint', models.CharField( + verbose_name='Public key fingerprint', unique=True, + max_length=40, editable=False + ) + ), ], options={ 'verbose_name': 'Document version signature', @@ -35,23 +58,43 @@ class Migration(migrations.Migration): migrations.AddField( model_name='documentversionsignature', name='date', - field=models.DateField(null=True, verbose_name='Date signed', blank=True), + field=models.DateField( + null=True, verbose_name='Date signed', blank=True + ), ), migrations.AddField( model_name='documentversionsignature', name='signature_id', - field=models.CharField(max_length=64, null=True, verbose_name='Signature ID', blank=True), + field=models.CharField( + max_length=64, null=True, verbose_name='Signature ID', + blank=True + ), ), migrations.AlterField( model_name='documentversionsignature', name='document_version', - field=models.ForeignKey(related_name='signature', editable=False, to='documents.DocumentVersion', verbose_name='Document version'), + field=models.ForeignKey( + related_name='signature', editable=False, + to='documents.DocumentVersion', verbose_name='Document version' + ), ), migrations.CreateModel( name='DetachedSignature', fields=[ - ('signaturebasemodel_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='document_signatures.SignatureBaseModel')), - ('signature_file', models.FileField(storage=storage.backends.filebasedstorage.FileBasedStorage(), upload_to=document_signatures.models.upload_to, null=True, verbose_name='Signature file', blank=True)), + ( + 'signaturebasemodel_ptr', models.OneToOneField( + parent_link=True, auto_created=True, primary_key=True, + serialize=False, + to='document_signatures.SignatureBaseModel' + ) + ), + ( + 'signature_file', models.FileField( + storage=storage.backends.filebasedstorage.FileBasedStorage(), + upload_to=document_signatures.models.upload_to, + null=True, verbose_name='Signature file', blank=True + ) + ), ], options={ 'verbose_name': 'Document version detached signature', @@ -62,7 +105,13 @@ class Migration(migrations.Migration): migrations.CreateModel( name='EmbeddedSignature', fields=[ - ('signaturebasemodel_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='document_signatures.SignatureBaseModel')), + ( + 'signaturebasemodel_ptr', models.OneToOneField( + parent_link=True, auto_created=True, primary_key=True, + serialize=False, + to='document_signatures.SignatureBaseModel' + ) + ), ], options={ 'verbose_name': 'Document version embedded signature', @@ -73,6 +122,9 @@ class Migration(migrations.Migration): migrations.AddField( model_name='signaturebasemodel', name='document_version', - field=models.ForeignKey(related_name='signaturebasemodel', editable=False, to='documents.DocumentVersion', verbose_name='Document version'), + field=models.ForeignKey( + related_name='signaturebasemodel', editable=False, + to='documents.DocumentVersion', verbose_name='Document version' + ), ), ] diff --git a/mayan/apps/document_signatures/migrations/0004_auto_20160325_0418.py b/mayan/apps/document_signatures/migrations/0004_auto_20160325_0418.py index 469cf232b9..8cbbd1c419 100644 --- a/mayan/apps/document_signatures/migrations/0004_auto_20160325_0418.py +++ b/mayan/apps/document_signatures/migrations/0004_auto_20160325_0418.py @@ -14,26 +14,41 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='documentversionsignature', name='document_version', - field=models.ForeignKey(editable=False, to='documents.DocumentVersion', verbose_name='Document version'), + field=models.ForeignKey( + editable=False, to='documents.DocumentVersion', + verbose_name='Document version' + ), ), migrations.AlterField( model_name='signaturebasemodel', name='date', - field=models.DateField(verbose_name='Date signed', null=True, editable=False, blank=True), + field=models.DateField( + verbose_name='Date signed', null=True, editable=False, + blank=True + ), ), migrations.AlterField( model_name='signaturebasemodel', name='document_version', - field=models.ForeignKey(related_name='signatures', editable=False, to='documents.DocumentVersion', verbose_name='Document version'), + field=models.ForeignKey( + related_name='signatures', editable=False, + to='documents.DocumentVersion', verbose_name='Document version' + ), ), migrations.AlterField( model_name='signaturebasemodel', name='public_key_fingerprint', - field=models.CharField(null=True, editable=False, max_length=40, blank=True, unique=True, verbose_name='Public key fingerprint'), + field=models.CharField( + null=True, editable=False, max_length=40, blank=True, + unique=True, verbose_name='Public key fingerprint' + ), ), migrations.AlterField( model_name='signaturebasemodel', name='signature_id', - field=models.CharField(verbose_name='Signature ID', max_length=64, null=True, editable=False, blank=True), + field=models.CharField( + verbose_name='Signature ID', max_length=64, null=True, + editable=False, blank=True + ), ), ] diff --git a/mayan/apps/document_signatures/migrations/0006_auto_20160326_0616.py b/mayan/apps/document_signatures/migrations/0006_auto_20160326_0616.py index e5db17f576..adb06aeea3 100644 --- a/mayan/apps/document_signatures/migrations/0006_auto_20160326_0616.py +++ b/mayan/apps/document_signatures/migrations/0006_auto_20160326_0616.py @@ -14,6 +14,9 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='signaturebasemodel', name='public_key_fingerprint', - field=models.CharField(verbose_name='Public key fingerprint', max_length=40, null=True, editable=False, blank=True), + field=models.CharField( + verbose_name='Public key fingerprint', max_length=40, + null=True, editable=False, blank=True + ), ), ] diff --git a/mayan/apps/document_signatures/permissions.py b/mayan/apps/document_signatures/permissions.py index f81ad66806..8db3806b60 100644 --- a/mayan/apps/document_signatures/permissions.py +++ b/mayan/apps/document_signatures/permissions.py @@ -8,10 +8,6 @@ namespace = PermissionNamespace( 'document_signatures', _('Document signatures') ) -permission_document_version_signature_view = namespace.add_permission( - name='document_version_signature_view', - label=_('View details of document signatures') -) permission_document_version_signature_delete = namespace.add_permission( name='document_version_signature_delete', label=_('Delete detached signatures') @@ -24,3 +20,7 @@ permission_document_version_signature_upload = namespace.add_permission( name='document_version_signature_upload', label=_('Upload detached document signatures') ) +permission_document_version_signature_view = namespace.add_permission( + name='document_version_signature_view', + label=_('View details of document signatures') +) diff --git a/mayan/apps/document_signatures/tests/test_links.py b/mayan/apps/document_signatures/tests/test_links.py new file mode 100644 index 0000000000..169af19344 --- /dev/null +++ b/mayan/apps/document_signatures/tests/test_links.py @@ -0,0 +1,129 @@ +from __future__ import unicode_literals + +from django.core.files import File +from django.core.urlresolvers import reverse + +from documents.tests.literals import TEST_DOCUMENT_PATH +from documents.tests.test_views import GenericDocumentViewTestCase +from user_management.tests.literals import ( + TEST_USER_PASSWORD, TEST_USER_USERNAME +) + +from ..links import ( + link_document_version_signature_delete, + link_document_version_signature_details, +) +from ..models import DetachedSignature +from ..permissions import ( + permission_document_version_signature_delete, + permission_document_version_signature_view +) +from .literals import TEST_SIGNATURE_FILE_PATH, TEST_SIGNED_DOCUMENT_PATH + + +class DocumentSignatureLinksTestCase(GenericDocumentViewTestCase): + def test_document_version_signature_detail_link_no_permission(self): + with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.add_test_view( + test_object=document.latest_version.signatures.first() + ) + context = self.get_test_view() + resolved_link = link_document_version_signature_details.resolve( + context=context + ) + + self.assertEqual(resolved_link, None) + + def test_document_version_signature_detail_link_with_permission(self): + with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_version_signature_view.stored_permission + ) + + self.add_test_view( + test_object=document.latest_version.signatures.first() + ) + context = self.get_test_view() + resolved_link = link_document_version_signature_details.resolve( + context=context + ) + + self.assertNotEqual(resolved_link, None) + self.assertEqual( + resolved_link.url, + reverse( + 'signatures:document_version_signature_details', + args=(document.latest_version.signatures.first().pk,) + ) + ) + + def test_document_version_signature_delete_link_no_permission(self): + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.add_test_view( + test_object=document.latest_version.signatures.first() + ) + context = self.get_test_view() + resolved_link = link_document_version_signature_delete.resolve( + context=context + ) + + self.assertEqual(resolved_link, None) + + def test_document_version_signature_delete_link_with_permission(self): + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with open(TEST_SIGNATURE_FILE_PATH) as file_object: + DetachedSignature.objects.create( + document_version=document.latest_version, + signature_file=File(file_object) + ) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_version_signature_delete.stored_permission + ) + + self.add_test_view( + test_object=document.latest_version.signatures.first() + ) + context = self.get_test_view() + resolved_link = link_document_version_signature_delete.resolve( + context=context + ) + + self.assertNotEqual(resolved_link, None) + self.assertEqual( + resolved_link.url, + reverse( + 'signatures:document_version_signature_delete', + args=(document.latest_version.signatures.first().pk,) + ) + ) diff --git a/mayan/apps/document_signatures/tests/test_views.py b/mayan/apps/document_signatures/tests/test_views.py index 3565604c22..8bacb24f82 100644 --- a/mayan/apps/document_signatures/tests/test_views.py +++ b/mayan/apps/document_signatures/tests/test_views.py @@ -19,10 +19,7 @@ from ..permissions import ( permission_document_version_signature_upload, ) -from .literals import ( - TEST_SIGNED_DOCUMENT_PATH, TEST_SIGNATURE_FILE_PATH, TEST_KEY_FILE, - TEST_KEY_ID, TEST_SIGNATURE_ID -) +from .literals import TEST_SIGNATURE_FILE_PATH, TEST_KEY_FILE class SignaturesViewTestCase(GenericDocumentViewTestCase): diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index 848f946e84..083ae02c22 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -87,8 +87,20 @@ class DocumentVersionSignatureDownloadView(SingleObjectDownloadView): class DocumentVersionSignatureListView(SingleObjectListView): - object_permission = permission_document_version_signature_view - object_permission_related = 'document_version.document' + def dispatch(self, request, *args, **kwargs): + try: + Permission.check_permissions( + request.user, (permission_document_version_signature_view,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_document_version_signature_view, request.user, + self.get_document_version() + ) + + return super( + DocumentVersionSignatureListView, self + ).dispatch(request, *args, **kwargs) def get_document_version(self): return get_object_or_404(DocumentVersion, pk=self.kwargs['pk']) @@ -105,21 +117,7 @@ class DocumentVersionSignatureListView(SingleObjectListView): } def get_queryset(self): - queryset = self.get_document_version().signatures.all() - - try: - Permission.check_permissions( - self.request.user, ( - permission_document_version_signature_view, - ) - ) - except PermissionDenied: - return AccessControlList.objects.filter_by_access( - permission_document_version_signature_view, self.request.user, - queryset - ) - else: - return queryset + return self.get_document_version().signatures.all() class DocumentVersionSignatureUploadView(SingleObjectCreateView): From 7da6cf1863e23941a7ba061beb41b637457e15d2 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 29 Mar 2016 20:13:58 -0400 Subject: [PATCH 155/205] Add view, task and post upgrade signal handler to verify all documents for embedded signatures. --- mayan/apps/document_signatures/apps.py | 35 ++++-- mayan/apps/document_signatures/handlers.py | 17 ++- mayan/apps/document_signatures/links.py | 6 + mayan/apps/document_signatures/managers.py | 6 + mayan/apps/document_signatures/permissions.py | 4 + mayan/apps/document_signatures/tasks.py | 30 ++++- .../document_signatures/tests/test_models.py | 69 +++++++++++- .../document_signatures/tests/test_views.py | 105 +++++++++++++++++- mayan/apps/document_signatures/urls.py | 11 +- mayan/apps/document_signatures/views.py | 31 +++++- 10 files changed, 287 insertions(+), 27 deletions(-) diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index 6be04810e7..516730e827 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -10,13 +10,18 @@ from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission from common import ( - MayanAppConfig, menu_object, menu_sidebar + MayanAppConfig, menu_object, menu_sidebar, menu_tools ) +from common.signals import post_upgrade from mayan.celery import app from navigation import SourceColumn -from .handlers import unverify_signatures, verify_signatures +from .handlers import ( + unverify_key_signatures, verify_key_signatures, + verify_missing_embedded_signature +) from .links import ( + link_all_document_version_signature_verify, link_document_version_signature_delete, link_document_version_signature_details, link_document_version_signature_download, @@ -101,12 +106,18 @@ class DocumentSignaturesApp(MayanAppConfig): app.conf.CELERY_ROUTES.update( { - 'document_signatures.tasks.task_verify_signatures': { + 'document_signatures.tasks.task_verify_key_signatures': { 'queue': 'signatures' }, - 'document_signatures.tasks.task_unverify_signatures': { + 'document_signatures.tasks.task_unverify_key_signatures': { 'queue': 'signatures' }, + 'document_signatures.tasks.task_verify_document_version': { + 'queue': 'signatures' + }, + 'document_signatures.tasks.task_verify_missing_embedded_signature': { + 'queue': 'tools' + }, } ) @@ -126,13 +137,21 @@ class DocumentSignaturesApp(MayanAppConfig): link_document_version_signature_upload, ), sources=(DocumentVersion,) ) + menu_tools.bind_links( + links=(link_all_document_version_signature_verify,) + ) + post_delete.connect( - unverify_signatures, - dispatch_uid='unverify_signatures', + unverify_key_signatures, + dispatch_uid='unverify_key_signatures', sender=Key ) + post_upgrade.connect( + verify_missing_embedded_signature, + dispatch_uid='verify_missing_embedded_signature', + ) post_save.connect( - verify_signatures, - dispatch_uid='verify_signatures', + verify_key_signatures, + dispatch_uid='verify_key_signatures', sender=Key ) diff --git a/mayan/apps/document_signatures/handlers.py b/mayan/apps/document_signatures/handlers.py index 38a91cc821..988f4da513 100644 --- a/mayan/apps/document_signatures/handlers.py +++ b/mayan/apps/document_signatures/handlers.py @@ -1,15 +1,22 @@ from __future__ import unicode_literals -from .tasks import task_unverify_signatures, task_verify_signatures +from .tasks import ( + task_unverify_key_signatures, task_verify_missing_embedded_signature, + task_verify_key_signatures +) -def unverify_signatures(sender, **kwargs): - task_unverify_signatures.apply_async( +def unverify_key_signatures(sender, **kwargs): + task_unverify_key_signatures.apply_async( kwargs=dict(key_id=kwargs['instance'].key_id) ) -def verify_signatures(sender, **kwargs): - task_verify_signatures.apply_async( +def verify_key_signatures(sender, **kwargs): + task_verify_key_signatures.apply_async( kwargs=dict(key_pk=kwargs['instance'].pk) ) + + +def verify_missing_embedded_signature(sender, **kwargs): + task_verify_missing_embedded_signature.delay() diff --git a/mayan/apps/document_signatures/links.py b/mayan/apps/document_signatures/links.py index 66a93d8317..b2206cf3dd 100644 --- a/mayan/apps/document_signatures/links.py +++ b/mayan/apps/document_signatures/links.py @@ -9,6 +9,7 @@ from .permissions import ( permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_upload, + permission_document_version_signature_verify, permission_document_version_signature_view ) @@ -23,6 +24,11 @@ def is_detached_signature(context): ).is_detached +link_all_document_version_signature_verify = Link( + permissions=(permission_document_version_signature_verify,), + text=_('Verify all documents'), + view='signatures:all_document_version_signature_verify', +) link_document_version_signature_delete = Link( args='resolved_object.pk', condition=is_detached_signature, permissions=(permission_document_version_signature_delete,), diff --git a/mayan/apps/document_signatures/managers.py b/mayan/apps/document_signatures/managers.py index 0c5cf80ca3..9c3b90de19 100644 --- a/mayan/apps/document_signatures/managers.py +++ b/mayan/apps/document_signatures/managers.py @@ -6,6 +6,7 @@ from django.db import models from django_gpg.exceptions import DecryptionError from django_gpg.models import Key +from documents.models import DocumentVersion logger = logging.getLogger(__name__) @@ -24,3 +25,8 @@ class EmbeddedSignatureManager(models.Manager): return file_object else: return file_object + + def unsigned_document_versions(self): + return DocumentVersion.objects.exclude( + pk__in=self.values('document_version') + ) diff --git a/mayan/apps/document_signatures/permissions.py b/mayan/apps/document_signatures/permissions.py index 8db3806b60..307758c374 100644 --- a/mayan/apps/document_signatures/permissions.py +++ b/mayan/apps/document_signatures/permissions.py @@ -20,6 +20,10 @@ permission_document_version_signature_upload = namespace.add_permission( name='document_version_signature_upload', label=_('Upload detached document signatures') ) +permission_document_version_signature_verify = namespace.add_permission( + name='document_version_signature_verify', + label=_('Verify document signatures') +) permission_document_version_signature_view = namespace.add_permission( name='document_version_signature_view', label=_('View details of document signatures') diff --git a/mayan/apps/document_signatures/tasks.py b/mayan/apps/document_signatures/tasks.py index 854b5bb1d4..9657f6417f 100644 --- a/mayan/apps/document_signatures/tasks.py +++ b/mayan/apps/document_signatures/tasks.py @@ -11,7 +11,7 @@ logger = logging.getLogger(__name__) @app.task(bind=True, ignore_result=True) -def task_unverify_signatures(self, key_id): +def task_unverify_key_signatures(self, key_id): DetachedSignature = apps.get_model( app_label='document_signatures', model_name='DetachedSignature' ) @@ -28,7 +28,7 @@ def task_unverify_signatures(self, key_id): @app.task(bind=True, ignore_result=True) -def task_verify_signatures(self, key_pk): +def task_verify_key_signatures(self, key_pk): Key = apps.get_model( app_label='django_gpg', model_name='Key' ) @@ -48,3 +48,29 @@ def task_verify_signatures(self, key_pk): for signature in EmbeddedSignature.objects.filter(key_id__endswith=key.key_id).filter(signature_id__isnull=True): signature.save() + + +@app.task(bind=True, ignore_result=True) +def task_verify_missing_embedded_signature(self): + EmbeddedSignature = apps.get_model( + app_label='document_signatures', model_name='EmbeddedSignature' + ) + + for document_version in EmbeddedSignature.objects.unsigned_document_versions(): + task_verify_document_version.apply_async( + kwargs=dict(document_version_pk=document_version.pk) + ) + + +@app.task(bind=True, ignore_result=True) +def task_verify_document_version(self, document_version_pk): + DocumentVersion = apps.get_model( + app_label='documents', model_name='DocumentVersion' + ) + + EmbeddedSignature = apps.get_model( + app_label='document_signatures', model_name='EmbeddedSignature' + ) + + document_version = DocumentVersion.objects.get(pk=document_version_pk) + EmbeddedSignature.objects.create(document_version=document_version) diff --git a/mayan/apps/document_signatures/tests/test_models.py b/mayan/apps/document_signatures/tests/test_models.py index 5366c3bac3..8e9f61c299 100644 --- a/mayan/apps/document_signatures/tests/test_models.py +++ b/mayan/apps/document_signatures/tests/test_models.py @@ -6,10 +6,11 @@ from django.core.files import File from django.test import TestCase, override_settings from django_gpg.models import Key -from documents.models import DocumentType +from documents.models import DocumentType, DocumentVersion from documents.tests import TEST_DOCUMENT_PATH, TEST_DOCUMENT_TYPE from ..models import DetachedSignature, EmbeddedSignature +from ..tasks import task_verify_missing_embedded_signature from .literals import ( TEST_SIGNED_DOCUMENT_PATH, TEST_SIGNATURE_FILE_PATH, TEST_KEY_FILE, @@ -241,3 +242,69 @@ class DocumentSignaturesTestCase(TestCase): self.assertEqual(signature.document_version, signed_version) self.assertEqual(signature.key_id, TEST_KEY_ID) + + +@override_settings(OCR_AUTO_OCR=False) +class EmbeddedSignaturesTestCase(TestCase): + def setUp(self): + self.document_type = DocumentType.objects.create( + label=TEST_DOCUMENT_TYPE + ) + + def tearDown(self): + self.document_type.delete() + + def test_unsigned_document_version_method(self): + TEST_UNSIGNED_DOCUMENT_COUNT = 3 + TEST_SIGNED_DOCUMENT_COUNT = 3 + + for count in range(TEST_UNSIGNED_DOCUMENT_COUNT): + with open(TEST_DOCUMENT_PATH) as file_object: + self.document_type.new_document( + file_object=file_object + ) + + for count in range(TEST_SIGNED_DOCUMENT_COUNT): + with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: + self.document_type.new_document( + file_object=file_object + ) + + self.assertEqual( + EmbeddedSignature.objects.unsigned_document_versions().count(), + TEST_UNSIGNED_DOCUMENT_COUNT + ) + + def test_task_verify_missing_embedded_signature(self): + old_hooks = DocumentVersion._post_save_hooks + + DocumentVersion._post_save_hooks = {} + + TEST_UNSIGNED_DOCUMENT_COUNT = 4 + TEST_SIGNED_DOCUMENT_COUNT = 2 + + for count in range(TEST_UNSIGNED_DOCUMENT_COUNT): + with open(TEST_DOCUMENT_PATH) as file_object: + self.document_type.new_document( + file_object=file_object + ) + + for count in range(TEST_SIGNED_DOCUMENT_COUNT): + with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: + self.document_type.new_document( + file_object=file_object + ) + + self.assertEqual( + EmbeddedSignature.objects.unsigned_document_versions().count(), + TEST_UNSIGNED_DOCUMENT_COUNT + TEST_SIGNED_DOCUMENT_COUNT + ) + + DocumentVersion._post_save_hooks = old_hooks + + task_verify_missing_embedded_signature.delay() + + self.assertEqual( + EmbeddedSignature.objects.unsigned_document_versions().count(), + TEST_UNSIGNED_DOCUMENT_COUNT + ) diff --git a/mayan/apps/document_signatures/tests/test_views.py b/mayan/apps/document_signatures/tests/test_views.py index 8bacb24f82..fdcaa38649 100644 --- a/mayan/apps/document_signatures/tests/test_views.py +++ b/mayan/apps/document_signatures/tests/test_views.py @@ -5,21 +5,29 @@ from django.core.files import File from django_downloadview.test import assert_download_response from django_gpg.models import Key +from documents.models import Document, DocumentVersion from documents.tests.literals import TEST_DOCUMENT_PATH from documents.tests.test_views import GenericDocumentViewTestCase from user_management.tests import ( TEST_USER_USERNAME, TEST_USER_PASSWORD ) -from ..models import DetachedSignature +from ..models import DetachedSignature, EmbeddedSignature from ..permissions import ( permission_document_version_signature_view, permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_upload, + permission_document_version_signature_verify, + permission_document_version_signature_view ) -from .literals import TEST_SIGNATURE_FILE_PATH, TEST_KEY_FILE +from .literals import ( + TEST_SIGNATURE_FILE_PATH, TEST_SIGNED_DOCUMENT_PATH, TEST_KEY_FILE +) + +TEST_UNSIGNED_DOCUMENT_COUNT = 4 +TEST_SIGNED_DOCUMENT_COUNT = 2 class SignaturesViewTestCase(GenericDocumentViewTestCase): @@ -45,7 +53,7 @@ class SignaturesViewTestCase(GenericDocumentViewTestCase): args=(document.latest_version.pk,) ) - self.assertContains(response, 'Total: 0', status_code=200) + self.assertEqual(response.status_code, 403) def test_signature_list_view_with_permission(self): with open(TEST_KEY_FILE) as file_object: @@ -232,6 +240,10 @@ class SignaturesViewTestCase(GenericDocumentViewTestCase): self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + self.role.permissions.add( + permission_document_version_signature_view.stored_permission + ) + response = self.post( 'signatures:document_version_signature_delete', args=(signature.pk,) @@ -260,6 +272,9 @@ class SignaturesViewTestCase(GenericDocumentViewTestCase): self.role.permissions.add( permission_document_version_signature_delete.stored_permission ) + self.role.permissions.add( + permission_document_version_signature_view.stored_permission + ) response = self.post( 'signatures:document_version_signature_delete', @@ -268,3 +283,87 @@ class SignaturesViewTestCase(GenericDocumentViewTestCase): self.assertContains(response, 'deleted', status_code=200) self.assertEqual(DetachedSignature.objects.count(), 0) + + def test_missing_signature_verify_view_no_permission(self): + for document in self.document_type.documents.all(): + document.delete(to_trash=False) + + from documents.models import DocumentType + + old_hooks = DocumentVersion._post_save_hooks + DocumentVersion._post_save_hooks = {} + for count in range(TEST_UNSIGNED_DOCUMENT_COUNT): + with open(TEST_DOCUMENT_PATH) as file_object: + self.document_type.new_document( + file_object=file_object + ) + + for count in range(TEST_SIGNED_DOCUMENT_COUNT): + with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: + self.document_type.new_document( + file_object=file_object + ) + + self.assertEqual( + EmbeddedSignature.objects.unsigned_document_versions().count(), + TEST_UNSIGNED_DOCUMENT_COUNT + TEST_SIGNED_DOCUMENT_COUNT + ) + + DocumentVersion._post_save_hooks = old_hooks + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.post( + 'signatures:all_document_version_signature_verify', follow=True + ) + + self.assertEqual(response.status_code, 403) + + self.assertEqual( + EmbeddedSignature.objects.unsigned_document_versions().count(), + TEST_UNSIGNED_DOCUMENT_COUNT + TEST_SIGNED_DOCUMENT_COUNT + ) + + def test_missing_signature_verify_view_with_permission(self): + for document in self.document_type.documents.all(): + document.delete(to_trash=False) + + from documents.models import DocumentType + + old_hooks = DocumentVersion._post_save_hooks + DocumentVersion._post_save_hooks = {} + for count in range(TEST_UNSIGNED_DOCUMENT_COUNT): + with open(TEST_DOCUMENT_PATH) as file_object: + self.document_type.new_document( + file_object=file_object + ) + + for count in range(TEST_SIGNED_DOCUMENT_COUNT): + with open(TEST_SIGNED_DOCUMENT_PATH) as file_object: + self.document_type.new_document( + file_object=file_object + ) + + self.assertEqual( + EmbeddedSignature.objects.unsigned_document_versions().count(), + TEST_UNSIGNED_DOCUMENT_COUNT + TEST_SIGNED_DOCUMENT_COUNT + ) + + DocumentVersion._post_save_hooks = old_hooks + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_version_signature_verify.stored_permission + ) + + response = self.post( + 'signatures:all_document_version_signature_verify', follow=True + ) + + self.assertContains(response, 'queued', status_code=200) + + self.assertEqual( + EmbeddedSignature.objects.unsigned_document_versions().count(), + TEST_UNSIGNED_DOCUMENT_COUNT + ) diff --git a/mayan/apps/document_signatures/urls.py b/mayan/apps/document_signatures/urls.py index f143168f6e..988b5a9226 100644 --- a/mayan/apps/document_signatures/urls.py +++ b/mayan/apps/document_signatures/urls.py @@ -3,9 +3,9 @@ from __future__ import unicode_literals from django.conf.urls import patterns, url from .views import ( - DocumentVersionSignatureDeleteView, DocumentVersionSignatureDetailView, - DocumentVersionSignatureDownloadView, DocumentVersionSignatureListView, - DocumentVersionSignatureUploadView + AllDocumentSignatureVerifyView, DocumentVersionSignatureDeleteView, + DocumentVersionSignatureDetailView, DocumentVersionSignatureDownloadView, + DocumentVersionSignatureListView, DocumentVersionSignatureUploadView ) urlpatterns = patterns( @@ -35,4 +35,9 @@ urlpatterns = patterns( DocumentVersionSignatureDeleteView.as_view(), name='document_version_signature_delete' ), + url( + r'^tools/all/document/version/signature/verify/$', + AllDocumentSignatureVerifyView.as_view(), + name='all_document_version_signature_verify' + ), ) diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index 083ae02c22..0dfd71463d 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -2,6 +2,7 @@ from __future__ import absolute_import, unicode_literals import logging +from django.contrib import messages from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse from django.shortcuts import get_object_or_404 @@ -9,8 +10,8 @@ from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList from common.generics import ( - SingleObjectCreateView, SingleObjectDeleteView, SingleObjectDetailView, - SingleObjectDownloadView, SingleObjectListView + ConfirmView, SingleObjectCreateView, SingleObjectDeleteView, + SingleObjectDetailView, SingleObjectDownloadView, SingleObjectListView ) from documents.models import DocumentVersion from permissions import Permission @@ -18,11 +19,13 @@ from permissions import Permission from .forms import DocumentVersionSignatureDetailForm from .models import DetachedSignature, SignatureBaseModel from .permissions import ( - permission_document_version_signature_view, - permission_document_version_signature_upload, + permission_document_version_signature_delete, permission_document_version_signature_download, - permission_document_version_signature_delete + permission_document_version_signature_upload, + permission_document_version_signature_verify, + permission_document_version_signature_view, ) +from .tasks import task_verify_missing_embedded_signature logger = logging.getLogger(__name__) @@ -160,3 +163,21 @@ class DocumentVersionSignatureUploadView(SingleObjectCreateView): 'signatures:document_version_signature_list', args=(self.get_document_version().pk,) ) + + +class AllDocumentSignatureVerifyView(ConfirmView): + extra_context = { + 'message': _( + 'On large databases this operation may take some time to execute.' + ), 'title': _('Verify all document for signatures?'), + } + view_permission = permission_document_version_signature_verify + + def get_post_action_redirect(self): + return reverse('common:tools_list') + + def view_action(self): + task_verify_missing_embedded_signature.delay() + messages.success( + self.request, _('Signature verification queued successfully.') + ) From 8b28bdd4432ed8db4aa33098cb38a6706cbe35ba Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 29 Mar 2016 21:03:16 -0400 Subject: [PATCH 156/205] Add missing icon to the all document signature verification tool link. --- mayan/apps/document_signatures/links.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mayan/apps/document_signatures/links.py b/mayan/apps/document_signatures/links.py index b2206cf3dd..fc2e060ec6 100644 --- a/mayan/apps/document_signatures/links.py +++ b/mayan/apps/document_signatures/links.py @@ -25,6 +25,7 @@ def is_detached_signature(context): link_all_document_version_signature_verify = Link( + icon='fa fa-certificate', permissions=(permission_document_version_signature_verify,), text=_('Verify all documents'), view='signatures:all_document_version_signature_verify', From c6890c487ab50ee324ff79eb02965cbf1dddec73 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 30 Mar 2016 01:32:53 -0400 Subject: [PATCH 157/205] Extract a file like object's file name as per docs (using the .name property) and not an unicode representation of the file object instance. Reference: https://docs.python.org/2.7/library/stdtypes.html#file-objects --- mayan/apps/documents/models.py | 4 ++-- mayan/apps/sources/models.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index e795bf74bf..ed605e11e4 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -127,7 +127,7 @@ class DocumentType(models.Model): with transaction.atomic(): document = self.documents.create( description=description or '', - label=label or unicode(file_object), + label=label or file_object.name, language=language or setting_language.value ) document.save(_user=_user) @@ -138,7 +138,7 @@ class DocumentType(models.Model): logger.critical( 'Unexpected exception while trying to create new document ' '"%s" from document type "%s"; %s', - label or unicode(file_object), self, exception + label or file_object.name, self, exception ) raise diff --git a/mayan/apps/sources/models.py b/mayan/apps/sources/models.py index 1e4baf9ebd..ed8cc90c6b 100644 --- a/mayan/apps/sources/models.py +++ b/mayan/apps/sources/models.py @@ -65,7 +65,7 @@ class Source(models.Model): with transaction.atomic(): document = Document.objects.create( description=description or '', document_type=document_type, - label=label or unicode(file_object), + label=label or file_object.name, language=language or setting_language.value ) document.save(_user=user) @@ -100,7 +100,7 @@ class Source(models.Model): logger.critical( 'Unexpected exception while trying to create new document ' '"%s" from source "%s"; %s', - label or unicode(file_object), self, exception + label or file_object.name, self, exception ) raise From 1e7e17bdce66a49a8b69d59419df9703608f5f2f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 30 Mar 2016 01:42:17 -0400 Subject: [PATCH 158/205] Insert the resolved_object context variable in the test views. --- mayan/apps/common/tests/test_views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mayan/apps/common/tests/test_views.py b/mayan/apps/common/tests/test_views.py index 4420a69794..b7851896e9 100644 --- a/mayan/apps/common/tests/test_views.py +++ b/mayan/apps/common/tests/test_views.py @@ -50,7 +50,9 @@ class GenericViewTestCase(TestCase): def test_view(request): template = Template('{{ object }}') - context = Context({'object': test_object}) + context = Context( + {'object': test_object, 'resolved_object': test_object} + ) return HttpResponse(template.render(context=context)) urlpatterns.insert(0, url(TEST_VIEW_URL, test_view, name=TEST_VIEW_NAME)) From 8baca70ef5c373aa4c5a526aad4bfccd1135ba66 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 30 Mar 2016 02:00:17 -0400 Subject: [PATCH 159/205] Add link to document facet menu to display its latest version signatures. --- mayan/apps/document_signatures/apps.py | 6 +++++- mayan/apps/document_signatures/links.py | 9 ++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index 516730e827..54f5e9509e 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -10,7 +10,7 @@ from django.utils.translation import ugettext_lazy as _ from acls import ModelPermission from common import ( - MayanAppConfig, menu_object, menu_sidebar, menu_tools + MayanAppConfig, menu_facet, menu_object, menu_sidebar, menu_tools ) from common.signals import post_upgrade from mayan.celery import app @@ -22,6 +22,7 @@ from .handlers import ( ) from .links import ( link_all_document_version_signature_verify, + link_document_signature_list, link_document_version_signature_delete, link_document_version_signature_details, link_document_version_signature_download, @@ -121,6 +122,9 @@ class DocumentSignaturesApp(MayanAppConfig): } ) + menu_facet.bind_links( + links=(link_document_signature_list,), sources=(Document,) + ) menu_object.bind_links( links=(link_document_version_signature_list,), sources=(DocumentVersion,) diff --git a/mayan/apps/document_signatures/links.py b/mayan/apps/document_signatures/links.py index fc2e060ec6..6494764291 100644 --- a/mayan/apps/document_signatures/links.py +++ b/mayan/apps/document_signatures/links.py @@ -30,6 +30,13 @@ link_all_document_version_signature_verify = Link( text=_('Verify all documents'), view='signatures:all_document_version_signature_verify', ) +link_document_signature_list = Link( + args='resolved_object.latest_version.pk', + icon='fa fa-certificate', + permissions=(permission_document_version_signature_view,), + text=_('Signatures'), + view='signatures:document_version_signature_list', +) link_document_version_signature_delete = Link( args='resolved_object.pk', condition=is_detached_signature, permissions=(permission_document_version_signature_delete,), @@ -45,7 +52,7 @@ link_document_version_signature_details = Link( link_document_version_signature_list = Link( args='resolved_object.pk', permissions=(permission_document_version_signature_view,), - text=_('Signature list'), + permissions_related='document', text=_('Signature list'), view='signatures:document_version_signature_list', ) link_document_version_signature_download = Link( From 24d82870727b2b0886957ff302d5539ef60feb9c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 30 Mar 2016 02:30:50 -0400 Subject: [PATCH 160/205] Add Key usage for signing permission. --- mayan/apps/django_gpg/apps.py | 6 ++++-- mayan/apps/django_gpg/permissions.py | 3 +++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mayan/apps/django_gpg/apps.py b/mayan/apps/django_gpg/apps.py index f187bf25ba..7490aa6d21 100644 --- a/mayan/apps/django_gpg/apps.py +++ b/mayan/apps/django_gpg/apps.py @@ -16,7 +16,9 @@ from .links import ( link_key_delete, link_key_detail, link_key_query, link_key_receive, link_key_setup, link_private_keys, link_public_keys ) -from .permissions import permission_key_delete, permission_key_view +from .permissions import ( + permission_key_delete, permission_key_sign, permission_key_view +) class DjangoGPGApp(MayanAppConfig): @@ -33,7 +35,7 @@ class DjangoGPGApp(MayanAppConfig): ModelPermission.register( model=Key, permissions=( permission_acl_edit, permission_acl_view, - permission_key_delete, permission_key_view + permission_key_delete, permission_key_sign, permission_key_view ) ) diff --git a/mayan/apps/django_gpg/permissions.py b/mayan/apps/django_gpg/permissions.py index fc984d3567..5603010405 100644 --- a/mayan/apps/django_gpg/permissions.py +++ b/mayan/apps/django_gpg/permissions.py @@ -12,6 +12,9 @@ permission_key_delete = namespace.add_permission( permission_key_receive = namespace.add_permission( name='key_receive', label=_('Import keys from keyservers') ) +permission_key_sign = namespace.add_permission( + name='key_sign', label=_('Use keys to sign content') +) permission_key_view = namespace.add_permission( name='key_view', label=_('View keys') ) From bc59613945c749bf07258323481335f7deb8c8a5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 30 Mar 2016 02:32:08 -0400 Subject: [PATCH 161/205] Add key content sign tests. --- mayan/apps/django_gpg/models.py | 2 +- mayan/apps/django_gpg/tests/test_models.py | 51 ++++++++++++++++++++-- 2 files changed, 49 insertions(+), 4 deletions(-) diff --git a/mayan/apps/django_gpg/models.py b/mayan/apps/django_gpg/models.py index 9f4ab45239..68c3e7028b 100644 --- a/mayan/apps/django_gpg/models.py +++ b/mayan/apps/django_gpg/models.py @@ -128,7 +128,7 @@ class Key(models.Model): gnupghome=temporary_directory, gpgbinary=setting_gpg_path.value ) - import_results = gpg.import_keys(key_data=self.data) + import_results = gpg.import_keys(key_data=self.key_data) file_sign_results = gpg.sign_file( file=file_object, keyid=import_results.fingerprints[0], diff --git a/mayan/apps/django_gpg/tests/test_models.py b/mayan/apps/django_gpg/tests/test_models.py index e871ecf1b3..d95a4d78e4 100644 --- a/mayan/apps/django_gpg/tests/test_models.py +++ b/mayan/apps/django_gpg/tests/test_models.py @@ -1,16 +1,20 @@ from __future__ import unicode_literals +import StringIO import tempfile from django.test import TestCase -from ..exceptions import DecryptionError, KeyDoesNotExist, VerificationError +from ..exceptions import ( + DecryptionError, KeyDoesNotExist, NeedPassphrase, PassphraseError, + VerificationError +) from ..models import Key from .literals import ( TEST_DETACHED_SIGNATURE, TEST_FILE, TEST_KEY_DATA, TEST_KEY_FINGERPRINT, - TEST_SEARCH_FINGERPRINT, TEST_SEARCH_UID, TEST_SIGNED_FILE, - TEST_SIGNED_FILE_CONTENT + TEST_KEY_PASSPHRASE, TEST_SEARCH_FINGERPRINT, TEST_SEARCH_UID, + TEST_SIGNED_FILE, TEST_SIGNED_FILE_CONTENT ) @@ -118,3 +122,44 @@ class KeyTestCase(TestCase): self.assertTrue(result) self.assertEqual(result.fingerprint, TEST_KEY_FINGERPRINT) + + def test_detached_signing_no_passphrase(self): + key = Key.objects.create(key_data=TEST_KEY_DATA) + + with self.assertRaises(NeedPassphrase): + with open(TEST_FILE) as test_file: + detached_signature = key.sign_file( + file_object=test_file, detached=True, + ) + + def test_detached_signing_bad_passphrase(self): + key = Key.objects.create(key_data=TEST_KEY_DATA) + + with self.assertRaises(PassphraseError): + with open(TEST_FILE) as test_file: + detached_signature = key.sign_file( + file_object=test_file, detached=True, + passphrase='bad passphrase' + ) + + def test_detached_signing_with_passphrase(self): + key = Key.objects.create(key_data=TEST_KEY_DATA) + + with open(TEST_FILE) as test_file: + detached_signature = key.sign_file( + file_object=test_file, detached=True, + passphrase=TEST_KEY_PASSPHRASE + ) + + signature_file = StringIO.StringIO() + signature_file.write(detached_signature) + signature_file.seek(0) + + with open(TEST_FILE) as test_file: + result = Key.objects.verify_file( + file_object=test_file, signature_file=signature_file + ) + + signature_file.close() + self.assertTrue(result) + self.assertEqual(result.fingerprint, TEST_KEY_FINGERPRINT) From 09b71144b6f47d2df39249ea29b18113f02f1b87 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 30 Mar 2016 03:47:58 -0400 Subject: [PATCH 162/205] Add support for signing documents from the UI. Mayan EDMS is now in the major leagues :) --- HISTORY.rst | 1 + mayan/apps/django_gpg/models.py | 2 +- mayan/apps/django_gpg/views.py | 8 +- mayan/apps/document_signatures/apps.py | 11 +- mayan/apps/document_signatures/forms.py | 40 +++++- mayan/apps/document_signatures/links.py | 8 +- mayan/apps/document_signatures/models.py | 3 +- mayan/apps/document_signatures/permissions.py | 4 + .../document_signatures/tests/test_views.py | 3 - mayan/apps/document_signatures/urls.py | 14 ++- mayan/apps/document_signatures/views.py | 119 +++++++++++++++++- 11 files changed, 190 insertions(+), 23 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index b5a0e194f6..c03c33009a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -28,6 +28,7 @@ - Handle unicode filenames in staging folders. - Add staging file deletion permission. - New document_signature_view permission. +- Add support for signing documents. 2.0.2 (2016-02-09) ================== diff --git a/mayan/apps/django_gpg/models.py b/mayan/apps/django_gpg/models.py index 68c3e7028b..7bb4d100de 100644 --- a/mayan/apps/django_gpg/models.py +++ b/mayan/apps/django_gpg/models.py @@ -117,7 +117,7 @@ class Key(models.Model): super(Key, self).save(*args, **kwargs) def __str__(self): - return self.key_id + return '{} - {}'.format(self.key_id, self.user_id) def sign_file(self, file_object, passphrase=None, clearsign=True, detached=False, binary=False, output=None): temporary_directory = tempfile.mkdtemp() diff --git a/mayan/apps/django_gpg/views.py b/mayan/apps/django_gpg/views.py index d7fa69928a..bc0c602265 100644 --- a/mayan/apps/django_gpg/views.py +++ b/mayan/apps/django_gpg/views.py @@ -33,13 +33,7 @@ class KeyDeleteView(SingleObjectDeleteView): return reverse_lazy('django_gpg:key_private_list') def get_extra_context(self): - return { - 'title': _('Delete key'), - 'message': _( - 'Delete key %s? If you delete a public key that is part of a ' - 'public/private pair the private key will be deleted as well.' - ) % self.get_object(), - } + return {'title': _('Delete key: %s') % self.get_object()} class KeyDetailView(SingleObjectDetailView): diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index 54f5e9509e..516838cc33 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -24,12 +24,14 @@ from .links import ( link_all_document_version_signature_verify, link_document_signature_list, link_document_version_signature_delete, + link_document_version_signature_detached_create, link_document_version_signature_details, link_document_version_signature_download, link_document_version_signature_list, link_document_version_signature_upload, ) from .permissions import ( + permission_document_version_sign_detached, permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_upload, @@ -74,6 +76,7 @@ class DocumentSignaturesApp(MayanAppConfig): ModelPermission.register( model=Document, permissions=( + permission_document_version_sign_detached, permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_view, @@ -93,7 +96,7 @@ class DocumentSignaturesApp(MayanAppConfig): func=lambda context: context['object'].signature_id or _('None') ) SourceColumn( - source=SignatureBaseModel, label=_('Is embedded?'), + source=SignatureBaseModel, label=_('Type'), func=lambda context: SignatureBaseModel.objects.get_subclass( pk=context['object'].pk ).get_signature_type_display() @@ -126,8 +129,10 @@ class DocumentSignaturesApp(MayanAppConfig): links=(link_document_signature_list,), sources=(Document,) ) menu_object.bind_links( - links=(link_document_version_signature_list,), - sources=(DocumentVersion,) + links=( + link_document_version_signature_list, + link_document_version_signature_detached_create, + ), sources=(DocumentVersion,) ) menu_object.bind_links( links=( diff --git a/mayan/apps/document_signatures/forms.py b/mayan/apps/document_signatures/forms.py index 09139f78cd..0ee13c12c2 100644 --- a/mayan/apps/document_signatures/forms.py +++ b/mayan/apps/document_signatures/forms.py @@ -1,13 +1,51 @@ -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals + +import logging from django import forms +from django.core.exceptions import PermissionDenied from django.utils.translation import ugettext_lazy as _ +from acls.models import AccessControlList +from permissions import Permission + from common.forms import DetailForm from django_gpg.models import Key +from django_gpg.permissions import permission_key_sign from .models import SignatureBaseModel +logger = logging.getLogger(__name__) + + +class DocumentVersionDetachedSignatureCreateForm(forms.Form): + key = forms.ModelChoiceField( + label=_('Key'), queryset=Key.objects.none() + ) + + passphrase = forms.CharField( + label=_('Passphrase'), required=False, + widget=forms.widgets.PasswordInput + ) + + def __init__(self, *args, **kwargs): + user = kwargs.pop('user', None) + logger.debug('user: %s', user) + super( + DocumentVersionDetachedSignatureCreateForm, self + ).__init__(*args, **kwargs) + + queryset = Key.objects.private_keys() + + try: + Permission.check_permissions(user, (permission_key_sign,)) + except PermissionDenied: + queryset = AccessControlList.objects.filter_by_access( + permission_key_sign, user, queryset + ) + + self.fields['key'].queryset = queryset + class DocumentVersionSignatureDetailForm(DetailForm): def __init__(self, *args, **kwargs): diff --git a/mayan/apps/document_signatures/links.py b/mayan/apps/document_signatures/links.py index 6494764291..5c5d3acc28 100644 --- a/mayan/apps/document_signatures/links.py +++ b/mayan/apps/document_signatures/links.py @@ -64,6 +64,12 @@ link_document_version_signature_download = Link( link_document_version_signature_upload = Link( args='resolved_object.pk', permissions=(permission_document_version_signature_upload,), - text=_('Upload signature'), + permissions_related='document', text=_('Upload signature'), view='signatures:document_version_signature_upload', ) +link_document_version_signature_detached_create = Link( + args='resolved_object.pk', + permissions=(permission_document_version_signature_upload,), + permissions_related='document', text=_('Sign detached'), + view='signatures:document_version_signature_detached_create', +) diff --git a/mayan/apps/document_signatures/models.py b/mayan/apps/document_signatures/models.py index 2a7b3bff95..53dcff0de7 100644 --- a/mayan/apps/document_signatures/models.py +++ b/mayan/apps/document_signatures/models.py @@ -130,7 +130,8 @@ class DetachedSignature(SignatureBaseModel): return '{}-{}'.format(self.document_version, _('signature')) def delete(self, *args, **kwargs): - self.signature_file.storage.delete(self.signature_file.name) + if self.signature_file.name: + self.signature_file.storage.delete(name=self.signature_file.name) super(DetachedSignature, self).delete(*args, **kwargs) def save(self, *args, **kwargs): diff --git a/mayan/apps/document_signatures/permissions.py b/mayan/apps/document_signatures/permissions.py index 307758c374..15f5cacc7c 100644 --- a/mayan/apps/document_signatures/permissions.py +++ b/mayan/apps/document_signatures/permissions.py @@ -8,6 +8,10 @@ namespace = PermissionNamespace( 'document_signatures', _('Document signatures') ) +permission_document_version_sign_detached = namespace.add_permission( + name='document_version_sign_detached', + label=_('Sign documents with detached signatures') +) permission_document_version_signature_delete = namespace.add_permission( name='document_version_signature_delete', label=_('Delete detached signatures') diff --git a/mayan/apps/document_signatures/tests/test_views.py b/mayan/apps/document_signatures/tests/test_views.py index fdcaa38649..c903969b75 100644 --- a/mayan/apps/document_signatures/tests/test_views.py +++ b/mayan/apps/document_signatures/tests/test_views.py @@ -14,7 +14,6 @@ from user_management.tests import ( from ..models import DetachedSignature, EmbeddedSignature from ..permissions import ( - permission_document_version_signature_view, permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_upload, @@ -288,8 +287,6 @@ class SignaturesViewTestCase(GenericDocumentViewTestCase): for document in self.document_type.documents.all(): document.delete(to_trash=False) - from documents.models import DocumentType - old_hooks = DocumentVersion._post_save_hooks DocumentVersion._post_save_hooks = {} for count in range(TEST_UNSIGNED_DOCUMENT_COUNT): diff --git a/mayan/apps/document_signatures/urls.py b/mayan/apps/document_signatures/urls.py index 988b5a9226..3d6a584e82 100644 --- a/mayan/apps/document_signatures/urls.py +++ b/mayan/apps/document_signatures/urls.py @@ -3,9 +3,10 @@ from __future__ import unicode_literals from django.conf.urls import patterns, url from .views import ( - AllDocumentSignatureVerifyView, DocumentVersionSignatureDeleteView, - DocumentVersionSignatureDetailView, DocumentVersionSignatureDownloadView, - DocumentVersionSignatureListView, DocumentVersionSignatureUploadView + AllDocumentSignatureVerifyView, DocumentVersionDetachedSignatureCreateView, + DocumentVersionSignatureDeleteView, DocumentVersionSignatureDetailView, + DocumentVersionSignatureDownloadView, DocumentVersionSignatureListView, + DocumentVersionSignatureUploadView ) urlpatterns = patterns( @@ -26,10 +27,15 @@ urlpatterns = patterns( name='document_version_signature_list' ), url( - r'^documents/version/(?P\d+)/signature/upload/$', + r'^documents/version/(?P\d+)/signature/detached/upload/$', DocumentVersionSignatureUploadView.as_view(), name='document_version_signature_upload' ), + url( + r'^documents/version/(?P\d+)/signature/detached/create/$', + DocumentVersionDetachedSignatureCreateView.as_view(), + name='document_version_signature_detached_create' + ), url( r'^signature/(?P\d+)/delete/$', DocumentVersionSignatureDeleteView.as_view(), diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index 0dfd71463d..919fa5dbd1 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -1,24 +1,33 @@ from __future__ import absolute_import, unicode_literals +import tempfile import logging from django.contrib import messages from django.core.exceptions import PermissionDenied +from django.core.files import File from django.core.urlresolvers import reverse +from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404 from django.utils.translation import ugettext_lazy as _ from acls.models import AccessControlList from common.generics import ( - ConfirmView, SingleObjectCreateView, SingleObjectDeleteView, + ConfirmView, FormView, SingleObjectCreateView, SingleObjectDeleteView, SingleObjectDetailView, SingleObjectDownloadView, SingleObjectListView ) +from django_gpg.exceptions import NeedPassphrase, PassphraseError +from django_gpg.permissions import permission_key_sign from documents.models import DocumentVersion from permissions import Permission -from .forms import DocumentVersionSignatureDetailForm +from .forms import ( + DocumentVersionDetachedSignatureCreateForm, + DocumentVersionSignatureDetailForm +) from .models import DetachedSignature, SignatureBaseModel from .permissions import ( + permission_document_version_sign_detached, permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_upload, @@ -30,6 +39,112 @@ from .tasks import task_verify_missing_embedded_signature logger = logging.getLogger(__name__) +class DocumentVersionDetachedSignatureCreateView(FormView): + form_class = DocumentVersionDetachedSignatureCreateForm + + def form_valid(self, form): + key = form.cleaned_data['key'] + passphrase = form.cleaned_data['passphrase'] or None + + try: + Permission.check_permissions( + self.request.user, (permission_key_sign,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_key_sign, self.request.user, key + ) + + try: + with self.get_document_version().open() as file_object: + detached_signature = key.sign_file( + file_object=file_object, detached=True, + passphrase=passphrase + ) + except NeedPassphrase: + messages.error( + self.request, _('Passphrase is needed to unlock this key.') + ) + return HttpResponseRedirect( + reverse( + 'signatures:document_version_signature_detached_create', + args=(self.get_document_version().pk,) + ) + ) + except PassphraseError: + messages.error( + self.request, _('Passphrase is incorrect.') + ) + return HttpResponseRedirect( + reverse( + 'signatures:document_version_signature_detached_create', + args=(self.get_document_version().pk,) + ) + ) + else: + temporary_file_object = tempfile.TemporaryFile() + temporary_file_object.write(detached_signature.data) + temporary_file_object.seek(0) + + DetachedSignature.objects.create( + document_version=self.get_document_version(), + signature_file=File(temporary_file_object) + ) + + temporary_file_object.close() + + messages.success( + self.request, _('Document version signed successfully.') + ) + + return super( + DocumentVersionDetachedSignatureCreateView, self + ).form_valid(form) + + def dispatch(self, request, *args, **kwargs): + try: + Permission.check_permissions( + request.user, (permission_document_version_sign_detached,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_document_version_sign_detached, request.user, + self.get_document_version().document + ) + + return super( + DocumentVersionDetachedSignatureCreateView, self + ).dispatch(request, *args, **kwargs) + + def get_document_version(self): + return get_object_or_404(DocumentVersion, pk=self.kwargs['pk']) + + def get_extra_context(self): + return { + 'document': self.get_document_version().document, + 'document_version': self.get_document_version(), + 'navigation_object_list': ('document', 'document_version'), + 'title': _( + 'Sign document version "%s" with a detached signature?' + ) % self.get_document_version(), + } + + def get_form_kwargs(self): + result = super( + DocumentVersionDetachedSignatureCreateView, self + ).get_form_kwargs() + + result.update({'user': self.request.user}) + + return result + + def get_post_action_redirect(self): + return reverse( + 'signatures:document_version_signature_list', + args=(self.get_document_version().pk,) + ) + + class DocumentVersionSignatureDeleteView(SingleObjectDeleteView): model = DetachedSignature object_permission = permission_document_version_signature_delete From 94b00c7ce54c819e2a8971d5a05f11c78f385d21 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 30 Mar 2016 17:19:27 -0400 Subject: [PATCH 163/205] Replace document type selection widget with an opened select list HTML control. --- HISTORY.rst | 1 + mayan/apps/documents/forms.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index c03c33009a..e71d547645 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -29,6 +29,7 @@ - Add staging file deletion permission. - New document_signature_view permission. - Add support for signing documents. +- Replace document type selection widget with an opened selection list. 2.0.2 (2016-02-09) ================== diff --git a/mayan/apps/documents/forms.py b/mayan/apps/documents/forms.py index d1c6126f94..90636b4425 100644 --- a/mayan/apps/documents/forms.py +++ b/mayan/apps/documents/forms.py @@ -169,8 +169,8 @@ class DocumentTypeSelectForm(forms.Form): ) self.fields['document_type'] = forms.ModelChoiceField( - queryset=queryset, - label=_('Document type') + empty_label=None, label=_('Document type'), queryset=queryset, + required=True, widget=forms.widgets.Select(attrs={'size': 10}) ) From e8c0951b0d0fb2dcc85a885a44f0a3a943cb12a0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 30 Mar 2016 18:29:39 -0400 Subject: [PATCH 164/205] Add key download view, permission, link and test. --- mayan/apps/django_gpg/apps.py | 13 +++--- mayan/apps/django_gpg/links.py | 8 +++- mayan/apps/django_gpg/permissions.py | 3 ++ mayan/apps/django_gpg/tests/test_views.py | 50 +++++++++++++++++++++++ mayan/apps/django_gpg/urls.py | 10 +++-- mayan/apps/django_gpg/views.py | 17 ++++++-- 6 files changed, 88 insertions(+), 13 deletions(-) create mode 100644 mayan/apps/django_gpg/tests/test_views.py diff --git a/mayan/apps/django_gpg/apps.py b/mayan/apps/django_gpg/apps.py index 7490aa6d21..791df1c8be 100644 --- a/mayan/apps/django_gpg/apps.py +++ b/mayan/apps/django_gpg/apps.py @@ -13,11 +13,12 @@ from navigation import SourceColumn from .classes import KeyStub from .links import ( - link_key_delete, link_key_detail, link_key_query, link_key_receive, - link_key_setup, link_private_keys, link_public_keys + link_key_delete, link_key_detail, link_key_download, link_key_query, + link_key_receive, link_key_setup, link_private_keys, link_public_keys ) from .permissions import ( - permission_key_delete, permission_key_sign, permission_key_view + permission_key_delete, permission_key_download, permission_key_sign, + permission_key_view ) @@ -35,7 +36,8 @@ class DjangoGPGApp(MayanAppConfig): ModelPermission.register( model=Key, permissions=( permission_acl_edit, permission_acl_view, - permission_key_delete, permission_key_sign, permission_key_view + permission_key_delete, permission_key_download, + permission_key_sign, permission_key_view ) ) @@ -89,7 +91,8 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. menu_object.bind_links(links=(link_key_receive,), sources=(KeyStub,)) menu_object.bind_links( - links=(link_acl_list, link_key_delete,), sources=(Key,) + links=(link_acl_list, link_key_delete, link_key_download,), + sources=(Key,) ) menu_setup.bind_links(links=(link_key_setup,)) menu_facet.bind_links( diff --git a/mayan/apps/django_gpg/links.py b/mayan/apps/django_gpg/links.py index 3a6cda3ee0..22771fe351 100644 --- a/mayan/apps/django_gpg/links.py +++ b/mayan/apps/django_gpg/links.py @@ -5,8 +5,8 @@ from django.utils.translation import ugettext_lazy as _ from navigation import Link from .permissions import ( - permission_key_delete, permission_key_receive, permission_key_view, - permission_keyserver_query + permission_key_delete, permission_key_download, permission_key_receive, + permission_key_view, permission_keyserver_query ) link_private_keys = Link( @@ -25,6 +25,10 @@ link_key_detail = Link( permissions=(permission_key_view,), text=_('Details'), view='django_gpg:key_detail', args=('resolved_object.pk',) ) +link_key_download = Link( + permissions=(permission_key_download,), text=_('Download'), + view='django_gpg:key_download', args=('resolved_object.pk',) +) link_key_query = Link( permissions=(permission_keyserver_query,), text=_('Query keyservers'), view='django_gpg:key_query' diff --git a/mayan/apps/django_gpg/permissions.py b/mayan/apps/django_gpg/permissions.py index 5603010405..2b224a5348 100644 --- a/mayan/apps/django_gpg/permissions.py +++ b/mayan/apps/django_gpg/permissions.py @@ -9,6 +9,9 @@ namespace = PermissionNamespace('django_gpg', _('Key management')) permission_key_delete = namespace.add_permission( name='key_delete', label=_('Delete keys') ) +permission_key_download = namespace.add_permission( + name='key_download', label=_('Download keys') +) permission_key_receive = namespace.add_permission( name='key_receive', label=_('Import keys from keyservers') ) diff --git a/mayan/apps/django_gpg/tests/test_views.py b/mayan/apps/django_gpg/tests/test_views.py new file mode 100644 index 0000000000..ac281526ca --- /dev/null +++ b/mayan/apps/django_gpg/tests/test_views.py @@ -0,0 +1,50 @@ +from __future__ import absolute_import, unicode_literals + +from django.core.files import File + +from django_downloadview.test import assert_download_response + +from documents.models import Document, DocumentVersion +from documents.tests.literals import TEST_DOCUMENT_PATH +from documents.tests.test_views import GenericDocumentViewTestCase +from user_management.tests import ( + TEST_USER_USERNAME, TEST_USER_PASSWORD +) + +from ..models import Key +from ..permissions import permission_key_download + +from .literals import ( + TEST_DETACHED_SIGNATURE, TEST_FILE, TEST_KEY_DATA, TEST_KEY_FINGERPRINT, + TEST_KEY_PASSPHRASE, TEST_SEARCH_FINGERPRINT, TEST_SEARCH_UID, + TEST_SIGNED_FILE, TEST_SIGNED_FILE_CONTENT +) + + +class KeyViewTestCase(GenericDocumentViewTestCase): + def test_key_download_view_no_permission(self): + key = Key.objects.create(key_data=TEST_KEY_DATA) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.get( + viewname='django_gpg:key_download', args=(key.pk,) + ) + + self.assertEqual(response.status_code, 403) + + def test_key_download_view_with_permission(self): + key = Key.objects.create(key_data=TEST_KEY_DATA) + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add(permission_key_download.stored_permission) + + response = self.get( + viewname='django_gpg:key_download', args=(key.pk,) + ) + + assert_download_response( + self, response=response, content=key.key_data, + basename=key.key_id, + ) diff --git a/mayan/apps/django_gpg/urls.py b/mayan/apps/django_gpg/urls.py index 47126ee413..e9530136fb 100644 --- a/mayan/apps/django_gpg/urls.py +++ b/mayan/apps/django_gpg/urls.py @@ -3,8 +3,8 @@ from __future__ import unicode_literals from django.conf.urls import patterns, url from .views import ( - KeyDeleteView, KeyDetailView, KeyQueryView, KeyQueryResultView, KeyReceive, - PrivateKeyListView, PublicKeyListView + KeyDeleteView, KeyDetailView, KeyDownloadView, KeyQueryView, + KeyQueryResultView, KeyReceive, PrivateKeyListView, PublicKeyListView ) urlpatterns = patterns( @@ -13,7 +13,11 @@ urlpatterns = patterns( r'^(?P\d+)/$', KeyDetailView.as_view(), name='key_detail' ), url( - r'^delete/(?P\d+)/$', KeyDeleteView.as_view(), name='key_delete' + r'^(?P\d+)/delete/$', KeyDeleteView.as_view(), name='key_delete' + ), + url( + r'^(?P\d+)/download/$', KeyDownloadView.as_view(), + name='key_download' ), url( r'^list/private/$', PrivateKeyListView.as_view(), diff --git a/mayan/apps/django_gpg/views.py b/mayan/apps/django_gpg/views.py index bc0c602265..8a40f822d0 100644 --- a/mayan/apps/django_gpg/views.py +++ b/mayan/apps/django_gpg/views.py @@ -3,20 +3,21 @@ from __future__ import absolute_import, unicode_literals import logging from django.contrib import messages +from django.core.files.base import ContentFile from django.core.urlresolvers import reverse, reverse_lazy from django.utils.translation import ugettext_lazy as _ from common.generics import ( ConfirmView, SimpleView, SingleObjectDeleteView, SingleObjectDetailView, - SingleObjectListView + SingleObjectDownloadView, SingleObjectListView ) from .forms import KeyDetailForm, KeySearchForm from .literals import KEY_TYPE_PUBLIC from .models import Key from .permissions import ( - permission_key_delete, permission_key_receive, permission_key_view, - permission_keyserver_query + permission_key_delete, permission_key_download, permission_key_receive, + permission_key_view, permission_keyserver_query ) logger = logging.getLogger(__name__) @@ -47,6 +48,16 @@ class KeyDetailView(SingleObjectDetailView): } +class KeyDownloadView(SingleObjectDownloadView): + model = Key + object_permission = permission_key_download + + def get_file(self): + key = self.get_object() + + return ContentFile(key.key_data, name=key.key_id) + + class KeyReceive(ConfirmView): post_action_redirect = reverse_lazy('django_gpg:key_public_list') view_permission = permission_key_receive From 14988bab344e738a80952a942dc80705ce486ca2 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 30 Mar 2016 19:05:53 -0400 Subject: [PATCH 165/205] Add key upload view, permission, link and test. --- mayan/apps/django_gpg/apps.py | 5 ++- mayan/apps/django_gpg/links.py | 22 ++++++---- .../django_gpg/migrations/0001_initial.py | 43 ++++++++++++++++--- .../migrations/0003_auto_20160322_1810.py | 31 ++++++++++--- .../migrations/0004_auto_20160322_2202.py | 5 ++- mayan/apps/django_gpg/models.py | 10 ++++- mayan/apps/django_gpg/permissions.py | 3 ++ mayan/apps/django_gpg/tests/test_models.py | 4 +- mayan/apps/django_gpg/tests/test_views.py | 41 ++++++++++++------ mayan/apps/django_gpg/urls.py | 6 ++- mayan/apps/django_gpg/views.py | 19 ++++++-- 11 files changed, 143 insertions(+), 46 deletions(-) diff --git a/mayan/apps/django_gpg/apps.py b/mayan/apps/django_gpg/apps.py index 791df1c8be..b3abb60d18 100644 --- a/mayan/apps/django_gpg/apps.py +++ b/mayan/apps/django_gpg/apps.py @@ -14,7 +14,8 @@ from navigation import SourceColumn from .classes import KeyStub from .links import ( link_key_delete, link_key_detail, link_key_download, link_key_query, - link_key_receive, link_key_setup, link_private_keys, link_public_keys + link_key_receive, link_key_setup, link_key_upload, link_private_keys, + link_public_keys ) from .permissions import ( permission_key_delete, permission_key_download, permission_key_sign, @@ -104,7 +105,7 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ) ) menu_sidebar.bind_links( - links=(link_key_query,), + links=(link_key_query, link_key_upload), sources=( 'django_gpg:key_public_list', 'django_gpg:key_private_list', 'django_gpg:key_query', 'django_gpg:key_query_results', Key, diff --git a/mayan/apps/django_gpg/links.py b/mayan/apps/django_gpg/links.py index 22771fe351..70ea4ec69b 100644 --- a/mayan/apps/django_gpg/links.py +++ b/mayan/apps/django_gpg/links.py @@ -6,17 +6,9 @@ from navigation import Link from .permissions import ( permission_key_delete, permission_key_download, permission_key_receive, - permission_key_view, permission_keyserver_query + permission_key_view, permission_key_upload, permission_keyserver_query ) -link_private_keys = Link( - permissions=(permission_key_view,), text=_('Private keys'), - view='django_gpg:key_private_list' -) -link_public_keys = Link( - permissions=(permission_key_view,), text=_('Public keys'), - view='django_gpg:key_public_list' -) link_key_delete = Link( permissions=(permission_key_delete,), tags='dangerous', text=_('Delete'), view='django_gpg:key_delete', args=('resolved_object.pk',) @@ -41,3 +33,15 @@ link_key_setup = Link( icon='fa fa-key', permissions=(permission_key_view,), text=_('Key management'), view='django_gpg:key_public_list' ) +link_key_upload = Link( + permissions=(permission_key_upload,), text=_('Upload key'), + view='django_gpg:key_upload' +) +link_private_keys = Link( + permissions=(permission_key_view,), text=_('Private keys'), + view='django_gpg:key_private_list' +) +link_public_keys = Link( + permissions=(permission_key_view,), text=_('Public keys'), + view='django_gpg:key_public_list' +) diff --git a/mayan/apps/django_gpg/migrations/0001_initial.py b/mayan/apps/django_gpg/migrations/0001_initial.py index df1505e689..68e0aa0e31 100644 --- a/mayan/apps/django_gpg/migrations/0001_initial.py +++ b/mayan/apps/django_gpg/migrations/0001_initial.py @@ -13,16 +13,45 @@ class Migration(migrations.Migration): migrations.CreateModel( name='Key', fields=[ - ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ( + 'id', models.AutoField( + verbose_name='ID', serialize=False, auto_created=True, + primary_key=True + ) + ), ('data', models.TextField(verbose_name='Data')), - ('key_id', models.CharField(unique=True, max_length=16, verbose_name='Key ID')), - ('creation_date', models.DateField(verbose_name='Creation date')), - ('expiration_date', models.DateField(null=True, verbose_name='Expiration date', blank=True)), - ('fingerprint', models.CharField(unique=True, max_length=40, verbose_name='Fingerprint')), + ( + 'key_id', models.CharField( + unique=True, max_length=16, verbose_name='Key ID' + ) + ), + ( + 'creation_date', models.DateField( + verbose_name='Creation date' + ) + ), + ( + 'expiration_date', models.DateField( + null=True, verbose_name='Expiration date', blank=True + ) + ), + ( + 'fingerprint', models.CharField( + unique=True, max_length=40, verbose_name='Fingerprint' + ) + ), ('length', models.PositiveIntegerField(verbose_name='Length')), - ('algorithm', models.PositiveIntegerField(verbose_name='Algorithm')), + ( + 'algorithm', models.PositiveIntegerField( + verbose_name='Algorithm' + ) + ), ('user_id', models.TextField(verbose_name='User ID')), - ('key_type', models.CharField(max_length=3, verbose_name='Type')), + ( + 'key_type', models.CharField( + max_length=3, verbose_name='Type' + ) + ), ], options={ 'verbose_name': 'Key', diff --git a/mayan/apps/django_gpg/migrations/0003_auto_20160322_1810.py b/mayan/apps/django_gpg/migrations/0003_auto_20160322_1810.py index 40689f948e..c7a62e5450 100644 --- a/mayan/apps/django_gpg/migrations/0003_auto_20160322_1810.py +++ b/mayan/apps/django_gpg/migrations/0003_auto_20160322_1810.py @@ -14,22 +14,32 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='key', name='algorithm', - field=models.PositiveIntegerField(verbose_name='Algorithm', editable=False), + field=models.PositiveIntegerField( + verbose_name='Algorithm', editable=False + ), ), migrations.AlterField( model_name='key', name='creation_date', - field=models.DateField(verbose_name='Creation date', editable=False), + field=models.DateField( + verbose_name='Creation date', editable=False + ), ), migrations.AlterField( model_name='key', name='expiration_date', - field=models.DateField(verbose_name='Expiration date', null=True, editable=False, blank=True), + field=models.DateField( + verbose_name='Expiration date', null=True, editable=False, + blank=True + ), ), migrations.AlterField( model_name='key', name='fingerprint', - field=models.CharField(verbose_name='Fingerprint', unique=True, max_length=40, editable=False), + field=models.CharField( + verbose_name='Fingerprint', unique=True, max_length=40, + editable=False + ), ), migrations.AlterField( model_name='key', @@ -39,17 +49,24 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='key', name='key_id', - field=models.CharField(verbose_name='Key ID', unique=True, max_length=16, editable=False), + field=models.CharField( + verbose_name='Key ID', unique=True, max_length=16, + editable=False + ), ), migrations.AlterField( model_name='key', name='key_type', - field=models.CharField(verbose_name='Type', max_length=3, editable=False), + field=models.CharField( + verbose_name='Type', max_length=3, editable=False + ), ), migrations.AlterField( model_name='key', name='length', - field=models.PositiveIntegerField(verbose_name='Length', editable=False), + field=models.PositiveIntegerField( + verbose_name='Length', editable=False + ), ), migrations.AlterField( model_name='key', diff --git a/mayan/apps/django_gpg/migrations/0004_auto_20160322_2202.py b/mayan/apps/django_gpg/migrations/0004_auto_20160322_2202.py index a2bea9e955..d4d24ecc20 100644 --- a/mayan/apps/django_gpg/migrations/0004_auto_20160322_2202.py +++ b/mayan/apps/django_gpg/migrations/0004_auto_20160322_2202.py @@ -19,6 +19,9 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='key', name='key_type', - field=models.CharField(verbose_name='Type', max_length=3, editable=False, choices=[('pub', 'Public'), ('sec', 'Secret')]), + field=models.CharField( + verbose_name='Type', max_length=3, editable=False, + choices=[('pub', 'Public'), ('sec', 'Secret')] + ), ), ] diff --git a/mayan/apps/django_gpg/models.py b/mayan/apps/django_gpg/models.py index 7bb4d100de..de4f3e9528 100644 --- a/mayan/apps/django_gpg/models.py +++ b/mayan/apps/django_gpg/models.py @@ -43,7 +43,10 @@ def gpg_command(function): @python_2_unicode_compatible class Key(models.Model): - key_data = models.TextField(verbose_name=_('Key data')) + key_data = models.TextField( + help_text=_('ASCII armored version of the key.'), + verbose_name=_('Key data') + ) creation_date = models.DateField( editable=False, verbose_name=_('Creation date') ) @@ -80,7 +83,10 @@ class Key(models.Model): import_results = gpg_command(function=import_key) if not import_results.count: - raise ValidationError('Invalid key data') + raise ValidationError(_('Invalid key data')) + + if Key.objects.filter(fingerprint=import_results.fingerprints[0]).exists(): + raise ValidationError(_('Key already exists.')) def get_absolute_url(self): return reverse('django_gpg:key_detail', args=(self.pk,)) diff --git a/mayan/apps/django_gpg/permissions.py b/mayan/apps/django_gpg/permissions.py index 2b224a5348..5e36afadb9 100644 --- a/mayan/apps/django_gpg/permissions.py +++ b/mayan/apps/django_gpg/permissions.py @@ -18,6 +18,9 @@ permission_key_receive = namespace.add_permission( permission_key_sign = namespace.add_permission( name='key_sign', label=_('Use keys to sign content') ) +permission_key_upload = namespace.add_permission( + name='key_upload', label=_('Upload keys') +) permission_key_view = namespace.add_permission( name='key_view', label=_('View keys') ) diff --git a/mayan/apps/django_gpg/tests/test_models.py b/mayan/apps/django_gpg/tests/test_models.py index d95a4d78e4..afc59b692a 100644 --- a/mayan/apps/django_gpg/tests/test_models.py +++ b/mayan/apps/django_gpg/tests/test_models.py @@ -128,7 +128,7 @@ class KeyTestCase(TestCase): with self.assertRaises(NeedPassphrase): with open(TEST_FILE) as test_file: - detached_signature = key.sign_file( + key.sign_file( file_object=test_file, detached=True, ) @@ -137,7 +137,7 @@ class KeyTestCase(TestCase): with self.assertRaises(PassphraseError): with open(TEST_FILE) as test_file: - detached_signature = key.sign_file( + key.sign_file( file_object=test_file, detached=True, passphrase='bad passphrase' ) diff --git a/mayan/apps/django_gpg/tests/test_views.py b/mayan/apps/django_gpg/tests/test_views.py index ac281526ca..7f65c1329e 100644 --- a/mayan/apps/django_gpg/tests/test_views.py +++ b/mayan/apps/django_gpg/tests/test_views.py @@ -1,27 +1,19 @@ from __future__ import absolute_import, unicode_literals -from django.core.files import File - from django_downloadview.test import assert_download_response -from documents.models import Document, DocumentVersion -from documents.tests.literals import TEST_DOCUMENT_PATH -from documents.tests.test_views import GenericDocumentViewTestCase +from common.tests.test_views import GenericViewTestCase from user_management.tests import ( TEST_USER_USERNAME, TEST_USER_PASSWORD ) from ..models import Key -from ..permissions import permission_key_download +from ..permissions import permission_key_download, permission_key_upload -from .literals import ( - TEST_DETACHED_SIGNATURE, TEST_FILE, TEST_KEY_DATA, TEST_KEY_FINGERPRINT, - TEST_KEY_PASSPHRASE, TEST_SEARCH_FINGERPRINT, TEST_SEARCH_UID, - TEST_SIGNED_FILE, TEST_SIGNED_FILE_CONTENT -) +from .literals import TEST_KEY_DATA, TEST_KEY_FINGERPRINT -class KeyViewTestCase(GenericDocumentViewTestCase): +class KeyViewTestCase(GenericViewTestCase): def test_key_download_view_no_permission(self): key = Key.objects.create(key_data=TEST_KEY_DATA) @@ -48,3 +40,28 @@ class KeyViewTestCase(GenericDocumentViewTestCase): self, response=response, content=key.key_data, basename=key.key_id, ) + + def test_key_upload_view_no_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.post( + viewname='django_gpg:key_upload', data={'key_data': TEST_KEY_DATA} + ) + + self.assertEqual(response.status_code, 403) + self.assertEqual(Key.objects.count(), 0) + + def test_key_upload_view_with_permission(self): + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add(permission_key_upload.stored_permission) + + response = self.post( + viewname='django_gpg:key_upload', data={'key_data': TEST_KEY_DATA}, + follow=True + ) + + self.assertContains(response, 'created', status_code=200) + + self.assertEqual(Key.objects.count(), 1) + self.assertEqual(Key.objects.first().fingerprint, TEST_KEY_FINGERPRINT) diff --git a/mayan/apps/django_gpg/urls.py b/mayan/apps/django_gpg/urls.py index e9530136fb..929e613e71 100644 --- a/mayan/apps/django_gpg/urls.py +++ b/mayan/apps/django_gpg/urls.py @@ -4,7 +4,8 @@ from django.conf.urls import patterns, url from .views import ( KeyDeleteView, KeyDetailView, KeyDownloadView, KeyQueryView, - KeyQueryResultView, KeyReceive, PrivateKeyListView, PublicKeyListView + KeyQueryResultView, KeyReceive, KeyUploadView, PrivateKeyListView, + PublicKeyListView ) urlpatterns = patterns( @@ -26,6 +27,9 @@ urlpatterns = patterns( url( r'^list/public/$', PublicKeyListView.as_view(), name='key_public_list' ), + url( + r'^upload/$', KeyUploadView.as_view(), name='key_upload' + ), url(r'^query/$', KeyQueryView.as_view(), name='key_query'), url( r'^query/results/$', KeyQueryResultView.as_view(), diff --git a/mayan/apps/django_gpg/views.py b/mayan/apps/django_gpg/views.py index 8a40f822d0..4e6591640a 100644 --- a/mayan/apps/django_gpg/views.py +++ b/mayan/apps/django_gpg/views.py @@ -8,8 +8,9 @@ from django.core.urlresolvers import reverse, reverse_lazy from django.utils.translation import ugettext_lazy as _ from common.generics import ( - ConfirmView, SimpleView, SingleObjectDeleteView, SingleObjectDetailView, - SingleObjectDownloadView, SingleObjectListView + ConfirmView, SingleObjectCreateView, SingleObjectDeleteView, + SingleObjectDetailView, SingleObjectDownloadView, SingleObjectListView, + SimpleView ) from .forms import KeyDetailForm, KeySearchForm @@ -17,7 +18,7 @@ from .literals import KEY_TYPE_PUBLIC from .models import Key from .permissions import ( permission_key_delete, permission_key_download, permission_key_receive, - permission_key_view, permission_keyserver_query + permission_key_upload, permission_key_view, permission_keyserver_query ) logger = logging.getLogger(__name__) @@ -126,6 +127,18 @@ class KeyQueryResultView(SingleObjectListView): return () +class KeyUploadView(SingleObjectCreateView): + fields = ('key_data',) + model = Key + post_action_redirect = reverse_lazy('django_gpg:key_public_list') + view_permission = permission_key_upload + + def get_extra_context(self): + return { + 'title': _('Upload new key'), + } + + class PublicKeyListView(SingleObjectListView): object_permission = permission_key_view queryset = Key.objects.public_keys() From 3d74bdb5902cfa57e1897a99301dadb7bfcf2daf Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 31 Mar 2016 19:06:31 -0400 Subject: [PATCH 166/205] Add document embedded signature signing support. --- mayan/apps/document_signatures/apps.py | 4 + mayan/apps/document_signatures/forms.py | 4 +- mayan/apps/document_signatures/links.py | 10 +- mayan/apps/document_signatures/managers.py | 23 ++++ mayan/apps/document_signatures/permissions.py | 4 + mayan/apps/document_signatures/urls.py | 6 + mayan/apps/document_signatures/views.py | 112 +++++++++++++++++- 7 files changed, 157 insertions(+), 6 deletions(-) diff --git a/mayan/apps/document_signatures/apps.py b/mayan/apps/document_signatures/apps.py index 516838cc33..eecfad9102 100644 --- a/mayan/apps/document_signatures/apps.py +++ b/mayan/apps/document_signatures/apps.py @@ -25,6 +25,7 @@ from .links import ( link_document_signature_list, link_document_version_signature_delete, link_document_version_signature_detached_create, + link_document_version_signature_embedded_create, link_document_version_signature_details, link_document_version_signature_download, link_document_version_signature_list, @@ -32,6 +33,7 @@ from .links import ( ) from .permissions import ( permission_document_version_sign_detached, + permission_document_version_sign_embedded, permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_upload, @@ -77,6 +79,7 @@ class DocumentSignaturesApp(MayanAppConfig): ModelPermission.register( model=Document, permissions=( permission_document_version_sign_detached, + permission_document_version_sign_embedded, permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_view, @@ -132,6 +135,7 @@ class DocumentSignaturesApp(MayanAppConfig): links=( link_document_version_signature_list, link_document_version_signature_detached_create, + link_document_version_signature_embedded_create ), sources=(DocumentVersion,) ) menu_object.bind_links( diff --git a/mayan/apps/document_signatures/forms.py b/mayan/apps/document_signatures/forms.py index 0ee13c12c2..15c8f46663 100644 --- a/mayan/apps/document_signatures/forms.py +++ b/mayan/apps/document_signatures/forms.py @@ -18,7 +18,7 @@ from .models import SignatureBaseModel logger = logging.getLogger(__name__) -class DocumentVersionDetachedSignatureCreateForm(forms.Form): +class DocumentVersionSignatureCreateForm(forms.Form): key = forms.ModelChoiceField( label=_('Key'), queryset=Key.objects.none() ) @@ -32,7 +32,7 @@ class DocumentVersionDetachedSignatureCreateForm(forms.Form): user = kwargs.pop('user', None) logger.debug('user: %s', user) super( - DocumentVersionDetachedSignatureCreateForm, self + DocumentVersionSignatureCreateForm, self ).__init__(*args, **kwargs) queryset = Key.objects.private_keys() diff --git a/mayan/apps/document_signatures/links.py b/mayan/apps/document_signatures/links.py index 5c5d3acc28..72ee5d4f5f 100644 --- a/mayan/apps/document_signatures/links.py +++ b/mayan/apps/document_signatures/links.py @@ -6,6 +6,8 @@ from django.utils.translation import ugettext_lazy as _ from navigation import Link from .permissions import ( + permission_document_version_sign_detached, + permission_document_version_sign_embedded, permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_upload, @@ -69,7 +71,13 @@ link_document_version_signature_upload = Link( ) link_document_version_signature_detached_create = Link( args='resolved_object.pk', - permissions=(permission_document_version_signature_upload,), + permissions=(permission_document_version_sign_detached,), permissions_related='document', text=_('Sign detached'), view='signatures:document_version_signature_detached_create', ) +link_document_version_signature_embedded_create = Link( + args='resolved_object.pk', + permissions=(permission_document_version_sign_embedded,), + permissions_related='document', text=_('Sign embedded'), + view='signatures:document_version_signature_embedded_create', +) diff --git a/mayan/apps/document_signatures/managers.py b/mayan/apps/document_signatures/managers.py index 9c3b90de19..7252d9211c 100644 --- a/mayan/apps/document_signatures/managers.py +++ b/mayan/apps/document_signatures/managers.py @@ -1,6 +1,8 @@ from __future__ import unicode_literals import logging +import os +import tempfile from django.db import models @@ -30,3 +32,24 @@ class EmbeddedSignatureManager(models.Manager): return DocumentVersion.objects.exclude( pk__in=self.values('document_version') ) + + def sign_document_version(self, document_version, key, passphrase=None, user=None): + temporary_file_object, temporary_filename = tempfile.mkstemp() + + try: + with document_version.open() as file_object: + signature_result = key.sign_file( + binary=True, file_object=file_object, + output=temporary_filename, passphrase=passphrase + ) + except Exception: + raise + else: + with open(temporary_filename) as file_object: + new_version = document_version.document.new_version( + file_object=file_object, _user=user + ) + finally: + os.unlink(temporary_filename) + + return new_version diff --git a/mayan/apps/document_signatures/permissions.py b/mayan/apps/document_signatures/permissions.py index 15f5cacc7c..c9bdbe684c 100644 --- a/mayan/apps/document_signatures/permissions.py +++ b/mayan/apps/document_signatures/permissions.py @@ -12,6 +12,10 @@ permission_document_version_sign_detached = namespace.add_permission( name='document_version_sign_detached', label=_('Sign documents with detached signatures') ) +permission_document_version_sign_embedded = namespace.add_permission( + name='document_version_sign_embedded', + label=_('Sign documents with embedded signatures') +) permission_document_version_signature_delete = namespace.add_permission( name='document_version_signature_delete', label=_('Delete detached signatures') diff --git a/mayan/apps/document_signatures/urls.py b/mayan/apps/document_signatures/urls.py index 3d6a584e82..1c269c3d65 100644 --- a/mayan/apps/document_signatures/urls.py +++ b/mayan/apps/document_signatures/urls.py @@ -4,6 +4,7 @@ from django.conf.urls import patterns, url from .views import ( AllDocumentSignatureVerifyView, DocumentVersionDetachedSignatureCreateView, + DocumentVersionEmbeddedSignatureCreateView, DocumentVersionSignatureDeleteView, DocumentVersionSignatureDetailView, DocumentVersionSignatureDownloadView, DocumentVersionSignatureListView, DocumentVersionSignatureUploadView @@ -36,6 +37,11 @@ urlpatterns = patterns( DocumentVersionDetachedSignatureCreateView.as_view(), name='document_version_signature_detached_create' ), + url( + r'^documents/version/(?P\d+)/signature/embedded/create/$', + DocumentVersionEmbeddedSignatureCreateView.as_view(), + name='document_version_signature_embedded_create' + ), url( r'^signature/(?P\d+)/delete/$', DocumentVersionSignatureDeleteView.as_view(), diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index 919fa5dbd1..8e483062f6 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -22,12 +22,13 @@ from documents.models import DocumentVersion from permissions import Permission from .forms import ( - DocumentVersionDetachedSignatureCreateForm, + DocumentVersionSignatureCreateForm, DocumentVersionSignatureDetailForm ) from .models import DetachedSignature, SignatureBaseModel from .permissions import ( permission_document_version_sign_detached, + permission_document_version_sign_embedded, permission_document_version_signature_delete, permission_document_version_signature_download, permission_document_version_signature_upload, @@ -40,7 +41,7 @@ logger = logging.getLogger(__name__) class DocumentVersionDetachedSignatureCreateView(FormView): - form_class = DocumentVersionDetachedSignatureCreateForm + form_class = DocumentVersionSignatureCreateForm def form_valid(self, form): key = form.cleaned_data['key'] @@ -125,7 +126,7 @@ class DocumentVersionDetachedSignatureCreateView(FormView): 'document_version': self.get_document_version(), 'navigation_object_list': ('document', 'document_version'), 'title': _( - 'Sign document version "%s" with a detached signature?' + 'Sign document version "%s" with a detached signature' ) % self.get_document_version(), } @@ -145,6 +146,111 @@ class DocumentVersionDetachedSignatureCreateView(FormView): ) +class DocumentVersionEmbeddedSignatureCreateView(FormView): + form_class = DocumentVersionSignatureCreateForm + + def form_valid(self, form): + key = form.cleaned_data['key'] + passphrase = form.cleaned_data['passphrase'] or None + + try: + Permission.check_permissions( + self.request.user, (permission_key_sign,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_key_sign, self.request.user, key + ) + + try: + with self.get_document_version().open() as file_object: + signature_result = key.sign_file( + binary=True, file_object=file_object, passphrase=passphrase + ) + except NeedPassphrase: + messages.error( + self.request, _('Passphrase is needed to unlock this key.') + ) + return HttpResponseRedirect( + reverse( + 'signatures:document_version_signature_embedded_create', + args=(self.get_document_version().pk,) + ) + ) + except PassphraseError: + messages.error( + self.request, _('Passphrase is incorrect.') + ) + return HttpResponseRedirect( + reverse( + 'signatures:document_version_signature_embedded_create', + args=(self.get_document_version().pk,) + ) + ) + else: + temporary_file_object = tempfile.TemporaryFile() + temporary_file_object.write(signature_result.data) + temporary_file_object.seek(0) + + new_version = self.get_document_version().document.new_version( + file_object=temporary_file_object, _user=self.request.user + ) + + temporary_file_object.close() + + messages.success( + self.request, _('Document version signed successfully.') + ) + + return HttpResponseRedirect( + reverse( + 'signatures:document_version_signature_list', + args=(new_version.pk,) + ) + ) + + return super( + DocumentVersionEmbeddedSignatureCreateView, self + ).form_valid(form) + + def dispatch(self, request, *args, **kwargs): + try: + Permission.check_permissions( + request.user, (permission_document_version_sign_embedded,) + ) + except PermissionDenied: + AccessControlList.objects.check_access( + permission_document_version_sign_embedded, request.user, + self.get_document_version().document + ) + + return super( + DocumentVersionEmbeddedSignatureCreateView, self + ).dispatch(request, *args, **kwargs) + + def get_document_version(self): + return get_object_or_404(DocumentVersion, pk=self.kwargs['pk']) + + def get_extra_context(self): + return { + 'document': self.get_document_version().document, + 'document_version': self.get_document_version(), + 'navigation_object_list': ('document', 'document_version'), + 'title': _( + 'Sign document version "%s" with a embedded signature' + ) % self.get_document_version(), + } + + def get_form_kwargs(self): + result = super( + DocumentVersionEmbeddedSignatureCreateView, self + ).get_form_kwargs() + + result.update({'user': self.request.user}) + + return result + + class DocumentVersionSignatureDeleteView(SingleObjectDeleteView): model = DetachedSignature object_permission = permission_document_version_signature_delete From 07cd6d078ff8d097f63762e92600c45fb48316db Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 1 Apr 2016 12:33:11 -0400 Subject: [PATCH 167/205] No need to typecast the result --- mayan/apps/django_gpg/managers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/django_gpg/managers.py b/mayan/apps/django_gpg/managers.py index 1a26a4e0cf..1542dfa940 100644 --- a/mayan/apps/django_gpg/managers.py +++ b/mayan/apps/django_gpg/managers.py @@ -68,7 +68,7 @@ class KeyManager(models.Manager): file_object.close() - return io.BytesIO(str(decrypt_result)) + return io.BytesIO(decrypt_result.data) def receive_key(self, key_id): temporary_directory = tempfile.mkdtemp() From 9a0dd8c192cc9bc3f545ca969dedd5dd34032ada Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 1 Apr 2016 12:43:06 -0400 Subject: [PATCH 168/205] Add embedded signing test. --- .../document_signatures/tests/test_models.py | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/mayan/apps/document_signatures/tests/test_models.py b/mayan/apps/document_signatures/tests/test_models.py index 8e9f61c299..30b57f8b02 100644 --- a/mayan/apps/document_signatures/tests/test_models.py +++ b/mayan/apps/document_signatures/tests/test_models.py @@ -1,11 +1,13 @@ from __future__ import unicode_literals +import hashlib import time from django.core.files import File from django.test import TestCase, override_settings from django_gpg.models import Key +from django_gpg.tests.literals import TEST_KEY_DATA, TEST_KEY_PASSPHRASE from documents.models import DocumentType, DocumentVersion from documents.tests import TEST_DOCUMENT_PATH, TEST_DOCUMENT_TYPE @@ -308,3 +310,36 @@ class EmbeddedSignaturesTestCase(TestCase): EmbeddedSignature.objects.unsigned_document_versions().count(), TEST_UNSIGNED_DOCUMENT_COUNT ) + + def test_signing(self): + key = Key.objects.create(key_data=TEST_KEY_DATA) + + with open(TEST_DOCUMENT_PATH) as file_object: + document = self.document_type.new_document( + file_object=file_object + ) + + with document.latest_version.open() as file_object: + file_object.seek(0, 2) + original_size = file_object.tell() + file_object.seek(0) + original_hash = hashlib.sha256(file_object.read()).hexdigest() + + new_version = EmbeddedSignature.objects.sign_document_version( + document_version=document.latest_version, key=key, + passphrase=TEST_KEY_PASSPHRASE + ) + + self.assertEqual(EmbeddedSignature.objects.count(), 1) + + with new_version.open() as file_object: + document_content_hash = hashlib.sha256(file_object.read()).hexdigest() + + with new_version.open() as file_object: + file_object.seek(0, 2) + new_size = file_object.tell() + file_object.seek(0) + new_hash = hashlib.sha256(file_object.read()).hexdigest() + + self.assertEqual(original_size, new_size) + self.assertEqual(origianl_hash, new_hash) From c6fb008562ed94b2ba89d3d98a0fb27899f97fd4 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 1 Apr 2016 23:28:34 -0400 Subject: [PATCH 169/205] Workaround problem with gpg embedded signatures corrupting the source file by using clearsign=False by default. --- mayan/apps/django_gpg/models.py | 9 ++++++++- mayan/apps/document_signatures/tests/test_models.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/mayan/apps/django_gpg/models.py b/mayan/apps/django_gpg/models.py index de4f3e9528..a4f1b814cb 100644 --- a/mayan/apps/django_gpg/models.py +++ b/mayan/apps/django_gpg/models.py @@ -125,7 +125,14 @@ class Key(models.Model): def __str__(self): return '{} - {}'.format(self.key_id, self.user_id) - def sign_file(self, file_object, passphrase=None, clearsign=True, detached=False, binary=False, output=None): + def sign_file(self, file_object, passphrase=None, clearsign=False, detached=False, binary=False, output=None): + # WARNING: using clearsign=True and subsequent decryption corrupts the + # file. Appears to be a problem in python-gnupg or gpg itself. + # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=55647 + # "The problems differ from run to run and file to + # file, and appear to be due to random data being inserted in the + # output data stream." + temporary_directory = tempfile.mkdtemp() os.chmod(temporary_directory, 0x1C0) diff --git a/mayan/apps/document_signatures/tests/test_models.py b/mayan/apps/document_signatures/tests/test_models.py index 30b57f8b02..2d57063591 100644 --- a/mayan/apps/document_signatures/tests/test_models.py +++ b/mayan/apps/document_signatures/tests/test_models.py @@ -342,4 +342,4 @@ class EmbeddedSignaturesTestCase(TestCase): new_hash = hashlib.sha256(file_object.read()).hexdigest() self.assertEqual(original_size, new_size) - self.assertEqual(origianl_hash, new_hash) + self.assertEqual(original_hash, new_hash) From 33aefdaef7276fed60702dfac675ce1ac15a896f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 4 Apr 2016 13:49:14 -0400 Subject: [PATCH 170/205] Add document download and document preview event logging. Add corresponding tests. Closes GitLab issue #261. --- mayan/apps/documents/events.py | 8 ++ mayan/apps/documents/tests/test_events.py | 114 ++++++++++++++++++++++ mayan/apps/documents/views.py | 12 +++ 3 files changed, 134 insertions(+) create mode 100644 mayan/apps/documents/tests/test_events.py diff --git a/mayan/apps/documents/events.py b/mayan/apps/documents/events.py index c7856f6d65..21bd2f834b 100644 --- a/mayan/apps/documents/events.py +++ b/mayan/apps/documents/events.py @@ -7,6 +7,10 @@ from events.classes import Event event_document_create = Event( name='documents_document_create', label=_('Document created') ) +event_document_download = Event( + name='documents_document_download', + label=_('Document download') +) event_document_properties_edit = Event( name='documents_document_edit', label=_('Document properties edited') ) @@ -20,3 +24,7 @@ event_document_version_revert = Event( name='documents_document_version_revert', label=_('Document version reverted') ) +event_document_view = Event( + name='documents_document_view', + label=_('Document viewed') +) diff --git a/mayan/apps/documents/tests/test_events.py b/mayan/apps/documents/tests/test_events.py new file mode 100644 index 0000000000..80eb33f436 --- /dev/null +++ b/mayan/apps/documents/tests/test_events.py @@ -0,0 +1,114 @@ +# -*- coding: utf-8 -*- + +from __future__ import unicode_literals + +from django.contrib.contenttypes.models import ContentType +from django.test import override_settings +from django.utils.six import BytesIO + +from actstream.models import Action + +from common.tests.test_views import GenericViewTestCase +from converter.models import Transformation +from converter.permissions import permission_transformation_delete +from user_management.tests.literals import ( + TEST_USER_PASSWORD, TEST_USER_USERNAME +) + +from ..events import event_document_download, event_document_view +from ..literals import DEFAULT_DELETE_PERIOD, DEFAULT_DELETE_TIME_UNIT +from ..models import ( + DeletedDocument, Document, DocumentType, HASH_FUNCTION +) +from ..permissions import ( + permission_document_create, permission_document_delete, + permission_document_download, permission_document_properties_edit, + permission_document_restore, permission_document_tools, + permission_document_trash, permission_document_type_create, + permission_document_type_delete, permission_document_type_edit, + permission_document_type_view, permission_document_version_revert, + permission_document_view, permission_empty_trash +) + +from .literals import ( + TEST_DOCUMENT_TYPE, TEST_DOCUMENT_TYPE_QUICK_LABEL, + TEST_SMALL_DOCUMENT_CHECKSUM, TEST_SMALL_DOCUMENT_PATH +) +from .test_views import GenericDocumentViewTestCase + + +TEST_DOCUMENT_TYPE_EDITED_LABEL = 'test document type edited label' +TEST_DOCUMENT_TYPE_2_LABEL = 'test document type 2 label' +TEST_TRANSFORMATION_NAME = 'rotate' +TEST_TRANSFORMATION_ARGUMENT = 'degrees: 180' + + + +class DocumentEventsTestCase(GenericDocumentViewTestCase): + def test_document_download_event_no_permissions(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + Action.objects.all().delete() + + response = self.post( + 'documents:document_download', args=(self.document.pk,) + ) + + self.assertEqual(response.status_code, 302) + self.assertEqual(list(Action.objects.any(obj=self.document)), []) + + def test_document_download_event_with_permissions(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + Action.objects.all().delete() + + self.role.permissions.add( + permission_document_download.stored_permission + ) + response = self.post( + 'documents:document_download', args=(self.document.pk,), + ) + + event = Action.objects.any(obj=self.document).first() + + self.assertEqual(event.verb, event_document_download.name) + self.assertEqual(event.target, self.document) + self.assertEqual(event.actor, self.user) + + def test_document_view_event_no_permissions(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + Action.objects.all().delete() + + response = self.get( + 'documents:document_preview', args=(self.document.pk,) + ) + + self.assertEqual(response.status_code, 403) + self.assertEqual(list(Action.objects.any(obj=self.document)), []) + + def test_document_view_event_with_permissions(self): + self.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + + Action.objects.all().delete() + + self.role.permissions.add( + permission_document_view.stored_permission + ) + response = self.get( + 'documents:document_preview', args=(self.document.pk,), + ) + + event = Action.objects.any(obj=self.document).first() + + self.assertEqual(event.verb, event_document_view.name) + self.assertEqual(event.target, self.document) + self.assertEqual(event.actor, self.user) diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index b657c164ad..9cdcabf951 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -30,6 +30,7 @@ from converter.permissions import permission_transformation_delete from filetransfers.api import serve_file from permissions import Permission +from .events import event_document_download, event_document_view from .forms import ( DocumentDownloadForm, DocumentForm, DocumentPageForm, DocumentPreviewForm, DocumentPropertiesForm, DocumentTypeSelectForm, @@ -316,6 +317,10 @@ class DocumentPreviewView(SingleObjectDetailView): DocumentPreviewView, self ).dispatch(request, *args, **kwargs) self.get_object().add_as_recent_document_for_user(request.user) + event_document_view.commit( + actor=request.user, target=self.get_object() + ) + return result def get_extra_context(self): @@ -841,6 +846,10 @@ def document_download(request, document_id=None, document_id_list=None, document arcname=document_version.document.label ) descriptor.close() + event_document_download.commit( + actor=request.user, + target=document_version.document + ) compressed_file.close() @@ -865,6 +874,9 @@ def document_download(request, document_id=None, document_id_list=None, document # Test permissions and trigger exception fd = queryset.first().open() fd.close() + event_document_download.commit( + actor=request.user, target=queryset.first().document + ) return serve_file( request, queryset.first().file, From f042533576fd2496809e7df65898bf2776ed033d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 4 Apr 2016 13:51:23 -0400 Subject: [PATCH 171/205] Put event action description in past tense. --- mayan/apps/documents/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/documents/events.py b/mayan/apps/documents/events.py index 21bd2f834b..c474b6fbbd 100644 --- a/mayan/apps/documents/events.py +++ b/mayan/apps/documents/events.py @@ -9,7 +9,7 @@ event_document_create = Event( ) event_document_download = Event( name='documents_document_download', - label=_('Document download') + label=_('Document downloaded') ) event_document_properties_edit = Event( name='documents_document_edit', label=_('Document properties edited') From be392823bbba16bdbd79a9f93ed333dc1b442b32 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 4 Apr 2016 14:55:37 -0400 Subject: [PATCH 172/205] Remove all GPG interface module. --- mayan/apps/django_gpg/api.py | 306 ----------------------------------- 1 file changed, 306 deletions(-) delete mode 100644 mayan/apps/django_gpg/api.py diff --git a/mayan/apps/django_gpg/api.py b/mayan/apps/django_gpg/api.py deleted file mode 100644 index aadc50bc37..0000000000 --- a/mayan/apps/django_gpg/api.py +++ /dev/null @@ -1,306 +0,0 @@ -from __future__ import unicode_literals - -import logging -import os -import tempfile - -try: - from cStringIO import StringIO -except ImportError: - from StringIO import StringIO - -import gnupg - -from django.utils.translation import ugettext_lazy as _ - -from .exceptions import * # NOQA -from .literals import KEY_TYPES - -logger = logging.getLogger(__name__) - - -class KeyStub(object): - def __init__(self, raw): - self.key_id = raw['keyid'] - self.key_type = raw['type'] - self.date = raw['date'] - self.expires = raw['expires'] - self.length = raw['length'] - self.uids = raw['uids'] - - -class Key(object): - @staticmethod - def get_key_id(fingerprint): - return fingerprint[-16:] - - @classmethod - def get_all(cls, gpg, secret=False, exclude=None): - result = [] - keys = gpg.gpg.list_keys(secret=secret) - if exclude: - excluded_id = exclude.key_id - else: - excluded_id = '' - for key in keys: - if not key['keyid'] in excluded_id: - key_instance = Key( - fingerprint=key['fingerprint'], - uids=key['uids'], - type=key['type'], - data=gpg.gpg.export_keys([key['keyid']], secret=secret) - ) - result.append(key_instance) - - return result - - @classmethod - def get(cls, gpg, key_id, secret=False, search_keyservers=False): - if len(key_id) > 16: - # key_id is a fingerprint - key_id = Key.get_key_id(key_id) - - keys = gpg.gpg.list_keys(secret=secret) - key = next((key for key in keys if key['keyid'] == key_id), None) - if not key: - if search_keyservers and secret is False: - try: - gpg.receive_key(key_id) - return Key(gpg, key_id) - except KeyFetchingError: - raise KeyDoesNotExist - else: - raise KeyDoesNotExist - - key_instance = Key( - fingerprint=key['fingerprint'], - uids=key['uids'], - type=key['type'], - data=gpg.gpg.export_keys([key['keyid']], secret=secret) - ) - - return key_instance - - def __init__(self, fingerprint, uids, type, data): - self.fingerprint = fingerprint - self.uids = uids - self.type = type - self.data = data - - @property - def key_id(self): - return Key.get_key_id(self.fingerprint) - - @property - def user_ids(self): - return ', '.join(self.uids) - - def __str__(self): - return '%s "%s" (%s)' % ( - self.key_id, self.user_ids, KEY_TYPES.get(self.type, _('Unknown')) - ) - - def __unicode__(self): - return unicode(self.__str__()) - - def __repr__(self): - return self.__unicode__() - - -class GPG(object): - @staticmethod - def get_descriptor(file_input): - try: - # Is it a file like object? - file_input.seek(0) - except AttributeError: - # If not, try open it. - return open(file_input, 'rb') - else: - return file_input - - def __init__(self, binary_path=None, home=None, keyring=None, keyservers=None): - kwargs = {} - if binary_path: - kwargs['gpgbinary'] = binary_path - - if home: - kwargs['gnupghome'] = home - - if keyring: - kwargs['keyring'] = keyring - - self.keyservers = keyservers - - try: - self.gpg = gnupg.GPG(**kwargs) - except OSError as exception: - raise GPGException( - 'ERROR: GPG initialization error; Make sure the GPG binary is properly installed; %s' % exception - ) - except Exception as exception: - raise GPGException( - 'ERROR: GPG initialization error; %s' % exception - ) - - def verify_file(self, file_input, detached_signature=None, fetch_key=False): - """ - Verify the signature of a file. - """ - - input_descriptor = GPG.get_descriptor(file_input) - - if detached_signature: - # Save the original data and invert the argument order - # Signature first, file second - file_descriptor, filename = tempfile.mkstemp(prefix='django_gpg') - os.write(file_descriptor, input_descriptor.read()) - os.close(file_descriptor) - - detached_signature = GPG.get_descriptor(detached_signature) - signature_file = StringIO() - signature_file.write(detached_signature.read()) - signature_file.seek(0) - verify = self.gpg.verify_file( - signature_file, data_filename=filename - ) - signature_file.close() - else: - verify = self.gpg.verify_file(input_descriptor) - - logger.debug('verify.status: %s', getattr(verify, 'status', None)) - if verify: - logger.debug('verify ok') - return verify - elif getattr(verify, 'status', None) == 'no public key': - # Exception to the rule, to be able to query the keyservers - if fetch_key: - try: - self.receive_key(verify.key_id) - return self.verify_file( - input_descriptor, detached_signature, fetch_key=False - ) - except KeyFetchingError: - return verify - else: - return verify - else: - logger.debug('No verify') - raise GPGVerificationError() - - def verify(self, data): - # TODO: try to merge with verify_file - verify = self.gpg.verify(data) - - if verify: - return verify - else: - raise GPGVerificationError(verify.status) - - def sign_file(self, file_input, key=None, destination=None, key_id=None, passphrase=None, clearsign=False): - """ - Signs a filename, storing the signature and the original file - in the destination filename provided (the destination file is - overrided if it already exists), if no destination file name is - provided the signature is returned. - """ - - kwargs = {} - kwargs['clearsign'] = clearsign - - if key_id: - kwargs['keyid'] = key_id - - if key: - kwargs['keyid'] = key.key_id - - if passphrase: - kwargs['passphrase'] = passphrase - - input_descriptor = GPG.get_descriptor(file_input) - - if destination: - output_descriptor = open(destination, 'wb') - - signed_data = self.gpg.sign_file(input_descriptor, **kwargs) - if not signed_data.fingerprint: - raise GPGSigningError('Unable to sign file') - - if destination: - output_descriptor.write(signed_data.data) - - input_descriptor.close() - - if destination: - output_descriptor.close() - - if not destination: - return signed_data - - def has_embedded_signature(self, *args, **kwargs): - try: - self.decrypt_file(*args, **kwargs) - except GPGDecryptionError: - return False - else: - return True - - def decrypt_file(self, file_input, close_descriptor=True): - input_descriptor = GPG.get_descriptor(file_input) - - result = self.gpg.decrypt_file(input_descriptor) - if close_descriptor: - input_descriptor.close() - - if not result.status or result.status == 'no data was provided': - raise GPGDecryptionError('Unable to decrypt file') - - return result - - def create_key(self, *args, **kwargs): - if kwargs.get('passphrase') == '': - kwargs.pop('passphrase') - - input_data = self.gpg.gen_key_input(**kwargs) - key = self.gpg.gen_key(input_data) - if not key: - raise KeyGenerationError('Unable to generate key') - - return Key.get(self, key.fingerprint) - - def delete_key(self, key): - status = self.gpg.delete_keys( - key.fingerprint, key.type == 'sec' - ).status - if status == 'Must delete secret key first': - self.delete_key(Key.get(self, key.fingerprint, secret=True)) - self.delete_key(key) - elif status != 'ok': - raise KeyDeleteError('Unable to delete key') - - def receive_key(self, key_id): - for keyserver in self.keyservers: - import_result = self.gpg.recv_keys(keyserver, key_id) - if import_result: - return Key.get( - self, import_result.fingerprints[0], secret=False - ) - - raise KeyFetchingError - - def query(self, term): - results = {} - for keyserver in self.keyservers: - for key_data in self.gpg.search_keys(query=term, keyserver=keyserver): - results[key_data['keyid']] = KeyStub(raw=key_data) - - return results.values() - - def import_key(self, key_data): - import_result = self.gpg.import_keys(key_data) - logger.debug('import_result: %s', import_result) - - if import_result: - return Key.get(self, import_result.fingerprints[0], secret=False) - - raise KeyImportError(import_result.results) From e5743d8964665fa838bf4b06a335dde5def23929 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 4 Apr 2016 16:25:52 -0400 Subject: [PATCH 173/205] Remove Django 1.7 and add Django 1.9 to the tox test matrix. --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 79581d3850..a64387cd66 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = coverage-clean - py{27,33,34,35}-django{1.7,1.8} + py{27,33,34,35}-django{1.8,1.9} coverage-report [testenv] @@ -16,8 +16,8 @@ commands= deps = -rrequirements/testing-no-django.txt - django1.7: django>=1.7,<1.8 django1.8: django>=1.8,<1.9 + django1.9: django>=1.9,<1.10 setenv= COVERAGE_FILE=.coverage.tox.{envname} From b04421438e49920a687f866a977097d3a09c95f8 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 4 Apr 2016 23:04:20 -0400 Subject: [PATCH 174/205] Update changelog. --- HISTORY.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/HISTORY.rst b/HISTORY.rst index e71d547645..1fd539552f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -29,6 +29,7 @@ - Add staging file deletion permission. - New document_signature_view permission. - Add support for signing documents. +- Instead of multiple keyservers only one keyserver is now supported. - Replace document type selection widget with an opened selection list. 2.0.2 (2016-02-09) From e3200511acc55b787e2155ac7da28217534cb264 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 4 Apr 2016 23:04:35 -0400 Subject: [PATCH 175/205] Small query optimization. --- mayan/apps/acls/managers.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mayan/apps/acls/managers.py b/mayan/apps/acls/managers.py index ef66326d31..e9bbb88b5b 100644 --- a/mayan/apps/acls/managers.py +++ b/mayan/apps/acls/managers.py @@ -81,8 +81,7 @@ class AccessControlListManager(models.Manager): user_roles.append(role) - # TODO: possible .exists() optimization - if not self.filter(content_type=ContentType.objects.get_for_model(obj), object_id=obj.pk, permissions__in=stored_permissions, role__in=user_roles): + if not self.filter(content_type=ContentType.objects.get_for_model(obj), object_id=obj.pk, permissions__in=stored_permissions, role__in=user_roles).exists(): raise PermissionDenied(ugettext('Insufficient access.')) def filter_by_access(self, permission, user, queryset): From 756108af8d3ffd1de2f3d119a506656f95e34949 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 4 Apr 2016 23:05:06 -0400 Subject: [PATCH 176/205] Disable GitLab CI MySQL testing until GitLab mysql container isssue are fixed. --- .gitlab-ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c7ed5587b6..fa3e214c59 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,16 +10,16 @@ variables: POSTGRES_PASSWORD: "postgres" MYSQL_ALLOW_EMPTY_PASSWORD: "yes" MYSQL_DATABASE: "mayan_edms" -test:mysql: - script: - - pip install -r requirements/testing.txt - - pip install -q mysql-python - - apt-get install -qq mysql-client - - mysql -h"$MYSQL_PORT_3306_TCP_ADDR" -P"$MYSQL_PORT_3306_TCP_PORT" -uroot -p"$MYSQL_ENV_MYSQL_ROOT_PASSWORD" -e "ALTER DATABASE $MYSQL_DATABASE CHARACTER SET utf8 COLLATE utf8_unicode_ci;" - - coverage run manage.py runtests --settings=mayan.settings.testing.gitlab-ci.db_mysql --nomigrations - - bash <(curl https://raw.githubusercontent.com/codecov/codecov-bash/master/codecov) -t $CODECOV_TOKEN - tags: - - mysql +#test:mysql: +# script: +# - pip install -r requirements/testing.txt +# - pip install -q mysql-python +# - apt-get install -qq mysql-client +# - mysql -h"$MYSQL_PORT_3306_TCP_ADDR" -P"$MYSQL_PORT_3306_TCP_PORT" -uroot -p"$MYSQL_ENV_MYSQL_ROOT_PASSWORD" -e "ALTER DATABASE $MYSQL_DATABASE CHARACTER SET utf8 COLLATE utf8_unicode_ci;" +# - coverage run manage.py runtests --settings=mayan.settings.testing.gitlab-ci.db_mysql --nomigrations +# - bash <(curl https://raw.githubusercontent.com/codecov/codecov-bash/master/codecov) -t $CODECOV_TOKEN +# tags: +# - mysql test:postgres: script: - pip install -r requirements/testing.txt From f020a7a1c6ce9d8f7a7da10cfc0c43e0b9f107d6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 21 Apr 2016 17:01:45 -0400 Subject: [PATCH 177/205] Expand v2.1 release notes. --- docs/releases/2.1.rst | 130 +++++++++++++++++++++++++++++++++++++----- 1 file changed, 116 insertions(+), 14 deletions(-) diff --git a/docs/releases/2.1.rst b/docs/releases/2.1.rst index a0f7d1bf12..cbf2a47ec9 100644 --- a/docs/releases/2.1.rst +++ b/docs/releases/2.1.rst @@ -7,22 +7,125 @@ Released: April, 2016 What's new ========== -- Upgrade to use Django 1.8.11. -- Remove remaining references to Django's User model. -- Remove included login required middleware using django-stronghold instead (http://mikegrouchy.com/django-stronghold/). -- Improve generation of success and error messages for class based views. -- Remove ownership concept from folders. -- Replace strip_spaces middleware with the spaceless template tag. -- Deselect the update checkbox for optional metadata by default. -- Implement per document type document creation permission. -- Make document type delete time period optional. -- Fixed date locale handling in document properties, checkout and user detail views. -- Add HTML5 upload widget. -- Add Message of the Day app. +Upgrade to use Django 1.8.11 +---------------------------- +With the end of life support for Django 1.7, moving to the next Mayan EDMS +minor version was a target for this release. The Django minor release chosen was +1.8 as it is very compatible with 1.7 and required minimal changes. Django 1.8 +is an LTS release (Long Term Support) meaning that is no new big feature of a +new Django version is required, the project can stay in Django 1.8 for a good +amount of time with no downsides. + +Remove remaining references to Django's User model +-------------------------------------------------- +The few remaining hard code references to Django's User model that were missed +in a previous release have been removed. Using a custom User model with Mayan +should present very little if any obstacles. + +Remove included login required middleware +----------------------------------------- +The custom middleware include with Mayan EDMS that forces user to be +authenticated before being able to access any view has been removed in favor of +a dedicated 3rd party Django app for that purpose. The app chosen was +django-stronghold (http://mikegrouchy.com/django-stronghold/). + +Improve generation of success and error messages for class based views +---------------------------------------------------------------------- +In the past success messages for actions would show a generic mention to the +object being manipulated (document, folder, tag). Now the errors and success +messages with be more explcit in describing what the view has or was trying +to manipulate. + +Remove ownership concept from folders +------------------------------------- +Currently Folders in Mayan EDMS have a field that stores a reference to the +user that has created that folders. One of the design decissions of Mayan EDMS +is that there should never be any explicit ownership of any object. Ownership +is relative and is defined by the Access Control List of an object. The +removal of the user field from the Folders model brings this app in line with +the defined behavior. + +Replacement of strip_spaces middleware with the spaceless template tag +---------------------------------------------------------------------- +As a size optimization technique HTML content was dynamically stripped of spaces +as it was being served. The techique used involved detecting the MIME type of +the content being served and if found to be of text/HTML type spaces between +tags were stripped. An edge case was found where this did not worked always. +The approached has been changed to use Django's official tag to strip spaces. +In addition to using an official approach, the removal of spaces only happens +when the template is compiled and not at each HTTP response. The optimization +is minimal but since it happened at every response a small increase in speed +is expected for all deployment scenarios. + +Deselect the update checkbox for optional metadata by default +------------------------------------------------------------- +During the last releases the behavior of the of metadata edit checkbox has seen +several tune ups. Thanks to community feedback one small change has been +introduced. The edit checkbox will be deselected by default for all optional +document type metadata entries. + +Implement per document type document creation permission +-------------------------------------------------------- +If is now possible to grant the document creation permission to a role for a +document type. Previously document creation was a "blanket" permission. Having +the permission meant that user could create any type of document. With this +change it is now possible to restrict which types of document users of a +specific role can create. + +Make document type delete time period optional +---------------------------------------------- +The entries that defined after how long a document in the trash would be +permanently deleted have been made optional. This means that if a document +type has this option blank, the corresponding document of this type would never +be deleted from the trash can. + +Fixed date locale handling in document properties, checkout and user detail views +--------------------------------------------------------------------------------- +A few releases back the ability to for users to set their timezone was added. +This change also included a smart date rendering update to adjust the dates +and times fields to the user's timezone. Some users reported a few views where +this timezone adjustment was not happeding, this has been fully fixed. + +HTML5 upload widget +------------------- +A common request is the ability to just drap and drop documents from other +windows into Mayan EDMS's document upload wizard. This release includes that +capability and will also show a completion bar for the upload. Document +uploading is sped up dramatically with this change. + +Message of the Day app +---------------------- +Administrators wanting to display announcements has no other way to do so +than to customize the login template. To avoid this a new app has been added +that allows for the creation of messages to be shown at the user login +screen. These messages can have an activation and an experiation date and +time. These messages are useful for display company access policies, +maintenance announcement, etc. + +Document signing +---------------- +The biggest change for this release if the addition of document signing from +within the UI. Enterprise users request this feature very often as in those +environments cryptographic signatures are a basic requirement. Previously +Mayan EDMS had the ability to automatically check if a document was signed and +if signed, verify the validity of the signature. However, to sign documents +user had to download the document, sign the document offline, and either +re-upload the signed document as a new version or upload a detached +signature for the existing document version. Aside from being now able to sign +documents from the web user iterface, the way keys are handled has been +rewritten from scratch to support distributed key storage. This means that +a key uploaded in one computer by one user can be used transparently by +other users in other computers to sign documents. The relevant access control +updates were added to the new document signing system. Users wanting to sign a +document need the singing permission for the document (or document type), +for the private key they intend to use, and the passphrase (if the key has one). +Finally documents are now checked just once for signatures and not every time +they are accessed, this provides a very sizable speed improvement in document +access and availability. Other changes ============= -- Upgrade requirements. +- Upgrade Python requirements to recent versions. - Rename 'Content' search box to 'OCR'. - Silence all Django 1.8 model import warnings. - Add icons to the document face menu links. @@ -94,5 +197,4 @@ Bugs fixed or issues closed * `GitLab issue #246 `_ Upgrade to Django version 1.8 as Django 1.7 is end-of-life. * `GitLab issue #255 `_ UnicodeDecodeError in apps/common/middleware/strip_spaces_widdleware.py. - .. _PyPI: https://pypi.python.org/pypi/mayan-edms/ From 232b7f644b349ef1311e92cc3127fd4e000d69ad Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 25 Apr 2016 14:37:29 -0400 Subject: [PATCH 178/205] Update sphinx autorebuild version used. --- requirements/documentation.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/documentation.txt b/requirements/documentation.txt index f2d8350a1a..e206db5246 100644 --- a/requirements/documentation.txt +++ b/requirements/documentation.txt @@ -2,5 +2,5 @@ Sphinx==1.3.4 -sphinx-autobuild==0.5.2 +sphinx-autobuild==0.6.0 sphinxcontrib-blockdiag==1.5.5 From 19b43e95046d93944e0716fac2b314f19e355cfd Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 25 Apr 2016 14:42:02 -0400 Subject: [PATCH 179/205] Remove donation options, add support info. --- docs/_templates/donate.html | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/docs/_templates/donate.html b/docs/_templates/donate.html index 9cf176a602..85126af031 100644 --- a/docs/_templates/donate.html +++ b/docs/_templates/donate.html @@ -1,12 +1,4 @@ -

    Donate

    -

    Help support further improvements and development, via: -

    +

    Support

    +

    + Consulting, support, customization, rebranding, and plug-in development are available. Email for information to: info@mayan-edms.com

    From 0fa26cda8bd40efc509c1b520567a030d14afaa0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 26 Apr 2016 16:42:25 -0400 Subject: [PATCH 180/205] Add mailing documentation. --- docs/topics/index.rst | 1 + docs/topics/mailing.rst | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 docs/topics/mailing.rst diff --git a/docs/topics/index.rst b/docs/topics/index.rst index 9cf7bcf04d..b0c90a4e07 100644 --- a/docs/topics/index.rst +++ b/docs/topics/index.rst @@ -18,5 +18,6 @@ Introductions to all the key parts of **Mayan EDMS** you'll need to know: indexes smart_links tags + mailing file_storage screenshots diff --git a/docs/topics/mailing.rst b/docs/topics/mailing.rst new file mode 100644 index 0000000000..2741470220 --- /dev/null +++ b/docs/topics/mailing.rst @@ -0,0 +1,17 @@ +================= +Mailing documents +================= + +To be able to send documents via email from inside Mayan EDMS you need to add +and configure the following configuration variables in your +mayan/settings/local.py file:: + + EMAIL_HOST = 'smtp.gmail.com' # Or similar + EMAIL_PORT = 587 + EMAIL_HOST_USER = '' + EMAIL_HOST_PASSWORD = '' + EMAIL_USE_TLS = True + +"Mail is sent using the SMTP host and port specified in the EMAIL_HOST and EMAIL_PORT settings. The EMAIL_HOST_USER andEMAIL_HOST_PASSWORD settings, if set, are used to authenticate to the SMTP server, and the EMAIL_USE_TLS and EMAIL_USE_SSL settings control whether a secure connection is used." + +For more details consult Django's documentation on the topic: https://docs.djangoproject.com/en/1.8/ref/settings/#email-host From 0299353fb7fefbc57c153233bd9c95508e5fe1ad Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 26 Apr 2016 16:52:17 -0400 Subject: [PATCH 181/205] Remove bold markup from all mentions of "Mayan EDMS" --- README.rst | 2 +- docs/index.rst | 8 ++++---- docs/releases/0.12.1.rst | 6 +++--- docs/releases/0.12.2.rst | 10 +++++----- docs/releases/0.12.rst | 12 ++++++------ docs/releases/0.13.rst | 28 ++++++++++++++-------------- docs/releases/1.0.rst | 4 ++-- docs/releases/1.1.rst | 22 +++++++++++----------- docs/releases/2.0.rst | 10 +++++----- docs/releases/index.rst | 8 ++++---- docs/topics/acls.rst | 2 +- docs/topics/app_creation.rst | 6 +++--- docs/topics/contact.rst | 6 +++--- docs/topics/contributors.rst | 2 +- docs/topics/deploying.rst | 10 +++++----- docs/topics/development.rst | 18 +++++++++--------- docs/topics/document_types.rst | 4 ++-- docs/topics/faq.rst | 2 +- docs/topics/features.rst | 6 +++--- docs/topics/file_storage.rst | 4 ++-- docs/topics/index.rst | 2 +- docs/topics/indexes.rst | 2 +- docs/topics/installation.rst | 18 +++++++++--------- docs/topics/license.rst | 2 +- docs/topics/permissions.rst | 2 +- docs/topics/signatures.rst | 2 +- docs/topics/versioning.rst | 2 +- 27 files changed, 100 insertions(+), 100 deletions(-) diff --git a/README.rst b/README.rst index 7e5266c94b..b1e6aee675 100644 --- a/README.rst +++ b/README.rst @@ -27,7 +27,7 @@ This project is open sourced under `Apache 2.0 License`_. Installation ------------ -To install **Mayan EDMS**, simply do: +To install Mayan EDMS, simply do: .. code-block:: bash diff --git a/docs/index.rst b/docs/index.rst index 17cee38e60..4e08474c94 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,16 +1,16 @@ Welcome to Mayan EDMS! ====================== -**Mayan EDMS** is a `Free Open Source`_ `Electronic Document Management System`_, coded in +Mayan EDMS is a `Free Open Source`_ `Electronic Document Management System`_, coded in the Python language using the Django_ web application framework and released under the `Apache 2.0 License`_. It provides an electronic vault or repository for electronic documents. -The easiest way to install and try **Mayan EDMS** is by using a Debian based Linux distribution -and installing it from PyPI with the following commands: +The easiest way to use Mayan EDMS is by using a Debian based Linux distribution +and install it from PyPI with the following commands: .. code-block:: bash - sudo apt-get install libjpeg-dev libmagic1 libpng-dev libreoffice libtiff-dev gcc ghostscript gpgv python-dev python-virtualenv tesseract-ocr unpaper poppler-utils -y + sudo apt-get install libjpeg-dev libmagic1 libpng-dev libreoffice libtiff-dev gcc ghostscript gpgv python-dev python-virtualenv tesseract-ocr poppler-utils -y virtualenv venv source venv/bin/activate pip install mayan-edms diff --git a/docs/releases/0.12.1.rst b/docs/releases/0.12.1.rst index cce015965f..696fe889d8 100644 --- a/docs/releases/0.12.1.rst +++ b/docs/releases/0.12.1.rst @@ -25,9 +25,9 @@ What's new in Mayan EDMS v0.12.1 Fabric file (fabfile) ~~~~~~~~~~~~~~~~~~~~~ A Fabric file is included to help users not very familiar with Ubuntu, -Python and Django install **Mayan EDMS**, or for system administrators +Python and Django install Mayan EDMS, or for system administrators looking to automate the install whether in local or remote systems. -At the moment the fabfile will install **Mayan EDMS** in the same configurations +At the moment the fabfile will install Mayan EDMS in the same configurations listed in this documentation, that is: (Ubuntu/Debian/Fedora) + virtualenv + Apache + MySQL. Feel free to submit your configuration settings and files for different databases, webserver or Linux distribution. More configurations will be added to @@ -38,7 +38,7 @@ Documentation update The installation instructions were updated to include the installation of the libpng-dev and libjpeg-dev libraries as well as the installation of the poppler-utils package. An additional step to help users test their -new installation of **Mayan EDMS** was also added. +new installation of Mayan EDMS was also added. Translations ~~~~~~~~~~~~ diff --git a/docs/releases/0.12.2.rst b/docs/releases/0.12.2.rst index b0bcc4aa45..7e0a8ccd4b 100644 --- a/docs/releases/0.12.2.rst +++ b/docs/releases/0.12.2.rst @@ -24,7 +24,7 @@ What's new in Mayan EDMS v0.12.2 Smarter auto admin creation ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -**Mayan EDMS** creates a administrator user during the +Mayan EDMS creates a administrator user during the database creation phase to reduce the amount of steps required for a functional install. The creation of this account is controlled by the configuration option `COMMON_AUTO_CREATE_ADMIN`, the username of the account is @@ -41,7 +41,7 @@ As per the feature request filed under `issue #26`_, a new document check out and check in functionality has been added. Users can now check out a document and lock new version of it from being uploaded to avoid editing conflicts. Document check outs have an expiration period after which -**Mayan EDMS** will automatically check them back in to avoid a permanent +Mayan EDMS will automatically check them back in to avoid a permanent document lockout. Only the user who has checked out a document can upload new versions of it or check the document back in before the expiration period, unless being granted the ``Allow overriding check out restrictions`` or @@ -52,14 +52,14 @@ Installation environment app Diagnosting remote installations of web based applications without access to the command line can be a bit hard, to alleviate this situation a new installation environment details app has been added. The purpose of this app is to provide -support staff information about the physical environment where **Mayan EDMS** has +support staff information about the physical environment where Mayan EDMS has been installed. To avoid possible security compromises only administrators can access this app. Editable compressed documents filename ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Previously when downloading more than one document in a compressed manner, -**Mayan EDMS** would produce a file with the name ``document_bundle.zip`` for +Mayan EDMS would produce a file with the name ``document_bundle.zip`` for download. A different filename can now be specified at the same download dialog. German translation @@ -71,7 +71,7 @@ Statistics gathering ~~~~~~~~~~~~~~~~~~~~ Previous attempts at gathering usage statistics have been met with deficient results. User participation in surveys as well as the quality of the data entered by users -was disappointing. That is why this version of **Mayan EDMS** features an +was disappointing. That is why this version of Mayan EDMS features an anonymous statistics gathering functionality. diff --git a/docs/releases/0.12.rst b/docs/releases/0.12.rst index d46b3cb0a4..d4bc23b52f 100644 --- a/docs/releases/0.12.rst +++ b/docs/releases/0.12.rst @@ -6,12 +6,12 @@ Mayan EDMS v0.12 release notes Welcome to Mayan EDMS v0.12! -This release commemorates **Mayan EDMS** first aniversary! +This release commemorates Mayan EDMS first aniversary! Overview ======== -Aside from new features, the focus of this release of **Mayan EDMS** also +Aside from new features, the focus of this release of Mayan EDMS also been about improving the code and documentation quality standard even further. The permission system has been completely overhauled to make it entire class based. The other big change is the addition of object @@ -61,7 +61,7 @@ Anonymous user support ~~~~~~~~~~~~~~~~~~~~~~ Anonymous user support is a two tier function, first is the addition of the `COMMON_ALLOW_ANONYMOUS_ACCESS` configuration option that -allows non authenticated user to browse all the pages of a **Mayan EDMS** installation. +allows non authenticated user to browse all the pages of a Mayan EDMS installation. The second part of this support is the ability to assign permissions or individual access to objects to anonymous users. @@ -89,7 +89,7 @@ the download of several documents in a single compressed file. Customizable GPG home directory ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Addition of the `SIGNATURES_GPG_HOME` configuration option to let -administrators set **Mayan EDMS**'s GPG instance home directory, used to +administrators set Mayan EDMS's GPG instance home directory, used to store keyrings and other GPG configuration files. Out of process bulk uploading @@ -114,7 +114,7 @@ stage to beta stage. Index configuration menus are now available on the be populated with document links depending on their metadata and properties. These populated trees can also be mirrored on the physical filesystem and shared using Samba or another filesharing server giving users a structured view -of the documents contained within **Mayan EDMS** from the ``Indexes`` tab +of the documents contained within Mayan EDMS from the ``Indexes`` tab or from a mirrored index shared via the network. A new configuration option has been added, `DOCUMENT_INDEXING_FILESYSTEM_SERVING`, which maps the index internal name with the physical directory where such index will be @@ -127,7 +127,7 @@ Included in this version is a small feedback application, found under the help determine the priority of the next planned features on the pipeline, or even help add new features if enough requests are received. All questions are optional but answering as many as possible will help greatly understand -the need of the **Mayan EDMS** user base. +the need of the Mayan EDMS user base. Staging file previews ~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/releases/0.13.rst b/docs/releases/0.13.rst index 36d1c11969..02c292557d 100644 --- a/docs/releases/0.13.rst +++ b/docs/releases/0.13.rst @@ -31,39 +31,39 @@ Attaching or removing tags from a large number of documents is now much easier. Registration ~~~~~~~~~~~~ Based on requests made by the community for greater commercial support and services for -**Mayan EDMS**, a new feature has been added that allows users to register their -copies of **Mayan EDMS** and better help users with commercial support packages. +Mayan EDMS, a new feature has been added that allows users to register their +copies of Mayan EDMS and better help users with commercial support packages. Registration for non commercial users is voluntary and optional, and in no way -affects the functionality of **Mayan EDMS**. However even for non commercial users +affects the functionality of Mayan EDMS. However even for non commercial users registration offers the advantage of automatically branding the user's copy -of **Mayan EDMS** with their name or the company name in the title area. +of Mayan EDMS with their name or the company name in the title area. Per document type indexing ~~~~~~~~~~~~~~~~~~~~~~~~~~ Index can now be restricted to update only on specific document types, this greatly increases the usefulness of indexes, and prevents unwanted index -updates. +updates. Bootstrap ~~~~~~~~~ -Setting up **Mayan EDMS** after installation has been indetified by users as the -main difficulty when knowledge about **Mayan EDMS** is relatively low. To +Setting up Mayan EDMS after installation has been indetified by users as the +main difficulty when knowledge about Mayan EDMS is relatively low. To address this situation a new feature that provides preconfigured setups has been -added. These preconfigured setups are published in the **Mayan EDMS** website and +added. These preconfigured setups are published in the Mayan EDMS website and upon synchonization are available to users, this gives users access and integrators -access to new setups without having to wait for new versions of **Mayan EDMS**. +access to new setups without having to wait for new versions of Mayan EDMS. Aside from including preconfigured setups, the new bootstrap app has the ability of dumping an user's current setup into a serialized text file which can be tweaked by hand and sent via email to other users. The possibilities enabled by this range from company wide defaults setups to consultants providing their clients with customized setups without having to access their clients' -**Mayan EDMS** instances. ``JSON``, ``YAML`` and a custom ``YAML`` format +Mayan EDMS instances. ``JSON``, ``YAML`` and a custom ``YAML`` format (http://djangosnippets.org/snippets/2461/) are supported by this new app. Add documents to folders in bulk ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ As requested, the ability to add more than one document at a time to a selected -folder has been added. +folder has been added. Translation updates ~~~~~~~~~~~~~~~~~~~ @@ -96,7 +96,7 @@ removes any traces of code and configuration options related to UNOCONV. Optimizations ~~~~~~~~~~~~~ -Inspired by the idea of getting **Mayan EDMS** running effectively on low power hardware such as +Inspired by the idea of getting Mayan EDMS running effectively on low power hardware such as the Raspberry Pi, several rounds or profiling and optimization were done. Some caching optimization were introduced to the permission model, resulting in @@ -105,13 +105,13 @@ and a 18% query reduction on cache hits. Upgrading from a previous version ================================= -If you installed **Mayan EDMS** by cloning the Git repository issue the commands:: +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. - + Next add the new requirements:: $ pip install -r requirements/production.txt diff --git a/docs/releases/1.0.rst b/docs/releases/1.0.rst index b927dde7e6..49246f1258 100644 --- a/docs/releases/1.0.rst +++ b/docs/releases/1.0.rst @@ -118,7 +118,7 @@ to do document OCR using software or services other than Tesseract. OCR improvements ~~~~~~~~~~~~~~~~ -OCR queue state is now reset when reloading **Mayan EMDS**, avoiding the OCR queue +OCR queue state is now reset when reloading Mayan EMDS, avoiding the OCR queue to remain locked. `unpaper` binary is now an optional pre OCR requirement, the OCR queue will now continue working is `unpaper` is not installed. Addition of post OCR processing support for French and German. @@ -131,7 +131,7 @@ commercial products is now explicitly allowed. PyPI package ~~~~~~~~~~~~ -**Mayan EDMS** has been packaged and submitted to the PyPI_ Python Package Index +Mayan EDMS has been packaged and submitted to the PyPI_ Python Package Index making it even easier to install and use. New REST API diff --git a/docs/releases/1.1.rst b/docs/releases/1.1.rst index 9f9a3d11c2..718f4111d1 100644 --- a/docs/releases/1.1.rst +++ b/docs/releases/1.1.rst @@ -13,7 +13,7 @@ What's new in Mayan EDMS v1.1 Celery ~~~~~~ All background tasks processing has been converted to use Celery_. By default -**Mayan EDMS** runs in "Eager" until a broker and result backend are configured +Mayan EDMS runs in "Eager" until a broker and result backend are configured as per `Celery's documentation`_. This change made the built-in scheduler and job_processing apps obsolete, both were removed. @@ -21,7 +21,7 @@ job_processing apps obsolete, both were removed. Views namespaces ~~~~~~~~~~~~~~~~ All views are namespaced_ with the name of the app which defines them. If you have -developed 3rd party apps for **Mayan EDMS** be sure to update any reference to a view +developed 3rd party apps for Mayan EDMS be sure to update any reference to a view by prepending the app name to the view name. @@ -43,7 +43,7 @@ mail serving. Update to Django 1.6.8 ~~~~~~~~~~~~~~~~~~~~~~ -**Mayan EDMS** has been updated to use Django 1.6.8. +Mayan EDMS has been updated to use Django 1.6.8. Events app @@ -55,13 +55,13 @@ for `Django activity stream`_ Watch folders ~~~~~~~~~~~~~ Filesystem folders can be monitored for change and their files automatically -uploaded as documents in **Mayan EDMS**. +uploaded as documents in Mayan EDMS. Vagrant file included ~~~~~~~~~~~~~~~~~~~~~ A vagrant file is now included to allow developers to provision a virtual machine -with the latest development version of **Mayan EDMS**. +with the latest development version of Mayan EDMS. User locale profile (language and timezone) @@ -101,7 +101,7 @@ the metadata types of the new document type are automatically assigned. New release cycle ~~~~~~~~~~~~~~~~~ Starting with this version a new release cycle methodology will come into effect. -The goal of this release cycle is to allow two series of versions of **Mayan EDMS** to be +The goal of this release cycle is to allow two series of versions of Mayan EDMS to be active at a given time: A new major version with new functionality and a minor version providing upgrades and fixes. This release (1.1) will be active and supported during releases of versions 2.x, but will go into end-of-life as soon as @@ -111,24 +111,24 @@ maintenance mode. Deprecation of Python 2.6 ~~~~~~~~~~~~~~~~~~~~~~~~~ -Series 1.0 of **Mayan EDMS** will be the last series supporting Python 2.6. Series +Series 1.0 of Mayan EDMS will be the last series supporting Python 2.6. Series 2.0 will be using Django 1.7.x which itself requires Python 2.7 or later. Improved testings ~~~~~~~~~~~~~~~~~ -**Mayan EDMS** is now automatically tested against SQLite, MySQL and PostgreSQL. +Mayan EDMS is now automatically tested against SQLite, MySQL and PostgreSQL. API updates ~~~~~~~~~~~ -Many new API endpoints have been added exposing the majority of **Mayan EDMS** functionality. +Many new API endpoints have been added exposing the majority of Mayan EDMS functionality. Messages contextual improvements ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Many updates and simplifications were made to the source text messages to reduce the -difficulty of translating **Mayan EDMS** and maintaing the contextual meaning of the +difficulty of translating Mayan EDMS and maintaing the contextual meaning of the text messages. Improved method for custom settings @@ -186,7 +186,7 @@ More technical documentation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Many new sub topics were added to the development section of the documentation to allow developers to better understand the inner workings and philosophies -of **Mayan EDMS**. +of Mayan EDMS. Other changes diff --git a/docs/releases/2.0.rst b/docs/releases/2.0.rst index d8fd7806cb..6487d479d6 100644 --- a/docs/releases/2.0.rst +++ b/docs/releases/2.0.rst @@ -13,7 +13,7 @@ What's new in Mayan EDMS v2.0 Update to Django 1.7 -------------------- The biggest change of this release comes in the form of support for Django 1.7. -**Mayan EDMS** makes use of several new features of Django 1.7 like: migrations, +Mayan EDMS makes use of several new features of Django 1.7 like: migrations, app config and transaction handling. The version of Django supported in this version is 1.7.10. With the move to Django 1.7, support for South migrations and Python 2.6 is removed. The switch to Django 1.7's app config means that @@ -30,7 +30,7 @@ Theming and re-branding ---------------------- All the presentation logic and markup has been moved into it's own app, the 'appearance' app. All modifications required to customize the entire look of -the **Mayan EDMS** can now be done in a single app. Very little markup remains +the Mayan EDMS can now be done in a single app. Very little markup remains in the other apps, and it's usually because of necessity, namely the widgets.py modules. @@ -194,11 +194,11 @@ Failure tolerance ----------------- Previous versions made use of transactions to prevent data loss in the event of an unexpected error. This release improves on that approach by also reacting -to infrastructure failures. **Mayan EDMS** can now recover without any or +to infrastructure failures. Mayan EDMS can now recover without any or minimal data loss from critical events such as loss of connectivity to the database manager. This changes allow installation of using database managers that do not provide guaranteed concurrency such as SQLite, to scale to thousand -of documents. While this configuration is still not recommended, **Mayan EDMS** +of documents. While this configuration is still not recommended, Mayan EDMS will now work and scale much better in environments where parts of the infrastructure cannot be changed (such as the database manager). @@ -219,7 +219,7 @@ new scheme. Default document type and default document source ------------------------------------------------- After installation a default document type and document source are created, -this means that users can start uploading documents as soon as **Mayan EDMS** +this means that users can start uploading documents as soon as Mayan EDMS is installed without having to do any configuration setting changes. The default document type and default document source are both called 'Default'. diff --git a/docs/releases/index.rst b/docs/releases/index.rst index ceabfccbb1..e639f5381c 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -2,19 +2,19 @@ Release notes ============= -Release notes for the official **Mayan EDMS** releases. Each release note will tell you +Release notes for the official Mayan EDMS releases. Each release note will tell you what's new in each version, and will also describe any backwards-incompatible changes made in that version. -For those upgrading to a new version of **Mayan EDMS**, you will need to check +For those upgrading to a new version of Mayan EDMS, you will need to check all the backwards-incompatible changes and deprecated features for -each 'final' release from the one after your current **Mayan EDMS** version, +each 'final' release from the one after your current Mayan EDMS version, up to and including the latest version. Final releases ============== -Below are release notes through **Mayan EDMS** |version| and its minor releases. Newer +Below are release notes through Mayan EDMS |version| and its minor releases. Newer versions of the documentation contain the release notes for any later releases. 2.0 series diff --git a/docs/topics/acls.rst b/docs/topics/acls.rst index 2ca9d758e9..0e6dd26d0f 100644 --- a/docs/topics/acls.rst +++ b/docs/topics/acls.rst @@ -2,7 +2,7 @@ Access control lists ==================== -Besides the permissions system explained in :doc:`permissions`, **Mayan EDMS** +Besides the permissions system explained in :doc:`permissions`, Mayan EDMS provides per object permission granting. This feature is used to grant a permission to a role, but this permission can only be executed for a limited number of objects (documents, folders, tags) instead of being effective diff --git a/docs/topics/app_creation.rst b/docs/topics/app_creation.rst index 09399b1e73..81680bfc41 100644 --- a/docs/topics/app_creation.rst +++ b/docs/topics/app_creation.rst @@ -2,7 +2,7 @@ App creation ============ -**Mayan EDMS** apps are essentially Django app with some extra code to register +Mayan EDMS apps are essentially Django app with some extra code to register navigation, permissions and other relationships. @@ -21,7 +21,7 @@ App modules - api_views.py - REST API views go here. **Mayan EDMS** uses Django REST Framework API view + REST API views go here. Mayan EDMS uses Django REST Framework API view classes. - apps.py @@ -135,7 +135,7 @@ Views ===== The module common.generics provides custom generic class based views to be used. -The basic views used to create, edit, view and delete objects in **Mayan EDMS** +The basic views used to create, edit, view and delete objects in Mayan EDMS are: SingleObjectCreateView, SingleObjectDetailView, SingleObjectEditView, and SingleObjectListView diff --git a/docs/topics/contact.rst b/docs/topics/contact.rst index ee27f3057d..15a779c426 100644 --- a/docs/topics/contact.rst +++ b/docs/topics/contact.rst @@ -15,14 +15,14 @@ Search for information in the `archives of the mayan-edms mailing list`_, or `post a question`_. If you prefer news servers, use the gateway provided by Gmane_. -**Mayan EDMS** community developers do their best to reply to basic questions. +Mayan EDMS community developers do their best to reply to basic questions. Be sure to check the list archives as it may already containt the answers to your questions. Twitter ------- -**Mayan EDMS** has an official Twitter account, `@mayanedms +Mayan EDMS has an official Twitter account, `@mayanedms `_, which is used for announcements and occasional related news tidbits. @@ -30,7 +30,7 @@ related news tidbits. Bugs/ticket tracker ------------------- -Report bugs with **Mayan EDMS** or search existing ones using Github's `ticket tracker`_. +Report bugs with Mayan EDMS or search existing ones using Gitlab's `ticket tracker`_. .. _archives of the mayan-edms mailing list: http://groups.google.com/group/mayan-edms/ diff --git a/docs/topics/contributors.rst b/docs/topics/contributors.rst index e9baed1e35..59989fe853 100644 --- a/docs/topics/contributors.rst +++ b/docs/topics/contributors.rst @@ -8,7 +8,7 @@ Contributors How to contribute? ------------------ -You can help further the development of **Mayan EDMS** by testing, reporting +You can help further the development of Mayan EDMS by testing, reporting bugs, submitting documentation or code patches. Lead developer diff --git a/docs/topics/deploying.rst b/docs/topics/deploying.rst index 0f7305fbc2..9e322148d2 100644 --- a/docs/topics/deploying.rst +++ b/docs/topics/deploying.rst @@ -5,7 +5,7 @@ Deploying OS "bare metal" =============== -Like other Django based projects **Mayan EDMS** can be deployed in a wide variety +Like other Django based projects Mayan EDMS can be deployed in a wide variety of ways. The method provided below is only a bare minimum example. These instructions are independent of the instructions mentioned in the :doc:`installation` chapter but assume you have already made a test install to @@ -109,7 +109,7 @@ Create the directory for the uWSGI log files:: mkdir /var/log/uwsgi -Create the NGINX site file for **Mayan EDMS**, ``/etc/nginx/sites-available/mayan``:: +Create the NGINX site file for Mayan EDMS, ``/etc/nginx/sites-available/mayan``:: server { listen 80; @@ -134,7 +134,7 @@ Create the NGINX site file for **Mayan EDMS**, ``/etc/nginx/sites-available/maya } } -Enable the NGINX site for **Mayan EDMS**:: +Enable the NGINX site for Mayan EDMS:: ln -s /etc/nginx/sites-available/mayan /etc/nginx/sites-enabled/ @@ -198,7 +198,7 @@ Deploy the Docker image stack:: docker run --name redis -d redis docker run --name mayan-edms -p 80:80 --link postgres:postgres --link redis:redis -e POSTGRES_DB=mayan -e POSTGRES_USER=mayan -e POSTGRES_PASSWORD=mysecretpassword -v /usr/local/lib/python2.7/dist-packages/mayan/media -d mayanedms/monolithic -After the **Mayan EDMS** container finishes initializing (about 5 minutes), it will +After the Mayan EDMS container finishes initializing (about 5 minutes), it will be available by browsing to http://127.0.0.1. You can inspect the initialization with:: @@ -242,7 +242,7 @@ Launch the entire stack (Postgres, Redis, and Mayan EDMS) using:: docker-compose -f docker-compose.yml -p mayanedms up -d -After the **Mayan EDMS** container finishes initializing (about 5 minutes), it will +After the Mayan EDMS container finishes initializing (about 5 minutes), it will be available by browsing to http://127.0.0.1. You can inspect the initialization with:: diff --git a/docs/topics/development.rst b/docs/topics/development.rst index abbbb11d89..5654918326 100644 --- a/docs/topics/development.rst +++ b/docs/topics/development.rst @@ -3,7 +3,7 @@ Development =========== -**Mayan EDMS** is under active development, and contributions are welcome. +Mayan EDMS is under active development, and contributions are welcome. If you have a feature request, suggestion or bug report, please open a new issue on the `GitLab issue tracker`_. To submit patches, please send a pull @@ -16,8 +16,8 @@ request on GitLab_. Make sure to add yourself to the :ref:`contributors` file. Project philosophies -------------------- -How to think about **Mayan EDMS** when doing changes or adding new features, -why things are the way they are in **Mayan EDMS**. +How to think about Mayan EDMS when doing changes or adding new features, +why things are the way they are in Mayan EDMS. - Functionality must be as market/sector independent as possible, code for the 95% of use cases. @@ -125,7 +125,7 @@ Correct: Dependencies ~~~~~~~~~~~~ -**Mayan EDMS** apps follow a hierarchical model of dependency. Apps import from +Mayan EDMS apps follow a hierarchical model of dependency. Apps import from their parents or siblings, never from their children. Think plugins. A parent app must never assume anything about a possible existing child app. The documents app and the Document model are the basic entities they must never @@ -136,7 +136,7 @@ Variables ~~~~~~~~~ Naming of variables should follow a Major to Minor convention, usually including the purpose of the variable as the first piece of the name, using -underscores as spaces. camelCase is not used in **Mayan EDMS**. +underscores as spaces. camelCase is not used in Mayan EDMS. Examples: @@ -171,7 +171,7 @@ Classes: Strings ~~~~~~~ -Quotation character used in **Mayan EDMS** for strings is the single quote. +Quotation character used in Mayan EDMS for strings is the single quote. Double quote is used for multiple line comments or HTML markup. Migrations @@ -199,7 +199,7 @@ as passed directly from the exception object. Source Control -------------- -**Mayan EDMS** source is controlled with Git_. +Mayan EDMS source is controlled with Git_. The project is publicly accessible, hosted and can be cloned from **GitLab** using:: @@ -209,7 +209,7 @@ The project is publicly accessible, hosted and can be cloned from **GitLab** usi Git branch structure -------------------- -**Mayan EDMS** follows a simplified model layout based on Vincent Driessen's +Mayan EDMS follows a simplified model layout based on Vincent Driessen's `Successful Git Branching Model`_ blog post. ``develop`` @@ -299,7 +299,7 @@ merged. Debugging --------- -**Mayan EDMS** makes extensive use of Django's new `logging capabilities`_. +Mayan EDMS makes extensive use of Django's new `logging capabilities`_. By default debug logging for all apps is turned on. If you wish to customize how logging is managed turn off automatic logging by setting `COMMON_AUTO_LOGGING` to ``False`` and add the following lines to your diff --git a/docs/topics/document_types.rst b/docs/topics/document_types.rst index 694b343153..f5d8b9893b 100644 --- a/docs/topics/document_types.rst +++ b/docs/topics/document_types.rst @@ -2,7 +2,7 @@ Document types ============== -The basic unit of data in **Mayan EDMS** is the ``document type``. A document +The basic unit of data in Mayan EDMS is the ``document type``. A document type can be interpreted also as a document category, a document class, or a document template. Document types need to be created before documents can be uploaded. It is not possible to upload documents without assigning them a @@ -11,7 +11,7 @@ document type. Examples of document type: **invoices**, **blueprints**, Settings and attributes are applied to document types and documents will inherit those settings and attributes based on the document type they were -assigned when uploaded into **Mayan EDMS**. A document can only be of one +assigned when uploaded into Mayan EDMS. A document can only be of one type at a given moment, but if needed, the type of a document can be changed. Upon changing its type, the document will lose its previous settings and attributes, and will inherit the settings and attributes of its new type. diff --git a/docs/topics/faq.rst b/docs/topics/faq.rst index d35da8698a..236d0f359a 100644 --- a/docs/topics/faq.rst +++ b/docs/topics/faq.rst @@ -7,7 +7,7 @@ Frequently asked questions and solutions **Q: PostgreSQL vs. MySQL** Since Django abstracts database operations from a functional point of view -**Mayan EDMS** will behave exactly the same either way. The only concern +Mayan EDMS will behave exactly the same either way. The only concern would be that MySQL doesn't support transactions for schema modifying commands. The only moment this could cause problems is when running South migrations during upgrades, if a migration fails the database diff --git a/docs/topics/features.rst b/docs/topics/features.rst index 1e79b2c88f..33d32c7159 100644 --- a/docs/topics/features.rst +++ b/docs/topics/features.rst @@ -19,7 +19,7 @@ Features * Office document format support. - * **Mayan EDMS** can detect the presence of Libre Office and use it to support + * Mayan EDMS can detect the presence of Libre Office and use it to support word processing files, spreadsheets and presentations. * User defined metadata fields. @@ -44,7 +44,7 @@ Features * Previews for many file formats. - * **Mayan EDMS** provides image preview generation for many popular file + * Mayan EDMS provides image preview generation for many popular file formats. * Full text searching. @@ -78,7 +78,7 @@ Features * Multilingual user interface. - * **Mayan EDMS** being written using the Django_ framework, can be translated + * Mayan EDMS being written using the Django_ framework, can be translated to practically any language spoken in the world. For a list of translated languages have a look at the Transifex_ project location. diff --git a/docs/topics/file_storage.rst b/docs/topics/file_storage.rst index 955a79a66e..f02e38d7aa 100644 --- a/docs/topics/file_storage.rst +++ b/docs/topics/file_storage.rst @@ -2,7 +2,7 @@ File storage ============ -The files are stored and placed under **Mayan EDMS** "control" to avoid +The files are stored and placed under Mayan EDMS "control" to avoid filename clashes each file gets renamed to its ``UUID`` (Universally Unique ID), without extension, and stored in a simple flat arrangement in a directory. @@ -20,7 +20,7 @@ This doesn't stop access to the files but renaming, moving or updating directly them is not recommended because it would throw the database out of sync. -Because **Mayan EDMS** components are as decoupled from each other as possible, +Because Mayan EDMS components are as decoupled from each other as possible, storage in this case is decoupled and its behavior is controlled not by the project but by the ``Storage`` module class. All the other modules don't make any assumptions about how the actual document files are diff --git a/docs/topics/index.rst b/docs/topics/index.rst index b0c90a4e07..3b780c58e2 100644 --- a/docs/topics/index.rst +++ b/docs/topics/index.rst @@ -1,7 +1,7 @@ Concepts ======== -Introductions to all the key parts of **Mayan EDMS** you'll need to know: +Introductions to all the key parts of Mayan EDMS you'll need to know: .. toctree:: :maxdepth: 1 diff --git a/docs/topics/indexes.rst b/docs/topics/indexes.rst index 665af61a05..8990fa6064 100644 --- a/docs/topics/indexes.rst +++ b/docs/topics/indexes.rst @@ -17,7 +17,7 @@ Example: - Metadata type: ``Product year``, associated as a required metadata for the document type ``Product sheet``. - Index: ``Product sheets per year``, and associated to the document type ``Product sheet``. -- Index slug: ``product-sheets-per-year``. Slugs are internal unique identifiers that can be used by other **Mayan EDMS** modules to reference each index. +- Index slug: ``product-sheets-per-year``. Slugs are internal unique identifiers that can be used by other Mayan EDMS modules to reference each index. - Index tree template as follows: .. blockdiag:: diff --git a/docs/topics/installation.rst b/docs/topics/installation.rst index a7b365fe91..813f6a03c0 100644 --- a/docs/topics/installation.rst +++ b/docs/topics/installation.rst @@ -2,11 +2,11 @@ Installation ============ -**Mayan EDMS** should be deployed like any other Django_ project and +Mayan EDMS should be deployed like any other Django_ project and preferably using virtualenv_. Being a Django_ and a Python_ project, familiarity with these technologies is -recommended to better understand why **Mayan EDMS** does some of the things it +recommended to better understand why Mayan EDMS does some of the things it does. Bellow are the step needed for a test install. @@ -20,13 +20,13 @@ Ubuntu If using a Debian_ or Ubuntu_ based Linux distribution, get the executable requirements using:: - sudo apt-get install libjpeg-dev libmagic1 libpng-dev libreoffice libtiff-dev gcc ghostscript gpgv python-dev python-virtualenv tesseract-ocr unpaper poppler-utils -y + sudo apt-get install libjpeg-dev libmagic1 libpng-dev libreoffice libtiff-dev gcc ghostscript gpgv python-dev python-virtualenv tesseract-ocr poppler-utils -y Mac OSX ------- -**Mayan EDMS** is dependent on a number of binary packages and the recommended +Mayan EDMS is dependent on a number of binary packages and the recommended way is to use a package manager such as `MacPorts `_ or `Homebrew `_. @@ -45,7 +45,7 @@ With MacPorts installed run the command: Set the Binary paths ******************** -**Mayan EDMS** by default will look in /usr/bin/ for the binary files it needs +Mayan EDMS by default will look in /usr/bin/ for the binary files it needs so either you can symlink the binaries installed via MacPorts in /opt/local/bin/ to /usr/bin/ with ... @@ -71,7 +71,7 @@ With Homebrew installed run the command: Set the Binary paths ******************** -**Mayan EDMS** by default will look in /usr/bin/ for the binary files it needs +Mayan EDMS by default will look in /usr/bin/ for the binary files it needs so either you can symlink the binaries installed via brew in /usr/local/bin/ to /usr/bin/ with ... @@ -99,8 +99,8 @@ Initialize a ``virtualenv`` to deploy the project: source venv/bin/activate pip install mayan-edms -By default **Mayan EDMS** will create a single file SQLite_ database, which makes -it very easy to start using **Mayan EDMS**. Populate the database with the +By default Mayan EDMS will create a single file SQLite_ database, which makes +it very easy to start using Mayan EDMS. Populate the database with the project's schema doing: .. code-block:: bash @@ -127,7 +127,7 @@ Production use ============== After making sure everything is running correctly, stop the ``runserver`` command. -Deploy **Mayan EDMS** using the webserver of your preference. For more information +Deploy Mayan EDMS using the webserver of your preference. For more information on deployment instructions and examples, checkout Django's official documentation on the topic https://docs.djangoproject.com/en/1.7/howto/deployment/ For a simple production deployment setup follow the instructions in the diff --git a/docs/topics/license.rst b/docs/topics/license.rst index 9240914ef1..87f20c2da0 100644 --- a/docs/topics/license.rst +++ b/docs/topics/license.rst @@ -2,7 +2,7 @@ License ======= -**Mayan EDMS** is distributed under the `Apache 2.0 License`_. +Mayan EDMS is distributed under the `Apache 2.0 License`_. The complete license terms are included below. .. _Apache 2.0 License: https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/docs/topics/permissions.rst b/docs/topics/permissions.rst index 3cff8df004..5162484836 100644 --- a/docs/topics/permissions.rst +++ b/docs/topics/permissions.rst @@ -2,7 +2,7 @@ Permissions =========== -**Mayan EDMS** provides very fine control over which actions users can +Mayan EDMS provides very fine control over which actions users can perform. Action control works by allowing ``roles``, that are composed of ``groups`` of ``users`` to be granted a ``permission`` such that the holder of that permission can exercise it throughout the entire system. diff --git a/docs/topics/signatures.rst b/docs/topics/signatures.rst index 8b3899a163..c4f3a545c3 100644 --- a/docs/topics/signatures.rst +++ b/docs/topics/signatures.rst @@ -2,7 +2,7 @@ Document signatures =================== -**Mayan EDMS** supports two types of document signatures: embedded and +Mayan EDMS supports two types of document signatures: embedded and detached signatures. When a document with an embedded signature is uploaded, this signature is readily detected as part of the document inspection step. The status of the signature can be verified by accessing the diff --git a/docs/topics/versioning.rst b/docs/topics/versioning.rst index e96d06ea97..922c27b34e 100644 --- a/docs/topics/versioning.rst +++ b/docs/topics/versioning.rst @@ -2,7 +2,7 @@ Document versioning =================== -**Mayan EDMS** has the ability to store different versions of the same +Mayan EDMS has the ability to store different versions of the same document. A comment field is provided to allow users to summarize the new version changes in comparison with the previous one. If a new version was uploaded by mistake or such new version is no longer necessary the option to From 9d7e8d612347064b27b3be5ea4b529e8e40c221f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 26 Apr 2016 17:10:38 -0400 Subject: [PATCH 182/205] Add roadmap documentation chapter. --- HISTORY.rst | 2 + docs/index.rst | 1 + docs/topics/roadmap.rst | 100 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 103 insertions(+) create mode 100644 docs/topics/roadmap.rst diff --git a/HISTORY.rst b/HISTORY.rst index 1fd539552f..d78952dbf9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -31,6 +31,8 @@ - Add support for signing documents. - Instead of multiple keyservers only one keyserver is now supported. - Replace document type selection widget with an opened selection list. +- Add mailing documentation chapter. +- Add roadmap documentation chapter. 2.0.2 (2016-02-09) ================== diff --git a/docs/index.rst b/docs/index.rst index 4e08474c94..314da95ccf 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -33,6 +33,7 @@ account. Concepts Development App creation + Roadmap Translations Contributors Screenshots diff --git a/docs/topics/roadmap.rst b/docs/topics/roadmap.rst new file mode 100644 index 0000000000..640cf4cc64 --- /dev/null +++ b/docs/topics/roadmap.rst @@ -0,0 +1,100 @@ +======= +Roadmap +======= + +- Goals for version 2.2: + + - Improve workflow system + - Workflow indexing support. Accessor already works ``{{ document.workflows.all.0.get_current_state }}``. Index recalculation after workflow transition is missing. + - Workflow actions. Predefined actions to be execute on document leaving or entering a state or a transition. Example: "Add to folder X", "Attach tag X". + - Add support for state recipients. + - Add workflow document inbox notification. + - Replace indexing and smart linking template language (use Jinja2 instead of Django's). + +- Goals for version 3.0: + + - Replace UI. + +- General goals: + + - Distribution: + + - Debian packages. Limited success so far using https://github.com/astraw/stdeb. + + - Downloads: + + - Transition from filetransfer package to django-downloadview. This task was started and the view ``common.generics.SingleObjectDownloadView`` was created. The ``document_signatures`` app is the first app to use it. + + - Notifications: + + - Add support for subscribing to a document's events. + - Add support for subscribing to a document type events. + - Add support for subscribing specific events. + + - OCR: + + - Add image preprocessing for OCR. Increase effectiveness of Tesseract. + - Improve interface with tesseract. + - Fix pytesseract shortcomings via upstream patches or re-implement. Move to PyOCR. + + - Python 3: + + - Complete support for Python3. + - Find replacement for pdfminer (Python3 support blocker). Use pdfminer.six (#257). + + - Simple serving: + + - Provide option to serve Mayan EDMS without a webserver (using Tornado o similar). Work started in branch: ``/feature/tornado`` + + - Source code: + + - Implement Developer certificate of origin: http://developercertificate.org/ + + - Upload wizard: + + - Make wizard step configurable. Create ``WirzardStep`` class so apps can add their own upload wizard steps, instead of the steps being hardcoded in the sources app. + - Add upload wizard step to add the new documents to a folder. + + - Other + + - Use a sequence and not the document upload date to determine the document version sequence. MySQL doesn't store milisecond value in dates and if several version are uploaded in a single second there is no way to know the order or which one is the latests. This is why the document version tests include a 2 second delay. Possible solution: http://schinckel.net/2015/05/17/django-second-autofield/ + - Include external app Mayan-EXIF into main code. + - Convert all views from functions to class based views (CBV). + - Increase test coverage. + - Mock external services in tests. For example the ``django_GPG`` app key search and receive tests. + - Pluggable icon app. Make switching icon set easier. + - Reduce dependency on binary executables for a default install. + - Find replacement for ``cssmin`` & ``django-compressor``. + - Find replacement for ``python-gnupg``. Unstable & inconsistent API. + - Google docs integration. Upload document from Google Drive. + - Get ``dumpdata`` and ``loaddata`` working flawlessly. Will allow for easier backups, restores and database backend migrations. + - Make more view asynchronous: + + - trash can emptying. + - document delete view. + + - Add support for loading settings from environment variables, not just settings/local.py. + - Add generic list ordering. ``django.views.generic.list.MultipleObjectMixin`` (https://docs.djangoproject.com/en/1.8/ref/class-based-views/mixins-multiple-object/#django.views.generic.list.MultipleObjectMixin) now supports an ``ordering`` parameter. + - Workaround GitLab CI MySQL test errors. GitLab MySQL's container doesn't support UTF-8 content. + - Add support for downloading the OCR content as a text file. + - Add support to convert any document to PDF. https://gitlab.mister-muffin.de/josch/img2pdf + - Add support for combining documents. + - Add support for splitting documents. + - Add task viewer. + - Add new document source to get documents from an URL. + - Document overlay support. Such as watermarks. https://gist.github.com/umrashrf/8616550 + - Add support for metadata mapping files. CSV file containing filename to metadata values mapping, useful for bulk upload and migrations. + - Add support for registering widgets to the home screen. + - Merge mimetype and converter apps. + - Add entry in About menu to check latest Mayan EDMS version via PyPI. + - Add GPG key generation. + - Add documentation section on editing the settings/local.py file. + - Add documentation section with warning about using runserver. + - Replace ``urlpatterns = patterns( ''``, with Python lists. Django recommendation for post 1.7. + - If SourceColumn label is None take description from model. Avoid unnecessary translatable strings. + - Metadata widgets (Date, time, timedate). + - Datatime widget: https://github.com/smalot/bootstrap-datetimepicker + - Separate Event class instances with a parent namespace class: EventNamespace. + - Add events for document signing app (uploaded detached signateure, signed document, deleted signature) + - A configurable conversion process. Being able to invoke different binaries for file conversion, as opposed to the current libreoffice only solution. + - A tool in the admin interface to mass (re)convert the files (basically the page count function, but then applied on all documents). From f5609d402a195773ba5c355dd33f812fc76839b7 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 26 Apr 2016 18:02:45 -0400 Subject: [PATCH 183/205] Add backup and ocr backend documentation chapters. --- docs/topics/backups.rst | 16 ++++++++++++++++ docs/topics/index.rst | 2 ++ docs/topics/ocr_backend.rst | 15 +++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 docs/topics/backups.rst create mode 100644 docs/topics/ocr_backend.rst diff --git a/docs/topics/backups.rst b/docs/topics/backups.rst new file mode 100644 index 0000000000..83077433ee --- /dev/null +++ b/docs/topics/backups.rst @@ -0,0 +1,16 @@ +======= +Backups +======= + +To backup your install of Mayan EDMS just copy the actual document files and +the database content. If you are using the default storage backend, the +document files should be found in ``mayan/media/document_storage/``. + +To dump the content of your database manager refer to the documentation chapter +regarding database data "dumping". + +Example: + + - Postgresl: http://www.postgresql.org/docs/current/static/backup.html + - MySQL: https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html + - SQLite: Just copy the file ``mayan/media/db.sqlite3`` diff --git a/docs/topics/index.rst b/docs/topics/index.rst index 3b780c58e2..5f892d160b 100644 --- a/docs/topics/index.rst +++ b/docs/topics/index.rst @@ -15,9 +15,11 @@ Introductions to all the key parts of Mayan EDMS you'll need to know: checkouts versioning signatures + ocr_backend indexes smart_links tags mailing file_storage + backups screenshots diff --git a/docs/topics/ocr_backend.rst b/docs/topics/ocr_backend.rst new file mode 100644 index 0000000000..ab0de3c835 --- /dev/null +++ b/docs/topics/ocr_backend.rst @@ -0,0 +1,15 @@ +=========== +OCR backend +=========== + +Mayan EDMS ships an OCR backend that uses the FLOSS engine Tesseract, but it can +use other engines. To support other engines a wrapper that subclasess the +``OCRBackendBase`` class defined in mayan/apps/ocr/classes. This subclass should +expose the ``execute`` method. For an example of how the Tesseract backend +is implemented take a look at the file ``mayan/apps/ocr/backends/tesseract.py`` + +Once you create you own backend, in your local.py settings add the option +OCR_BACKEND and point it to your new OCR backend class path. + +The default value of OCR_BACKEND is ``"ocr.backends.tesseract.Tesseract"`` + From 6931d2ad81887ef21661f83f90517243c24d9fa5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 26 Apr 2016 18:02:59 -0400 Subject: [PATCH 184/205] Add direct to watched folder scanning issue to roadmap. --- docs/topics/roadmap.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/topics/roadmap.rst b/docs/topics/roadmap.rst index 640cf4cc64..9a654535e7 100644 --- a/docs/topics/roadmap.rst +++ b/docs/topics/roadmap.rst @@ -98,3 +98,4 @@ Roadmap - Add events for document signing app (uploaded detached signateure, signed document, deleted signature) - A configurable conversion process. Being able to invoke different binaries for file conversion, as opposed to the current libreoffice only solution. - A tool in the admin interface to mass (re)convert the files (basically the page count function, but then applied on all documents). + - Find solution so that documents in watched folders are not processed until they are ready. Use case scanning directly to scanned folders. From 1bda4722876a8f15dace51c65f99975dbe69bf53 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 26 Apr 2016 18:31:48 -0400 Subject: [PATCH 185/205] Update roadmap --- docs/topics/roadmap.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/topics/roadmap.rst b/docs/topics/roadmap.rst index 9a654535e7..d72f5be3bd 100644 --- a/docs/topics/roadmap.rst +++ b/docs/topics/roadmap.rst @@ -10,6 +10,7 @@ Roadmap - Add support for state recipients. - Add workflow document inbox notification. - Replace indexing and smart linking template language (use Jinja2 instead of Django's). + - Display/find documents by their current workflow state. - Goals for version 3.0: From 5775f5aeaa630a0c05759132db7cddfff6be0796 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Apr 2016 14:20:45 -0400 Subject: [PATCH 186/205] Run makemessage for apps. --- .../apps/acls/locale/ar/LC_MESSAGES/django.po | 23 +- .../apps/acls/locale/bg/LC_MESSAGES/django.po | 20 +- .../acls/locale/bs_BA/LC_MESSAGES/django.po | 23 +- .../apps/acls/locale/da/LC_MESSAGES/django.po | 20 +- .../acls/locale/de_DE/LC_MESSAGES/django.po | 23 +- .../apps/acls/locale/en/LC_MESSAGES/django.po | 4 +- .../apps/acls/locale/es/LC_MESSAGES/django.po | 20 +- .../apps/acls/locale/fa/LC_MESSAGES/django.po | 20 +- .../apps/acls/locale/fr/LC_MESSAGES/django.po | 20 +- .../apps/acls/locale/hu/LC_MESSAGES/django.po | 20 +- .../apps/acls/locale/id/LC_MESSAGES/django.po | 4 +- .../apps/acls/locale/it/LC_MESSAGES/django.po | 20 +- .../acls/locale/nl_NL/LC_MESSAGES/django.po | 20 +- .../apps/acls/locale/pl/LC_MESSAGES/django.po | 23 +- .../apps/acls/locale/pt/LC_MESSAGES/django.po | 20 +- .../acls/locale/pt_BR/LC_MESSAGES/django.po | 20 +- .../acls/locale/ro_RO/LC_MESSAGES/django.po | 23 +- .../apps/acls/locale/ru/LC_MESSAGES/django.po | 24 +- .../acls/locale/sl_SI/LC_MESSAGES/django.po | 23 +- .../acls/locale/vi_VN/LC_MESSAGES/django.po | 20 +- .../acls/locale/zh_CN/LC_MESSAGES/django.po | 20 +- .../locale/ar/LC_MESSAGES/django.po | 24 +- .../locale/bg/LC_MESSAGES/django.po | 20 +- .../locale/bs_BA/LC_MESSAGES/django.po | 23 +- .../locale/da/LC_MESSAGES/django.po | 13 +- .../locale/de_DE/LC_MESSAGES/django.po | 33 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 24 +- .../locale/fa/LC_MESSAGES/django.po | 17 +- .../locale/fr/LC_MESSAGES/django.po | 41 +- .../locale/hu/LC_MESSAGES/django.po | 13 +- .../locale/id/LC_MESSAGES/django.po | 13 +- .../locale/it/LC_MESSAGES/django.po | 13 +- .../locale/nl_NL/LC_MESSAGES/django.po | 37 +- .../locale/pl/LC_MESSAGES/django.po | 32 +- .../locale/pt/LC_MESSAGES/django.po | 17 +- .../locale/pt_BR/LC_MESSAGES/django.po | 20 +- .../locale/ro_RO/LC_MESSAGES/django.po | 23 +- .../locale/ru/LC_MESSAGES/django.po | 24 +- .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/vi_VN/LC_MESSAGES/django.po | 21 +- .../locale/zh_CN/LC_MESSAGES/django.po | 13 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 17 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 17 +- .../locale/fa/LC_MESSAGES/django.po | 13 +- .../locale/fr/LC_MESSAGES/django.po | 17 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 12 +- .../locale/it/LC_MESSAGES/django.po | 13 +- .../locale/nl_NL/LC_MESSAGES/django.po | 17 +- .../locale/pl/LC_MESSAGES/django.po | 16 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 13 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../checkouts/locale/ar/LC_MESSAGES/django.po | 28 +- .../checkouts/locale/bg/LC_MESSAGES/django.po | 25 +- .../locale/bs_BA/LC_MESSAGES/django.po | 28 +- .../checkouts/locale/da/LC_MESSAGES/django.po | 25 +- .../locale/de_DE/LC_MESSAGES/django.po | 29 +- .../checkouts/locale/en/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/es/LC_MESSAGES/django.po | 29 +- .../checkouts/locale/fa/LC_MESSAGES/django.po | 25 +- .../checkouts/locale/fr/LC_MESSAGES/django.po | 32 +- .../checkouts/locale/hu/LC_MESSAGES/django.po | 25 +- .../checkouts/locale/id/LC_MESSAGES/django.po | 25 +- .../checkouts/locale/it/LC_MESSAGES/django.po | 25 +- .../locale/nl_NL/LC_MESSAGES/django.po | 25 +- .../checkouts/locale/pl/LC_MESSAGES/django.po | 35 +- .../checkouts/locale/pt/LC_MESSAGES/django.po | 25 +- .../locale/pt_BR/LC_MESSAGES/django.po | 29 +- .../locale/ro_RO/LC_MESSAGES/django.po | 31 +- .../checkouts/locale/ru/LC_MESSAGES/django.po | 29 +- .../locale/sl_SI/LC_MESSAGES/django.po | 28 +- .../locale/vi_VN/LC_MESSAGES/django.po | 25 +- .../locale/zh_CN/LC_MESSAGES/django.po | 25 +- .../common/locale/ar/LC_MESSAGES/django.po | 60 ++- .../common/locale/bg/LC_MESSAGES/django.po | 57 +-- .../common/locale/bs_BA/LC_MESSAGES/django.po | 60 ++- .../common/locale/da/LC_MESSAGES/django.po | 57 +-- .../common/locale/de_DE/LC_MESSAGES/django.po | 69 +-- .../common/locale/en/LC_MESSAGES/django.po | 22 +- .../common/locale/es/LC_MESSAGES/django.po | 66 +-- .../common/locale/fa/LC_MESSAGES/django.po | 57 +-- .../common/locale/fr/LC_MESSAGES/django.po | 73 +-- .../common/locale/hu/LC_MESSAGES/django.po | 57 +-- .../common/locale/id/LC_MESSAGES/django.po | 57 +-- .../common/locale/it/LC_MESSAGES/django.po | 61 ++- .../common/locale/nl_NL/LC_MESSAGES/django.po | 57 +-- .../common/locale/pl/LC_MESSAGES/django.po | 69 +-- .../common/locale/pt/LC_MESSAGES/django.po | 57 +-- .../common/locale/pt_BR/LC_MESSAGES/django.po | 61 ++- .../common/locale/ro_RO/LC_MESSAGES/django.po | 60 ++- .../common/locale/ru/LC_MESSAGES/django.po | 66 +-- .../common/locale/sl_SI/LC_MESSAGES/django.po | 60 ++- .../common/locale/vi_VN/LC_MESSAGES/django.po | 57 +-- .../common/locale/zh_CN/LC_MESSAGES/django.po | 57 +-- .../converter/locale/ar/LC_MESSAGES/django.po | 36 +- .../converter/locale/bg/LC_MESSAGES/django.po | 33 +- .../locale/bs_BA/LC_MESSAGES/django.po | 36 +- .../converter/locale/da/LC_MESSAGES/django.po | 33 +- .../locale/de_DE/LC_MESSAGES/django.po | 48 +- .../converter/locale/en/LC_MESSAGES/django.po | 2 +- .../converter/locale/es/LC_MESSAGES/django.po | 33 +- .../converter/locale/fa/LC_MESSAGES/django.po | 33 +- .../converter/locale/fr/LC_MESSAGES/django.po | 51 +- .../converter/locale/hu/LC_MESSAGES/django.po | 2 +- .../converter/locale/id/LC_MESSAGES/django.po | 2 +- .../converter/locale/it/LC_MESSAGES/django.po | 33 +- .../locale/nl_NL/LC_MESSAGES/django.po | 33 +- .../converter/locale/pl/LC_MESSAGES/django.po | 44 +- .../converter/locale/pt/LC_MESSAGES/django.po | 33 +- .../locale/pt_BR/LC_MESSAGES/django.po | 33 +- .../locale/ro_RO/LC_MESSAGES/django.po | 36 +- .../converter/locale/ru/LC_MESSAGES/django.po | 37 +- .../locale/sl_SI/LC_MESSAGES/django.po | 36 +- .../locale/vi_VN/LC_MESSAGES/django.po | 33 +- .../locale/zh_CN/LC_MESSAGES/django.po | 33 +- .../locale/ar/LC_MESSAGES/django.po | 261 ++++++---- .../locale/bg/LC_MESSAGES/django.po | 258 ++++++---- .../locale/bs_BA/LC_MESSAGES/django.po | 265 +++++++---- .../locale/da/LC_MESSAGES/django.po | 204 +++++--- .../locale/de_DE/LC_MESSAGES/django.po | 285 +++++++---- .../locale/en/LC_MESSAGES/django.po | 267 +++++++---- .../locale/es/LC_MESSAGES/django.po | 272 +++++++---- .../locale/fa/LC_MESSAGES/django.po | 258 ++++++---- .../locale/fr/LC_MESSAGES/django.po | 285 +++++++---- .../locale/hu/LC_MESSAGES/django.po | 218 +++++---- .../locale/id/LC_MESSAGES/django.po | 204 +++++--- .../locale/it/LC_MESSAGES/django.po | 266 +++++++---- .../locale/nl_NL/LC_MESSAGES/django.po | 240 ++++++---- .../locale/pl/LC_MESSAGES/django.po | 268 +++++++---- .../locale/pt/LC_MESSAGES/django.po | 259 ++++++---- .../locale/pt_BR/LC_MESSAGES/django.po | 256 ++++++---- .../locale/ro_RO/LC_MESSAGES/django.po | 270 +++++++---- .../locale/ru/LC_MESSAGES/django.po | 266 +++++++---- .../locale/sl_SI/LC_MESSAGES/django.po | 204 +++++--- .../locale/vi_VN/LC_MESSAGES/django.po | 255 ++++++---- .../locale/zh_CN/LC_MESSAGES/django.po | 255 ++++++---- .../locale/ar/LC_MESSAGES/django.po | 16 +- .../locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.po | 16 +- .../locale/da/LC_MESSAGES/django.po | 13 +- .../locale/de_DE/LC_MESSAGES/django.po | 13 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 13 +- .../locale/fa/LC_MESSAGES/django.po | 13 +- .../locale/fr/LC_MESSAGES/django.po | 13 +- .../locale/hu/LC_MESSAGES/django.po | 13 +- .../locale/id/LC_MESSAGES/django.po | 13 +- .../locale/it/LC_MESSAGES/django.po | 13 +- .../locale/nl_NL/LC_MESSAGES/django.po | 13 +- .../locale/pl/LC_MESSAGES/django.po | 16 +- .../locale/pt/LC_MESSAGES/django.po | 13 +- .../locale/pt_BR/LC_MESSAGES/django.po | 13 +- .../locale/ro_RO/LC_MESSAGES/django.po | 16 +- .../locale/ru/LC_MESSAGES/django.po | 17 +- .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/vi_VN/LC_MESSAGES/django.po | 13 +- .../locale/zh_CN/LC_MESSAGES/django.po | 13 +- .../locale/ar/LC_MESSAGES/django.po | 41 +- .../locale/bg/LC_MESSAGES/django.po | 41 +- .../locale/bs_BA/LC_MESSAGES/django.po | 48 +- .../locale/da/LC_MESSAGES/django.po | 33 +- .../locale/de_DE/LC_MESSAGES/django.po | 58 ++- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 53 ++- .../locale/fa/LC_MESSAGES/django.po | 44 +- .../locale/fr/LC_MESSAGES/django.po | 64 ++- .../locale/hu/LC_MESSAGES/django.po | 33 +- .../locale/id/LC_MESSAGES/django.po | 37 +- .../locale/it/LC_MESSAGES/django.po | 53 ++- .../locale/nl_NL/LC_MESSAGES/django.po | 42 +- .../locale/pl/LC_MESSAGES/django.po | 48 +- .../locale/pt/LC_MESSAGES/django.po | 45 +- .../locale/pt_BR/LC_MESSAGES/django.po | 52 +- .../locale/ro_RO/LC_MESSAGES/django.po | 51 +- .../locale/ru/LC_MESSAGES/django.po | 50 +- .../locale/sl_SI/LC_MESSAGES/django.po | 36 +- .../locale/vi_VN/LC_MESSAGES/django.po | 33 +- .../locale/zh_CN/LC_MESSAGES/django.po | 33 +- .../locale/ar/LC_MESSAGES/django.po | 393 ++++++++++----- .../locale/bg/LC_MESSAGES/django.po | 397 +++++++++++----- .../locale/bs_BA/LC_MESSAGES/django.po | 393 ++++++++++----- .../locale/da/LC_MESSAGES/django.po | 326 +++++++++---- .../locale/de_DE/LC_MESSAGES/django.po | 405 ++++++++++++---- .../locale/en/LC_MESSAGES/django.po | 370 +++++++++++---- .../locale/es/LC_MESSAGES/django.po | 405 ++++++++++++---- .../locale/fa/LC_MESSAGES/django.po | 402 ++++++++++++---- .../locale/fr/LC_MESSAGES/django.po | 405 ++++++++++++---- .../locale/hu/LC_MESSAGES/django.po | 326 +++++++++---- .../locale/id/LC_MESSAGES/django.po | 319 +++++++++---- .../locale/it/LC_MESSAGES/django.po | 402 ++++++++++++---- .../locale/nl_NL/LC_MESSAGES/django.po | 326 +++++++++---- .../locale/pl/LC_MESSAGES/django.po | 393 ++++++++++----- .../locale/pt/LC_MESSAGES/django.po | 387 ++++++++++----- .../locale/pt_BR/LC_MESSAGES/django.po | 402 ++++++++++++---- .../locale/ro_RO/LC_MESSAGES/django.po | 393 ++++++++++----- .../locale/ru/LC_MESSAGES/django.po | 401 +++++++++++----- .../locale/sl_SI/LC_MESSAGES/django.po | 329 +++++++++---- .../locale/vi_VN/LC_MESSAGES/django.po | 390 ++++++++++----- .../locale/zh_CN/LC_MESSAGES/django.po | 400 +++++++++++----- .../locale/ar/LC_MESSAGES/django.po | 34 +- .../locale/bg/LC_MESSAGES/django.po | 31 +- .../locale/bs_BA/LC_MESSAGES/django.po | 34 +- .../locale/da/LC_MESSAGES/django.po | 31 +- .../locale/de_DE/LC_MESSAGES/django.po | 39 +- .../locale/en/LC_MESSAGES/django.po | 24 +- .../locale/es/LC_MESSAGES/django.po | 35 +- .../locale/fa/LC_MESSAGES/django.po | 35 +- .../locale/fr/LC_MESSAGES/django.po | 39 +- .../locale/hu/LC_MESSAGES/django.po | 31 +- .../locale/id/LC_MESSAGES/django.po | 31 +- .../locale/it/LC_MESSAGES/django.po | 31 +- .../locale/nl_NL/LC_MESSAGES/django.po | 31 +- .../locale/pl/LC_MESSAGES/django.po | 34 +- .../locale/pt/LC_MESSAGES/django.po | 31 +- .../locale/pt_BR/LC_MESSAGES/django.po | 35 +- .../locale/ro_RO/LC_MESSAGES/django.po | 34 +- .../locale/ru/LC_MESSAGES/django.po | 35 +- .../locale/sl_SI/LC_MESSAGES/django.po | 34 +- .../locale/vi_VN/LC_MESSAGES/django.po | 31 +- .../locale/zh_CN/LC_MESSAGES/django.po | 31 +- .../documents/locale/ar/LC_MESSAGES/django.po | 365 +++++++------- .../documents/locale/bg/LC_MESSAGES/django.po | 396 ++++++++-------- .../locale/bs_BA/LC_MESSAGES/django.po | 381 +++++++-------- .../documents/locale/da/LC_MESSAGES/django.po | 382 +++++++-------- .../locale/de_DE/LC_MESSAGES/django.po | 413 ++++++++-------- .../documents/locale/en/LC_MESSAGES/django.po | 231 ++++----- .../documents/locale/es/LC_MESSAGES/django.po | 406 ++++++++-------- .../documents/locale/fa/LC_MESSAGES/django.po | 375 ++++++++------- .../documents/locale/fr/LC_MESSAGES/django.po | 447 ++++++++++-------- .../documents/locale/hu/LC_MESSAGES/django.po | 388 +++++++-------- .../documents/locale/id/LC_MESSAGES/django.po | 393 +++++++-------- .../documents/locale/it/LC_MESSAGES/django.po | 387 +++++++-------- .../locale/nl_NL/LC_MESSAGES/django.po | 384 +++++++-------- .../documents/locale/pl/LC_MESSAGES/django.po | 365 +++++++------- .../documents/locale/pt/LC_MESSAGES/django.po | 386 +++++++-------- .../locale/pt_BR/LC_MESSAGES/django.po | 390 +++++++-------- .../locale/ro_RO/LC_MESSAGES/django.po | 392 +++++++-------- .../documents/locale/ru/LC_MESSAGES/django.po | 378 +++++++-------- .../locale/sl_SI/LC_MESSAGES/django.po | 391 +++++++-------- .../locale/vi_VN/LC_MESSAGES/django.po | 368 +++++++------- .../locale/zh_CN/LC_MESSAGES/django.po | 358 +++++++------- .../locale/ar/LC_MESSAGES/django.po | 15 +- .../locale/bg/LC_MESSAGES/django.po | 12 +- .../locale/bs_BA/LC_MESSAGES/django.po | 15 +- .../locale/da/LC_MESSAGES/django.po | 12 +- .../locale/de_DE/LC_MESSAGES/django.po | 15 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 12 +- .../locale/fa/LC_MESSAGES/django.po | 12 +- .../locale/fr/LC_MESSAGES/django.po | 12 +- .../locale/hu/LC_MESSAGES/django.po | 12 +- .../locale/id/LC_MESSAGES/django.po | 12 +- .../locale/it/LC_MESSAGES/django.po | 12 +- .../locale/nl_NL/LC_MESSAGES/django.po | 12 +- .../locale/pl/LC_MESSAGES/django.po | 15 +- .../locale/pt/LC_MESSAGES/django.po | 12 +- .../locale/pt_BR/LC_MESSAGES/django.po | 12 +- .../locale/ro_RO/LC_MESSAGES/django.po | 15 +- .../locale/ru/LC_MESSAGES/django.po | 20 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 12 +- .../locale/zh_CN/LC_MESSAGES/django.po | 12 +- .../events/locale/ar/LC_MESSAGES/django.po | 12 +- .../events/locale/bg/LC_MESSAGES/django.po | 9 +- .../events/locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../events/locale/da/LC_MESSAGES/django.po | 9 +- .../events/locale/de_DE/LC_MESSAGES/django.po | 9 +- .../events/locale/en/LC_MESSAGES/django.po | 2 +- .../events/locale/es/LC_MESSAGES/django.po | 9 +- .../events/locale/fa/LC_MESSAGES/django.po | 9 +- .../events/locale/fr/LC_MESSAGES/django.po | 9 +- .../events/locale/hu/LC_MESSAGES/django.po | 2 +- .../events/locale/id/LC_MESSAGES/django.po | 2 +- .../events/locale/it/LC_MESSAGES/django.po | 9 +- .../events/locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../events/locale/pl/LC_MESSAGES/django.po | 12 +- .../events/locale/pt/LC_MESSAGES/django.po | 9 +- .../events/locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../events/locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../events/locale/ru/LC_MESSAGES/django.po | 13 +- .../events/locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../events/locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../events/locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../folders/locale/ar/LC_MESSAGES/django.po | 55 ++- .../folders/locale/bg/LC_MESSAGES/django.po | 52 +- .../locale/bs_BA/LC_MESSAGES/django.po | 55 ++- .../folders/locale/da/LC_MESSAGES/django.po | 52 +- .../locale/de_DE/LC_MESSAGES/django.po | 52 +- .../folders/locale/en/LC_MESSAGES/django.po | 18 +- .../folders/locale/es/LC_MESSAGES/django.po | 52 +- .../folders/locale/fa/LC_MESSAGES/django.po | 52 +- .../folders/locale/fr/LC_MESSAGES/django.po | 63 +-- .../folders/locale/hu/LC_MESSAGES/django.po | 52 +- .../folders/locale/id/LC_MESSAGES/django.po | 52 +- .../folders/locale/it/LC_MESSAGES/django.po | 55 ++- .../locale/nl_NL/LC_MESSAGES/django.po | 52 +- .../folders/locale/pl/LC_MESSAGES/django.po | 55 ++- .../folders/locale/pt/LC_MESSAGES/django.po | 52 +- .../locale/pt_BR/LC_MESSAGES/django.po | 52 +- .../locale/ro_RO/LC_MESSAGES/django.po | 58 +-- .../folders/locale/ru/LC_MESSAGES/django.po | 56 +-- .../locale/sl_SI/LC_MESSAGES/django.po | 55 ++- .../locale/vi_VN/LC_MESSAGES/django.po | 52 +- .../locale/zh_CN/LC_MESSAGES/django.po | 52 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../linking/locale/ar/LC_MESSAGES/django.po | 41 +- .../linking/locale/bg/LC_MESSAGES/django.po | 38 +- .../locale/bs_BA/LC_MESSAGES/django.po | 41 +- .../linking/locale/da/LC_MESSAGES/django.po | 38 +- .../locale/de_DE/LC_MESSAGES/django.po | 46 +- .../linking/locale/en/LC_MESSAGES/django.po | 2 +- .../linking/locale/es/LC_MESSAGES/django.po | 42 +- .../linking/locale/fa/LC_MESSAGES/django.po | 38 +- .../linking/locale/fr/LC_MESSAGES/django.po | 50 +- .../linking/locale/hu/LC_MESSAGES/django.po | 38 +- .../linking/locale/id/LC_MESSAGES/django.po | 38 +- .../linking/locale/it/LC_MESSAGES/django.po | 38 +- .../locale/nl_NL/LC_MESSAGES/django.po | 38 +- .../linking/locale/pl/LC_MESSAGES/django.po | 46 +- .../linking/locale/pt/LC_MESSAGES/django.po | 38 +- .../locale/pt_BR/LC_MESSAGES/django.po | 41 +- .../locale/ro_RO/LC_MESSAGES/django.po | 41 +- .../linking/locale/ru/LC_MESSAGES/django.po | 42 +- .../locale/sl_SI/LC_MESSAGES/django.po | 41 +- .../locale/vi_VN/LC_MESSAGES/django.po | 38 +- .../locale/zh_CN/LC_MESSAGES/django.po | 38 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../mailer/locale/ar/LC_MESSAGES/django.po | 22 +- .../mailer/locale/bg/LC_MESSAGES/django.po | 19 +- .../mailer/locale/bs_BA/LC_MESSAGES/django.po | 22 +- .../mailer/locale/da/LC_MESSAGES/django.po | 19 +- .../mailer/locale/de_DE/LC_MESSAGES/django.po | 45 +- .../mailer/locale/en/LC_MESSAGES/django.po | 12 +- .../mailer/locale/es/LC_MESSAGES/django.po | 39 +- .../mailer/locale/fa/LC_MESSAGES/django.po | 19 +- .../mailer/locale/fr/LC_MESSAGES/django.po | 31 +- .../mailer/locale/hu/LC_MESSAGES/django.po | 19 +- .../mailer/locale/id/LC_MESSAGES/django.po | 19 +- .../mailer/locale/it/LC_MESSAGES/django.po | 19 +- .../mailer/locale/nl_NL/LC_MESSAGES/django.po | 19 +- .../mailer/locale/pl/LC_MESSAGES/django.po | 22 +- .../mailer/locale/pt/LC_MESSAGES/django.po | 23 +- .../mailer/locale/pt_BR/LC_MESSAGES/django.po | 22 +- .../mailer/locale/ro_RO/LC_MESSAGES/django.po | 22 +- .../mailer/locale/ru/LC_MESSAGES/django.po | 23 +- .../mailer/locale/sl_SI/LC_MESSAGES/django.po | 22 +- .../mailer/locale/vi_VN/LC_MESSAGES/django.po | 19 +- .../mailer/locale/zh_CN/LC_MESSAGES/django.po | 19 +- .../metadata/locale/ar/LC_MESSAGES/django.po | 88 ++-- .../metadata/locale/bg/LC_MESSAGES/django.po | 79 ++-- .../locale/bs_BA/LC_MESSAGES/django.po | 85 ++-- .../metadata/locale/da/LC_MESSAGES/django.po | 79 ++-- .../locale/de_DE/LC_MESSAGES/django.po | 128 ++--- .../metadata/locale/en/LC_MESSAGES/django.po | 2 +- .../metadata/locale/es/LC_MESSAGES/django.po | 101 ++-- .../metadata/locale/fa/LC_MESSAGES/django.po | 91 ++-- .../metadata/locale/fr/LC_MESSAGES/django.po | 126 ++--- .../metadata/locale/hu/LC_MESSAGES/django.po | 79 ++-- .../metadata/locale/id/LC_MESSAGES/django.po | 79 ++-- .../metadata/locale/it/LC_MESSAGES/django.po | 84 ++-- .../locale/nl_NL/LC_MESSAGES/django.po | 79 ++-- .../metadata/locale/pl/LC_MESSAGES/django.po | 102 ++-- .../metadata/locale/pt/LC_MESSAGES/django.po | 84 ++-- .../locale/pt_BR/LC_MESSAGES/django.po | 100 ++-- .../locale/ro_RO/LC_MESSAGES/django.po | 88 ++-- .../metadata/locale/ru/LC_MESSAGES/django.po | 86 ++-- .../locale/sl_SI/LC_MESSAGES/django.po | 82 ++-- .../locale/vi_VN/LC_MESSAGES/django.po | 79 ++-- .../locale/zh_CN/LC_MESSAGES/django.po | 79 ++-- .../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/da/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 17 +- .../mirroring/locale/en/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/es/LC_MESSAGES/django.po | 17 +- .../mirroring/locale/fa/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/fr/LC_MESSAGES/django.po | 15 +- .../mirroring/locale/hu/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/id/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/it/LC_MESSAGES/django.po | 9 +- .../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/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/ar/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/bg/LC_MESSAGES/django.po | 9 +- .../motd/locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/da/LC_MESSAGES/django.po | 9 +- .../motd/locale/de_DE/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/es/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/fa/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/fr/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/hu/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/id/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/it/LC_MESSAGES/django.po | 9 +- .../motd/locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/pl/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/pt/LC_MESSAGES/django.po | 9 +- .../motd/locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../motd/locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/ru/LC_MESSAGES/django.po | 13 +- .../motd/locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../motd/locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../motd/locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/da/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/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/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/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/ar/LC_MESSAGES/django.po | 44 +- .../apps/ocr/locale/bg/LC_MESSAGES/django.po | 38 +- .../ocr/locale/bs_BA/LC_MESSAGES/django.po | 44 +- .../apps/ocr/locale/da/LC_MESSAGES/django.po | 42 +- .../ocr/locale/de_DE/LC_MESSAGES/django.po | 50 +- .../apps/ocr/locale/en/LC_MESSAGES/django.po | 4 +- .../apps/ocr/locale/es/LC_MESSAGES/django.po | 42 +- .../apps/ocr/locale/fa/LC_MESSAGES/django.po | 38 +- .../apps/ocr/locale/fr/LC_MESSAGES/django.po | 45 +- .../apps/ocr/locale/hu/LC_MESSAGES/django.po | 38 +- .../apps/ocr/locale/id/LC_MESSAGES/django.po | 38 +- .../apps/ocr/locale/it/LC_MESSAGES/django.po | 38 +- .../ocr/locale/nl_NL/LC_MESSAGES/django.po | 40 +- .../apps/ocr/locale/pl/LC_MESSAGES/django.po | 41 +- .../apps/ocr/locale/pt/LC_MESSAGES/django.po | 42 +- .../ocr/locale/pt_BR/LC_MESSAGES/django.po | 42 +- .../ocr/locale/ro_RO/LC_MESSAGES/django.po | 45 +- .../apps/ocr/locale/ru/LC_MESSAGES/django.po | 46 +- .../ocr/locale/sl_SI/LC_MESSAGES/django.po | 41 +- .../ocr/locale/vi_VN/LC_MESSAGES/django.po | 38 +- .../ocr/locale/zh_CN/LC_MESSAGES/django.po | 38 +- .../locale/ar/LC_MESSAGES/django.po | 31 +- .../locale/bg/LC_MESSAGES/django.po | 28 +- .../locale/bs_BA/LC_MESSAGES/django.po | 31 +- .../locale/da/LC_MESSAGES/django.po | 28 +- .../locale/de_DE/LC_MESSAGES/django.po | 28 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 28 +- .../locale/fa/LC_MESSAGES/django.po | 28 +- .../locale/fr/LC_MESSAGES/django.po | 28 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 28 +- .../locale/nl_NL/LC_MESSAGES/django.po | 28 +- .../locale/pl/LC_MESSAGES/django.po | 31 +- .../locale/pt/LC_MESSAGES/django.po | 28 +- .../locale/pt_BR/LC_MESSAGES/django.po | 28 +- .../locale/ro_RO/LC_MESSAGES/django.po | 31 +- .../locale/ru/LC_MESSAGES/django.po | 32 +- .../locale/sl_SI/LC_MESSAGES/django.po | 31 +- .../locale/vi_VN/LC_MESSAGES/django.po | 28 +- .../locale/zh_CN/LC_MESSAGES/django.po | 28 +- .../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/da/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/en/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/es/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/fa/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/fr/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/hu/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/id/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/pl/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../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/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../sources/locale/ar/LC_MESSAGES/django.po | 32 +- .../sources/locale/bg/LC_MESSAGES/django.po | 29 +- .../locale/bs_BA/LC_MESSAGES/django.po | 32 +- .../sources/locale/da/LC_MESSAGES/django.po | 29 +- .../locale/de_DE/LC_MESSAGES/django.po | 54 ++- .../sources/locale/en/LC_MESSAGES/django.po | 4 +- .../sources/locale/es/LC_MESSAGES/django.po | 52 +- .../sources/locale/fa/LC_MESSAGES/django.po | 41 +- .../sources/locale/fr/LC_MESSAGES/django.po | 62 ++- .../sources/locale/hu/LC_MESSAGES/django.po | 29 +- .../sources/locale/id/LC_MESSAGES/django.po | 33 +- .../sources/locale/it/LC_MESSAGES/django.po | 35 +- .../locale/nl_NL/LC_MESSAGES/django.po | 39 +- .../sources/locale/pl/LC_MESSAGES/django.po | 32 +- .../sources/locale/pt/LC_MESSAGES/django.po | 33 +- .../locale/pt_BR/LC_MESSAGES/django.po | 47 +- .../locale/ro_RO/LC_MESSAGES/django.po | 36 +- .../sources/locale/ru/LC_MESSAGES/django.po | 36 +- .../locale/sl_SI/LC_MESSAGES/django.po | 32 +- .../locale/vi_VN/LC_MESSAGES/django.po | 29 +- .../locale/zh_CN/LC_MESSAGES/django.po | 29 +- .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.po | 13 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../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/da/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../storage/locale/en/LC_MESSAGES/django.po | 2 +- .../storage/locale/es/LC_MESSAGES/django.po | 9 +- .../storage/locale/fa/LC_MESSAGES/django.po | 2 +- .../storage/locale/fr/LC_MESSAGES/django.po | 9 +- .../storage/locale/hu/LC_MESSAGES/django.po | 2 +- .../storage/locale/id/LC_MESSAGES/django.po | 2 +- .../storage/locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../storage/locale/pl/LC_MESSAGES/django.po | 2 +- .../storage/locale/pt/LC_MESSAGES/django.po | 9 +- .../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/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/ar/LC_MESSAGES/django.po | 21 +- .../apps/tags/locale/bg/LC_MESSAGES/django.po | 15 +- .../tags/locale/bs_BA/LC_MESSAGES/django.po | 18 +- .../apps/tags/locale/da/LC_MESSAGES/django.po | 15 +- .../tags/locale/de_DE/LC_MESSAGES/django.po | 18 +- .../apps/tags/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/es/LC_MESSAGES/django.po | 18 +- .../apps/tags/locale/fa/LC_MESSAGES/django.po | 15 +- .../apps/tags/locale/fr/LC_MESSAGES/django.po | 23 +- .../apps/tags/locale/hu/LC_MESSAGES/django.po | 15 +- .../apps/tags/locale/id/LC_MESSAGES/django.po | 15 +- .../apps/tags/locale/it/LC_MESSAGES/django.po | 22 +- .../tags/locale/nl_NL/LC_MESSAGES/django.po | 18 +- .../apps/tags/locale/pl/LC_MESSAGES/django.po | 18 +- .../apps/tags/locale/pt/LC_MESSAGES/django.po | 15 +- .../tags/locale/pt_BR/LC_MESSAGES/django.po | 18 +- .../tags/locale/ro_RO/LC_MESSAGES/django.po | 25 +- .../apps/tags/locale/ru/LC_MESSAGES/django.po | 19 +- .../tags/locale/sl_SI/LC_MESSAGES/django.po | 18 +- .../tags/locale/vi_VN/LC_MESSAGES/django.po | 15 +- .../tags/locale/zh_CN/LC_MESSAGES/django.po | 15 +- .../locale/ar/LC_MESSAGES/django.po | 23 +- .../locale/bg/LC_MESSAGES/django.po | 20 +- .../locale/bs_BA/LC_MESSAGES/django.po | 23 +- .../locale/da/LC_MESSAGES/django.po | 20 +- .../locale/de_DE/LC_MESSAGES/django.po | 24 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 23 +- .../locale/fa/LC_MESSAGES/django.po | 12 +- .../locale/fr/LC_MESSAGES/django.po | 28 +- .../locale/hu/LC_MESSAGES/django.po | 12 +- .../locale/id/LC_MESSAGES/django.po | 12 +- .../locale/it/LC_MESSAGES/django.po | 24 +- .../locale/nl_NL/LC_MESSAGES/django.po | 24 +- .../locale/pl/LC_MESSAGES/django.po | 23 +- .../locale/pt/LC_MESSAGES/django.po | 20 +- .../locale/pt_BR/LC_MESSAGES/django.po | 20 +- .../locale/ro_RO/LC_MESSAGES/django.po | 23 +- .../locale/ru/LC_MESSAGES/django.po | 24 +- .../locale/sl_SI/LC_MESSAGES/django.po | 15 +- .../locale/vi_VN/LC_MESSAGES/django.po | 20 +- .../locale/zh_CN/LC_MESSAGES/django.po | 12 +- 672 files changed, 20469 insertions(+), 14974 deletions(-) diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po index 8c177c8160..44f521ea57 100644 --- a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:14 links.py:30 msgid "ACLs" @@ -27,7 +29,6 @@ msgid "Permissions" msgstr "الصلاحيات" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,11 +37,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Insufficient access." @@ -75,7 +75,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +194,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po index a1ebbbe4f1..2e3a42b6e3 100644 --- a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "Разрешения" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Недостатъчен достъп." @@ -75,7 +74,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 df8a72ac58..c40666823d 100644 --- a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:14 links.py:30 msgid "ACLs" @@ -27,7 +29,6 @@ msgid "Permissions" msgstr "Dozvole" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,11 +37,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Nedovoljne dozvole." @@ -75,7 +75,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +194,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/da/LC_MESSAGES/django.po b/mayan/apps/acls/locale/da/LC_MESSAGES/django.po index 5073b4157a..fd3d5c063a 100644 --- a/mayan/apps/acls/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "" @@ -75,7 +74,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 9246094b79..9f728e6db8 100644 --- a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 @@ -28,7 +29,6 @@ msgid "Permissions" msgstr "Berechtigungen" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "Rolle" @@ -37,11 +37,10 @@ msgid "Delete" msgstr "Löschen" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "Neue Berechtigung" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Fehlende Berechtigung" @@ -76,7 +75,6 @@ msgstr "Neue Zugriffsberechtigung für %s" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "ACL \"%s\" löschen" @@ -100,7 +98,8 @@ msgstr "Berechtigungen von Rolle \"%(role)s\" für \"%(object)s\"" #: views.py:242 msgid "Disabled permissions are inherited from a parent object." -msgstr "Deaktivierte Berechtigungen sind von einem übergeordneten Objekt vererbt." +msgstr "" +"Deaktivierte Berechtigungen sind von einem übergeordneten Objekt vererbt." #~ msgid "New holder" #~ msgstr "New holder" @@ -196,8 +195,10 @@ msgstr "Deaktivierte Berechtigungen sind von einem übergeordneten Objekt vererb #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po index 9e7c4295a0..4b2af972c0 100644 --- a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2012-02-02 18:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -43,7 +43,7 @@ msgstr "" msgid "New ACL" msgstr "View ACLs" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Insufficient access." diff --git a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po index 0a750f9a10..f41fc7d05c 100644 --- a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 @@ -30,7 +31,6 @@ msgid "Permissions" msgstr "Permisos" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "Rol" @@ -39,11 +39,10 @@ msgid "Delete" msgstr "Borrar" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "Nueva LCA" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Acceso insuficiente." @@ -78,7 +77,6 @@ msgstr "Nueva lista de control de acceso para: %s" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -198,8 +196,10 @@ msgstr "Los permisos inactivos se heredan de un objeto precedente." #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po index 09fc0b522b..57e79de4a3 100644 --- a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 links.py:30 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "مجوزها" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "نقش" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "حذف" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "دسترسی ناکافی" @@ -75,7 +74,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po index ac2971bd99..9e6b4c4a3c 100644 --- a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 links.py:30 @@ -28,7 +29,6 @@ msgid "Permissions" msgstr "Permissions" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "Rôle" @@ -37,11 +37,10 @@ msgid "Delete" msgstr "Suppression" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "Nouveau droit" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "droit d'accès insuffisant." @@ -76,7 +75,6 @@ msgstr "Nouvelle liste de contrôle d'accès pour: %s" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Supprimer le droit: %s" @@ -196,8 +194,10 @@ msgstr "La désactivation de permission est hérité de l'objet parent" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po index 21be3991fd..69204bcfad 100644 --- a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "" @@ -75,7 +74,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po index 39ebf2b133..c18b21a13a 100644 --- a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-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/" @@ -39,7 +39,7 @@ msgstr "" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "" diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po index 8dae7744a2..583618c59e 100644 --- a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "Permessi" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "Ruolo" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "Cancella" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Accesso insufficiente." @@ -75,7 +74,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 4fab722168..be473b5b72 100644 --- a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Justin Albstbstmeijer , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Justin Albstbstmeijer \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 @@ -28,7 +29,6 @@ msgid "Permissions" msgstr "Permissies" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "Gebruikersrol" @@ -37,11 +37,10 @@ msgid "Delete" msgstr "Verwijder" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "Nieuwe authorisatielijst" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Permissie is ontoereikend" @@ -76,7 +75,6 @@ msgstr "Nieuwe authorisatielijsten voor: %s" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Verwijder authorisatielijst: %s" @@ -196,8 +194,10 @@ msgstr "Uitgeschakelde permissies zijn geërfd van een parent object." #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po index b34c398837..834992cf56 100644 --- a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Wojciech Warczakowski , 2016 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:14 links.py:30 msgid "ACLs" @@ -28,7 +30,6 @@ msgid "Permissions" msgstr "Uprawnienia" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "Rola" @@ -37,11 +38,10 @@ msgid "Delete" msgstr "Usuń" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "Nowa lista ACL" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Niewystarczający dostęp." @@ -76,7 +76,6 @@ msgstr "Nowe listy ACL dla: %s" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "Usuń listę ACL: %s" @@ -196,8 +195,10 @@ msgstr "Domyślne uprawnienia są dziedziczone z obiektu nadrzędnego." #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po index cbc2cb007d..2775a216e2 100644 --- a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:14 links.py:30 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "Permissões" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "Eliminar" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Acesso insuficiente." @@ -75,7 +74,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 cb1ef9e505..dc98bf3aea 100644 --- a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:14 links.py:30 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "Permissões" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "Regras" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "Excluir" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Acesso insuficiente." @@ -75,7 +74,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 4d2b754a3f..e0b5c21397 100644 --- a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:14 links.py:30 msgid "ACLs" @@ -27,7 +29,6 @@ msgid "Permissions" msgstr "Permisiuni" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,11 +37,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Accesul insuficient." @@ -75,7 +75,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +194,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po index f3ee4060bd..ea4a5ee80d 100644 --- a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:14 links.py:30 msgid "ACLs" @@ -27,7 +30,6 @@ msgid "Permissions" msgstr "Разрешения" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,11 +38,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "Недостаточный доступ." @@ -75,7 +76,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +195,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 46ac50392d..3b199d304c 100644 --- a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:14 links.py:30 msgid "ACLs" @@ -27,7 +29,6 @@ msgid "Permissions" msgstr "" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,11 +37,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "" @@ -75,7 +75,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +194,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" 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 8f7c88edc4..84d2506ca2 100644 --- a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 links.py:30 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "" @@ -75,7 +74,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po index 576fc057db..0bd4369e7d 100644 --- a/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:14 links.py:30 @@ -27,7 +28,6 @@ msgid "Permissions" msgstr "权限" #: apps.py:26 models.py:38 -#| msgid "Roles" msgid "Role" msgstr "" @@ -36,11 +36,10 @@ msgid "Delete" msgstr "" #: links.py:34 -#| msgid "View ACLs" msgid "New ACL" msgstr "" -#: managers.py:84 +#: managers.py:85 msgid "Insufficient access." msgstr "权限不足" @@ -75,7 +74,6 @@ msgstr "" #: views.py:109 #, python-format -#| msgid "Default ACLs" msgid "Delete ACL: %s" msgstr "" @@ -195,8 +193,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." #~ msgstr "Permission \"%(permission)s\" revoked of %(actor)s for %(object)s." -#~ msgid "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." -#~ msgstr "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgid "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." +#~ msgstr "" +#~ "%(actor)s, didn't had the permission \"%(permission)s\" for %(object)s." #~ msgid "Add new holder for: %s" #~ msgstr "add new holder for: %s" diff --git a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po index 2b90b01a83..b3dbb990c6 100644 --- a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:11 msgid "Appearance" @@ -43,8 +45,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -227,7 +229,9 @@ msgstr "First time login" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "You have just finished installing Mayan EDMS, congratulations!" +msgstr "" +"You have just finished installing Mayan EDMS, " +"congratulations!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -252,7 +256,9 @@ msgstr "Password: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Be sure to change the password to increase security and to disable this message." +msgstr "" +"Be sure to change the password to increase security and to disable this " +"message." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po index 3796e144b4..c2714e853b 100644 --- a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -227,7 +228,8 @@ msgstr "Логване за първи път" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "Вие приключихте инсталирането на Mayan EDMS, поздравления!" +msgstr "" +"Вие приключихте инсталирането на Mayan EDMS, поздравления!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -252,7 +254,9 @@ msgstr "Парола: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Моля променете паролата, за да повишите нивото на сигурност и да деактивирате това съобщение." +msgstr "" +"Моля променете паролата, за да повишите нивото на сигурност и да " +"деактивирате това съобщение." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po index 685774f374..cc72abf1fc 100644 --- a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:11 msgid "Appearance" @@ -43,8 +45,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -227,7 +229,8 @@ msgstr "Prijava - prvi put" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "Upravo ste završili instalaciju Mayan EDMS, čestitamo!" +msgstr "" +"Upravo ste završili instalaciju Mayan EDMS, čestitamo!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -252,7 +255,9 @@ msgstr "Pasvord: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Ne zaboravite promijeniti pasvord da pojačate sigurnost i onemogućite dalje prikazivanje ove poruke." +msgstr "" +"Ne zaboravite promijeniti pasvord da pojačate sigurnost i onemogućite dalje " +"prikazivanje ove poruke." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po index c50dd11ad2..ca8a2e02fc 100644 --- a/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 diff --git a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po index 43f151afde..28723c3389 100644 --- a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -44,15 +45,19 @@ msgstr "Serverfehler" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren " +"gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "Wenn Sie Hilfe brauchen, können Sie den Fehler über folgende Kennung referenzieren: " +msgstr "" +"Wenn Sie Hilfe brauchen, können Sie den Fehler über folgende Kennung " +"referenzieren: " #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" @@ -180,7 +185,9 @@ msgstr "Kein Ergebnis" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von %(total_pages)s)" +msgstr "" +"Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von " +"%(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -228,7 +235,9 @@ msgstr "Erstanmeldung" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "Herzlichen Glückwunsch! Sie haben die Installation von Mayan EDMS erfolgreich abgeschlossen. " +msgstr "" +"Herzlichen Glückwunsch! Sie haben die Installation von Mayan EDMS erfolgreich abgeschlossen. " #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -253,7 +262,9 @@ msgstr "Passwort: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Bitte ändern Sie das Passwort, um die Sicherheit zu erhöhen und diese Nachricht zu deaktivieren." +msgstr "" +"Bitte ändern Sie das Passwort, um die Sicherheit zu erhöhen und diese " +"Nachricht zu deaktivieren." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po index 793aa4cf68..94d2b82adb 100644 --- a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po index 635d7b2b27..3b34fe83da 100644 --- a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -44,8 +45,8 @@ msgstr "Error de servidor" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -180,7 +181,9 @@ msgstr "Ningún resultado" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de %(total_pages)s)" +msgstr "" +"Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de " +"%(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -228,7 +231,8 @@ msgstr "Primer inicio de sesión" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "!Felicitaciones! Acaba de terminar de instalar Mayan EDMS" +msgstr "" +"!Felicitaciones! Acaba de terminar de instalar Mayan EDMS" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -253,7 +257,9 @@ msgstr "Contraseña: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Asegúrese de cambiar su contraseña para aumentar la seguridad y para desactivar este mensaje" +msgstr "" +"Asegúrese de cambiar su contraseña para aumentar la seguridad y para " +"desactivar este mensaje" #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po index ce904d9b5a..cc135ea3c4 100644 --- a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:11 @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -227,7 +228,9 @@ msgstr "دفعه اول لاگین " msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "You have just finished installing Mayan EDMS, congratulations!" +msgstr "" +"You have just finished installing Mayan EDMS, " +"congratulations!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po index 275909f06c..4ce4e37314 100644 --- a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:11 @@ -44,15 +45,20 @@ msgstr "Erreur du serveur" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Une erreur vient de se produire. Elle a été signalée aux administrateurs du site par courriel et devrait être résolue rapidement. Merci de votre patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Une erreur vient de se produire. Elle a été signalée aux administrateurs du " +"site par courriel et devrait être résolue rapidement. Merci de votre " +"patience." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "Si vous avez besoin d'assistance, vous pouvez faire référence à cette erreur grâce à l'identifiant suivant :" +msgstr "" +"Si vous avez besoin d'assistance, vous pouvez faire référence à cette erreur " +"grâce à l'identifiant suivant :" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" @@ -180,7 +186,9 @@ msgstr "Pas de résultats" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Total (%(start)s - %(end)s surof %(total)s) (Page %(page_number)s sur %(total_pages)s)" +msgstr "" +"Total (%(start)s - %(end)s surof %(total)s) (Page %(page_number)s sur " +"%(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -202,7 +210,9 @@ msgstr "Démarrage" #: templates/appearance/home.html:24 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "Avant d'utiliser pleinement Mayan EDMS, les éléments suivants sont nécessaires :" +msgstr "" +"Avant d'utiliser pleinement Mayan EDMS, les éléments suivants sont " +"nécessaires :" #: templates/appearance/home.html:57 msgid "Space separated terms" @@ -228,11 +238,14 @@ msgstr "Première connexion" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "Vous venez de finaliser l'installation de Mayan EDMS, félicitations!" +msgstr "" +"Vous venez de finaliser l'installation de Mayan EDMS, " +"félicitations!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "Connectez-vous en utilisant les informations d'identification suivantes :" +msgstr "" +"Connectez-vous en utilisant les informations d'identification suivantes :" #: templates/appearance/login.html:26 #, python-format @@ -253,7 +266,9 @@ msgstr "Mot de passe : %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Assurez-vous de modifier votre mot de passe pour accroître la sécurité et pour ne plus avoir ce message." +msgstr "" +"Assurez-vous de modifier votre mot de passe pour accroître la sécurité et " +"pour ne plus avoir ce message." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po index 28fbda2e66..51b7f7df78 100644 --- a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po index dfa9876348..8f96b91a10 100644 --- a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:11 @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po index b08742ea44..ab8075a87f 100644 --- a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 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 79d049a27b..2599af500b 100644 --- a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Justin Albstbstmeijer , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Justin Albstbstmeijer \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -44,15 +45,20 @@ msgstr "Server fout" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Er heeft een fout plaatsgevonden. Dit is gerapporteerd via email aan de beheerders van deze site en zou snel verholpen moeten worden. Bedankt voor uw geduld." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Er heeft een fout plaatsgevonden. Dit is gerapporteerd via email aan de " +"beheerders van deze site en zou snel verholpen moeten worden. Bedankt voor " +"uw geduld." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "Als u hulp nodig heeft, kunt u naar deze fout refereren via de volgende identifier:" +msgstr "" +"Als u hulp nodig heeft, kunt u naar deze fout refereren via de volgende " +"identifier:" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" @@ -180,7 +186,9 @@ msgstr "Geen resultaten" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Totaal (%(start)s - %(end)s van %(total)s) (Pagina %(page_number)s van %(total_pages)s)" +msgstr "" +"Totaal (%(start)s - %(end)s van %(total)s) (Pagina %(page_number)s van " +"%(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -202,7 +210,9 @@ msgstr "Beginnen" #: templates/appearance/home.html:24 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "Voordat u volledig gebruik kunt maken van Mayan EDMS heeft u het volgende nodig:" +msgstr "" +"Voordat u volledig gebruik kunt maken van Mayan EDMS heeft u het volgende " +"nodig:" #: templates/appearance/home.html:57 msgid "Space separated terms" @@ -228,7 +238,8 @@ msgstr "Eerste aanmelding" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "U heeft de installatie volbracht Mayan EDMS, gefeliciteerd!" +msgstr "" +"U heeft de installatie volbracht Mayan EDMS, gefeliciteerd!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -253,7 +264,9 @@ msgstr "Wachtwoord: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Pas het wachtwoord aan om de beveiliging te verbeteren en om deze melding uit te schakelen." +msgstr "" +"Pas het wachtwoord aan om de beveiliging te verbeteren en om deze melding " +"uit te schakelen." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po index 653fdc20c3..f3ba8c856c 100644 --- a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 # Wojciech Warczakowski , 2016 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:11 msgid "Appearance" @@ -45,15 +47,19 @@ msgstr "Błąd serwera" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Wystąpił błąd. Wiadomość o tym została przekazana do administratorów i wkrótce problem zostanie rozwiązany. Dziękujemy za cierpliwość." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Wystąpił błąd. Wiadomość o tym została przekazana do administratorów i " +"wkrótce problem zostanie rozwiązany. Dziękujemy za cierpliwość." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "Jeśli potrzebujesz pomocy, możesz odwołać się do tego błędu poprzez następujący identyfikator:" +msgstr "" +"Jeśli potrzebujesz pomocy, możesz odwołać się do tego błędu poprzez " +"następujący identyfikator:" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" @@ -181,7 +187,9 @@ msgstr "Brak wyników" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "Razem (%(start)s - %(end)s z %(total)s) (Strona %(page_number)s z %(total_pages)s)" +msgstr "" +"Razem (%(start)s - %(end)s z %(total)s) (Strona %(page_number)s z " +"%(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -254,7 +262,9 @@ msgstr "Hasło: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Aby poprawić bezpieczeństwo i usunąć ten komunikat, nie zapomnij zmienić hasła." +msgstr "" +"Aby poprawić bezpieczeństwo i usunąć ten komunikat, nie zapomnij zmienić " +"hasła." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po index 9e5d4060a7..b2fa264b92 100644 --- a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -252,7 +253,9 @@ msgstr "Senha: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Certifique-se de que altera a senha para aumentar a segurança e que desativa esta mensagem." +msgstr "" +"Certifique-se de que altera a senha para aumentar a segurança e que desativa " +"esta mensagem." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" 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 1894ef15f3..6ddcb4096b 100644 --- a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:11 @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -227,7 +228,8 @@ msgstr "Primeiro login" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "Você acaba de terminar de instalar Maia EDMS , parabéns!" +msgstr "" +"Você acaba de terminar de instalar Maia EDMS , parabéns!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -252,7 +254,9 @@ msgstr "Senha: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Certifique-se de alterar a senha para aumentar a segurança e para desativar esta mensagem" +msgstr "" +"Certifique-se de alterar a senha para aumentar a segurança e para desativar " +"esta mensagem" #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" 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 8f28b1c415..0a590a6045 100644 --- a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:11 msgid "Appearance" @@ -43,8 +45,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -227,7 +229,8 @@ msgstr "Prima autentificare" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "Tocmai ați terminat de instalat Mayan EDMS, felicitări!" +msgstr "" +"Tocmai ați terminat de instalat Mayan EDMS, felicitări!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -252,7 +255,9 @@ msgstr "Parola: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Asigurați-vă că pentru a schimba parola pentru a spori securitatea și pentru a dezactiva acest mesaj." +msgstr "" +"Asigurați-vă că pentru a schimba parola pentru a spori securitatea și pentru " +"a dezactiva acest mesaj." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po index 7e07be52d3..5e52d91fc4 100644 --- a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:11 msgid "Appearance" @@ -43,8 +46,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -227,7 +230,8 @@ msgstr "Первое время входа в систему" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "Вы только что закончили установку Mayan EDMS, поздравляем!" +msgstr "" +"Вы только что закончили установку Mayan EDMS, поздравляем!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -252,7 +256,9 @@ msgstr "Пароль: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Обязательно измените пароль для повышения безопасности и отключения этого сообщения." +msgstr "" +"Обязательно измените пароль для повышения безопасности и отключения этого " +"сообщения." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po index 6691d3e3a5..0d90796a3c 100644 --- a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:11 msgid "Appearance" @@ -43,8 +45,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 diff --git a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po index f82db42f20..4e11bb5218 100644 --- a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:11 @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -227,7 +228,9 @@ msgstr "Đăng nhập lần đầu" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "Bạn đã cài đặt xong Hệ thống quản lý tài liệu điện tử Mayan EDMS. Xin chúc mừng bạn!" +msgstr "" +"Bạn đã cài đặt xong Hệ thống quản lý tài liệu điện tử Mayan EDMS. Xin chúc mừng bạn!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -252,7 +255,9 @@ msgstr "Mật khẩu: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "Bạn nên thay đổi mật khẩu để tăng tính bảo mật và để không nhìn thấy lời nhắc này nữa." +msgstr "" +"Bạn nên thay đổi mật khẩu để tăng tính bảo mật và để không nhìn thấy lời " +"nhắc này nữa." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po index a507b8e0f9..527907240b 100644 --- a/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:11 @@ -43,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via " -"e-mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po index 38fe7d892f..6fdfe6f0a0 100644 --- a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:17 settings.py:7 msgid "Authentication" diff --git a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po index b20cfb19e8..3fac9f8399 100644 --- a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 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 06b8c32305..1019583054 100644 --- a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:17 settings.py:7 msgid "Authentication" diff --git a/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po index 62a8580a8d..207a52bc5f 100644 --- a/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/da/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 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 d57341051f..5a6ef812ae 100644 --- a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -34,7 +35,9 @@ msgstr "Passwort" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass das Passwortfeld Groß- und Kleinschreibung unterscheidet." +msgstr "" +"Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass " +"das Passwortfeld Groß- und Kleinschreibung unterscheidet." #: forms.py:26 msgid "This account is inactive." @@ -52,7 +55,9 @@ msgstr "Passwort ändern" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-Mail-Adresse" +msgstr "" +"Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-" +"Mail-Adresse" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po index 38179e8e85..77844e6771 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: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-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 fbadaca652..7d1496ec6f 100644 --- a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -34,7 +35,9 @@ msgstr "Contraseña" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Introduzca una dirección de correo y contraseña válidos. Recuerde que la contraseña es sensible a mayúsculas." +msgstr "" +"Introduzca una dirección de correo y contraseña válidos. Recuerde que la " +"contraseña es sensible a mayúsculas." #: forms.py:26 msgid "This account is inactive." @@ -52,7 +55,9 @@ msgstr "Cambiar contraseña" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Controla el mecanismo utilizado para el usuario autenticado. Las opciones son: 'username' nombre de usuario, 'email' correo electrónico" +msgstr "" +"Controla el mecanismo utilizado para el usuario autenticado. Las opciones " +"son: 'username' nombre de usuario, 'email' correo electrónico" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po index 52fc7045aa..dd7cf6616b 100644 --- a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 @@ -33,7 +34,9 @@ msgstr "کلمه عبور" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "لطفا از ایمیل و کلمه عبور معتبر جهت ورود استفاده کنید. درضمن کلمه عبور case-sensitive است." +msgstr "" +"لطفا از ایمیل و کلمه عبور معتبر جهت ورود استفاده کنید. درضمن کلمه عبور case-" +"sensitive است." #: forms.py:26 msgid "This account is inactive." diff --git a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po index 1b8d84844a..2e2a71f753 100644 --- a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 settings.py:7 @@ -34,7 +35,9 @@ msgstr "Mot de passe" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Veuillez entrer un courriel et mot de passe valide. Noter que le mot de passe est sensible à la casse." +msgstr "" +"Veuillez entrer un courriel et mot de passe valide. Noter que le mot de " +"passe est sensible à la casse." #: forms.py:26 msgid "This account is inactive." @@ -52,7 +55,9 @@ msgstr "Changer le mot de passe" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Contrôle du mécanisme utilisé pour identifier l'utilisateur. les options sont: nom d'utilisateur, courriel" +msgstr "" +"Contrôle du mécanisme utilisé pour identifier l'utilisateur. les options " +"sont: nom d'utilisateur, courriel" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po index a827f10030..836cebd8d8 100644 --- a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 diff --git a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po index 7b205e64f5..f686193ac3 100644 --- a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 @@ -33,7 +34,8 @@ msgstr "Password" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Silahkan tuliskan alamat email yang benar. kolom Password Case-Sensitive" +msgstr "" +"Silahkan tuliskan alamat email yang benar. kolom Password Case-Sensitive" #: forms.py:26 msgid "This account is inactive." diff --git a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po index 0160a94dfc..1b13a54234 100644 --- a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -33,7 +34,9 @@ msgstr "Password" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Inserisci una corretta email e password. Si noti che il campo password è case-sensitive." +msgstr "" +"Inserisci una corretta email e password. Si noti che il campo password è " +"case-sensitive." #: forms.py:26 msgid "This account is inactive." 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 92fb7886b9..e9892c4314 100644 --- a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Justin Albstbstmeijer , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Justin Albstbstmeijer \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -34,7 +35,9 @@ msgstr "Wachtwoord" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Vul het juiste email adres en wachtwoord in. Houd er rekening mee dat het wachtwoord-invulveld hoofdlettergevoelig is." +msgstr "" +"Vul het juiste email adres en wachtwoord in. Houd er rekening mee dat het " +"wachtwoord-invulveld hoofdlettergevoelig is." #: forms.py:26 msgid "This account is inactive." @@ -52,7 +55,9 @@ msgstr "Pas wachtwoord aan" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Beinvloed de manier waarop gebruikers worden geauthenticeerd. Opties zijn: gebruikersnaam, email" +msgstr "" +"Beinvloed de manier waarop gebruikers worden geauthenticeerd. Opties zijn: " +"gebruikersnaam, email" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po index de2d944d18..55d7f365d3 100644 --- a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:17 settings.py:7 msgid "Authentication" @@ -52,7 +54,9 @@ msgstr "Zmień hasło" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "Kontroluje mechanizm uwierzytelniania użytkownika. Opcje: nazwa użytkownika, email" +msgstr "" +"Kontroluje mechanizm uwierzytelniania użytkownika. Opcje: nazwa użytkownika, " +"email" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po index 5694e59c71..0748cd95b6 100644 --- a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Manuela Silva , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Manuela Silva \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 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 6b1e1ab9a2..a9c7eb7359 100644 --- a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 settings.py:7 @@ -33,7 +34,9 @@ msgstr "Senha" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "Por favor, indique um e-mail e senha corretamente. Note-se que o campo de senha diferencia maiúsculas de minúsculas." +msgstr "" +"Por favor, indique um e-mail e senha corretamente. Note-se que o campo de " +"senha diferencia maiúsculas de minúsculas." #: forms.py:26 msgid "This account is inactive." 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 400f4afbda..9e102dc0d7 100644 --- a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:17 settings.py:7 msgid "Authentication" diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po index 67a5c2268f..41134ff1de 100644 --- a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:17 settings.py:7 msgid "Authentication" 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 628c72da8d..a4cc39d6bb 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: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" 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 17c6b9fe2e..e49a216afd 100644 --- a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 diff --git a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po index bc398fe795..b14271d14b 100644 --- a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:41-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po index 42234ad4c8..c2c529c5b7 100644 --- a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -47,12 +49,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "مستخدم" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +61,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +117,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +178,6 @@ msgstr "Check out details for document: %s" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +185,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +246,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po index 35d324a0a5..e78759b8dd 100644 --- a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -47,12 +48,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Потребител" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +60,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +116,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +177,6 @@ msgstr "Данни от проверката на документ: %s" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +184,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +245,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." 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 c336f81367..543f278221 100644 --- a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -47,12 +49,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Korisnik" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +61,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +117,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +178,6 @@ msgstr "Odjavni detalji za dokument: %s" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +185,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +246,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po index 4533a0614b..eed2e973c4 100644 --- a/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -47,12 +48,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Bruger" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +60,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +116,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +177,6 @@ msgstr "" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +184,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +245,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." 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 28e1da98bb..2ff515100b 100644 --- a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -48,12 +49,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Benutzer" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -62,7 +61,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -119,7 +117,6 @@ msgid "Block new version upload" msgstr "Hochladen neuer Versionen sperren" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "Ausbuchungsende muss in der Zukunft liegen." @@ -181,17 +178,15 @@ msgstr "Ausbuchungsdetails für Dokument %s" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s trotzdem zwingend eingebucht werden?" +msgstr "" +"Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s " +"trotzdem zwingend eingebucht werden?" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Dokument %s einbuchen?" @@ -253,11 +248,11 @@ msgstr "Einheit" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po index 893f513e16..b9466b1348 100644 --- a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2012-07-10 15:47+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po index 5e78df76d1..766f52d434 100644 --- a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -48,12 +49,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Usuario" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -62,7 +61,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -119,7 +117,6 @@ msgid "Block new version upload" msgstr "Restringir la subida de nuevas versiones" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "Fecha y hora de la expiración de la reserva deben ser en el futuro." @@ -181,17 +178,15 @@ msgstr "Detalles de la reserva para el documento: %s" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Usted no reservó inicialmente este documento. ¿Devolver forzosamente el documento: %s?" +msgstr "" +"Usted no reservó inicialmente este documento. ¿Devolver forzosamente el " +"documento: %s?" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "¿Devolver el documento: %s?" @@ -253,11 +248,11 @@ msgstr "Periodo" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po index 3e54f60f4b..77e53ff182 100644 --- a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 links.py:30 @@ -47,12 +48,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "کاربر" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +60,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +116,6 @@ msgid "Block new version upload" msgstr "آپلود نسخه و یا بلوک جدید" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +177,6 @@ msgstr "جزئیات خروج و یا Checkout سند: %s" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +184,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +245,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po index 746d9d5f4e..7e69e9cccd 100644 --- a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Thierry Schott , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 links.py:30 @@ -48,12 +49,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Utilisateur" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -62,7 +61,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -119,9 +117,9 @@ msgid "Block new version upload" msgstr "Empêcher l'import d'une nouvelle version" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." -msgstr "La date et l'heure d'expiration du verrou doit se situer dans le futur." +msgstr "" +"La date et l'heure d'expiration du verrou doit se situer dans le futur." #: models.py:87 permissions.py:7 msgid "Document checkout" @@ -181,17 +179,15 @@ msgstr "Détails du verrou pour le document : %s" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Ce n'est pas vous qui avec posé le verrou sur ce document. Êtes vous certain de vouloir forcer le déverrouillage de : %s?" +msgstr "" +"Ce n'est pas vous qui avec posé le verrou sur ce document. Êtes vous certain " +"de vouloir forcer le déverrouillage de : %s?" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Verrouiller le document : %s ?" @@ -253,11 +249,11 @@ msgstr "Période" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po index 0b00ed036e..e7e6af2bfa 100644 --- a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -47,12 +48,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Felhasználó" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +60,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +116,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +177,6 @@ msgstr "" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +184,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +245,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po index e36df2a1b8..60072be350 100644 --- a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 links.py:30 @@ -47,12 +48,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Pengguna" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +60,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +116,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +177,6 @@ msgstr "" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +184,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +245,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po index df2042cf8e..c02f3ca6c5 100644 --- a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:09-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -47,12 +48,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Utente" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +60,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +116,6 @@ msgid "Block new version upload" msgstr "Blocca la nuova versione in caricamento" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +177,6 @@ msgstr "Dettaglio del check out per il documento: %s" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +184,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +245,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." 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 d8494c162a..69e3588ce4 100644 --- a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Justin Albstbstmeijer , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -48,12 +49,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Gebruiker" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -62,7 +61,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -119,7 +117,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -181,9 +178,6 @@ msgstr "" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -191,7 +185,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -253,11 +246,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po index 4f875ab9fb..14ae02f1f6 100644 --- a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Wojciech Warczakowski , 2016 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -48,12 +50,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Użytkownik" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -62,7 +62,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -104,7 +103,8 @@ msgstr "Data i czas blokady" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "Liczba dni, godzin lub minut w trakcie których dokument będzie zablokowany." +msgstr "" +"Liczba dni, godzin lub minut w trakcie których dokument będzie zablokowany." #: models.py:35 msgid "Check out expiration date and time" @@ -119,7 +119,6 @@ msgid "Block new version upload" msgstr "Blokuj załadowanie nowej wersji" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "Wygaśnięcie blokady musi nastąpić w przyszłości." @@ -181,17 +180,15 @@ msgstr "Szczegóły blokady dokumentu: %s" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "Ten dokument nie został przez ciebie zablokowany. Czy wymusić odblokowanie dokumentu: %s?" +msgstr "" +"Ten dokument nie został przez ciebie zablokowany. Czy wymusić odblokowanie " +"dokumentu: %s?" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Odblokować dokument: %s?" @@ -253,11 +250,11 @@ msgstr "Okres" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po index f79bc4a302..42a54a5455 100644 --- a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -47,12 +48,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Utilizador" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +60,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +116,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +177,6 @@ msgstr "" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +184,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +245,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." 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 64a0895a8a..400f47a666 100644 --- a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 links.py:30 @@ -47,12 +48,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Usuário" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +60,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -103,7 +101,9 @@ msgstr "Data e hora do Check out" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "Quantidade de tempo para armazenar o documento com check-out em poucos minutos." +msgstr "" +"Quantidade de tempo para armazenar o documento com check-out em poucos " +"minutos." #: models.py:35 msgid "Check out expiration date and time" @@ -118,7 +118,6 @@ msgid "Block new version upload" msgstr "Permitir restrições imperativas do check out" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +179,6 @@ msgstr "Confira detalhes sobre documento:%s " #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +186,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +247,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." 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 f8e771e2da..6a7c0126eb 100644 --- a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -47,12 +49,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "utilizator" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +61,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -103,7 +102,8 @@ msgstr "" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "Total timp alocat pentru a deține documentul pentru aprobare în minute." +msgstr "" +"Total timp alocat pentru a deține documentul pentru aprobare în minute." #: models.py:35 msgid "Check out expiration date and time" @@ -118,7 +118,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +179,6 @@ msgstr "Verificat detaliile documentului:% s" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +186,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +247,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po index feb667ce9d..179c694b4f 100644 --- a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -47,12 +50,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Пользователь" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +62,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +118,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +179,6 @@ msgstr "Подробности бронирования %s" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +186,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +247,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." 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 fa93eef400..f69ee0b4dc 100644 --- a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -47,12 +49,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +61,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +117,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +178,6 @@ msgstr "" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +185,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +246,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." 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 3c38f2f1fe..e49d10e5a3 100644 --- a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 links.py:30 @@ -47,12 +48,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "Người dùng" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +60,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +116,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +177,6 @@ msgstr "" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +184,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +245,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po index 46fcace0f0..59697f4a56 100644 --- a/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 links.py:30 @@ -47,12 +48,10 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 -#| msgid "User: %s" msgid "User" msgstr "用户" #: forms.py:41 -#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,7 +60,6 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 -#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -118,7 +116,6 @@ msgid "Block new version upload" msgstr "" #: models.py:54 -#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -180,9 +177,6 @@ msgstr "文档:%s的检出信息" #: views.py:136 #, python-format -#| msgid "" -#| "dn't originally checked out this document. Are you sure you wish cefully " -#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -190,7 +184,6 @@ msgstr "" #: views.py:140 #, python-format -#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -252,11 +245,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, hours " -#~ "and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, " +#~ "hours and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po index 0ac098bec0..92610b0e22 100644 --- a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -35,45 +37,45 @@ msgstr "الاختيار" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "إضافة" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "إزالة" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -175,13 +177,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -198,8 +197,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -219,7 +217,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -229,7 +226,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -283,11 +279,11 @@ msgstr "لا شيء" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -296,11 +292,11 @@ msgstr "لا شيء" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po index abf373de9f..a7de914f16 100644 --- a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -35,45 +36,45 @@ msgstr "" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Добави" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Премахнете" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -175,13 +176,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -198,8 +196,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -219,7 +216,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -229,7 +225,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -283,11 +278,11 @@ msgstr "Няма" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -296,11 +291,11 @@ msgstr "Няма" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 47810f2347..507eb8a780 100644 --- a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -35,45 +37,45 @@ msgstr "Odabir" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Dodati" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Ukloniti" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -175,13 +177,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -198,8 +197,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -219,7 +217,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -229,7 +226,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -283,11 +279,11 @@ msgstr "Nijedno" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -296,11 +292,11 @@ msgstr "Nijedno" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/da/LC_MESSAGES/django.po b/mayan/apps/common/locale/da/LC_MESSAGES/django.po index 4c7de89ddb..90c0d12dd1 100644 --- a/mayan/apps/common/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/da/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -34,45 +35,45 @@ msgstr "" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -174,13 +175,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -197,8 +195,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -218,7 +215,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -228,7 +224,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -282,11 +277,11 @@ msgstr "Ingen" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -295,11 +290,11 @@ msgstr "Ingen" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 88c57fb3b9..bc7751325b 100644 --- a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "Allgemein" @@ -38,45 +39,45 @@ msgstr "Auswahl" msgid "Filter" msgstr "Filter" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "Auswahl %s kann nicht übertragen werden" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Hinzufügen" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Entfernen" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -178,14 +179,14 @@ msgid "User locale profiles" msgstr "Benutzerlokalisierungsprofile" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." -msgstr "Temporäres Verzeichnis für die Speicherung von Miniaturen, Vorschauen und temporären Dateien. Wenn keines definiert ist, wird es automatisch erstellt (per tempfile.mkdtemp())." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." +msgstr "" +"Temporäres Verzeichnis für die Speicherung von Miniaturen, Vorschauen und " +"temporären Dateien. Wenn keines definiert ist, wird es automatisch erstellt " +"(per tempfile.mkdtemp())." #: settings.py:22 msgid "A storage backend that all workers can use to share files." @@ -193,7 +194,8 @@ msgstr "Datenbackend, das alle Worker benutzen können, um Dateien zu teilen" #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." -msgstr "Eine Ganzzahl, die die Anzahl der angezeigten Datensätze pro Seite angibt." +msgstr "" +"Eine Ganzzahl, die die Anzahl der angezeigten Datensätze pro Seite angibt." #: settings.py:34 msgid "Automatically enable logging to all apps." @@ -201,9 +203,10 @@ msgstr "Protokollierung für alle Apps automatisch freischalten." #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung auf einen Datenbankcommit warten." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung " +"auf einen Datenbankcommit warten." #: views.py:37 msgid "Current user details" @@ -222,7 +225,6 @@ msgid "Edit current user locale profile details" msgstr "Aktuelle Benutzerlokalisierungsdetails bearbeiten" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "Filterauswahl" @@ -232,7 +234,6 @@ msgid "Results for filter: %s" msgstr "Ergebnis für Filter %s" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "Filter nicht gefunden" @@ -286,11 +287,11 @@ msgstr "Kein(e)" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -299,11 +300,11 @@ msgstr "Kein(e)" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/en/LC_MESSAGES/django.po b/mayan/apps/common/locale/en/LC_MESSAGES/django.po index 30632b7cd9..61846d570f 100644 --- a/mayan/apps/common/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/common/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: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -34,45 +34,45 @@ msgstr "Selection" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, fuzzy, python-format msgid "Unable to transfer selection: %s." msgstr "Unable to add %(selection)s to %(right_list_title)s." -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Add" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Remove" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index 477a8a62a1..204421b051 100644 --- a/mayan/apps/common/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "Común" @@ -37,45 +38,45 @@ msgstr "Selección" msgid "Filter" msgstr "Filtro" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "No se ha podido transferir la selección: %s." -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Agregar" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Eliminar" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -177,18 +178,20 @@ msgid "User locale profiles" msgstr "Perfiles de localización de usuario" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." -msgstr "El directorio temporaro es el utilizado por todo el proyecto para almacenar miniaturas, previsualizaciones y los archivos temporales. Si no se especifica ninguno, se creará utilizando tempfile.mkdtemp ()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." +msgstr "" +"El directorio temporaro es el utilizado por todo el proyecto para almacenar " +"miniaturas, previsualizaciones y los archivos temporales. Si no se " +"especifica ninguno, se creará utilizando tempfile.mkdtemp ()." #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "Un soporte de almacenamiento que todos los 'workers' puedan utilizar para compartir archivos." +msgstr "" +"Un soporte de almacenamiento que todos los 'workers' puedan utilizar para " +"compartir archivos." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -200,8 +203,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -221,7 +223,6 @@ msgid "Edit current user locale profile details" msgstr "Editar los detalles del perfil del usuario local" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -231,7 +232,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "Filtro no encontrado" @@ -285,11 +285,11 @@ msgstr "Ninguno" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -298,11 +298,11 @@ msgstr "Ninguno" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po index 1e8d5e14fe..a9550e5488 100644 --- a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -35,45 +36,45 @@ msgstr "انتخاب" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "افزودن" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "حذف" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -175,13 +176,10 @@ msgid "User locale profiles" msgstr "پروفایل محلی کاربر" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -198,8 +196,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -219,7 +216,6 @@ msgid "Edit current user locale profile details" msgstr "ویرایش شرح پروفایل محلی کاربر فعلی" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -229,7 +225,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -283,11 +278,11 @@ msgstr "هیچکدام." #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -296,11 +291,11 @@ msgstr "هیچکدام." #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po index ed9eaa29b2..7ee617c7f7 100644 --- a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Franck Boucher , 2016 @@ -13,17 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "Commun" @@ -39,45 +40,45 @@ msgstr "Sélection" msgid "Filter" msgstr "Filtre" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "Impossible de transférer la sélection: %s." -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Ajouter" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Supprimer" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -179,22 +180,25 @@ msgid "User locale profiles" msgstr "Paramètres régionaux des profils utilisateur" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." -msgstr "Répertoire temporaire utilisé pour stocker les miniatures, les aperçus et les fichiers temporaires. Si aucun n'est indiqué, celui-ci sera crée à l'aide de la fonction tempfile.mdktemp()" +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." +msgstr "" +"Répertoire temporaire utilisé pour stocker les miniatures, les aperçus et " +"les fichiers temporaires. Si aucun n'est indiqué, celui-ci sera crée à " +"l'aide de la fonction tempfile.mdktemp()" #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "Un espace de stockage que tous les agents pourront utiliser pour partager des fichiers." +msgstr "" +"Un espace de stockage que tous les agents pourront utiliser pour partager " +"des fichiers." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." -msgstr "Valeur entière indiquant combien d'objets sont affichés sur chaque page." +msgstr "" +"Valeur entière indiquant combien d'objets sont affichés sur chaque page." #: settings.py:34 msgid "Automatically enable logging to all apps." @@ -202,9 +206,10 @@ msgstr "Activation automatique de la trace pour toutes les applications." #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." -msgstr "Durée pendant laquelle les tâches d'arrière plan sont différées pour les tâches dépendant d'une mise à jour de la base de données." +"Time to delay background tasks that depend on a database commit to propagate." +msgstr "" +"Durée pendant laquelle les tâches d'arrière plan sont différées pour les " +"tâches dépendant d'une mise à jour de la base de données." #: views.py:37 msgid "Current user details" @@ -223,7 +228,6 @@ msgid "Edit current user locale profile details" msgstr "Éditer le détail des paramètres régionaux de l'utilisateur actuel" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "Sélection du filtre" @@ -233,7 +237,6 @@ msgid "Results for filter: %s" msgstr "Résultats pour le filtre : %s" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "Filtre non trouvé" @@ -287,11 +290,11 @@ msgstr "Aucun" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -300,11 +303,11 @@ msgstr "Aucun" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po index 92997ea08f..974ff6e1c1 100644 --- a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -34,45 +35,45 @@ msgstr "" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -174,13 +175,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -197,8 +195,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -218,7 +215,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -228,7 +224,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -282,11 +277,11 @@ msgstr "Semmi" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -295,11 +290,11 @@ msgstr "Semmi" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.po b/mayan/apps/common/locale/id/LC_MESSAGES/django.po index 3c67eea47a..45296cefd4 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/id/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -34,45 +35,45 @@ msgstr "" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "tambah" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "hapus" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -174,13 +175,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -197,8 +195,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -218,7 +215,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -228,7 +224,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -282,11 +277,11 @@ msgstr "" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -295,11 +290,11 @@ msgstr "" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.po b/mayan/apps/common/locale/it/LC_MESSAGES/django.po index 61d7bedb54..a509c64176 100644 --- a/mayan/apps/common/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -38,45 +39,45 @@ msgstr "Selezione" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Aggiungi" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Rimuovi" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -178,18 +179,17 @@ msgid "User locale profiles" msgstr "Profili dell'utente locale" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "Un backend di memorizzazione che tutti i lavoratori possono utilizzare per condividere i file." +msgstr "" +"Un backend di memorizzazione che tutti i lavoratori possono utilizzare per " +"condividere i file." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -201,8 +201,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -222,7 +221,6 @@ msgid "Edit current user locale profile details" msgstr "Modificare i dettagli del profilo corrente dell'utente" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -232,7 +230,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -286,11 +283,11 @@ msgstr "Nessuno" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -299,11 +296,11 @@ msgstr "Nessuno" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 ec4d8807dd..3955bb052f 100644 --- a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # woei , 2014 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -35,45 +36,45 @@ msgstr "Selectie" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Voeg toe" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Verwijder" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -175,13 +176,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -198,8 +196,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -219,7 +216,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -229,7 +225,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -283,11 +278,11 @@ msgstr "Geen" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -296,11 +291,11 @@ msgstr "Geen" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po index 1b7ad0cadf..71f2fa2dd3 100644 --- a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -13,17 +13,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "Ustawienia wspólne" @@ -39,45 +41,45 @@ msgstr "Zaznaczenie" msgid "Filter" msgstr "Filtr" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "Nie można przenieść zaznaczenia: %s." -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Dodaj" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Usuń" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -179,18 +181,20 @@ msgid "User locale profiles" msgstr "Profile regionalne użytkownika" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." -msgstr "Katalog tymczasowy zostanie użyty do przechowywania miniaturek i plików tymczasowych. W przypadku braku takiego katalogu zostanie on utworzony przy użyciu tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." +msgstr "" +"Katalog tymczasowy zostanie użyty do przechowywania miniaturek i plików " +"tymczasowych. W przypadku braku takiego katalogu zostanie on utworzony przy " +"użyciu tempfile.mkdtemp()." #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie plików." +msgstr "" +"Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie " +"plików." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -202,8 +206,7 @@ msgstr "Włącz dla wszystkich aplikacji automatyczny zapis zdarzeń." #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "Czas opóźnienia wykonania zadań zależnych od operacji na bazie danych." #: views.py:37 @@ -223,7 +226,6 @@ msgid "Edit current user locale profile details" msgstr "Edytuj profil regionalny użytkownika" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "Wybór filtru" @@ -233,7 +235,6 @@ msgid "Results for filter: %s" msgstr "Wyniki dla filtru: %s" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "Nie znaleziono filtru" @@ -287,11 +288,11 @@ msgstr "Brak" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -300,11 +301,11 @@ msgstr "Brak" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po index 5ca337e12f..69083c1ac5 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: # Translators: # Emerson Soares , 2011 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -37,45 +38,45 @@ msgstr "Seleção" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Adicionar" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Remover" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -177,13 +178,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -200,8 +198,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -221,7 +218,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -231,7 +227,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -285,11 +280,11 @@ msgstr "Nenhum" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -298,11 +293,11 @@ msgstr "Nenhum" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 3141d949bb..95e850869b 100644 --- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -37,45 +38,45 @@ msgstr "Seleção" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Adicionar" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Remover" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -177,18 +178,17 @@ msgid "User locale profiles" msgstr "Perfis de localidade do usuário" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 msgid "A storage backend that all workers can use to share files." -msgstr "Um backend de armazenamento que todos os trabalhadores podem usar para compartilhar arquivos." +msgstr "" +"Um backend de armazenamento que todos os trabalhadores podem usar para " +"compartilhar arquivos." #: settings.py:28 msgid "An integer specifying how many objects should be displayed per page." @@ -200,8 +200,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -221,7 +220,6 @@ msgid "Edit current user locale profile details" msgstr "Editar Usuário Atual - detalhes do perfil de localidade" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -231,7 +229,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -285,11 +282,11 @@ msgstr "Nenhum" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -298,11 +295,11 @@ msgstr "Nenhum" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 7374dd1cab..c8d383ba63 100644 --- a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -35,45 +37,45 @@ msgstr "selecţie" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Adaugă" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Şterge" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -175,13 +177,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -198,8 +197,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -219,7 +217,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -229,7 +226,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -283,11 +279,11 @@ msgstr "Nici unul" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -296,11 +292,11 @@ msgstr "Nici unul" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po index 2ce40539f5..7e70547b1e 100644 --- a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po @@ -1,24 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "Общий" @@ -34,45 +37,45 @@ msgstr "Выбор" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Добавить" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Удалить" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -174,14 +177,14 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." -msgstr "Временный каталог, используемый сайтом для хранения миниатюр, превью и временные файлы. Если не указан, то он будет создан с помощью tempfile.mkdtemp ()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." +msgstr "" +"Временный каталог, используемый сайтом для хранения миниатюр, превью и " +"временные файлы. Если не указан, то он будет создан с помощью tempfile." +"mkdtemp ()." #: settings.py:22 msgid "A storage backend that all workers can use to share files." @@ -197,8 +200,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -218,7 +220,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -228,7 +229,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -282,11 +282,11 @@ msgstr "Ни один" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -295,11 +295,11 @@ msgstr "Ни один" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 ef3bb902e7..e9fc64cfea 100644 --- a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -34,45 +36,45 @@ msgstr "" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -174,13 +176,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -197,8 +196,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -218,7 +216,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -228,7 +225,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -282,11 +278,11 @@ msgstr "Brez" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -295,11 +291,11 @@ msgstr "Brez" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" 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 fa92c31040..4dc0ad1641 100644 --- a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -35,45 +36,45 @@ msgstr "Lựa chọn" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "Thêm" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "Xóa" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -175,13 +176,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -198,8 +196,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -219,7 +216,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -229,7 +225,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -283,11 +278,11 @@ msgstr "None" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -296,11 +291,11 @@ msgstr "None" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po index 2c24978ce8..9be9436cb6 100644 --- a/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:70 settings.py:9 +#: apps.py:72 settings.py:9 msgid "Common" msgstr "" @@ -35,45 +36,45 @@ msgstr "选择" msgid "Filter" msgstr "" -#: generics.py:123 +#: generics.py:127 #, python-format msgid "Unable to transfer selection: %s." msgstr "" -#: generics.py:147 +#: generics.py:151 msgid "Add" msgstr "新增" -#: generics.py:158 +#: generics.py:162 msgid "Remove" msgstr "移除" -#: generics.py:284 +#: generics.py:288 #, python-format msgid "%(object)s not created, error: %(error)s" msgstr "" -#: generics.py:295 +#: generics.py:299 #, python-format msgid "%(object)s created successfully." msgstr "" -#: generics.py:320 +#: generics.py:324 #, python-format msgid "%(object)s not deleted, error: %(error)s." msgstr "" -#: generics.py:331 +#: generics.py:335 #, python-format msgid "%(object)s deleted successfully." msgstr "" -#: generics.py:372 +#: generics.py:380 #, python-format msgid "%(object)s not updated, error: %(error)s." msgstr "" -#: generics.py:383 +#: generics.py:391 #, python-format msgid "%(object)s updated successfully." msgstr "" @@ -175,13 +176,10 @@ msgid "User locale profiles" msgstr "" #: settings.py:13 -#| msgid "" -#| "ary directory used site wide to store thumbnails, previews and porary es. " -#| "If none is specified, one will be created using pfile.mkdtemp()" msgid "" "Temporary directory used site wide to store thumbnails, previews and " -"temporary files. If none is specified, one will be created using " -"tempfile.mkdtemp()." +"temporary files. If none is specified, one will be created using tempfile." +"mkdtemp()." msgstr "" #: settings.py:22 @@ -198,8 +196,7 @@ msgstr "" #: settings.py:40 msgid "" -"Time to delay background tasks that depend on a database commit to " -"propagate." +"Time to delay background tasks that depend on a database commit to propagate." msgstr "" #: views.py:37 @@ -219,7 +216,6 @@ msgid "Edit current user locale profile details" msgstr "" #: views.py:113 -#| msgid "Selection" msgid "Filter selection" msgstr "" @@ -229,7 +225,6 @@ msgid "Results for filter: %s" msgstr "" #: views.py:136 -#| msgid "Page not found" msgid "Filter not found" msgstr "" @@ -283,11 +278,11 @@ msgstr "无" #~ msgstr "Email" #~ msgid "" -#~ "Please enter a correct email and password. Note that the password field is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password field " +#~ "is case-sensitive." #~ msgstr "" -#~ "Please enter a correct email and password. Note that the password fields is " -#~ "case-sensitive." +#~ "Please enter a correct email and password. Note that the password fields " +#~ "is case-sensitive." #~ msgid "This account is inactive." #~ msgstr "This account is inactive." @@ -296,11 +291,11 @@ msgstr "无" #~ msgstr "change password" #~ msgid "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgstr "" -#~ "Controls the mechanism used to authenticated user. Options are: username, " -#~ "email" +#~ "Controls the mechanism used to authenticated user. Options are: " +#~ "username, email" #~ msgid "Allow non authenticated users, access to all views" #~ msgstr "Allow non authenticated users, access to all views" diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po index ae0c09175b..5e043b6f58 100644 --- a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -41,7 +43,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -111,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po index 53e15abac1..856a8aeb0b 100644 --- a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -41,7 +42,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -111,7 +111,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,14 +187,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +506,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +626,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 d8accca7cd..69d743f75a 100644 --- a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -41,7 +43,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -111,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/da/LC_MESSAGES/django.po b/mayan/apps/converter/locale/da/LC_MESSAGES/django.po index b3417bca59..b693d2aead 100644 --- a/mayan/apps/converter/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -40,7 +41,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -110,7 +110,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -187,14 +186,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +505,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +625,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 338542cdd6..dc5472fbbb 100644 --- a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -42,7 +43,6 @@ msgid "Exception determining PDF page count; %s" msgstr "Ausnahme bei der Ermittlung der PDF-Seitenanzahl: %s" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "Kein Office-Dateiformat" @@ -87,7 +87,9 @@ msgstr "Transformationen" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird automatisch eine Reihenfolge zugewiesen." +msgstr "" +"Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird " +"automatisch eine Reihenfolge zugewiesen." #: models.py:38 msgid "Name" @@ -97,7 +99,9 @@ msgstr "Name" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Argumemte für die Transformation als YAML dictionary eingeben, z.B: {\"degrees\": 180}" +msgstr "" +"Argumemte für die Transformation als YAML dictionary eingeben, z.B: " +"{\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -112,7 +116,6 @@ msgid "Edit transformations" msgstr "Transformationen bearbeiten" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Transformationen anzeigen" @@ -135,7 +138,9 @@ msgstr "Einen gültigen YAML Wert eingeben" #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Transformation \"%(transformation)s\" für %(content_object)s wirklich löschen?" +msgstr "" +"Transformation \"%(transformation)s\" für %(content_object)s wirklich " +"löschen?" #: views.py:139 #, python-format @@ -145,7 +150,8 @@ msgstr "Transformation erstellen für %s" #: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" +msgstr "" +"Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" #: views.py:238 #, python-format @@ -189,14 +195,13 @@ msgstr "Transformationen von %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -509,9 +514,11 @@ msgstr "Transformationen von %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,7 +634,8 @@ msgstr "Transformationen von %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po index 6a2e6f4bc6..3d333358c1 100644 --- a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/converter/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: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po index 6670ed8246..2a804a50b5 100644 --- a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lory977 , 2015 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -42,7 +43,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -112,7 +112,6 @@ msgid "Edit transformations" msgstr "Editar transformaciones" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Ver transformaciones existentes" @@ -189,14 +188,13 @@ msgstr "Transformaciones para: %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -509,9 +507,11 @@ msgstr "Transformaciones para: %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,7 +627,8 @@ msgstr "Transformaciones para: %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po index 5315130d29..05c62b58d4 100644 --- a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -40,7 +41,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -110,7 +110,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -187,14 +186,13 @@ msgstr "تبدیلات برای : %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +505,11 @@ msgstr "تبدیلات برای : %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +625,8 @@ msgstr "تبدیلات برای : %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po index cd02fd1939..7b18688e57 100644 --- a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -42,14 +43,14 @@ msgid "Exception determining PDF page count; %s" msgstr "Exception déterminant le nombre de pages PDF : %s" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "Format de fichier non reconnu." #: classes.py:121 #, python-format msgid "LibreOffice not installed or not found at path: %s" -msgstr "LibreOffice n'est pas installé ou n'a pas été trouvé à l'emplacement : %s" +msgstr "" +"LibreOffice n'est pas installé ou n'a pas été trouvé à l'emplacement : %s" #: classes.py:254 msgid "Resize" @@ -87,7 +88,9 @@ msgstr "Transformations" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Ordre dans lequel les transformations seront exécutées. En l'absence de modification, un ordre est automatiquement assigné." +msgstr "" +"Ordre dans lequel les transformations seront exécutées. En l'absence de " +"modification, un ordre est automatiquement assigné." #: models.py:38 msgid "Name" @@ -97,7 +100,9 @@ msgstr "Nom" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Saisir les arguments pour la transformation sous la forme d'un dictionnaire YAML. Par exemple : {\"degrees\": 180}" +msgstr "" +"Saisir les arguments pour la transformation sous la forme d'un dictionnaire " +"YAML. Par exemple : {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -112,7 +117,6 @@ msgid "Edit transformations" msgstr "Modifier des transformations" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Afficher les transformations existantes" @@ -135,7 +139,9 @@ msgstr "Saisissez une valeur YAML valide." #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Êtes vous certain de vouloir supprimer la transformation \"%(transformation)s\" pour : %(content_object)s ?" +msgstr "" +"Êtes vous certain de vouloir supprimer la transformation \"%(transformation)s" +"\" pour : %(content_object)s ?" #: views.py:139 #, python-format @@ -145,7 +151,8 @@ msgstr "Créer une nouvelle transformation pour : %s" #: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Modifier la transformation \"%(transformation)s\" pour : %(content_object)s" +msgstr "" +"Modifier la transformation \"%(transformation)s\" pour : %(content_object)s" #: views.py:238 #, python-format @@ -189,14 +196,13 @@ msgstr "Transformations pour : %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -509,9 +515,11 @@ msgstr "Transformations pour : %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,7 +635,8 @@ msgstr "Transformations pour : %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po index 8a04257517..830525a8e6 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: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2015-08-20 19:29+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po index 04289aa168..13d33d92c8 100644 --- a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/converter/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: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2015-08-20 19:29+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po index 812dd84439..6fba644a21 100644 --- a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011,2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -41,7 +42,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -111,7 +111,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,14 +187,13 @@ msgstr "Trasformazione per: %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +506,11 @@ msgstr "Trasformazione per: %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +626,8 @@ msgstr "Trasformazione per: %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 f6c3f9dc50..1f63a34b5c 100644 --- a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -42,7 +43,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -112,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -189,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -509,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po index d69eda4144..4e30dc2e43 100644 --- a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012,2015 @@ -10,15 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -42,7 +44,6 @@ msgid "Exception determining PDF page count; %s" msgstr "Wyjątek określający liczbę stron PDF: %s" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "Format niezgodny z formatem plików LibreOffice." @@ -87,7 +88,9 @@ msgstr "Transformacje" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "Kolejność wykonywania transformacji. Jeśli nie zostanie zmieniona, przyjmie wartość automatyczną." +msgstr "" +"Kolejność wykonywania transformacji. Jeśli nie zostanie zmieniona, przyjmie " +"wartość automatyczną." #: models.py:38 msgid "Name" @@ -97,7 +100,9 @@ msgstr "Nazwa" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Wprowadź argumenty dla transformacji w postaci słownika YAML np.: {\"degrees\": 180}" +msgstr "" +"Wprowadź argumenty dla transformacji w postaci słownika YAML np.: {\"degrees" +"\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -112,7 +117,6 @@ msgid "Edit transformations" msgstr "Edytuj transformacje" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "Przeglądaj istniejące transformacje" @@ -189,14 +193,13 @@ msgstr "Transformacje dla: %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -509,9 +512,11 @@ msgstr "Transformacje dla: %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,7 +632,8 @@ msgstr "Transformacje dla: %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po index 412e9bc995..31ddbf91e4 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: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -43,7 +44,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -113,7 +113,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -190,14 +189,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -510,9 +508,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -628,7 +628,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 93152a76e5..486ceed357 100644 --- a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Renata Oliveira , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -42,7 +43,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -112,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -189,14 +188,13 @@ msgstr "transformações para: %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -509,9 +507,11 @@ msgstr "transformações para: %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,7 +627,8 @@ msgstr "transformações para: %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 ddd8d46c00..4734494f63 100644 --- a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -41,7 +43,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -111,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po index a79f48fe96..a669c9294c 100644 --- a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -40,7 +43,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -110,7 +112,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -187,14 +188,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +507,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +627,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 12d3105d74..a56236ba72 100644 --- a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -40,7 +42,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -110,7 +111,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -187,14 +187,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +506,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +626,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 967c6950cd..c4f211c460 100644 --- a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -40,7 +41,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -110,7 +110,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -187,14 +186,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -507,9 +505,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,7 +625,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po index 5f2a0cf855..01808b8315 100644 --- a/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -41,7 +42,6 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:98 -#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -111,7 +111,6 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 -#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,14 +187,13 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick.ImageMagick, " -#~ "converter.backends.graphicsmagick.GraphicsMagick and " -#~ "converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " +#~ "and converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: " -#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " -#~ "converter.backends.python." +#~ "Graphics conversion backend to use. Options are: converter.backends." +#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." +#~ "python." #~ msgid "Help" #~ msgstr "Help" @@ -508,9 +506,11 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " +#~ "1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,7 +626,8 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "" +#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" 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 23bbe9dd69..ff2e0be73a 100644 --- a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,216 +9,282 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: api.py:100 -msgid "Unknown" -msgstr "Unknown" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Owner" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Term" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "Name, e-mail, key ID or key fingerprint to look for." -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Query keyservers" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Key management" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Import key" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Public" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Secret" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Bad signature." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Document not signed or invalid signature." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Signature error." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "Document is signed but no public key is available for verification." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "Document is signed, and signature is good." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "Document is signed with a valid signature." -#: permissions.py:10 -msgid "View keys" -msgstr "View keys" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Delete keys" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Import keys from keyservers" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "View keys" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "List of keyservers to be queried for unknown keys." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "Home directory used to store keys as well as configuration files." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "List of keyservers to be queried for unknown keys." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Delete keys" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "Import key" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "Import key" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Key: %s, deleted successfully." - #: views.py:107 -msgid "Delete key" -msgstr "Delete key" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "البحث" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Query key server" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Unknown" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Owner" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Key: %s, deleted successfully." + +#~ msgid "Delete key" +#~ msgstr "Delete key" #~ msgid "results" #~ msgstr "results" @@ -241,9 +307,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 8b7fcb6c8a..5bd454c350 100644 --- a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,216 +9,281 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: api.py:100 -msgid "Unknown" -msgstr "Неизвестен" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Собственик" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Условие" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "Име, е-мейл, ключ ID или отпечатък от ключ, за преглед." -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Запитване към сървъри за ключове" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Управление на ключове" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Внасяне на ключ" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Публични" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Тайна" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Лоша сигнатура." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Документът не е подписан или подписа е невалиден." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Подпис грешка." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "Документът е подписан, но не е наличен публичен ключ за удостоверение." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "Документът е подписан и подписа е валиден." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "Документът е подписан с валиден подпис." -#: permissions.py:10 -msgid "View keys" -msgstr "Виж ключове" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Изтриване на ключове" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Внос ключове от сървъри за ключове" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "Виж ключове" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Подписи" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "Списък на сървъри за ключове, за запитвания по неизвестни ключове." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "Директория за съхранение на ключове, както и конфигурационни файлове." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "Списък на сървъри за ключове, за запитвания по неизвестни ключове." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Изтриване на ключове" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "Внасяне на ключ" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "Внасяне на ключ" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Ключ: %s, е изтрит успешно." - #: views.py:107 -msgid "Delete key" -msgstr "Изтриване на ключ" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Търсене" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Запитване към сървър за ключове" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Неизвестен" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Собственик" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Ключ: %s, е изтрит успешно." + +#~ msgid "Delete key" +#~ msgstr "Изтриване на ключ" #~ msgid "results" #~ msgstr "results" @@ -241,9 +306,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 aa91a0242d..eca0a1f29b 100644 --- a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,216 +9,284 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: api.py:100 -msgid "Unknown" -msgstr "Nepoznat" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Vlasnik" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Pojam" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "Ime, e-mail, ID ključ ili otisak ključa potražiti." -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Upit keyservera" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Upravljanje ključevima" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Importuj ključ" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Javni" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Tajna" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Loš potpis." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Dokument nije potpisan, ili nevažeći potpis." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Greška potpisa." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "Dokument je potpisan, ali javni ključ nije dostupan za provjeru." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "Dokument je potpisan, a potpis je dobar." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "Dokument je potpisan sa važećim potpisom." -#: permissions.py:10 -msgid "View keys" -msgstr "Pogledaj ključeve" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Obriši ključeve" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Uvezi ključeve sa keyservera" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "Pogledaj ključeve" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "Popis keyservera za upit za nepoznate ključeve." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih datoteka." +msgstr "" +"Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih " +"datoteka." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "Popis keyservera za upit za nepoznate ključeve." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Obriši ključeve" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "Importuj ključ" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "Importuj ključ" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Ključ: %s, uspješno obrisan." - #: views.py:107 -msgid "Delete key" -msgstr "Obriši ključ" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Pretraga" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Upit servera ključeva" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Nepoznat" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Vlasnik" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Ključ: %s, uspješno obrisan." + +#~ msgid "Delete key" +#~ msgstr "Obriši ključ" #~ msgid "results" #~ msgstr "results" @@ -241,9 +309,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" diff --git a/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po index e4edc6faa5..ce05467729 100644 --- a/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" @@ -19,199 +19,250 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: api.py:100 -msgid "Unknown" -msgstr "" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" + +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" msgstr "" -#: apps.py:57 -msgid "Owner" -msgstr "" - -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "" -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "" -#: literals.py:6 +#: links.py:37 +msgid "Upload key" +msgstr "" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "" -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "" -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "" -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "" -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "" -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "" -#: permissions.py:10 -msgid "View keys" +#: models.py:47 +msgid "ASCII armored version of the key." msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "" + #: settings.py:10 msgid "Signatures" msgstr "" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "" - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "" -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +msgid "Keyserver used to query for keys." +msgstr "" + #: views.py:38 #, python-format -msgid "Unable to import key: %(key_id)s; %(error)s" +msgid "Delete key: %s" msgstr "" #: views.py:48 #, python-format -msgid "Successfully received key: %(key_id)s" +msgid "Details for key: %s" msgstr "" -#: views.py:57 +#: views.py:68 #, python-format msgid "Import key ID: %s?" msgstr "" -#: views.py:59 +#: views.py:69 msgid "Import key" msgstr "" -#: views.py:100 +#: views.py:78 #, python-format -msgid "Key: %s, deleted successfully." +msgid "Unable to import key: %(key_id)s; %(error)s" +msgstr "" + +#: views.py:85 +#, python-format +msgid "Successfully received key: %(key_id)s" msgstr "" #: views.py:107 -msgid "Delete key" -msgstr "" - -#: views.py:110 -#, python-format -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" #~ msgid "results" #~ msgstr "results" @@ -234,9 +285,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 56f8b4bb70..3e2d6630ae 100644 --- a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,216 +11,302 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: api.py:100 -msgid "Unknown" -msgstr "Unbekannt" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Eigentümer" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "Typ" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "Erstellungsdatum" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "Ablaufdatum" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "Ohne Ablaufdatum" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "Länge" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" -msgstr "Identitäten" +#: forms.py:28 +msgid "None" +msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Begriff" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht wird" +msgstr "" +"Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht " +"wird" -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "Private Schlüssel" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "Öffentliche Schlüssel" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "Löschen" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Schlüsselserver abfragen" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "Importieren" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Schlüssel-Management" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Schlüssel importieren" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "Private Schlüssel" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "Öffentliche Schlüssel" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Öffentlich" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Geheim" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Ungültige Signatur" -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Dokument nicht signiert oder ungültige Signatur" -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Signaturfehler" -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung verfügbar." +msgstr "" +"Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung " +"verfügbar." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "Dokument ist signiert mit gültiger Unterschrift." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "Das Dokument ist mit einer gültigen Signatur signiert." -#: permissions.py:10 -msgid "View keys" -msgstr "Schlüssel anzeigen" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +#, fuzzy +#| msgid "Key query results" +msgid "Key already exists." +msgstr "Ergebnis Schlüsselsuche" + +#: permissions.py:10 msgid "Delete keys" msgstr "Schlüssel löschen" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Schlüssel von Schlüsselservern importieren" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "Schlüssel anzeigen" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Unterschriften" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "Liste der Server, die nach unbekannten Schlüsseln durchsucht werden." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "Verzeichnis zum Speichern von Schlüsseln und Konfigurationsdateien." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "Pfad zum Programm GPG" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "Liste der Server, die nach unbekannten Schlüsseln durchsucht werden." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Schlüssel löschen" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "Schlüssel-ID %s importieren?" + +#: views.py:69 +msgid "Import key" +msgstr "Schlüssel importieren" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "Schlüssel-ID %(key_id)s konnte nicht importiert werden: %(error)s" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "Schlüssel %(key_id)s erfolgreich heruntergeladen" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "Schlüssel-ID %s importieren?" - -#: views.py:59 -msgid "Import key" -msgstr "Schlüssel importieren" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Schlüssel %s erfolgreich gelöscht" - #: views.py:107 -msgid "Delete key" -msgstr "Schlüssel löschen" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "Sind Sie sicher, dass Sie den Schlüssel %s löschen wollen? Wenn Sie einen öffentlichen Schlüssel löschen, der Teil eines öffentlichen/privaten Paars ist, wird der private Schlüssel ebenfalls gelöscht." - -#: views.py:134 msgid "Search" msgstr "Suche" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Schlüsselserver abfragen" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "Ergebnis Schlüsselsuche" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Unbekannt" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Eigentümer" + +#~| msgid "Identifies" +#~ msgid "Identities" +#~ msgstr "Identitäten" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Schlüssel %s erfolgreich gelöscht" + +#~ msgid "Delete key" +#~ msgstr "Schlüssel löschen" + +#~| msgid "" +#~| "u sure you wish to delete key: %s? If you try to delete a public that " +#~| "part of a public/private pair the private key will be deleted well." +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/" +#~ "private pair the private key will be deleted as well." +#~ msgstr "" +#~ "Sind Sie sicher, dass Sie den Schlüssel %s löschen wollen? Wenn Sie einen " +#~ "öffentlichen Schlüssel löschen, der Teil eines öffentlichen/privaten " +#~ "Paars ist, wird der private Schlüssel ebenfalls gelöscht." #~ msgid "results" #~ msgstr "results" @@ -243,9 +329,6 @@ msgstr "Ergebnis Schlüsselsuche" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 d46ade8db2..4af692ca2e 100644 --- a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,221 +18,301 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: api.py:100 -#, fuzzy -msgid "Unknown" -msgstr "unknown" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Owner" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 #, fuzzy msgid "Creation date" msgstr "creation date" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 #, fuzzy msgid "Expiration date" msgstr "expiration date" -#: apps.py:74 +#: apps.py:83 #, fuzzy msgid "No expiration" msgstr "expiration date" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 #, fuzzy msgid "Length" msgstr "length" -#: apps.py:78 -#, fuzzy -#| msgid "Identifies" -msgid "Identities" -msgstr "Identifies" +#: forms.py:28 +msgid "None" +msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Term" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "Name, e-mail, key ID or key fingerprint to look for." -#: links.py:14 views.py:81 -#, fuzzy -msgid "Private keys" -msgstr "private keys" - -#: links.py:18 views.py:76 -#, fuzzy -msgid "Public keys" -msgstr "public keys" - -#: links.py:21 +#: links.py:13 #, fuzzy msgid "Delete" msgstr "delete" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Query keyservers" -#: links.py:30 +#: links.py:29 #, fuzzy msgid "Import" msgstr "import" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Key management" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Import key" + +#: links.py:41 views.py:160 +#, fuzzy +msgid "Private keys" +msgstr "private keys" + +#: links.py:45 views.py:149 +#, fuzzy +msgid "Public keys" +msgstr "public keys" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Public" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Secret" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Bad signature." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Document not signed or invalid signature." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Signature error." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "Document is signed but no public key is available for verification." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "Document is signed, and signature is good." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "Document is signed with a valid signature." -#: permissions.py:10 -msgid "View keys" -msgstr "View keys" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Delete keys" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Import keys from keyservers" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "View keys" + #: settings.py:10 #, fuzzy #| msgid "Signature error." msgid "Signatures" msgstr "Signature error." -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "List of keyservers to be queried for unknown keys." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "Home directory used to store keys as well as configuration files." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "List of keyservers to be queried for unknown keys." + #: views.py:38 #, fuzzy, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" -msgid "Unable to import key: %(key_id)s; %(error)s" -msgstr "Unable to import key id: %(key_id)s; %(error)s" +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Delete keys" #: views.py:48 #, python-format -msgid "Successfully received key: %(key_id)s" +msgid "Details for key: %s" msgstr "" -#: views.py:57 +#: views.py:68 #, fuzzy, python-format #| msgid "Import key" msgid "Import key ID: %s?" msgstr "Import key" -#: views.py:59 +#: views.py:69 msgid "Import key" msgstr "Import key" -#: views.py:100 +#: views.py:78 +#, fuzzy, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" +msgid "Unable to import key: %(key_id)s; %(error)s" +msgstr "Unable to import key id: %(key_id)s; %(error)s" + +#: views.py:85 #, python-format -msgid "Key: %s, deleted successfully." -msgstr "Key: %s, deleted successfully." +msgid "Successfully received key: %(key_id)s" +msgstr "" #: views.py:107 -msgid "Delete key" -msgstr "Delete key" - -#: views.py:110 -#, fuzzy, python-format -#| msgid "" -#| "Are you sure you wish to delete key: %s? If you try to delete a public " -#| "key that is part of a public/private pair the private key will be deleted " -#| "as well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" -"Are you sure you wish to delete key: %s? If you try to delete a public key " -"that is part of a public/private pair the private key will be deleted as " -"well." - -#: views.py:134 msgid "Search" msgstr "" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Query key server" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#, fuzzy +#~ msgid "Unknown" +#~ msgstr "unknown" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Owner" + +#, fuzzy +#~| msgid "Identifies" +#~ msgid "Identities" +#~ msgstr "Identifies" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Key: %s, deleted successfully." + +#~ msgid "Delete key" +#~ msgstr "Delete key" + +#, fuzzy +#~| msgid "" +#~| "Are you sure you wish to delete key: %s? If you try to delete a public " +#~| "key that is part of a public/private pair the private key will be " +#~| "deleted as well." +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/" +#~ "private pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public " +#~ "key that is part of a public/private pair the private key will be deleted " +#~ "as well." #~ msgid "results" #~ msgstr "results" @@ -258,9 +338,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 774e3f0d90..8489d68574 100644 --- a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -10,216 +10,289 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: api.py:100 -msgid "Unknown" -msgstr "Desconocido" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Propietario" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "Tipo" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "Fecha de creación" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "Fecha de expiración" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "Largo" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Término" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "Nombre, dirección de correo electrónico, identificador de clave o huella digital de clave a buscar." +msgstr "" +"Nombre, dirección de correo electrónico, identificador de clave o huella " +"digital de clave a buscar." -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "Claves privadas" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "Claves públicas" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "Eliminar" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Hacer búsquedas en servidores de claves" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "Importar" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Gestión de claves" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Importar clave" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "Claves privadas" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "Claves públicas" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Pública" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Secreta" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Firma inválida." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Documento no firmado o firma inválida." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Error de firma." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "El documento ha sido firmado pero no hay clave pública disponible para verificación." +msgstr "" +"El documento ha sido firmado pero no hay clave pública disponible para " +"verificación." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "El documento ha sido firmado y la firma está en buen estado." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "El documento ha sido firmado y la firma ha sido validada." -#: permissions.py:10 -msgid "View keys" -msgstr "Ver claves" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Borrar claves" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Importar llaves del servidores de claves" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "Ver claves" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Firma" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "Lista de servidores de claves a ser utilizados para buscar claves desconocidas." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "Directorio de inicio utilizado para almacenar las claves, así como los archivos de configuración." +msgstr "" +"Directorio de inicio utilizado para almacenar las claves, así como los " +"archivos de configuración." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "Ruta al binario GPG." +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "" +"Lista de servidores de claves a ser utilizados para buscar claves " +"desconocidas." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Borrar claves" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "Importar clave" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "Importar clave" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Clave: %s, borrada con éxito." - #: views.py:107 -msgid "Delete key" -msgstr "Borrar clave" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Búsqueda" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Consultar servidor de claves" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Desconocido" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Propietario" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Clave: %s, borrada con éxito." + +#~ msgid "Delete key" +#~ msgstr "Borrar clave" #~ msgid "results" #~ msgstr "results" @@ -242,9 +315,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 cf09a0b6a5..44d61e3c45 100644 --- a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po @@ -1,223 +1,288 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: api.py:100 -msgid "Unknown" -msgstr "ناشناخته" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "شناسه" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "صاحب" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "نوع" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "تاریخ ایجاد" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "تاریخ انقضا" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "طول" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "ترم Term" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "نام، ایمیل، شناسه کلید ویا اثرانگشت کلید برای چستچو." -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "کلید شخصی" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "کلید عمومی" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "حذف" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "پرسش و یا query از سرورهای کلید" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "وارد کردن" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "مدیریت کلید" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "وارد کردن کلید" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "کلید شخصی" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "کلید عمومی" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "عمومی" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "سری و یا رمز" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "الگمال Elgmal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "امضای اشتباه" -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "سند امضا نشده و یا امضا قابل قبول نییست" -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "خطا در امضا" -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "سند امضا شده است ولیکن کلید عمومی جهت بررسی صحت امضا وجود ندارد." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "سند امضا شده است و امضا مورد تایید میباشد." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "سند با امضای مورد تایید امضا شده است." -#: permissions.py:10 -msgid "View keys" -msgstr "دیدن کلیدها" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "پاک و یا حذف کلیدها" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "وارد کردن کلیده از سرور کلیدها" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "دیدن کلیدها" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "امضاها" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "لیست سرور کلیدها برای پرسش درباره کلید های ناشناس." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "ریشه دایرکتوری جهت نگهداری کلیدها بهمراه فایلهای پیکربندی." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "محل کتایخانه باینری GPG" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "لیست سرور کلیدها برای پرسش درباره کلید های ناشناس." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "پاک و یا حذف کلیدها" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "وارد کردن کلید" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "وارد کردن کلید" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "کلید: %s با موفقیت حذف شد." - #: views.py:107 -msgid "Delete key" -msgstr "حذف کلید" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "جستجو" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "پرسش از سرور کلید" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "ناشناخته" + +#~ msgid "ID" +#~ msgstr "شناسه" + +#~ msgid "Owner" +#~ msgstr "صاحب" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "کلید: %s با موفقیت حذف شد." + +#~ msgid "Delete key" +#~ msgstr "حذف کلید" #~ msgid "results" #~ msgstr "results" @@ -240,9 +305,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 d0e2d3d6d1..b535415fbb 100644 --- a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -10,216 +10,302 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: api.py:100 -msgid "Unknown" -msgstr "Inconnu" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Propriétaire" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "Type" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "Date de création" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "Date d'expiration" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "Pas d'expiration" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "Durée" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" -msgstr "Identités" +#: forms.py:28 +msgid "None" +msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Terme" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "Nom, e-mail, ID de clé ou empreinte à rechercher." -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "Clés privées" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "Clés publiques" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "Supprimer" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Interroger les serveurs de clés" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "Import" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Gestion des clés" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Importer la clé" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "Clés privées" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "Clés publiques" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Publique" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Secret" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "ElGamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Signature erronée." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Document non signé ou signature erronée." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Erreur de signature." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Ce document est signé mais aucune clé publique n'est disponible pour vérifier la signature." +msgstr "" +"Ce document est signé mais aucune clé publique n'est disponible pour " +"vérifier la signature." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "Le document est signé et la signature est bonne." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "Le document est signé avec une signature valide." -#: permissions.py:10 -msgid "View keys" -msgstr "Afficher les clés" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +#, fuzzy +#| msgid "Key query results" +msgid "Key already exists." +msgstr "Résultats de la recherche de clé" + +#: permissions.py:10 msgid "Delete keys" msgstr "Supprimer les clés" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Importer les clés à partir des serveurs de clés" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "Afficher les clés" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Signatures" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "Liste des serveurs de clés à interroger pour les clés inconnues." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers de configuration" +msgstr "" +"Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers " +"de configuration" -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "Chemin du binaire GPG" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "Liste des serveurs de clés à interroger pour les clés inconnues." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Supprimer les clés" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "Importer l'identifiant de clé : %s ?" + +#: views.py:69 +msgid "Import key" +msgstr "Importer la clé" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "Impossible d'importer la clé : %(key_id)s; %(error)s" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "Clé : %(key_id)s reçue avec ssucès" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "Importer l'identifiant de clé : %s ?" - -#: views.py:59 -msgid "Import key" -msgstr "Importer la clé" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Clé: %s, supprimée avec succès" - #: views.py:107 -msgid "Delete key" -msgstr "Supprimer la clé" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "Êtes vous certain de vouloir supprimer la clé: %s? Si vous supprimez une clé publique qui fait partie d'une paire clé publique/clé privée, la clé privée sera également supprimée." - -#: views.py:134 msgid "Search" msgstr "Recherche" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Interroger le serveur de clés" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "Résultats de la recherche de clé" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Inconnu" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Propriétaire" + +#~| msgid "Identifies" +#~ msgid "Identities" +#~ msgstr "Identités" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Clé: %s, supprimée avec succès" + +#~ msgid "Delete key" +#~ msgstr "Supprimer la clé" + +#~| msgid "" +#~| "u sure you wish to delete key: %s? If you try to delete a public that " +#~| "part of a public/private pair the private key will be deleted well." +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/" +#~ "private pair the private key will be deleted as well." +#~ msgstr "" +#~ "Êtes vous certain de vouloir supprimer la clé: %s? Si vous supprimez une " +#~ "clé publique qui fait partie d'une paire clé publique/clé privée, la clé " +#~ "privée sera également supprimée." #~ msgid "results" #~ msgstr "results" @@ -242,9 +328,6 @@ msgstr "Résultats de la recherche de clé" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 49b628c11e..b1c9d2de11 100644 --- a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po @@ -1,223 +1,268 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: api.py:100 -msgid "Unknown" -msgstr "" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" + +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" msgstr "" -#: apps.py:57 -msgid "Owner" -msgstr "" - -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "" -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "" -#: literals.py:6 +#: links.py:37 +msgid "Upload key" +msgstr "" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "" -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "" -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "" -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "" -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "" -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "" -#: permissions.py:10 -msgid "View keys" +#: models.py:47 +msgid "ASCII armored version of the key." msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "" - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "" -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +msgid "Keyserver used to query for keys." +msgstr "" + #: views.py:38 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" -msgid "Unable to import key: %(key_id)s; %(error)s" +msgid "Delete key: %s" msgstr "" #: views.py:48 #, python-format -msgid "Successfully received key: %(key_id)s" +msgid "Details for key: %s" msgstr "" -#: views.py:57 +#: views.py:68 #, python-format -#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" -#: views.py:59 +#: views.py:69 msgid "Import key" msgstr "" -#: views.py:100 +#: views.py:78 #, python-format -msgid "Key: %s, deleted successfully." +msgid "Unable to import key: %(key_id)s; %(error)s" +msgstr "" + +#: views.py:85 +#, python-format +msgid "Successfully received key: %(key_id)s" msgstr "" #: views.py:107 -msgid "Delete key" -msgstr "" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Keresés" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" #~ msgid "results" #~ msgstr "results" @@ -240,9 +285,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 27c0d5a271..a3705ebb01 100644 --- a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" @@ -19,199 +19,250 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: api.py:100 -msgid "Unknown" -msgstr "" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" + +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" msgstr "" -#: apps.py:57 -msgid "Owner" -msgstr "" - -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "" -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "" -#: literals.py:6 +#: links.py:37 +msgid "Upload key" +msgstr "" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "" -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "" -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "" -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "" -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "" -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "" -#: permissions.py:10 -msgid "View keys" +#: models.py:47 +msgid "ASCII armored version of the key." msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "" + #: settings.py:10 msgid "Signatures" msgstr "" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "" - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "" -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +msgid "Keyserver used to query for keys." +msgstr "" + #: views.py:38 #, python-format -msgid "Unable to import key: %(key_id)s; %(error)s" +msgid "Delete key: %s" msgstr "" #: views.py:48 #, python-format -msgid "Successfully received key: %(key_id)s" +msgid "Details for key: %s" msgstr "" -#: views.py:57 +#: views.py:68 #, python-format msgid "Import key ID: %s?" msgstr "" -#: views.py:59 +#: views.py:69 msgid "Import key" msgstr "" -#: views.py:100 +#: views.py:78 #, python-format -msgid "Key: %s, deleted successfully." +msgid "Unable to import key: %(key_id)s; %(error)s" +msgstr "" + +#: views.py:85 +#, python-format +msgid "Successfully received key: %(key_id)s" msgstr "" #: views.py:107 -msgid "Delete key" -msgstr "" - -#: views.py:110 -#, python-format -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" #~ msgid "results" #~ msgstr "results" @@ -234,9 +285,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 7b8d2f78bf..41b83a5497 100644 --- a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012,2015 @@ -9,216 +9,285 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: api.py:100 -msgid "Unknown" -msgstr "Sconosciuto" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Proprietario" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "Tipo" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "Data di creazione" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "Data scadenza" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "Lunghezza" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Scadenza" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "Nome, e-mail,key ID , impronte digitali da ricercare" -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "Chiavi private" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "Chiavi pubbliche" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "Cancellare" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Interroga l'autorità per le chiavi" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "Importazione" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Gestione delle chiavi" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Importa chiave" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "Chiavi private" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "Chiavi pubbliche" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Pubblica" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Segreta" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Firma cattiva." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Documento non firmato o firma invalida." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Errore di firma" -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Il documento è stato firmato, ma la chiave pubblica non è disponibile per la verifica" +msgstr "" +"Il documento è stato firmato, ma la chiave pubblica non è disponibile per la " +"verifica" -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "Documento firmato e firma è buona." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "Il documento è firmato con una firma valida." -#: permissions.py:10 -msgid "View keys" -msgstr "Vista delle chiavi" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Cancella chiavi" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Importa le chiavi dal server di chiavi" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "Vista delle chiavi" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Firme" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "Lista di server per chiavi che si possono interrogare." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "Home directory utilizzata per memorizzare le chiavi così come i file di configurazione." +msgstr "" +"Home directory utilizzata per memorizzare le chiavi così come i file di " +"configurazione." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "Percorso per il programma GPG" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "Lista di server per chiavi che si possono interrogare." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Cancella chiavi" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "Importa chiave" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "Importa chiave" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "chiave: %s, cancellata con successo." - #: views.py:107 -msgid "Delete key" -msgstr "Cancella chiave" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Cerca" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Interroga il server delle chiavi" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Sconosciuto" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Proprietario" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "chiave: %s, cancellata con successo." + +#~ msgid "Delete key" +#~ msgstr "Cancella chiave" #~ msgid "results" #~ msgstr "results" @@ -241,9 +310,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 04527ca454..2f22ec2094 100644 --- a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po @@ -1,223 +1,272 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: api.py:100 -msgid "Unknown" -msgstr "Onbekent" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" + +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" msgstr "" -#: apps.py:57 -msgid "Owner" -msgstr "" - -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "" -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "Verwijder" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "" -#: literals.py:6 +#: links.py:37 +msgid "Upload key" +msgstr "" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "" -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "" -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "" -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "" -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "" -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "" -#: permissions.py:10 -msgid "View keys" +#: models.py:47 +msgid "ASCII armored version of the key." msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "" - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "" -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +msgid "Keyserver used to query for keys." +msgstr "" + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete" +msgid "Delete key: %s" +msgstr "Verwijder" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "" - #: views.py:107 -msgid "Delete key" -msgstr "" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Zoek" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Onbekent" #~ msgid "results" #~ msgstr "results" @@ -240,9 +289,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 4fe01924ce..b99671100e 100644 --- a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -10,216 +10,285 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: api.py:100 -msgid "Unknown" -msgstr "Nieznany" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Właściciel" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "Typ" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "Data utworzenia" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "Data wygaśnięcia" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "Długość" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Term" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "Imię i nazwisko, e-mail, key ID lub key fingerprint kluc szukać." -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "Klucze prywatne" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "Klucze publiczne" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "Usunąć" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Query keyservers" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "Import" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Zarządzanie kluczami" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Importuj klucz" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "Klucze prywatne" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "Klucze publiczne" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Publiczny" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Sekret" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Zły podpis." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Dokumentu nie podpisany lub nieprawidłowy podpis." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Błąd podpisu." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Dokument został podpisany, ale klucz publiczny nie jest dostępny do weryfikacji." +msgstr "" +"Dokument został podpisany, ale klucz publiczny nie jest dostępny do " +"weryfikacji." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "Dokument został podpisany, a podpis jest dobry." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "Dokument podpisany za pomocą ważnego podpisu." -#: permissions.py:10 -msgid "View keys" -msgstr "View keys" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Delete keys" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Import keys from keyservers" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "View keys" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "List of keyservers to be queried for unknown keys." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." +msgstr "" +"Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "Ścieżka do GPG binary." +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "List of keyservers to be queried for unknown keys." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Delete keys" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "Importuj klucz" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "Importuj klucz" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Klucz:%s, został usunięty." - #: views.py:107 -msgid "Delete key" -msgstr "Usuń klucz" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Szukaj" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Query key server" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Nieznany" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Właściciel" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Klucz:%s, został usunięty." + +#~ msgid "Delete key" +#~ msgstr "Usuń klucz" #~ msgid "results" #~ msgstr "results" @@ -242,9 +311,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 397ee9eb06..0c9943bd50 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: # Translators: # Roberto Rosario, 2012 @@ -10,216 +10,280 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: api.py:100 -msgid "Unknown" -msgstr "" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Proprietário" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Termo" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "Nome, e-mail, ID da chave ou impressão digital da chave a procurar." -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "Eliminar" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Consultar servidores de chaves" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Gestão de chaves" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Importar chave" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Pública" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Segredo" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Assinatura inválida." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Documento não assinado ou assinatura inválida." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Erro de assinatura." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "O documento está assinado, mas não está disponível uma chave pública para verificação." +msgstr "" +"O documento está assinado, mas não está disponível uma chave pública para " +"verificação." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "O documento está assinado e a assinatura é válida." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "O documento está assinado com uma assinatura válida." -#: permissions.py:10 -msgid "View keys" -msgstr "Ver as chaves" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Excluir chaves" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Importar chaves de servidores de chaves" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "Ver as chaves" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Assinaturas" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "Lista de servidores de chaves a consultar para chaves desconhecidas." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "Diretório usado para guardar as chaves e os ficheiros de configuração." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "Lista de servidores de chaves a consultar para chaves desconhecidas." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Excluir chaves" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "Importar chave" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "Importar chave" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Chave: %s, excluída com sucesso." - #: views.py:107 -msgid "Delete key" -msgstr "Excluir chave" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Procurar" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Consultar servidor de chaves" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Proprietário" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Chave: %s, excluída com sucesso." + +#~ msgid "Delete key" +#~ msgstr "Excluir chave" #~ msgid "results" #~ msgstr "results" @@ -242,9 +306,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 8a24da1244..f81946171e 100644 --- a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2012 @@ -10,216 +10,279 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: api.py:100 -msgid "Unknown" -msgstr "desconhecido" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Proprietário" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "Tipo" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "data de criação" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "data de validade" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "comprimento" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Termo" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "" -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "chaves privadas" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "chaves públicas" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "Excluir" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Consulta servidores de chaves" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "Importar" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Gerenciar chaves" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Importar chave" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "chaves privadas" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "chaves públicas" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Público" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Segredo" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Assinatura ruim." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Documento não assinado ou inválido assinatura." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Erro de assinatura." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "" -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "" -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "" -#: permissions.py:10 -msgid "View keys" -msgstr "Ver as chaves" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Excluir chaves" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Importar chaves do Keyservers" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "Ver as chaves" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "assinaturas" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "" - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "" -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +msgid "Keyserver used to query for keys." +msgstr "" + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Excluir chaves" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "Importar chave" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "Importar chave" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Chave: %s, apagado com sucesso." - #: views.py:107 -msgid "Delete key" -msgstr "Excluir chave" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Pesquisa" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Consultar servidor de chaves" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "desconhecido" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Proprietário" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Chave: %s, apagado com sucesso." + +#~ msgid "Delete key" +#~ msgstr "Excluir chave" #~ msgid "results" #~ msgstr "results" @@ -242,9 +305,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 13e835b51c..5883a94563 100644 --- a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,216 +9,287 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: api.py:100 -msgid "Unknown" -msgstr "Necunoscut" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID-ul" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Proprietar" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Termen" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "Nume, e-mail, ID-ul de cheie sau amprenta cheii pentru a căuta." -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Interogare keyservers" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "gestionare chei" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Import cheie" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Public" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Secret" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Semnătură nereuşită." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Documentul nu e semnat sau semnătură invalidă." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Eroare semnătură." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru verificare." +msgstr "" +"Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru " +"verificare." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "Documentul este semnat, iar semnătura este bună." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "Documentul este semnat cu o semnătură validă." -#: permissions.py:10 -msgid "View keys" -msgstr "Vizualiza cheile" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Ștergeți cheile" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Importă cheile din keyservers" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "Vizualiza cheile" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "Lista de keyservers care urmează să fie interogat pentru chei necunoscute." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "Cale director utilizată pentru a stoca cheile, precum și fișiere de configurare." +msgstr "" +"Cale director utilizată pentru a stoca cheile, precum și fișiere de " +"configurare." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "" +"Lista de keyservers care urmează să fie interogat pentru chei necunoscute." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Ștergeți cheile" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "Import cheie" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "Import cheie" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Cheie :% s, elimină cu succes." - #: views.py:107 -msgid "Delete key" -msgstr "Ștergeți-cheie" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Căută" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Interogare cheie serverul" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Necunoscut" + +#~ msgid "ID" +#~ msgstr "ID-ul" + +#~ msgid "Owner" +#~ msgstr "Proprietar" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Cheie :% s, elimină cu succes." + +#~ msgid "Delete key" +#~ msgstr "Ștergeți-cheie" #~ msgid "results" #~ msgstr "results" @@ -241,9 +312,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 548055eaed..9c963614e6 100644 --- a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po @@ -1,223 +1,292 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: api.py:100 -msgid "Unknown" -msgstr "Неизвестно" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Владелец" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Term" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "Имя, e-mail, ID ключа или отпечаток для поиска." -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Запрос к серверам ключей" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Управление ключами" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Получить ключ" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Открытый" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "секретный" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Неверная подпись" -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Документ не подписан, либо подпись неверна." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Ошибка подписи." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "Документ подписан, но нет открытого ключа для проверки." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "Документ подписан и подпись верна." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "Документ подписан допустимой подписью." -#: permissions.py:10 -msgid "View keys" -msgstr "Просмотр ключей" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Удалить ключи" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Импортировать ключи с серверов ключей " +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "Просмотр ключей" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "Подписи" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "Список ключевых серверов для запроса неизвестных ключей." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "Домашний каталог, используемый для хранения ключей, а также файлов конфигурации." +msgstr "" +"Домашний каталог, используемый для хранения ключей, а также файлов " +"конфигурации." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "Список ключевых серверов для запроса неизвестных ключей." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Удалить ключи" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "Получить ключ" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "Получить ключ" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Ключ %s удалён." - #: views.py:107 -msgid "Delete key" -msgstr "Удалить ключ." - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Поиск" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Запросить сервер ключей" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Неизвестно" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Владелец" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Ключ %s удалён." + +#~ msgid "Delete key" +#~ msgstr "Удалить ключ." #~ msgid "results" #~ msgstr "results" @@ -240,9 +309,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 6d30ed2023..c50350eddc 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 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2015-08-24 04:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" @@ -20,199 +20,250 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" -#: api.py:100 -msgid "Unknown" -msgstr "" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" + +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" msgstr "" -#: apps.py:57 -msgid "Owner" -msgstr "" - -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "" -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "" -#: literals.py:6 +#: links.py:37 +msgid "Upload key" +msgstr "" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "" -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "" -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "" -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "" -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "" -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "" -#: permissions.py:10 -msgid "View keys" +#: models.py:47 +msgid "ASCII armored version of the key." msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "" + #: settings.py:10 msgid "Signatures" msgstr "" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "" - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "" -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +msgid "Keyserver used to query for keys." +msgstr "" + #: views.py:38 #, python-format -msgid "Unable to import key: %(key_id)s; %(error)s" +msgid "Delete key: %s" msgstr "" #: views.py:48 #, python-format -msgid "Successfully received key: %(key_id)s" +msgid "Details for key: %s" msgstr "" -#: views.py:57 +#: views.py:68 #, python-format msgid "Import key ID: %s?" msgstr "" -#: views.py:59 +#: views.py:69 msgid "Import key" msgstr "" -#: views.py:100 +#: views.py:78 #, python-format -msgid "Key: %s, deleted successfully." +msgid "Unable to import key: %(key_id)s; %(error)s" +msgstr "" + +#: views.py:85 +#, python-format +msgid "Successfully received key: %(key_id)s" msgstr "" #: views.py:107 -msgid "Delete key" -msgstr "" - -#: views.py:110 -#, python-format -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" #~ msgid "results" #~ msgstr "results" @@ -235,9 +286,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 dee110626f..40cbeef3c0 100644 --- a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,216 +9,278 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: api.py:100 -msgid "Unknown" -msgstr "" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "Nhười sở hữu" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "Term" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "Name, e-mail, key ID or key fingerprint to look for." -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "Truy vấn keyservers" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "Quản lý khóa" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "Import key" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "Công cộng" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "Bí mật" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "Bad signature." -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "Tài liệu không được kí hoặc chữ kí không hợp lệ." -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "Signature error." -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "Document is signed but no public key is available for verification." -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "Document is signed, and signature is good." -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "Document is signed, and signature is good." -#: permissions.py:10 -msgid "View keys" -msgstr "Xem các khóa" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "Xóa khóa" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "Import keys from keyservers" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "Xem các khóa" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "List of keyservers to be queried for unknown keys." - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "Home directory used to store keys as well as configuration files." -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "List of keyservers to be queried for unknown keys." + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "Xóa khóa" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "Import key" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "Import key" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "Khóa: %s, đã xóa thành công." - #: views.py:107 -msgid "Delete key" -msgstr " Xóa khóa" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "Tìm kiếm" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "Query key server" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Nhười sở hữu" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Khóa: %s, đã xóa thành công." + +#~ msgid "Delete key" +#~ msgstr " Xóa khóa" #~ msgid "results" #~ msgstr "results" @@ -241,9 +303,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" diff --git a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po index 8b35a13aec..70ff8613ca 100644 --- a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,216 +9,278 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:42-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: api.py:100 -msgid "Unknown" -msgstr "" - -#: apps.py:22 +#: apps.py:30 msgid "Django GPG" msgstr "" -#: apps.py:55 apps.py:62 -msgid "ID" -msgstr "ID" +#: apps.py:73 apps.py:76 forms.py:17 +msgid "Key ID" +msgstr "Key ID" -#: apps.py:57 -msgid "Owner" -msgstr "持有者" +#: apps.py:74 apps.py:87 forms.py:19 models.py:67 +msgid "User ID" +msgstr "" -#: apps.py:65 +#: apps.py:77 forms.py:34 models.py:70 msgid "Type" msgstr "" -#: apps.py:67 +#: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" msgstr "" -#: apps.py:73 +#: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" msgstr "" -#: apps.py:74 +#: apps.py:83 msgid "No expiration" msgstr "" -#: apps.py:76 +#: apps.py:85 forms.py:32 models.py:62 msgid "Length" msgstr "" -#: apps.py:78 -#| msgid "Identifies" -msgid "Identities" +#: forms.py:28 +msgid "None" msgstr "" -#: forms.py:9 +#: forms.py:31 models.py:59 +msgid "Fingerprint" +msgstr "" + +#: forms.py:33 models.py:65 +msgid "Algorithm" +msgstr "" + +#: forms.py:47 msgid "Term" msgstr "术语" -#: forms.py:10 +#: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." msgstr "要查找的名称,邮件,密钥ID或者密钥指纹" -#: links.py:14 views.py:81 -msgid "Private keys" -msgstr "" - -#: links.py:18 views.py:76 -msgid "Public keys" -msgstr "" - -#: links.py:21 +#: links.py:13 msgid "Delete" msgstr "" -#: links.py:26 permissions.py:16 +#: links.py:17 +msgid "Details" +msgstr "" + +#: links.py:21 +msgid "Download" +msgstr "" + +#: links.py:25 permissions.py:28 msgid "Query keyservers" msgstr "查询密钥服务器" -#: links.py:30 +#: links.py:29 msgid "Import" msgstr "" -#: links.py:35 permissions.py:7 +#: links.py:34 permissions.py:7 msgid "Key management" msgstr "密钥管理" -#: literals.py:6 +#: links.py:37 +#, fuzzy +#| msgid "Import key" +msgid "Upload key" +msgstr "导入密钥" + +#: links.py:41 views.py:160 +msgid "Private keys" +msgstr "" + +#: links.py:45 views.py:149 +msgid "Public keys" +msgstr "" + +#: literals.py:6 literals.py:14 msgid "Public" msgstr "公开的" -#: literals.py:7 +#: literals.py:7 literals.py:15 msgid "Secret" msgstr "隐私的" -#: literals.py:15 literals.py:20 +#: literals.py:23 literals.py:28 msgid "RSA" msgstr "RSA" -#: literals.py:16 +#: literals.py:24 msgid "DSA" msgstr "DSA" -#: literals.py:21 +#: literals.py:29 msgid "Elgamal" msgstr "Elgamal" -#: literals.py:35 +#: literals.py:43 msgid "Bad signature." msgstr "无效签名" -#: literals.py:38 +#: literals.py:46 msgid "Document not signed or invalid signature." msgstr "文档未签名或者无效签名" -#: literals.py:41 +#: literals.py:49 msgid "Signature error." msgstr "签名出错。" -#: literals.py:45 +#: literals.py:53 msgid "Document is signed but no public key is available for verification." msgstr "文档已经签名,但是没法验证公钥。" -#: literals.py:50 +#: literals.py:58 msgid "Document is signed, and signature is good." msgstr "文档已签名,并且是有效的。" -#: literals.py:53 +#: literals.py:61 msgid "Document is signed with a valid signature." msgstr "文档使用有效签名进行签名" -#: permissions.py:10 -msgid "View keys" -msgstr "查看密钥" +#: models.py:47 +msgid "ASCII armored version of the key." +msgstr "" -#: permissions.py:13 +#: models.py:48 +msgid "Key data" +msgstr "" + +#: models.py:76 +#, fuzzy +#| msgid "Key ID" +msgid "Key" +msgstr "Key ID" + +#: models.py:77 +msgid "Keys" +msgstr "" + +#: models.py:86 +msgid "Invalid key data" +msgstr "" + +#: models.py:89 +msgid "Key already exists." +msgstr "" + +#: permissions.py:10 msgid "Delete keys" msgstr "删除密钥" -#: permissions.py:19 +#: permissions.py:13 +msgid "Download keys" +msgstr "" + +#: permissions.py:16 msgid "Import keys from keyservers" msgstr "从密钥服务器倒入密钥" +#: permissions.py:19 +msgid "Use keys to sign content" +msgstr "" + +#: permissions.py:22 +#, fuzzy +#| msgid "public keys" +msgid "Upload keys" +msgstr "public keys" + +#: permissions.py:25 +msgid "View keys" +msgstr "查看密钥" + #: settings.py:10 -#| msgid "Signature error." msgid "Signatures" msgstr "" -#: settings.py:13 -msgid "List of keyservers to be queried for unknown keys." -msgstr "查询未知密钥的密钥服务器列表" - -#: settings.py:19 +#: settings.py:15 msgid "Home directory used to store keys as well as configuration files." msgstr "存储密钥和配置文件的用户目录。" -#: settings.py:25 +#: settings.py:21 msgid "Path to the GPG binary." msgstr "" +#: settings.py:25 +#, fuzzy +#| msgid "List of keyservers to be queried for unknown keys." +msgid "Keyserver used to query for keys." +msgstr "查询未知密钥的密钥服务器列表" + #: views.py:38 +#, fuzzy, python-format +#| msgid "Delete keys" +msgid "Delete key: %s" +msgstr "删除密钥" + +#: views.py:48 +#, python-format +msgid "Details for key: %s" +msgstr "" + +#: views.py:68 +#, python-format +msgid "Import key ID: %s?" +msgstr "" + +#: views.py:69 +msgid "Import key" +msgstr "导入密钥" + +#: views.py:78 #, python-format -#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" -#: views.py:48 +#: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" msgstr "" -#: views.py:57 -#, python-format -#| msgid "Import key" -msgid "Import key ID: %s?" -msgstr "" - -#: views.py:59 -msgid "Import key" -msgstr "导入密钥" - -#: views.py:100 -#, python-format -msgid "Key: %s, deleted successfully." -msgstr "密钥: %s,删除成功" - #: views.py:107 -msgid "Delete key" -msgstr "删除密钥" - -#: views.py:110 -#, python-format -#| msgid "" -#| "u sure you wish to delete key: %s? If you try to delete a public that part" -#| " of a public/private pair the private key will be deleted well." -msgid "" -"Delete key %s? If you delete a public key that is part of a public/private " -"pair the private key will be deleted as well." -msgstr "" - -#: views.py:134 msgid "Search" msgstr "搜索" -#: views.py:136 +#: views.py:109 msgid "Query key server" msgstr "查询密钥服务器" -#: views.py:146 +#: views.py:119 msgid "Key query results" msgstr "" -#~ msgid "Key ID" -#~ msgstr "Key ID" +#: views.py:138 +msgid "Upload new key" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "持有者" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "密钥: %s,删除成功" + +#~ msgid "Delete key" +#~ msgstr "删除密钥" #~ msgid "results" #~ msgstr "results" @@ -241,9 +303,6 @@ msgstr "" #~ msgid "private keys" #~ msgstr "private keys" -#~ msgid "public keys" -#~ msgstr "public keys" - #~ msgid "type" #~ msgstr "type" 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 15ecac7a7b..ce8161e11c 100644 --- a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po @@ -1,25 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +38,10 @@ msgid "Comment" msgstr "تعليق" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +84,6 @@ msgstr "إضافة تعليق على الوثيقة: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 ec2038c2c7..8cf274d8e7 100644 --- a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +37,10 @@ msgid "Comment" msgstr "Коментар" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +83,6 @@ msgstr "Добавяне на коментар към документ: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 9f1d3057c8..832315d244 100644 --- a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po @@ -1,25 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +38,10 @@ msgid "Comment" msgstr "Komentar" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +84,6 @@ msgstr "Dodaj komentar za dokument: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po index f260bbcb70..37b1253a1a 100644 --- a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +37,10 @@ msgid "Comment" msgstr "Kommentar" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +83,6 @@ msgstr "Tilføj kommentar til dokument: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 55f5d33e00..47b5e59063 100644 --- a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "Kommentare" @@ -38,12 +38,10 @@ msgid "Comment" msgstr "Kommentar" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "Kommentar erstellt" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Kommentar gelöscht" @@ -86,7 +84,6 @@ msgstr "Kommentar zu Dokument %s hinzufügen" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Kommentar %s löschen?" 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 296319563b..6e322d91f1 100644 --- a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/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: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2013-11-20 11:56+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" 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 f711b60fe0..fc509545c9 100644 --- a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2015 @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "Comentarios de documento" @@ -38,12 +38,10 @@ msgid "Comment" msgstr "Comentario" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "Comentario de documento creado" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Comentario de documento borrado" @@ -86,7 +84,6 @@ msgstr "Añadir comentario al documento: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "¿Borrar comentario: %s?" 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 0c62aec8ac..92122f8bb5 100644 --- a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +37,10 @@ msgid "Comment" msgstr "شرح" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +83,6 @@ msgstr "اضافه کردن توضیحات به سند: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 07e60ea447..04daa27e8d 100644 --- a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Thierry Schott , 2016 @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:10-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "Commentaires du document" @@ -38,12 +38,10 @@ msgid "Comment" msgstr "Commentaire" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "Commentaire de document créé" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Commentaire de document supprimé" @@ -86,7 +84,6 @@ msgstr "Ajouter un commentaire au document : %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Supprimer le commentaire : %s ?" 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 8676cc5012..ce7a686dbd 100644 --- a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +37,10 @@ msgid "Comment" msgstr "Megjegyzés" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +83,6 @@ msgstr "Megjegyzés fűzése a %s dokumentumhoz." #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 2322ab7902..29466b2c23 100644 --- a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +37,10 @@ msgid "Comment" msgstr "Komentar" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +83,6 @@ msgstr "Menambah komentar ke dokumen: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 bba3217f02..6a804ba047 100644 --- a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +37,10 @@ msgid "Comment" msgstr "Commento" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +83,6 @@ msgstr "Aggiungi un comento al documento: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 1f6c963b2c..0d3672b18a 100644 --- a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +37,10 @@ msgid "Comment" msgstr "Commentaar" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +83,6 @@ msgstr "Opmerking toevoegen aan document: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 fadb1477ae..cee56bead6 100644 --- a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Wojciech Warczakowski , 2016 @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "Komentarze dokumentu" @@ -38,12 +39,10 @@ msgid "Comment" msgstr "Komentarz" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "Dokument został skomentowany" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Komentarz do dokumentu został usunięty" @@ -86,7 +85,6 @@ msgstr "Dodanie komentarza do dokumentu: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Usunąć komentarz: %s?" 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 8273ab7abc..f1c691d21e 100644 --- a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +37,10 @@ msgid "Comment" msgstr "Comentário" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +83,6 @@ msgstr "Adicionar comentário ao documento: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %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 2ded9e72c7..3caa250c95 100644 --- a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +37,10 @@ msgid "Comment" msgstr "Comentário" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +83,6 @@ msgstr "Adicionar comentário ao documento: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 c73fe3c4f9..bbd5a23e87 100644 --- a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po @@ -1,25 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +38,10 @@ msgid "Comment" msgstr "Comentariu" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +84,6 @@ msgstr "Adaugă comentariu la document:% s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 611ae6b81a..bfb344ec3b 100644 --- a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po @@ -1,25 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +39,10 @@ msgid "Comment" msgstr "Комментарий" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +85,6 @@ msgstr "Добавить комментарий на документ: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 6cac744891..4ccaaeff9d 100644 --- a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po @@ -1,25 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +38,10 @@ msgid "Comment" msgstr "Komentar" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +84,6 @@ msgstr "Dodaj komentar datotekei: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 69515ee80b..01babf52f4 100644 --- a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +37,10 @@ msgid "Comment" msgstr "Chú thích" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +83,6 @@ msgstr "Thêm chú thích cho tài liệu: %s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po index eb9989fdcd..19a1810316 100644 --- a/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 -#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,12 +37,10 @@ msgid "Comment" msgstr "评论" #: events.py:9 -#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 -#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -85,7 +83,6 @@ msgstr "添加评论到文档:%s" #: views.py:90 #, python-format -#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" 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 200861d290..1939ad5cf6 100644 --- a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: admin.py:24 msgid "None" @@ -28,7 +30,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -101,14 +102,13 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" "Causes this index to be visible and updated when document data changes." -msgstr "Causes this index to be visible and updated when document data changes." #: models.py:82 models.py:109 msgid "Index" @@ -138,9 +138,11 @@ msgstr "Causes this node to be visible and updated when document data changes." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." #: models.py:134 msgid "Link documents" @@ -212,7 +214,6 @@ msgstr "Rebuild document indexes" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -342,9 +343,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -381,11 +384,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 e0d5598755..f588e33456 100644 --- a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -28,7 +29,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -101,14 +101,14 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Предизвиква този индекс да бъдат видим и актуализиран, когато данните в документа се променят." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Предизвиква този индекс да бъдат видим и актуализиран, когато данните в " +"документа се променят." #: models.py:82 models.py:109 msgid "Index" @@ -138,8 +138,8 @@ msgstr "" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:134 @@ -212,7 +212,6 @@ msgstr "" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -271,7 +270,9 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "При големи бази данни тази операция може да отнеме известно време за изпълнение." +msgstr "" +"При големи бази данни тази операция може да отнеме известно време за " +"изпълнение." #: views.py:342 msgid "Rebuild all indexes?" @@ -342,9 +343,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -381,11 +384,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 934af687ea..306c3e188a 100644 --- a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: admin.py:24 msgid "None" @@ -28,7 +30,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -101,14 +102,14 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Uzrokuje da će ovaj indeks biti vidljiv i update-ovan kad se promjene podaci dokumenta." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Uzrokuje da će ovaj indeks biti vidljiv i update-ovan kad se promjene podaci " +"dokumenta." #: models.py:82 models.py:109 msgid "Index" @@ -134,13 +135,17 @@ msgstr "" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Uzrokuje da će ovaj nod biti vidljiv i update-ovan kad se promjene podaci dokumenta." +msgstr "" +"Uzrokuje da će ovaj nod biti vidljiv i update-ovan kad se promjene podaci " +"dokumenta." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Označite ovu opciju da ovaj nod služi kao kontejner za dokumente a ne kao parent za buduće nodove." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Označite ovu opciju da ovaj nod služi kao kontejner za dokumente a ne kao " +"parent za buduće nodove." #: models.py:134 msgid "Link documents" @@ -212,7 +217,6 @@ msgstr " Obnovi indekse dokumenata" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -342,9 +346,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -381,11 +387,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po index e4bdec2ed4..680f93ddae 100644 --- a/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -27,7 +28,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -100,13 +100,11 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:82 models.py:109 @@ -137,8 +135,8 @@ msgstr "" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:134 @@ -211,7 +209,6 @@ msgstr "" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -341,9 +338,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -380,11 +379,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 6d464c4020..5a0bb4f402 100644 --- a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -32,7 +33,6 @@ msgid "Document types" msgstr "Dokumententypen" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "Dokumentenindices" @@ -102,17 +102,19 @@ msgstr "Neuer Unterknoten" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Fehler bei der Indexierung von Dokument %(document)s; Ausdruck: %(expression)s; %(exception)s" +msgstr "" +"Fehler bei der Indexierung von Dokument %(document)s; Ausdruck: " +"%(expression)s; %(exception)s" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "Interner Name um diesen Index zu identifizieren" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert werden." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert " +"werden." #: models.py:82 models.py:109 msgid "Index" @@ -130,7 +132,10 @@ msgstr "Index-Instanzen" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-" +"Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/" +"builtins/)" #: models.py:118 msgid "Indexing expression" @@ -138,13 +143,18 @@ msgstr "Indexierungsausdruck" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert werden." +msgstr "" +"Bewirkt Sichtbarkeit und Aktualisierung des Index, wenn Dokumente geändert " +"werden." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Wählen Sie diese Option, wenn Dokumente in diesem Knoten dargestellt werden sollen (und dieser Knoten nicht als Eltern-Knoten für weitere Kind-Knotenpunkte fungieren soll)." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Wählen Sie diese Option, wenn Dokumente in diesem Knoten dargestellt werden " +"sollen (und dieser Knoten nicht als Eltern-Knoten für weitere Kind-" +"Knotenpunkte fungieren soll)." #: models.py:134 msgid "Link documents" @@ -216,7 +226,6 @@ msgstr "Dokumentenindices neu aufbauen" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "Index %s löschen?" @@ -275,7 +284,8 @@ msgstr "Knotenpunkte der Indices, die Dokumente enthalten: %s" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." +msgstr "" +"Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." #: views.py:342 msgid "Rebuild all indexes?" @@ -346,9 +356,11 @@ msgstr "Indexwiederaufbau erfolgreich eingereiht" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -385,11 +397,11 @@ msgstr "Indexwiederaufbau erfolgreich eingereiht" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 345c1b709d..bc4f21f80b 100644 --- a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" 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 a2330c9c89..e3c7c321aa 100644 --- a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -29,7 +30,6 @@ msgid "Document types" msgstr "Tipos de documento" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -99,17 +99,19 @@ msgstr "nuevo nodo secundario" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Error indexando documento: %(document)s; expresión: %(expression)s; %(exception)s" +msgstr "" +"Error indexando documento: %(document)s; expresión: %(expression)s; " +"%(exception)s" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Hace que este índice sea visible y actualizado cuando los datos de documentos cambien." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Hace que este índice sea visible y actualizado cuando los datos de " +"documentos cambien." #: models.py:82 models.py:109 msgid "Index" @@ -135,13 +137,17 @@ msgstr "expresión de indexación" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Hace que este nodo sea visible y actualizado cuando los datos de los documentos son cambiados." +msgstr "" +"Hace que este nodo sea visible y actualizado cuando los datos de los " +"documentos son cambiados." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Marque esta opción para que el nodo actúe como un contenedor de documentos y no como un padre para otros nodos secundarios." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Marque esta opción para que el nodo actúe como un contenedor de documentos y " +"no como un padre para otros nodos secundarios." #: models.py:134 msgid "Link documents" @@ -213,7 +219,6 @@ msgstr "Generar índices de documentos" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -272,7 +277,9 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "En bases de datos de gran tamaño esta operación puede tardar algún tiempo en ejecutarse." +msgstr "" +"En bases de datos de gran tamaño esta operación puede tardar algún tiempo en " +"ejecutarse." #: views.py:342 msgid "Rebuild all indexes?" @@ -343,9 +350,11 @@ msgstr "Reconstrucción de Índices en espera de forma exitosa." #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -382,11 +391,11 @@ msgstr "Reconstrucción de Índices en espera de forma exitosa." #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 efdd3c2f17..706c1d3b8b 100644 --- a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 @@ -27,7 +28,6 @@ msgid "Document types" msgstr "انواع سند" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -97,17 +97,18 @@ msgstr "گره فرزند جدید" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "خطای ساختن ایندکس سند: %(document)s; , عبارت : %(expression)s; %(exception)s" +msgstr "" +"خطای ساختن ایندکس سند: %(document)s; , عبارت : %(expression)s; %(exception)s" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی شود." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی " +"شود." #: models.py:82 models.py:109 msgid "Index" @@ -133,12 +134,14 @@ msgstr "عبارت اندیس گذاری" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی شود." +msgstr "" +"باعث میشود که این ایندکس قابل رویت شود و در زمان تغییر داده سند بروز رسانی " +"شود." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "بررسی شود که اینکه این گره ظرفی برای اسناد است و نه پدر گره های دیگر." #: models.py:134 @@ -211,7 +214,6 @@ msgstr "بازسازی ایندکسهای سند" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -341,9 +343,11 @@ msgstr "ساخت مجدد اندیسها در صف قرار گرفت." #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -380,11 +384,11 @@ msgstr "ساخت مجدد اندیسها در صف قرار گرفت." #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 8b2149652e..43dedab818 100644 --- a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 @@ -30,7 +31,6 @@ msgid "Document types" msgstr "Types de document" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "Indexation de document" @@ -85,7 +85,8 @@ msgstr "Modèle d'arborescence" #: links.py:54 msgid "Deletes and creates from scratch all the document indexes." -msgstr "Supprimer et reconstruire les indexes des documents en partant de zéro." +msgstr "" +"Supprimer et reconstruire les indexes des documents en partant de zéro." #: links.py:57 msgid "Rebuild indexes" @@ -100,17 +101,21 @@ msgstr "Nouveau noeud enfant" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Erreur lors de l'indexation du document: %(document)s; expression: %(expression)s; %(exception)s" +msgstr "" +"Erreur lors de l'indexation du document: %(document)s; expression: " +"%(expression)s; %(exception)s" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." -msgstr "Ces valeurs seront utilisées par d'autres applications pour référencer cet indexe." +msgstr "" +"Ces valeurs seront utilisées par d'autres applications pour référencer cet " +"indexe." #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Permet à cet index d'être à la fois visible et mis à jour quand le contenu d'un document est modifié." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Permet à cet index d'être à la fois visible et mis à jour quand le contenu " +"d'un document est modifié." #: models.py:82 models.py:109 msgid "Index" @@ -128,7 +133,9 @@ msgstr "Instance d'indexe" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Saisissez un modèle à restituer. Utiliser le langage de rendu de Django par défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Saisissez un modèle à restituer. Utiliser le langage de rendu de Django par " +"défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:118 msgid "Indexing expression" @@ -136,13 +143,17 @@ msgstr "Expression d'indexation" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Permet à ce noeud d'être visible et mis à jour quand le contenu d'un document est modifié." +msgstr "" +"Permet à ce noeud d'être visible et mis à jour quand le contenu d'un " +"document est modifié." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Cochez cette option pour permettre à ce noeud d'être un conteneur de documents et pas seulement un noeud parent d'autres noeuds enfants." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Cochez cette option pour permettre à ce noeud d'être un conteneur de " +"documents et pas seulement un noeud parent d'autres noeuds enfants." #: models.py:134 msgid "Link documents" @@ -214,7 +225,6 @@ msgstr "Reconstruire les indexes des documents" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "Supprimer l'indexe : %s ?" @@ -273,7 +283,9 @@ msgstr "Noeuds d'indexe contenant le document : %s" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "Sur de grosses bases de données, cette opération peut prendre un certain temps." +msgstr "" +"Sur de grosses bases de données, cette opération peut prendre un certain " +"temps." #: views.py:342 msgid "Rebuild all indexes?" @@ -344,9 +356,11 @@ msgstr "La ré-indexation en attente a été faite avec succès." #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -383,11 +397,11 @@ msgstr "La ré-indexation en attente a été faite avec succès." #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 ce659f34c9..b938b9209a 100644 --- a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -27,7 +28,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -100,13 +100,11 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:82 models.py:109 @@ -137,8 +135,8 @@ msgstr "" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:134 @@ -211,7 +209,6 @@ msgstr "" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -341,9 +338,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -380,11 +379,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 fd0a8321c8..a6c27ca1bc 100644 --- a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 @@ -27,7 +28,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -100,13 +100,11 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:82 models.py:109 @@ -137,8 +135,8 @@ msgstr "" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:134 @@ -211,7 +209,6 @@ msgstr "" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -270,7 +267,9 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "Pada database yang besar pekerjaan berikut mungkin akan membutuhkan waktu untuk dilaksanakan." +msgstr "" +"Pada database yang besar pekerjaan berikut mungkin akan membutuhkan waktu " +"untuk dilaksanakan." #: views.py:342 msgid "Rebuild all indexes?" @@ -341,9 +340,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -380,11 +381,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 ccc2f96ff4..cbaf6dc18d 100644 --- a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -30,7 +31,6 @@ msgid "Document types" msgstr "Tipi di documento" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -100,17 +100,19 @@ msgstr "Novo nodo figlio" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Errore nell'ndicizzazione del documento: %(document)s; espressione: %(expression)s; %(exception)s" +msgstr "" +"Errore nell'ndicizzazione del documento: %(document)s; espressione: " +"%(expression)s; %(exception)s" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Fa sì che questo indice possa essere visibile e aggiornato quando i dati del documento cambiano." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Fa sì che questo indice possa essere visibile e aggiornato quando i dati del " +"documento cambiano." #: models.py:82 models.py:109 msgid "Index" @@ -136,13 +138,17 @@ msgstr "Espressione di indicizzazione" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Fa sì che questo nodo possa essere visibili e aggiornato quando i dati del documento cambiano." +msgstr "" +"Fa sì che questo nodo possa essere visibili e aggiornato quando i dati del " +"documento cambiano." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Selezionare questa opzione per questo specifico nodo quale contenitore per i documenti e non come un genitore per ulteriori nodi." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Selezionare questa opzione per questo specifico nodo quale contenitore per i " +"documenti e non come un genitore per ulteriori nodi." #: models.py:134 msgid "Link documents" @@ -214,7 +220,6 @@ msgstr "Ricostruisci indici documento" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -273,7 +278,9 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di tempo." +msgstr "" +"Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di " +"tempo." #: views.py:342 msgid "Rebuild all indexes?" @@ -344,9 +351,11 @@ msgstr "Ricostruzione dell'indice messo in coda." #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -383,11 +392,11 @@ msgstr "Ricostruzione dell'indice messo in coda." #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 06d375e4d6..9f69af5447 100644 --- a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -28,7 +29,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -101,14 +101,13 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Maakt deze index zichtbaar en 'up-to-date' wanneer document gegevens wijzigd." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Maakt deze index zichtbaar en 'up-to-date' wanneer document gegevens wijzigd." #: models.py:82 models.py:109 msgid "Index" @@ -134,13 +133,15 @@ msgstr "" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Maakt deze node zichtbaar en 'up-to-date' wanneer document gegevens wijzigen" +msgstr "" +"Maakt deze node zichtbaar en 'up-to-date' wanneer document gegevens wijzigen" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Selecteer deze optie, wanneer deze node alleen documenten dient te bevatten. " +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Selecteer deze optie, wanneer deze node alleen documenten dient te bevatten. " #: models.py:134 msgid "Link documents" @@ -212,7 +213,6 @@ msgstr "documenten opnieuw indexeren" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -342,9 +342,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -381,11 +383,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 1fe06f476e..728e40178a 100644 --- a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012,2015 @@ -10,15 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: admin.py:24 msgid "None" @@ -29,7 +31,6 @@ msgid "Document types" msgstr "Typy dokumentów" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -102,14 +103,14 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Powoduje że ten wskaźnik będzie widoczny i zaktualizowany podczas zmiany danych dokumentów." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Powoduje że ten wskaźnik będzie widoczny i zaktualizowany podczas zmiany " +"danych dokumentów." #: models.py:82 models.py:109 msgid "Index" @@ -127,7 +128,9 @@ msgstr "" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Podaj szablon do wyrenderowania. Użyj domyślnego języka szablonów Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Podaj szablon do wyrenderowania. Użyj domyślnego języka szablonów Django " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:118 msgid "Indexing expression" @@ -139,9 +142,11 @@ msgstr "Causes this node to be visible and updated when document data changes." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Check this option to have this node act as a container for documents and not as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." #: models.py:134 msgid "Link documents" @@ -213,7 +218,6 @@ msgstr "Odbuduj indeksy dokumentów" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -343,9 +347,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -382,11 +388,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 d8ea20951d..aec79e7ae0 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: # Translators: # Renata Oliveira , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin.py:24 @@ -29,7 +30,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -102,14 +102,14 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Faz com que este índice seja visível e atualizado quando os dados do documento forem alterados." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Faz com que este índice seja visível e atualizado quando os dados do " +"documento forem alterados." #: models.py:82 models.py:109 msgid "Index" @@ -135,13 +135,17 @@ msgstr "" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Faz com que este nó seja visível e atualizado quando os dados do documento forem alterados." +msgstr "" +"Faz com que este nó seja visível e atualizado quando os dados do documento " +"forem alterados." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Escolha esta opção para que este nó atue como contentor para documentos e não como pai de outros nós." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Escolha esta opção para que este nó atue como contentor para documentos e " +"não como pai de outros nós." #: models.py:134 msgid "Link documents" @@ -213,7 +217,6 @@ msgstr "Reconstruir índices de documento" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -343,9 +346,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -382,11 +387,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 dec3cdf9ec..5f70f0d17c 100644 --- a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Renata Oliveira , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin.py:24 @@ -29,7 +30,6 @@ msgid "Document types" msgstr "Tipos de Documentos" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -99,17 +99,19 @@ msgstr "Novo node filho" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Error indexing document: %(document)s; expression: %(expression)s; %(exception)s" +msgstr "" +"Error indexing document: %(document)s; expression: %(expression)s; " +"%(exception)s" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Faz com que este índice seja visível, e atualizado quando alterações de dados de documentos." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Faz com que este índice seja visível, e atualizado quando alterações de " +"dados de documentos." #: models.py:82 models.py:109 msgid "Index" @@ -135,13 +137,17 @@ msgstr "Indexando expressão" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Faz com que este nó para ser quando alterações de dados do documento visível e atualizado." +msgstr "" +"Faz com que este nó para ser quando alterações de dados do documento visível " +"e atualizado." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Marque esta opção para que este nó ato como um contêiner para documentos e não como um pai para mais nós." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Marque esta opção para que este nó ato como um contêiner para documentos e " +"não como um pai para mais nós." #: models.py:134 msgid "Link documents" @@ -213,7 +219,6 @@ msgstr "Reconstruir índices de documento" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -272,7 +277,8 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "Em grandes bases de dados esta operação pode levar algum tempo para executar." +msgstr "" +"Em grandes bases de dados esta operação pode levar algum tempo para executar." #: views.py:342 msgid "Rebuild all indexes?" @@ -343,9 +349,11 @@ msgstr "Sucesso do Rebuild da fila de indice." #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -382,11 +390,11 @@ msgstr "Sucesso do Rebuild da fila de indice." #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 5256a86f19..6c3a74a2c8 100644 --- a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: admin.py:24 msgid "None" @@ -28,7 +30,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -101,14 +102,14 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Cauză pentru acest index să fie vizibil și actualizat când documentul suferă schimbări." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Cauză pentru acest index să fie vizibil și actualizat când documentul suferă " +"schimbări." #: models.py:82 models.py:109 msgid "Index" @@ -134,13 +135,17 @@ msgstr "" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Cauză pentru ca acest nod să fie vizibil și actualizat atunci când datele documentului se modifică." +msgstr "" +"Cauză pentru ca acest nod să fie vizibil și actualizat atunci când datele " +"documentului se modifică." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Bifați această opțiune pentru a avea acest nod ca un container pentru documente și nu ca un părinte pentru nodurile suplimentare." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Bifați această opțiune pentru a avea acest nod ca un container pentru " +"documente și nu ca un părinte pentru nodurile suplimentare." #: models.py:134 msgid "Link documents" @@ -212,7 +217,6 @@ msgstr "Reconstruire index documente" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -271,7 +275,8 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "Pe baze de date mari, această operație poate dura ceva timp pentru a executa." +msgstr "" +"Pe baze de date mari, această operație poate dura ceva timp pentru a executa." #: views.py:342 msgid "Rebuild all indexes?" @@ -342,9 +347,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -381,11 +388,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 cd4cbd75e6..24924703c1 100644 --- a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: admin.py:24 msgid "None" @@ -27,7 +30,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -100,14 +102,13 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." -msgstr "Этот индекс должен быть видимым и обновляться при изменении данных документа." +msgid "Causes this index to be visible and updated when document data changes." +msgstr "" +"Этот индекс должен быть видимым и обновляться при изменении данных документа." #: models.py:82 models.py:109 msgid "Index" @@ -133,13 +134,15 @@ msgstr "" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Этот узел должен быть видимым и обновляются при изменении данных документа." +msgstr "" +"Этот узел должен быть видимым и обновляются при изменении данных документа." #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." -msgstr "Этот узел будет контейнером для документов и не будет иметь дочерних узлов." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." +msgstr "" +"Этот узел будет контейнером для документов и не будет иметь дочерних узлов." #: models.py:134 msgid "Link documents" @@ -211,7 +214,6 @@ msgstr "Восстановление индексов документа" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -270,7 +272,9 @@ msgstr "" #: views.py:341 msgid "On large databases this operation may take some time to execute." -msgstr "В больших базах данных эта операция может занять некоторое время для выполнения." +msgstr "" +"В больших базах данных эта операция может занять некоторое время для " +"выполнения." #: views.py:342 msgid "Rebuild all indexes?" @@ -341,9 +345,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -380,11 +386,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 2d1020537b..df264f02de 100644 --- a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: admin.py:24 msgid "None" @@ -27,7 +29,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -100,13 +101,11 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:82 models.py:109 @@ -137,8 +136,8 @@ msgstr "" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:134 @@ -211,7 +210,6 @@ msgstr "" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -341,9 +339,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -380,11 +380,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 31213cb9a5..4133fed2f3 100644 --- a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 @@ -27,7 +28,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -100,13 +100,11 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "" #: models.py:82 models.py:109 @@ -137,8 +135,8 @@ msgstr "" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "" #: models.py:134 @@ -211,7 +209,6 @@ msgstr "" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -341,9 +338,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -380,11 +379,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" diff --git a/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po index a79f32cf7b..6ecd814a14 100644 --- a/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin.py:24 @@ -28,7 +29,6 @@ msgid "Document types" msgstr "" #: apps.py:48 -#| msgid "document indexes" msgid "Document indexing" msgstr "" @@ -101,13 +101,11 @@ msgid "" msgstr "" #: models.py:29 -#| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." msgstr "" #: models.py:35 -msgid "" -"Causes this index to be visible and updated when document data changes." +msgid "Causes this index to be visible and updated when document data changes." msgstr "当文档数据变化时,将导致索引被更新和可见。" #: models.py:82 models.py:109 @@ -138,8 +136,8 @@ msgstr "当文档数据变化时,导致节点被更新和可见。" #: models.py:131 msgid "" -"Check this option to have this node act as a container for documents and not" -" as a parent for further nodes." +"Check this option to have this node act as a container for documents and not " +"as a parent for further nodes." msgstr "检查当前节点是否为文档容器,而不是作为别处节点的父节点。" #: models.py:134 @@ -212,7 +210,6 @@ msgstr "重建文档索引" #: views.py:51 #, python-format -#| msgid "Delete document indexes" msgid "Delete the index: %s?" msgstr "" @@ -342,9 +339,11 @@ msgstr "" #~ msgstr "Maximum suffix (%s) count reached." #~ msgid "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgstr "" -#~ "Error in document indexing update expression: %(expression)s; %(exception)s" +#~ "Error in document indexing update expression: %(expression)s; " +#~ "%(exception)s" #~ msgid "Unable to delete document indexing node; %s" #~ msgstr "Unable to delete document indexing node; %s" @@ -381,11 +380,11 @@ msgstr "" #~ msgstr "documents rename count" #~ msgid "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgstr "" -#~ "A dictionary that maps the index name and where on the filesystem that index" -#~ " will be mirrored." +#~ "A dictionary that maps the index name and where on the filesystem that " +#~ "index will be mirrored." #~ msgid "Index rebuild error: %s" #~ msgstr "Index rebuild error: %s" 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 727c274b02..a3866a99db 100644 --- a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,144 +9,315 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Document signatures" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "Signature file" - -#: links.py:39 -msgid "Delete signature" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "Key ID: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "Signature ID: %s" -#: links.py:54 -msgid "Signatures" -msgstr "" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Verify document signatures" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Download detached signatures" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Upload detached signatures" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "لا شيء" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" -msgstr "Signature ID: %s" - -#: views.py:72 -#, python-format -msgid "Signature type: %s" -msgstr "Signature type: %s" - -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "Key ID: %s" - -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Timestamp: %s" - -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Signee: %s" - -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "Signature file" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Signature file" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" +msgstr "Signature ID: %s" + +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" +msgstr "Signature type: %s" + +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" + +#: forms.py:77 +msgid "Key creation date" +msgstr "" + +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Verify document signatures" + +#: links.py:39 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signature file" +msgid "Signature list" +msgstr "Signature file" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signature" +msgstr "Document signatures" + +#: models.py:89 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signatures" +msgstr "Document signatures" + +#: models.py:122 +msgid "Signature file" +msgstr "Signature file" + +#: models.py:126 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signature" +msgstr "Download detached signatures" + +#: models.py:127 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signatures" +msgstr "Download detached signatures" + +#: models.py:130 +#, fuzzy +#| msgid "signature file" +msgid "signature" +msgstr "signature file" + +#: permissions.py:13 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Download detached signatures" + +#: permissions.py:17 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Sign documents with embedded signatures" +msgstr "Verify document signatures" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Download detached signatures" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Upload detached signatures" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Verify document signatures" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Verify document signatures" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Document version signed successfully." msgstr "Detached signature uploaded successfully." #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." -msgstr "" - -#: views.py:193 +#: views.py:240 #, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" +#: views.py:267 +#, fuzzy, python-format +#| msgid "Download detached signatures" +msgid "Delete detached signature: %s" +msgstr "Download detached signatures" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Document signatures" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature type: %s" +msgid "Signatures for document version: %s" +msgstr "Signature type: %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signatures" +msgid "Upload detached signature for document version: %s" +msgstr "Upload detached signatures" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." msgstr "" +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Verify document signatures" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Signature verification queued successfully." +msgstr "Detached signature uploaded successfully." + +#~ msgid "Timestamp: %s" +#~ msgstr "Timestamp: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Signee: %s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" - -#~ msgid "signature file" -#~ msgstr "signature file" 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 b9f65db9ca..3211c4a930 100644 --- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,141 +9,320 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Сигнатури на документа" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "Файл със сигнатура" - -#: links.py:39 -msgid "Delete signature" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "Номер на ключ: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "Номер на сигнатура: %s" -#: links.py:54 -msgid "Signatures" -msgstr "Подписи" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Проверете сигнатурите на документа" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "Изтриване на несвързани сигнатури" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Свалете несвързаните сигнатури" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Качете несвързаните сигнатури" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Няма" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" -msgstr "Номер на сигнатура: %s" - -#: views.py:72 -#, python-format -msgid "Signature type: %s" -msgstr "Вид сигнатура: %s" - -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "Номер на ключ: %s" - -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Време: %s" - -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Подписал: %s" - -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." -msgstr "Несвързаните сигнатури са качени успешно." +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "Файл със сигнатура" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Файл със сигнатура" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" +msgstr "Номер на сигнатура: %s" + +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" +msgstr "Вид сигнатура: %s" + +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" + +#: forms.py:77 +msgid "Key creation date" +msgstr "" + +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Проверете сигнатурите на документа" + +#: links.py:39 +msgid "Signatures" +msgstr "Подписи" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signatures" +msgid "Signature list" +msgstr "Подписи" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signature" +msgstr "Сигнатури на документа" + +#: models.py:89 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signatures" +msgstr "Сигнатури на документа" + +#: models.py:122 +msgid "Signature file" +msgstr "Файл със сигнатура" + +#: models.py:126 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Document version detached signature" +msgstr "Изтриване на несвързани сигнатури" + +#: models.py:127 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Document version detached signatures" +msgstr "Изтриване на несвързани сигнатури" + +#: models.py:130 +#, fuzzy +#| msgid "Signatures" +msgid "signature" +msgstr "Подписи" + +#: permissions.py:13 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Изтриване на несвързани сигнатури" + +#: permissions.py:17 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Sign documents with embedded signatures" +msgstr "Проверете сигнатурите на документа" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "Изтриване на несвързани сигнатури" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Свалете несвързаните сигнатури" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Качете несвързаните сигнатури" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Проверете сигнатурите на документа" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Проверете сигнатурите на документа" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Document version signed successfully." +msgstr "Несвързаните сигнатури са изтрити успешно." #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." +#: views.py:240 +#, python-format +msgid "Sign document version \"%s\" with a embedded signature" +msgstr "" + +#: views.py:267 +#, fuzzy, python-format +#| msgid "Delete detached signatures" +msgid "Delete detached signature: %s" +msgstr "Изтриване на несвързани сигнатури" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Сигнатури на документа" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature type: %s" +msgid "Signatures for document version: %s" +msgstr "Вид сигнатура: %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signatures" +msgid "Upload detached signature for document version: %s" +msgstr "Качете несвързаните сигнатури" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Проверете сигнатурите на документа" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Signature verification queued successfully." msgstr "Несвързаните сигнатури са изтрити успешно." -#: views.py:193 -#, python-format -msgid "Error while deleting the detached signature; %s" -msgstr "Грешка при изтриване на несвързана сигнатура; %s" +#~ msgid "Timestamp: %s" +#~ msgstr "Време: %s" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" -msgstr "" +#~ msgid "Signee: %s" +#~ msgstr "Подписал: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Несвързаните сигнатури са качени успешно." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Грешка при изтриване на несвързана сигнатура; %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" 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 0a04cf9ccf..e2ea6f4d42 100644 --- a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,144 +9,315 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Potpisi dokumenta" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "Datoteka potpisa" - -#: links.py:39 -msgid "Delete signature" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "ID oznaka ključa: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "ID oznaka potpisa: %s" -#: links.py:54 -msgid "Signatures" -msgstr "" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Provjeriti potpise dokumenta" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Download odvojene potpise" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Upload zakačene potpise" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Nijedno" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" -msgstr "ID oznaka potpisa: %s" - -#: views.py:72 -#, python-format -msgid "Signature type: %s" -msgstr "Tip potpisa: %s" - -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "ID oznaka ključa: %s" - -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Vremenski žig: %s" - -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Potpisnik: %s" - -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "Datoteka potpisa" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Datoteka potpisa" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" +msgstr "ID oznaka potpisa: %s" + +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" +msgstr "Tip potpisa: %s" + +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" + +#: forms.py:77 +msgid "Key creation date" +msgstr "" + +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Provjeriti potpise dokumenta" + +#: links.py:39 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signature file" +msgid "Signature list" +msgstr "Datoteka potpisa" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signature" +msgstr "Potpisi dokumenta" + +#: models.py:89 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signatures" +msgstr "Potpisi dokumenta" + +#: models.py:122 +msgid "Signature file" +msgstr "Datoteka potpisa" + +#: models.py:126 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signature" +msgstr "Download odvojene potpise" + +#: models.py:127 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signatures" +msgstr "Download odvojene potpise" + +#: models.py:130 +#, fuzzy +#| msgid "signature file" +msgid "signature" +msgstr "signature file" + +#: permissions.py:13 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Download odvojene potpise" + +#: permissions.py:17 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Sign documents with embedded signatures" +msgstr "Provjeriti potpise dokumenta" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Download odvojene potpise" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Upload zakačene potpise" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Provjeriti potpise dokumenta" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Provjeriti potpise dokumenta" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Document version signed successfully." msgstr "Odvojeni potpis je uspješno upload-ovan." #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." -msgstr "" - -#: views.py:193 +#: views.py:240 #, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" +#: views.py:267 +#, fuzzy, python-format +#| msgid "Download detached signatures" +msgid "Delete detached signature: %s" +msgstr "Download odvojene potpise" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Potpisi dokumenta" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature type: %s" +msgid "Signatures for document version: %s" +msgstr "Tip potpisa: %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signatures" +msgid "Upload detached signature for document version: %s" +msgstr "Upload zakačene potpise" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." msgstr "" +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Provjeriti potpise dokumenta" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Signature verification queued successfully." +msgstr "Odvojeni potpis je uspješno upload-ovan." + +#~ msgid "Timestamp: %s" +#~ msgstr "Vremenski žig: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Potpisnik: %s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" - -#~ msgid "signature file" -#~ msgstr "signature file" diff --git a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po index 4141877433..324c4771e7 100644 --- a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po @@ -1,151 +1,281 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "" -#: forms.py:9 models.py:31 -msgid "Signature file" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:39 -msgid "Delete signature" +#: apps.py:94 models.py:37 +msgid "Key ID" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "signature file" +msgid "Signature ID" +msgstr "signature file" -#: links.py:49 -msgid "Upload signature" -msgstr "" - -#: links.py:54 -msgid "Signatures" -msgstr "" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Ingen" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:72 -#, python-format -msgid "Signature type: %s" +#: forms.py:23 +msgid "Key" msgstr "" -#: views.py:73 -#, python-format -msgid "Key ID: %s" +#: forms.py:27 +msgid "Passphrase" msgstr "" -#: views.py:74 -#, python-format -msgid "Timestamp: %s" +#: forms.py:53 +#, fuzzy +#| msgid "signature file" +msgid "Signature is embedded?" +msgstr "signature file" + +#: forms.py:55 +#, fuzzy +#| msgid "signature file" +msgid "Signature date" +msgstr "signature file" + +#: forms.py:58 +#, fuzzy +#| msgid "signature file" +msgid "Signature key ID" +msgstr "signature file" + +#: forms.py:60 +msgid "Signature key present?" msgstr "" -#: views.py:77 -#, python-format -msgid "Signee: %s" +#: forms.py:73 +msgid "Key fingerprint" msgstr "" -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: forms.py:77 +msgid "Key creation date" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +msgid "Verify all documents" +msgstr "" + +#: links.py:39 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "signature file" +msgid "Signature list" +msgstr "signature file" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +msgid "Document version embedded signature" +msgstr "" + +#: models.py:89 +msgid "Document version embedded signatures" +msgstr "" + +#: models.py:122 +msgid "Signature file" +msgstr "" + +#: models.py:126 +msgid "Document version detached signature" +msgstr "" + +#: models.py:127 +msgid "Document version detached signatures" +msgstr "" + +#: models.py:130 +#, fuzzy +#| msgid "signature file" +msgid "signature" +msgstr "signature file" + +#: permissions.py:13 +msgid "Sign documents with detached signatures" +msgstr "" + +#: permissions.py:17 +msgid "Sign documents with embedded signatures" +msgstr "" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "" + +#: permissions.py:25 +msgid "Download detached document signatures" +msgstr "" + +#: permissions.py:29 +msgid "Upload detached document signatures" +msgstr "" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "" + +#: permissions.py:37 +msgid "View details of document signatures" +msgstr "" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +msgid "Document version signed successfully." msgstr "" #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." -msgstr "" - -#: views.py:193 +#: views.py:240 #, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:204 +#: views.py:267 #, python-format -msgid "Delete the detached signature from document: %s?" +msgid "Delete detached signature: %s" +msgstr "" + +#: views.py:292 +#, python-format +msgid "Details for signature: %s" +msgstr "" + +#: views.py:339 +#, python-format +msgid "Signatures for document version: %s" +msgstr "" + +#: views.py:375 +#, python-format +msgid "Upload detached signature for document version: %s" +msgstr "" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +msgid "Verify all document for signatures?" +msgstr "" + +#: views.py:403 +msgid "Signature verification queued successfully." msgstr "" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" - -#~ msgid "signature file" -#~ msgstr "signature file" 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 33143260dc..1a1e2b7293 100644 --- a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -13,141 +13,336 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Dokumentenunterschriften" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "Unterschriftsdatei" +#: apps.py:91 +msgid "Date" +msgstr "" -#: links.py:39 -msgid "Delete signature" -msgstr "Unterschrift löschen" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "Schlüssel-ID: %s" -#: links.py:43 -msgid "Download signature" -msgstr "Unterschrift herunterladen" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "Unterschrifts-ID: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "Unterschrift hochladen" - -#: links.py:54 -msgid "Signatures" -msgstr "Unterschriften" - -#: models.py:27 -msgid "Document version" -msgstr "Dokumentenversion" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "Unterschrift eingebettet" - -#: models.py:52 -msgid "Document version signature" -msgstr "Dokumentenversion Unterschrift" - -#: models.py:53 -msgid "Document version signatures" -msgstr "Dokumentenversionen Unterschriften" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Dokumentenunterschriften überprüfen" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "Separate Unterschriften löschen" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Separate Unterschriften herunterladen" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Separate Unterschriften hochladen" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "Unterschriftenstatus: %s" - -#: views.py:62 -msgid "Embedded" -msgstr "Eingebettet" - -#: views.py:64 -msgid "Detached" -msgstr "Separat" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Nichts" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" +#: apps.py:102 +msgid "Type" +msgstr "" + +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "Unterschriftsdatei" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Unterschriftsdatei" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" msgstr "Unterschrifts-ID: %s" -#: views.py:72 -#, python-format -msgid "Signature type: %s" +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" msgstr "Unterschriftstyp: %s" -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "Schlüssel-ID: %s" +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Zeitstempel: %s" +#: forms.py:77 +msgid "Key creation date" +msgstr "" -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Unterschreibender: %s" +#: forms.py:82 +msgid "Key expiration date" +msgstr "" -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" -msgstr "Unterschrifteneigenschaften für Dokument %s" +#: forms.py:87 +msgid "Key length" +msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." -msgstr "Separate Unterschrift erfolgreich hochgeladen" +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Dokumentenunterschriften überprüfen" + +#: links.py:39 +msgid "Signatures" +msgstr "Unterschriften" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signatures" +msgid "Signature list" +msgstr "Unterschriften" + +#: links.py:63 +#, fuzzy +#| msgid "Download signature" +msgid "Download" +msgstr "Unterschrift herunterladen" + +#: links.py:69 +msgid "Upload signature" +msgstr "Unterschrift hochladen" + +#: links.py:75 +#, fuzzy +#| msgid "Detached" +msgid "Sign detached" +msgstr "Separat" + +#: links.py:81 +#, fuzzy +#| msgid "Embedded" +msgid "Sign embedded" +msgstr "Eingebettet" + +#: models.py:31 +msgid "Document version" +msgstr "Dokumentenversion" + +#: models.py:35 +#, fuzzy +#| msgid "Delete signature" +msgid "Date signed" +msgstr "Unterschrift löschen" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "Dokumentenversion Unterschrift" + +#: models.py:52 +msgid "Document version signatures" +msgstr "Dokumentenversionen Unterschriften" + +#: models.py:71 +msgid "Detached" +msgstr "Separat" + +#: models.py:73 +msgid "Embedded" +msgstr "Eingebettet" + +#: models.py:88 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version embedded signature" +msgstr "Dokumentenversion Unterschrift" + +#: models.py:89 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version embedded signatures" +msgstr "Dokumentenversionen Unterschriften" + +#: models.py:122 +msgid "Signature file" +msgstr "Unterschriftsdatei" + +#: models.py:126 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version detached signature" +msgstr "Dokumentenversion Unterschrift" + +#: models.py:127 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version detached signatures" +msgstr "Dokumentenversionen Unterschriften" + +#: models.py:130 +#, fuzzy +#| msgid "Signatures" +msgid "signature" +msgstr "Unterschriften" + +#: permissions.py:13 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Separate Unterschriften löschen" + +#: permissions.py:17 +#, fuzzy +#| msgid "Has embedded signature" +msgid "Sign documents with embedded signatures" +msgstr "Unterschrift eingebettet" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "Separate Unterschriften löschen" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Separate Unterschriften herunterladen" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Separate Unterschriften hochladen" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Dokumentenunterschriften überprüfen" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Dokumentenunterschriften überprüfen" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version signed successfully." +msgstr "Dokumentenversionen Unterschriften" #: views.py:129 -#, python-format -msgid "Upload detached signature for document: %s" +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a detached signature" +msgstr "Dokumentenversion Unterschrift" + +#: views.py:240 +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a embedded signature" +msgstr "Dokumentenversion Unterschrift" + +#: views.py:267 +#, fuzzy, python-format +#| msgid "Delete detached signatures" +msgid "Delete detached signature: %s" +msgstr "Separate Unterschriften löschen" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Dokumentenunterschriften" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature properties for document: %s" +msgid "Signatures for document version: %s" +msgstr "Unterschrifteneigenschaften für Dokument %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signature for document: %s" +msgid "Upload detached signature for document version: %s" msgstr "Separate Unterschrift für Dokument %s hochladen" -#: views.py:187 -msgid "Detached signature deleted successfully." +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Dokumentenunterschriften überprüfen" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Signature verification queued successfully." msgstr "Separate Unterschrift erfolgreich gelöscht" -#: views.py:193 -#, python-format -msgid "Error while deleting the detached signature; %s" -msgstr "Fehler beim Löschen der separaten Unterschrift; %s" +#~ msgid "Signature status: %s" +#~ msgstr "Unterschriftenstatus: %s" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" -msgstr "Separate Unterschrift von Dokument %s löschen?" +#~ msgid "Timestamp: %s" +#~ msgstr "Zeitstempel: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Unterschreibender: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Separate Unterschrift erfolgreich hochgeladen" + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Fehler beim Löschen der separaten Unterschrift; %s" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Separate Unterschrift von Dokument %s löschen?" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" 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 b5b1bf8c76..20dbb6aa98 100644 --- a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,144 +18,318 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Document signatures" -#: forms.py:9 models.py:31 -msgid "Signature file" +#: apps.py:91 +msgid "Date" +msgstr "" + +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "Key ID: %s" + +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "Signature ID: %s" + +#: apps.py:99 forms.py:83 +msgid "None" +msgstr "" + +#: apps.py:102 +msgid "Type" +msgstr "" + +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" msgstr "Signature file" +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Signature file" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" +msgstr "Signature ID: %s" + +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" +msgstr "Signature type: %s" + +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" + +#: forms.py:77 +msgid "Key creation date" +msgstr "" + +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Verify document signatures" + #: links.py:39 #, fuzzy -msgid "Delete signature" -msgstr "download signature" - -#: links.py:43 -#, fuzzy -msgid "Download signature" -msgstr "download signature" - -#: links.py:49 -#, fuzzy -msgid "Upload signature" -msgstr "upload signature" - -#: links.py:54 -#, fuzzy msgid "Signatures" msgstr "signatures" -#: models.py:27 +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +msgid "Signature list" +msgstr "signatures" + +#: links.py:63 +#, fuzzy +msgid "Download" +msgstr "download signature" + +#: links.py:69 +#, fuzzy +msgid "Upload signature" +msgstr "upload signature" + +#: links.py:75 +#, fuzzy +msgid "Sign detached" +msgstr "detached" + +#: links.py:81 +#, fuzzy +msgid "Sign embedded" +msgstr "embedded" + +#: models.py:31 #, fuzzy msgid "Document version" msgstr "document version" -#: models.py:34 +#: models.py:35 #, fuzzy -msgid "Has embedded signature" -msgstr "has embedded signature" +msgid "Date signed" +msgstr "download signature" -#: models.py:52 +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 #, fuzzy msgid "Document version signature" msgstr "document version signature" -#: models.py:53 +#: models.py:52 #, fuzzy msgid "Document version signatures" msgstr "document version signatures" -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Verify document signatures" - -#: permissions.py:15 -#, fuzzy -msgid "Delete detached signatures" -msgstr "Download detached signatures" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Download detached signatures" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Upload detached signatures" - -#: views.py:58 -#, fuzzy, python-format -msgid "Signature status: %s" -msgstr "Signature type: %s" - -#: views.py:62 -#, fuzzy -msgid "Embedded" -msgstr "embedded" - -#: views.py:64 +#: models.py:71 #, fuzzy msgid "Detached" msgstr "detached" -#: views.py:66 -msgid "None" +#: models.py:73 +#, fuzzy +msgid "Embedded" +msgstr "embedded" + +#: models.py:88 +#, fuzzy +msgid "Document version embedded signature" +msgstr "document version signature" + +#: models.py:89 +#, fuzzy +msgid "Document version embedded signatures" +msgstr "document version signatures" + +#: models.py:122 +msgid "Signature file" +msgstr "Signature file" + +#: models.py:126 +#, fuzzy +msgid "Document version detached signature" +msgstr "document version signature" + +#: models.py:127 +#, fuzzy +msgid "Document version detached signatures" +msgstr "document version signatures" + +#: models.py:130 +#, fuzzy +msgid "signature" +msgstr "signatures" + +#: permissions.py:13 +#, fuzzy +msgid "Sign documents with detached signatures" +msgstr "Download detached signatures" + +#: permissions.py:17 +#, fuzzy +msgid "Sign documents with embedded signatures" +msgstr "has embedded signature" + +#: permissions.py:21 +#, fuzzy +msgid "Delete detached signatures" +msgstr "Download detached signatures" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Download detached signatures" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Upload detached signatures" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Verify document signatures" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Verify document signatures" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." msgstr "" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" -msgstr "Signature ID: %s" +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" -#: views.py:72 -#, python-format -msgid "Signature type: %s" -msgstr "Signature type: %s" - -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "Key ID: %s" - -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Timestamp: %s" - -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Signee: %s" - -#: views.py:85 -#, fuzzy, python-format -msgid "Signature properties for document: %s" -msgstr "signature properties for: %s" - -#: views.py:115 -msgid "Detached signature uploaded successfully." -msgstr "Detached signature uploaded successfully." +#: views.py:98 views.py:202 +#, fuzzy +msgid "Document version signed successfully." +msgstr "document version signatures" #: views.py:129 #, fuzzy, python-format -msgid "Upload detached signature for document: %s" -msgstr "Upload detached signature for: %s" +msgid "Sign document version \"%s\" with a detached signature" +msgstr "document version signature" -#: views.py:187 -#, fuzzy -msgid "Detached signature deleted successfully." -msgstr "Detached signature uploaded successfully." - -#: views.py:193 +#: views.py:240 #, fuzzy, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" +msgstr "document version signature" + +#: views.py:267 +#, fuzzy, python-format +msgid "Delete detached signature: %s" msgstr "Download detached signatures" -#: views.py:204 +#: views.py:292 #, fuzzy, python-format -msgid "Delete the detached signature from document: %s?" +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Document signatures" + +#: views.py:339 +#, fuzzy, python-format +msgid "Signatures for document version: %s" +msgstr "signature properties for: %s" + +#: views.py:375 +#, fuzzy, python-format +msgid "Upload detached signature for document version: %s" msgstr "Upload detached signature for: %s" +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Verify document signatures" + +#: views.py:403 +#, fuzzy +msgid "Signature verification queued successfully." +msgstr "Detached signature uploaded successfully." + +#, fuzzy +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" + +#~ msgid "Timestamp: %s" +#~ msgstr "Timestamp: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Signee: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Detached signature uploaded successfully." + +#, fuzzy +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Download detached signatures" + +#, fuzzy +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" 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 9f55fa6cfb..67662593f9 100644 --- a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,141 +12,336 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Firmas de documentos" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "Archivo de firma" +#: apps.py:91 +msgid "Date" +msgstr "" -#: links.py:39 -msgid "Delete signature" -msgstr "Borrar firma" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "ID de la clave: %s" -#: links.py:43 -msgid "Download signature" -msgstr "Descargar firma" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "ID de la firma: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "Subir firma" - -#: links.py:54 -msgid "Signatures" -msgstr "Firma" - -#: models.py:27 -msgid "Document version" -msgstr "Versión de documento" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "Tiene firma integrada" - -#: models.py:52 -msgid "Document version signature" -msgstr "Firma de versión de documento" - -#: models.py:53 -msgid "Document version signatures" -msgstr "Firmas de versión de documento" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Verificar firmas de documentos" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "Borrar firmas separadas" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Descargar firmas separadas" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Subir firmas separadas" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "Estado de firma: %s" - -#: views.py:62 -msgid "Embedded" -msgstr "Integrado" - -#: views.py:64 -msgid "Detached" -msgstr "Aparte" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Ninguno" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" +#: apps.py:102 +msgid "Type" +msgstr "" + +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "Archivo de firma" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Archivo de firma" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" msgstr "ID de la firma: %s" -#: views.py:72 -#, python-format -msgid "Signature type: %s" +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" msgstr "Tipo de firma: %s" -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "ID de la clave: %s" +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Marca de tiempo: %s" +#: forms.py:77 +msgid "Key creation date" +msgstr "" -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Firmante: %s" +#: forms.py:82 +msgid "Key expiration date" +msgstr "" -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" -msgstr "Propiedades de la firma del documento: %s" +#: forms.py:87 +msgid "Key length" +msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." -msgstr "Firma separada subida con éxito." +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Verificar firmas de documentos" + +#: links.py:39 +msgid "Signatures" +msgstr "Firma" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signatures" +msgid "Signature list" +msgstr "Firma" + +#: links.py:63 +#, fuzzy +#| msgid "Download signature" +msgid "Download" +msgstr "Descargar firma" + +#: links.py:69 +msgid "Upload signature" +msgstr "Subir firma" + +#: links.py:75 +#, fuzzy +#| msgid "Detached" +msgid "Sign detached" +msgstr "Aparte" + +#: links.py:81 +#, fuzzy +#| msgid "Embedded" +msgid "Sign embedded" +msgstr "Integrado" + +#: models.py:31 +msgid "Document version" +msgstr "Versión de documento" + +#: models.py:35 +#, fuzzy +#| msgid "Delete signature" +msgid "Date signed" +msgstr "Borrar firma" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "Firma de versión de documento" + +#: models.py:52 +msgid "Document version signatures" +msgstr "Firmas de versión de documento" + +#: models.py:71 +msgid "Detached" +msgstr "Aparte" + +#: models.py:73 +msgid "Embedded" +msgstr "Integrado" + +#: models.py:88 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version embedded signature" +msgstr "Firma de versión de documento" + +#: models.py:89 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version embedded signatures" +msgstr "Firmas de versión de documento" + +#: models.py:122 +msgid "Signature file" +msgstr "Archivo de firma" + +#: models.py:126 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version detached signature" +msgstr "Firma de versión de documento" + +#: models.py:127 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version detached signatures" +msgstr "Firmas de versión de documento" + +#: models.py:130 +#, fuzzy +#| msgid "Signatures" +msgid "signature" +msgstr "Firma" + +#: permissions.py:13 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Borrar firmas separadas" + +#: permissions.py:17 +#, fuzzy +#| msgid "Has embedded signature" +msgid "Sign documents with embedded signatures" +msgstr "Tiene firma integrada" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "Borrar firmas separadas" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Descargar firmas separadas" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Subir firmas separadas" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Verificar firmas de documentos" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Verificar firmas de documentos" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version signed successfully." +msgstr "Firmas de versión de documento" #: views.py:129 -#, python-format -msgid "Upload detached signature for document: %s" +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a detached signature" +msgstr "Firma de versión de documento" + +#: views.py:240 +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a embedded signature" +msgstr "Firma de versión de documento" + +#: views.py:267 +#, fuzzy, python-format +#| msgid "Delete detached signatures" +msgid "Delete detached signature: %s" +msgstr "Borrar firmas separadas" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Firmas de documentos" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature properties for document: %s" +msgid "Signatures for document version: %s" +msgstr "Propiedades de la firma del documento: %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signature for document: %s" +msgid "Upload detached signature for document version: %s" msgstr "Subir una firma aparte para el documento: %s" -#: views.py:187 -msgid "Detached signature deleted successfully." +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Verificar firmas de documentos" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Signature verification queued successfully." msgstr "Firma separada borrada con éxito." -#: views.py:193 -#, python-format -msgid "Error while deleting the detached signature; %s" -msgstr "Error al borrar la firma separada: %s" +#~ msgid "Signature status: %s" +#~ msgstr "Estado de firma: %s" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" -msgstr "¿Borrar la firma separada del documento: %s?" +#~ msgid "Timestamp: %s" +#~ msgstr "Marca de tiempo: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Firmante: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Firma separada subida con éxito." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Error al borrar la firma separada: %s" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "¿Borrar la firma separada del documento: %s?" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" 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 a0155e914c..84c7e22119 100644 --- a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po @@ -1,148 +1,340 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "امضاهای سند" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "فایل امضا" +#: apps.py:91 +msgid "Date" +msgstr "" -#: links.py:39 -msgid "Delete signature" -msgstr "حذف امضا" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "شناسه کلید: %s" -#: links.py:43 -msgid "Download signature" -msgstr "دانلود امضا" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "شناسه امضا: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "آپلود امضا" - -#: links.py:54 -msgid "Signatures" -msgstr "امضاها" - -#: models.py:27 -msgid "Document version" -msgstr "نسخه سند" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "دارای امضا داخلی و یا جاسازی شده" - -#: models.py:52 -msgid "Document version signature" -msgstr "امضای نسخه سند" - -#: models.py:53 -msgid "Document version signatures" -msgstr "امضاهای نسخه سند" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "بررسی امضای سند" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "حذف امضاهای جدا شده" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "دانلود امضاهای جداشده" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "آپلود امضاهای جدا شده" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "وضعیت امضا : %s" - -#: views.py:62 -msgid "Embedded" -msgstr "داخلی و یا جا سازی شده" - -#: views.py:64 -msgid "Detached" -msgstr "جدا شده" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "هیچ" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" +#: apps.py:102 +msgid "Type" +msgstr "" + +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "فایل امضا" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "فایل امضا" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" msgstr "شناسه امضا: %s" -#: views.py:72 -#, python-format -msgid "Signature type: %s" +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" msgstr "نوع امضا : %s" -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "شناسه کلید: %s" +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "برچسب زمان: %s" +#: forms.py:77 +msgid "Key creation date" +msgstr "" -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "امضا کننده: %s" +#: forms.py:82 +msgid "Key expiration date" +msgstr "" -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" -msgstr "خصوصیات امضا برای سند :%s" +#: forms.py:87 +msgid "Key length" +msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." -msgstr "امضای جدا شده با موفقیت آپلود شد." +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "بررسی امضای سند" + +#: links.py:39 +msgid "Signatures" +msgstr "امضاها" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signatures" +msgid "Signature list" +msgstr "امضاها" + +#: links.py:63 +#, fuzzy +#| msgid "Download signature" +msgid "Download" +msgstr "دانلود امضا" + +#: links.py:69 +msgid "Upload signature" +msgstr "آپلود امضا" + +#: links.py:75 +#, fuzzy +#| msgid "Detached" +msgid "Sign detached" +msgstr "جدا شده" + +#: links.py:81 +#, fuzzy +#| msgid "Embedded" +msgid "Sign embedded" +msgstr "داخلی و یا جا سازی شده" + +#: models.py:31 +msgid "Document version" +msgstr "نسخه سند" + +#: models.py:35 +#, fuzzy +#| msgid "Delete signature" +msgid "Date signed" +msgstr "حذف امضا" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "امضای نسخه سند" + +#: models.py:52 +msgid "Document version signatures" +msgstr "امضاهای نسخه سند" + +#: models.py:71 +msgid "Detached" +msgstr "جدا شده" + +#: models.py:73 +msgid "Embedded" +msgstr "داخلی و یا جا سازی شده" + +#: models.py:88 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version embedded signature" +msgstr "امضای نسخه سند" + +#: models.py:89 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version embedded signatures" +msgstr "امضاهای نسخه سند" + +#: models.py:122 +msgid "Signature file" +msgstr "فایل امضا" + +#: models.py:126 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version detached signature" +msgstr "امضای نسخه سند" + +#: models.py:127 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version detached signatures" +msgstr "امضاهای نسخه سند" + +#: models.py:130 +#, fuzzy +#| msgid "Signatures" +msgid "signature" +msgstr "امضاها" + +#: permissions.py:13 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Sign documents with detached signatures" +msgstr "حذف امضاهای جدا شده" + +#: permissions.py:17 +#, fuzzy +#| msgid "Has embedded signature" +msgid "Sign documents with embedded signatures" +msgstr "دارای امضا داخلی و یا جاسازی شده" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "حذف امضاهای جدا شده" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "دانلود امضاهای جداشده" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "آپلود امضاهای جدا شده" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "بررسی امضای سند" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "بررسی امضای سند" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version signed successfully." +msgstr "امضاهای نسخه سند" #: views.py:129 -#, python-format -msgid "Upload detached signature for document: %s" +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a detached signature" +msgstr "امضای نسخه سند" + +#: views.py:240 +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a embedded signature" +msgstr "امضای نسخه سند" + +#: views.py:267 +#, fuzzy, python-format +#| msgid "Delete detached signatures" +msgid "Delete detached signature: %s" +msgstr "حذف امضاهای جدا شده" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "امضاهای سند" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature properties for document: %s" +msgid "Signatures for document version: %s" +msgstr "خصوصیات امضا برای سند :%s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signature for document: %s" +msgid "Upload detached signature for document version: %s" msgstr "بارگیری (upload) امضای جدا شده از سند : %s" -#: views.py:187 -msgid "Detached signature deleted successfully." +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "بررسی امضای سند" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Signature verification queued successfully." msgstr "امضای جدا شده با موفقیت حذف شد." -#: views.py:193 -#, python-format -msgid "Error while deleting the detached signature; %s" -msgstr "خطا %s در حذف امضای جدا شده" +#~ msgid "Signature status: %s" +#~ msgstr "وضعیت امضا : %s" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" -msgstr "" +#~ msgid "Timestamp: %s" +#~ msgstr "برچسب زمان: %s" + +#~ msgid "Signee: %s" +#~ msgstr "امضا کننده: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "امضای جدا شده با موفقیت آپلود شد." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "خطا %s در حذف امضای جدا شده" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" 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 ef8e9f52ae..5138c373f2 100644 --- a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2015 @@ -10,141 +10,336 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Signatures du document" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "Fichier de signature" +#: apps.py:91 +msgid "Date" +msgstr "" -#: links.py:39 -msgid "Delete signature" -msgstr "Supprimer la signature" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "ID de clé: %s" -#: links.py:43 -msgid "Download signature" -msgstr "Télécharger une signature" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "ID de signature: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "Transférer une signature" - -#: links.py:54 -msgid "Signatures" -msgstr "Signatures" - -#: models.py:27 -msgid "Document version" -msgstr "Version du document" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "Possède une signature intégrée" - -#: models.py:52 -msgid "Document version signature" -msgstr "Signature de la version du document" - -#: models.py:53 -msgid "Document version signatures" -msgstr "Signatures pour la version du document" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Vérifier les signatures du document" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "Suppression des signatures détachées" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Télécharger des signatures externes" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Importer des signatures externes" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "État de la signature: %s" - -#: views.py:62 -msgid "Embedded" -msgstr "Intégré" - -#: views.py:64 -msgid "Detached" -msgstr "Externe" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Aucune" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" +#: apps.py:102 +msgid "Type" +msgstr "" + +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "Fichier de signature" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Fichier de signature" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" msgstr "ID de signature: %s" -#: views.py:72 -#, python-format -msgid "Signature type: %s" +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" msgstr "Type de signature: %s" -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "ID de clé: %s" +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Horodatage: %s" +#: forms.py:77 +msgid "Key creation date" +msgstr "" -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Signataire: %s" +#: forms.py:82 +msgid "Key expiration date" +msgstr "" -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" -msgstr "Propriétés de signature pour le document: %s" +#: forms.py:87 +msgid "Key length" +msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." -msgstr "Signature externe importée avec succès" +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Vérifier les signatures du document" + +#: links.py:39 +msgid "Signatures" +msgstr "Signatures" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signatures" +msgid "Signature list" +msgstr "Signatures" + +#: links.py:63 +#, fuzzy +#| msgid "Download signature" +msgid "Download" +msgstr "Télécharger une signature" + +#: links.py:69 +msgid "Upload signature" +msgstr "Transférer une signature" + +#: links.py:75 +#, fuzzy +#| msgid "Detached" +msgid "Sign detached" +msgstr "Externe" + +#: links.py:81 +#, fuzzy +#| msgid "Embedded" +msgid "Sign embedded" +msgstr "Intégré" + +#: models.py:31 +msgid "Document version" +msgstr "Version du document" + +#: models.py:35 +#, fuzzy +#| msgid "Delete signature" +msgid "Date signed" +msgstr "Supprimer la signature" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "Signature de la version du document" + +#: models.py:52 +msgid "Document version signatures" +msgstr "Signatures pour la version du document" + +#: models.py:71 +msgid "Detached" +msgstr "Externe" + +#: models.py:73 +msgid "Embedded" +msgstr "Intégré" + +#: models.py:88 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version embedded signature" +msgstr "Signature de la version du document" + +#: models.py:89 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version embedded signatures" +msgstr "Signatures pour la version du document" + +#: models.py:122 +msgid "Signature file" +msgstr "Fichier de signature" + +#: models.py:126 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version detached signature" +msgstr "Signature de la version du document" + +#: models.py:127 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version detached signatures" +msgstr "Signatures pour la version du document" + +#: models.py:130 +#, fuzzy +#| msgid "Signatures" +msgid "signature" +msgstr "Signatures" + +#: permissions.py:13 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Suppression des signatures détachées" + +#: permissions.py:17 +#, fuzzy +#| msgid "Has embedded signature" +msgid "Sign documents with embedded signatures" +msgstr "Possède une signature intégrée" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "Suppression des signatures détachées" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Télécharger des signatures externes" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Importer des signatures externes" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Vérifier les signatures du document" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Vérifier les signatures du document" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version signed successfully." +msgstr "Signatures pour la version du document" #: views.py:129 -#, python-format -msgid "Upload detached signature for document: %s" +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a detached signature" +msgstr "Signature de la version du document" + +#: views.py:240 +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a embedded signature" +msgstr "Signature de la version du document" + +#: views.py:267 +#, fuzzy, python-format +#| msgid "Delete detached signatures" +msgid "Delete detached signature: %s" +msgstr "Suppression des signatures détachées" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Signatures du document" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature properties for document: %s" +msgid "Signatures for document version: %s" +msgstr "Propriétés de signature pour le document: %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signature for document: %s" +msgid "Upload detached signature for document version: %s" msgstr "Importer la signature externe pour le document: %s" -#: views.py:187 -msgid "Detached signature deleted successfully." +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Vérifier les signatures du document" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Signature verification queued successfully." msgstr "La signature détachée a été supprimé avec succès." -#: views.py:193 -#, python-format -msgid "Error while deleting the detached signature; %s" -msgstr "Erreur lors de la suppression de la signature détachée; %s" +#~ msgid "Signature status: %s" +#~ msgstr "État de la signature: %s" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" -msgstr "Supprimer la signature détachée du document: %s?" +#~ msgid "Timestamp: %s" +#~ msgstr "Horodatage: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Signataire: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Signature externe importée avec succès" + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Erreur lors de la suppression de la signature détachée; %s" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Supprimer la signature détachée du document: %s?" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" 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 25da9991a8..701e9f9e7f 100644 --- a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po @@ -1,151 +1,281 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "" -#: forms.py:9 models.py:31 -msgid "Signature file" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:39 -msgid "Delete signature" +#: apps.py:94 models.py:37 +msgid "Key ID" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "signature file" +msgid "Signature ID" +msgstr "signature file" -#: links.py:49 -msgid "Upload signature" -msgstr "" - -#: links.py:54 -msgid "Signatures" -msgstr "" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Semmi" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:72 -#, python-format -msgid "Signature type: %s" +#: forms.py:23 +msgid "Key" msgstr "" -#: views.py:73 -#, python-format -msgid "Key ID: %s" +#: forms.py:27 +msgid "Passphrase" msgstr "" -#: views.py:74 -#, python-format -msgid "Timestamp: %s" +#: forms.py:53 +#, fuzzy +#| msgid "signature file" +msgid "Signature is embedded?" +msgstr "signature file" + +#: forms.py:55 +#, fuzzy +#| msgid "signature file" +msgid "Signature date" +msgstr "signature file" + +#: forms.py:58 +#, fuzzy +#| msgid "signature file" +msgid "Signature key ID" +msgstr "signature file" + +#: forms.py:60 +msgid "Signature key present?" msgstr "" -#: views.py:77 -#, python-format -msgid "Signee: %s" +#: forms.py:73 +msgid "Key fingerprint" msgstr "" -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: forms.py:77 +msgid "Key creation date" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +msgid "Verify all documents" +msgstr "" + +#: links.py:39 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "signature file" +msgid "Signature list" +msgstr "signature file" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +msgid "Document version embedded signature" +msgstr "" + +#: models.py:89 +msgid "Document version embedded signatures" +msgstr "" + +#: models.py:122 +msgid "Signature file" +msgstr "" + +#: models.py:126 +msgid "Document version detached signature" +msgstr "" + +#: models.py:127 +msgid "Document version detached signatures" +msgstr "" + +#: models.py:130 +#, fuzzy +#| msgid "signature file" +msgid "signature" +msgstr "signature file" + +#: permissions.py:13 +msgid "Sign documents with detached signatures" +msgstr "" + +#: permissions.py:17 +msgid "Sign documents with embedded signatures" +msgstr "" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "" + +#: permissions.py:25 +msgid "Download detached document signatures" +msgstr "" + +#: permissions.py:29 +msgid "Upload detached document signatures" +msgstr "" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "" + +#: permissions.py:37 +msgid "View details of document signatures" +msgstr "" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +msgid "Document version signed successfully." msgstr "" #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." -msgstr "" - -#: views.py:193 +#: views.py:240 #, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:204 +#: views.py:267 #, python-format -msgid "Delete the detached signature from document: %s?" +msgid "Delete detached signature: %s" +msgstr "" + +#: views.py:292 +#, python-format +msgid "Details for signature: %s" +msgstr "" + +#: views.py:339 +#, python-format +msgid "Signatures for document version: %s" +msgstr "" + +#: views.py:375 +#, python-format +msgid "Upload detached signature for document version: %s" +msgstr "" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +msgid "Verify all document for signatures?" +msgstr "" + +#: views.py:403 +msgid "Signature verification queued successfully." msgstr "" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" - -#~ msgid "signature file" -#~ msgstr "signature file" 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 0ba019509e..8cd44712e1 100644 --- a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" @@ -19,134 +19,263 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "" -#: forms.py:9 models.py:31 -msgid "Signature file" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:39 -msgid "Delete signature" +#: apps.py:94 models.py:37 +msgid "Key ID" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "signature file" +msgid "Signature ID" +msgstr "signature file" -#: links.py:49 -msgid "Upload signature" -msgstr "" - -#: links.py:54 -msgid "Signatures" -msgstr "" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:72 -#, python-format -msgid "Signature type: %s" +#: forms.py:23 +msgid "Key" msgstr "" -#: views.py:73 -#, python-format -msgid "Key ID: %s" +#: forms.py:27 +msgid "Passphrase" msgstr "" -#: views.py:74 -#, python-format -msgid "Timestamp: %s" +#: forms.py:53 +#, fuzzy +#| msgid "signature file" +msgid "Signature is embedded?" +msgstr "signature file" + +#: forms.py:55 +#, fuzzy +#| msgid "signature file" +msgid "Signature date" +msgstr "signature file" + +#: forms.py:58 +#, fuzzy +#| msgid "signature file" +msgid "Signature key ID" +msgstr "signature file" + +#: forms.py:60 +msgid "Signature key present?" msgstr "" -#: views.py:77 -#, python-format -msgid "Signee: %s" +#: forms.py:73 +msgid "Key fingerprint" msgstr "" -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: forms.py:77 +msgid "Key creation date" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +msgid "Verify all documents" +msgstr "" + +#: links.py:39 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "signature file" +msgid "Signature list" +msgstr "signature file" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +msgid "Document version embedded signature" +msgstr "" + +#: models.py:89 +msgid "Document version embedded signatures" +msgstr "" + +#: models.py:122 +msgid "Signature file" +msgstr "" + +#: models.py:126 +msgid "Document version detached signature" +msgstr "" + +#: models.py:127 +msgid "Document version detached signatures" +msgstr "" + +#: models.py:130 +#, fuzzy +#| msgid "signature file" +msgid "signature" +msgstr "signature file" + +#: permissions.py:13 +msgid "Sign documents with detached signatures" +msgstr "" + +#: permissions.py:17 +msgid "Sign documents with embedded signatures" +msgstr "" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "" + +#: permissions.py:25 +msgid "Download detached document signatures" +msgstr "" + +#: permissions.py:29 +msgid "Upload detached document signatures" +msgstr "" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "" + +#: permissions.py:37 +msgid "View details of document signatures" +msgstr "" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +msgid "Document version signed successfully." msgstr "" #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." -msgstr "" - -#: views.py:193 +#: views.py:240 #, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:204 +#: views.py:267 #, python-format -msgid "Delete the detached signature from document: %s?" +msgid "Delete detached signature: %s" +msgstr "" + +#: views.py:292 +#, python-format +msgid "Details for signature: %s" +msgstr "" + +#: views.py:339 +#, python-format +msgid "Signatures for document version: %s" +msgstr "" + +#: views.py:375 +#, python-format +msgid "Upload detached signature for document version: %s" +msgstr "" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +msgid "Verify all document for signatures?" +msgstr "" + +#: views.py:403 +msgid "Signature verification queued successfully." msgstr "" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" - -#~ msgid "signature file" -#~ msgstr "signature file" 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 20d0fe69a1..f5d2473f3c 100644 --- a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -10,141 +10,333 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Firme documento" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "File della firma" +#: apps.py:91 +msgid "Date" +msgstr "" -#: links.py:39 -msgid "Delete signature" -msgstr "Elimina firma" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "Chiave ID: %s" -#: links.py:43 -msgid "Download signature" -msgstr "Scarica firma" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "ID Firma: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "Carica firma" - -#: links.py:54 -msgid "Signatures" -msgstr "Firme" - -#: models.py:27 -msgid "Document version" -msgstr "Versione documento" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "Ha una firma incorporata" - -#: models.py:52 -msgid "Document version signature" -msgstr "Versione della firma del documento" - -#: models.py:53 -msgid "Document version signatures" -msgstr "Versioni delle firma del documento" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Verifica la firma del documento" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "Elimina firme allegate" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Scarica firme separatamente" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Carica firme separatamente" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "Stato della firma: %s" - -#: views.py:62 -msgid "Embedded" -msgstr "Incorporata" - -#: views.py:64 -msgid "Detached" -msgstr "Distaccato" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Nessuno" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" +#: apps.py:102 +msgid "Type" +msgstr "" + +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "File della firma" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "File della firma" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" msgstr "ID Firma: %s" -#: views.py:72 -#, python-format -msgid "Signature type: %s" +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" msgstr "Tipo di firma: %s" -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "Chiave ID: %s" +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Timestamp: %s" +#: forms.py:77 +msgid "Key creation date" +msgstr "" -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Firmatario: %s" +#: forms.py:82 +msgid "Key expiration date" +msgstr "" -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" -msgstr "Proprietà della firma per il documento: %s" +#: forms.py:87 +msgid "Key length" +msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." -msgstr "Firma scaduta aggiornata con successo." +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Verifica la firma del documento" + +#: links.py:39 +msgid "Signatures" +msgstr "Firme" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signatures" +msgid "Signature list" +msgstr "Firme" + +#: links.py:63 +#, fuzzy +#| msgid "Download signature" +msgid "Download" +msgstr "Scarica firma" + +#: links.py:69 +msgid "Upload signature" +msgstr "Carica firma" + +#: links.py:75 +#, fuzzy +#| msgid "Detached" +msgid "Sign detached" +msgstr "Distaccato" + +#: links.py:81 +#, fuzzy +#| msgid "Embedded" +msgid "Sign embedded" +msgstr "Incorporata" + +#: models.py:31 +msgid "Document version" +msgstr "Versione documento" + +#: models.py:35 +#, fuzzy +#| msgid "Delete signature" +msgid "Date signed" +msgstr "Elimina firma" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "Versione della firma del documento" + +#: models.py:52 +msgid "Document version signatures" +msgstr "Versioni delle firma del documento" + +#: models.py:71 +msgid "Detached" +msgstr "Distaccato" + +#: models.py:73 +msgid "Embedded" +msgstr "Incorporata" + +#: models.py:88 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version embedded signature" +msgstr "Versione della firma del documento" + +#: models.py:89 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version embedded signatures" +msgstr "Versioni delle firma del documento" + +#: models.py:122 +msgid "Signature file" +msgstr "File della firma" + +#: models.py:126 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version detached signature" +msgstr "Versione della firma del documento" + +#: models.py:127 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version detached signatures" +msgstr "Versioni delle firma del documento" + +#: models.py:130 +#, fuzzy +#| msgid "Signatures" +msgid "signature" +msgstr "Firme" + +#: permissions.py:13 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Elimina firme allegate" + +#: permissions.py:17 +#, fuzzy +#| msgid "Has embedded signature" +msgid "Sign documents with embedded signatures" +msgstr "Ha una firma incorporata" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "Elimina firme allegate" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Scarica firme separatamente" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Carica firme separatamente" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Verifica la firma del documento" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Verifica la firma del documento" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version signed successfully." +msgstr "Versioni delle firma del documento" #: views.py:129 -#, python-format -msgid "Upload detached signature for document: %s" +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a detached signature" +msgstr "Versione della firma del documento" + +#: views.py:240 +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a embedded signature" +msgstr "Versione della firma del documento" + +#: views.py:267 +#, fuzzy, python-format +#| msgid "Delete detached signatures" +msgid "Delete detached signature: %s" +msgstr "Elimina firme allegate" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Firme documento" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature properties for document: %s" +msgid "Signatures for document version: %s" +msgstr "Proprietà della firma per il documento: %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signature for document: %s" +msgid "Upload detached signature for document version: %s" msgstr "Carica la firma allegata per il documento: %s" -#: views.py:187 -msgid "Detached signature deleted successfully." +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Verifica la firma del documento" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Signature verification queued successfully." msgstr "Scarica la firma allegata al documento: %s" -#: views.py:193 -#, python-format -msgid "Error while deleting the detached signature; %s" -msgstr "Errore nel cancellare la firma allegata; %s" +#~ msgid "Signature status: %s" +#~ msgstr "Stato della firma: %s" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" -msgstr "" +#~ msgid "Timestamp: %s" +#~ msgstr "Timestamp: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Firmatario: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Firma scaduta aggiornata con successo." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Errore nel cancellare la firma allegata; %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" 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 25714f0a00..e22a6af548 100644 --- a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po @@ -1,151 +1,281 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "" -#: forms.py:9 models.py:31 -msgid "Signature file" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:39 -msgid "Delete signature" +#: apps.py:94 models.py:37 +msgid "Key ID" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "signature file" +msgid "Signature ID" +msgstr "signature file" -#: links.py:49 -msgid "Upload signature" -msgstr "" - -#: links.py:54 -msgid "Signatures" -msgstr "" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Geen" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:72 -#, python-format -msgid "Signature type: %s" +#: forms.py:23 +msgid "Key" msgstr "" -#: views.py:73 -#, python-format -msgid "Key ID: %s" +#: forms.py:27 +msgid "Passphrase" msgstr "" -#: views.py:74 -#, python-format -msgid "Timestamp: %s" +#: forms.py:53 +#, fuzzy +#| msgid "signature file" +msgid "Signature is embedded?" +msgstr "signature file" + +#: forms.py:55 +#, fuzzy +#| msgid "signature file" +msgid "Signature date" +msgstr "signature file" + +#: forms.py:58 +#, fuzzy +#| msgid "signature file" +msgid "Signature key ID" +msgstr "signature file" + +#: forms.py:60 +msgid "Signature key present?" msgstr "" -#: views.py:77 -#, python-format -msgid "Signee: %s" +#: forms.py:73 +msgid "Key fingerprint" msgstr "" -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: forms.py:77 +msgid "Key creation date" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +msgid "Verify all documents" +msgstr "" + +#: links.py:39 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "signature file" +msgid "Signature list" +msgstr "signature file" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +msgid "Document version embedded signature" +msgstr "" + +#: models.py:89 +msgid "Document version embedded signatures" +msgstr "" + +#: models.py:122 +msgid "Signature file" +msgstr "" + +#: models.py:126 +msgid "Document version detached signature" +msgstr "" + +#: models.py:127 +msgid "Document version detached signatures" +msgstr "" + +#: models.py:130 +#, fuzzy +#| msgid "signature file" +msgid "signature" +msgstr "signature file" + +#: permissions.py:13 +msgid "Sign documents with detached signatures" +msgstr "" + +#: permissions.py:17 +msgid "Sign documents with embedded signatures" +msgstr "" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "" + +#: permissions.py:25 +msgid "Download detached document signatures" +msgstr "" + +#: permissions.py:29 +msgid "Upload detached document signatures" +msgstr "" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "" + +#: permissions.py:37 +msgid "View details of document signatures" +msgstr "" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +msgid "Document version signed successfully." msgstr "" #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." -msgstr "" - -#: views.py:193 +#: views.py:240 #, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:204 +#: views.py:267 #, python-format -msgid "Delete the detached signature from document: %s?" +msgid "Delete detached signature: %s" +msgstr "" + +#: views.py:292 +#, python-format +msgid "Details for signature: %s" +msgstr "" + +#: views.py:339 +#, python-format +msgid "Signatures for document version: %s" +msgstr "" + +#: views.py:375 +#, python-format +msgid "Upload detached signature for document version: %s" +msgstr "" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +msgid "Verify all document for signatures?" +msgstr "" + +#: views.py:403 +msgid "Signature verification queued successfully." msgstr "" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" - -#~ msgid "signature file" -#~ msgstr "signature file" 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 e193c3ba3d..7573d4a5aa 100644 --- a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012 @@ -9,144 +9,315 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Document signatures" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "Signature file" - -#: links.py:39 -msgid "Delete signature" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "Key ID: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "Signature ID: %s" -#: links.py:54 -msgid "Signatures" -msgstr "" - -#: models.py:27 -msgid "Document version" -msgstr "Wersja dokumentu" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Verify document signatures" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Download detached signatures" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Upload detached signatures" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Brak" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" -msgstr "Signature ID: %s" - -#: views.py:72 -#, python-format -msgid "Signature type: %s" -msgstr "Signature type: %s" - -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "Key ID: %s" - -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Timestamp: %s" - -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Signee: %s" - -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "Signature file" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Signature file" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" +msgstr "Signature ID: %s" + +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" +msgstr "Signature type: %s" + +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" + +#: forms.py:77 +msgid "Key creation date" +msgstr "" + +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Verify document signatures" + +#: links.py:39 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signature file" +msgid "Signature list" +msgstr "Signature file" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "Wersja dokumentu" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signature" +msgstr "Document signatures" + +#: models.py:89 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signatures" +msgstr "Document signatures" + +#: models.py:122 +msgid "Signature file" +msgstr "Signature file" + +#: models.py:126 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signature" +msgstr "Download detached signatures" + +#: models.py:127 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signatures" +msgstr "Download detached signatures" + +#: models.py:130 +#, fuzzy +#| msgid "signature file" +msgid "signature" +msgstr "signature file" + +#: permissions.py:13 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Download detached signatures" + +#: permissions.py:17 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Sign documents with embedded signatures" +msgstr "Verify document signatures" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Download detached signatures" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Upload detached signatures" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Verify document signatures" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Verify document signatures" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Document version signed successfully." msgstr "Detached signature uploaded successfully." #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." -msgstr "" - -#: views.py:193 +#: views.py:240 #, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" +#: views.py:267 +#, fuzzy, python-format +#| msgid "Download detached signatures" +msgid "Delete detached signature: %s" +msgstr "Download detached signatures" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Document signatures" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature type: %s" +msgid "Signatures for document version: %s" +msgstr "Signature type: %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signatures" +msgid "Upload detached signature for document version: %s" +msgstr "Upload detached signatures" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." msgstr "" +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Verify document signatures" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Signature verification queued successfully." +msgstr "Detached signature uploaded successfully." + +#~ msgid "Timestamp: %s" +#~ msgstr "Timestamp: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Signee: %s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" - -#~ msgid "signature file" -#~ msgstr "signature file" 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 54697c054c..93d52b639b 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: # Translators: # Vítor Figueiró , 2012 @@ -9,142 +9,315 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Assinaturas do documento" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "Ficheiro de assinatura" - -#: links.py:39 -msgid "Delete signature" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "ID da chave: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "ID da assinatura: %s" -#: links.py:54 -msgid "Signatures" -msgstr "Assinaturas" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Verificar as assinaturas do documento" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Descarregar assinaturas avulsas" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Enviar assinaturas avulsas" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Nenhum" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" -msgstr "ID da assinatura: %s" - -#: views.py:72 -#, python-format -msgid "Signature type: %s" -msgstr "Tipo de assinatura: %s" - -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "ID da chave: %s" - -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Data/hora: %s" - -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Assinado por: %s" - -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "Ficheiro de assinatura" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Ficheiro de assinatura" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" +msgstr "ID da assinatura: %s" + +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" +msgstr "Tipo de assinatura: %s" + +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" + +#: forms.py:77 +msgid "Key creation date" +msgstr "" + +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Verificar as assinaturas do documento" + +#: links.py:39 +msgid "Signatures" +msgstr "Assinaturas" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signatures" +msgid "Signature list" +msgstr "Assinaturas" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signature" +msgstr "Assinaturas do documento" + +#: models.py:89 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signatures" +msgstr "Assinaturas do documento" + +#: models.py:122 +msgid "Signature file" +msgstr "Ficheiro de assinatura" + +#: models.py:126 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signature" +msgstr "Descarregar assinaturas avulsas" + +#: models.py:127 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signatures" +msgstr "Descarregar assinaturas avulsas" + +#: models.py:130 +#, fuzzy +#| msgid "Signatures" +msgid "signature" +msgstr "Assinaturas" + +#: permissions.py:13 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Descarregar assinaturas avulsas" + +#: permissions.py:17 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Sign documents with embedded signatures" +msgstr "Verificar as assinaturas do documento" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Descarregar assinaturas avulsas" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Enviar assinaturas avulsas" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Verificar as assinaturas do documento" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Verificar as assinaturas do documento" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Document version signed successfully." msgstr "Assinatura avulsa enviada com sucesso." #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." -msgstr "" - -#: views.py:193 +#: views.py:240 #, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" +#: views.py:267 +#, fuzzy, python-format +#| msgid "Download detached signatures" +msgid "Delete detached signature: %s" +msgstr "Descarregar assinaturas avulsas" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Assinaturas do documento" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature type: %s" +msgid "Signatures for document version: %s" +msgstr "Tipo de assinatura: %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signatures" +msgid "Upload detached signature for document version: %s" +msgstr "Enviar assinaturas avulsas" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." msgstr "" +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Verificar as assinaturas do documento" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Signature verification queued successfully." +msgstr "Assinatura avulsa enviada com sucesso." + +#~ msgid "Timestamp: %s" +#~ msgstr "Data/hora: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Assinado por: %s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" 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 1d3824b6e0..2e47fa2794 100644 --- a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Rogerio Falcone , 2015 @@ -9,141 +9,333 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Assinaturas de documentos" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "Arquivo de assinatura" +#: apps.py:91 +msgid "Date" +msgstr "" -#: links.py:39 -msgid "Delete signature" -msgstr "Excluir assinatura" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "ID da chave: %s" -#: links.py:43 -msgid "Download signature" -msgstr "download do assinatura" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "ID assinatura: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "upload do assinatura" - -#: links.py:54 -msgid "Signatures" -msgstr "assinaturas" - -#: models.py:27 -msgid "Document version" -msgstr "Versão do Documento" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "Tem incorporado a assinatura" - -#: models.py:52 -msgid "Document version signature" -msgstr "Versão do documento da assinatura " - -#: models.py:53 -msgid "Document version signatures" -msgstr "Versão do documento das assinaturas" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Verificar as assinaturas de documentos" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "Excluir assinaturas desanexados" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Download assinaturas destacadas" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Upload de assinaturas destacadas" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "Assinatura status: %s" - -#: views.py:62 -msgid "Embedded" -msgstr "embutido" - -#: views.py:64 -msgid "Detached" -msgstr "destacado" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Nenhum" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" +#: apps.py:102 +msgid "Type" +msgstr "" + +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "Arquivo de assinatura" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Arquivo de assinatura" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" msgstr "ID assinatura: %s" -#: views.py:72 -#, python-format -msgid "Signature type: %s" +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" msgstr "Tipo de assinatura: %s" -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "ID da chave: %s" +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Timestamp: %s" +#: forms.py:77 +msgid "Key creation date" +msgstr "" -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Signee: %s" +#: forms.py:82 +msgid "Key expiration date" +msgstr "" -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" -msgstr "Propriedades da assinatura do documento: %s" +#: forms.py:87 +msgid "Key length" +msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." -msgstr "Assinatura separado enviado com sucesso." +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Verificar as assinaturas de documentos" + +#: links.py:39 +msgid "Signatures" +msgstr "assinaturas" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signatures" +msgid "Signature list" +msgstr "assinaturas" + +#: links.py:63 +#, fuzzy +#| msgid "Download signature" +msgid "Download" +msgstr "download do assinatura" + +#: links.py:69 +msgid "Upload signature" +msgstr "upload do assinatura" + +#: links.py:75 +#, fuzzy +#| msgid "Detached" +msgid "Sign detached" +msgstr "destacado" + +#: links.py:81 +#, fuzzy +#| msgid "Embedded" +msgid "Sign embedded" +msgstr "embutido" + +#: models.py:31 +msgid "Document version" +msgstr "Versão do Documento" + +#: models.py:35 +#, fuzzy +#| msgid "Delete signature" +msgid "Date signed" +msgstr "Excluir assinatura" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "Versão do documento da assinatura " + +#: models.py:52 +msgid "Document version signatures" +msgstr "Versão do documento das assinaturas" + +#: models.py:71 +msgid "Detached" +msgstr "destacado" + +#: models.py:73 +msgid "Embedded" +msgstr "embutido" + +#: models.py:88 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version embedded signature" +msgstr "Versão do documento da assinatura " + +#: models.py:89 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version embedded signatures" +msgstr "Versão do documento das assinaturas" + +#: models.py:122 +msgid "Signature file" +msgstr "Arquivo de assinatura" + +#: models.py:126 +#, fuzzy +#| msgid "Document version signature" +msgid "Document version detached signature" +msgstr "Versão do documento da assinatura " + +#: models.py:127 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version detached signatures" +msgstr "Versão do documento das assinaturas" + +#: models.py:130 +#, fuzzy +#| msgid "Signatures" +msgid "signature" +msgstr "assinaturas" + +#: permissions.py:13 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Excluir assinaturas desanexados" + +#: permissions.py:17 +#, fuzzy +#| msgid "Has embedded signature" +msgid "Sign documents with embedded signatures" +msgstr "Tem incorporado a assinatura" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "Excluir assinaturas desanexados" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Download assinaturas destacadas" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Upload de assinaturas destacadas" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Verificar as assinaturas de documentos" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Verificar as assinaturas de documentos" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Document version signatures" +msgid "Document version signed successfully." +msgstr "Versão do documento das assinaturas" #: views.py:129 -#, python-format -msgid "Upload detached signature for document: %s" +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a detached signature" +msgstr "Versão do documento da assinatura " + +#: views.py:240 +#, fuzzy, python-format +#| msgid "Document version signature" +msgid "Sign document version \"%s\" with a embedded signature" +msgstr "Versão do documento da assinatura " + +#: views.py:267 +#, fuzzy, python-format +#| msgid "Delete detached signatures" +msgid "Delete detached signature: %s" +msgstr "Excluir assinaturas desanexados" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Assinaturas de documentos" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature properties for document: %s" +msgid "Signatures for document version: %s" +msgstr "Propriedades da assinatura do documento: %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signature for document: %s" +msgid "Upload detached signature for document version: %s" msgstr "Carregar assinatura separada para documento: %s" -#: views.py:187 -msgid "Detached signature deleted successfully." +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Verificar as assinaturas de documentos" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Signature verification queued successfully." msgstr "Assinatura separada excluído com sucesso." -#: views.py:193 -#, python-format -msgid "Error while deleting the detached signature; %s" -msgstr "Erro ao excluir a assinatura individual; %s " +#~ msgid "Signature status: %s" +#~ msgstr "Assinatura status: %s" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" -msgstr "" +#~ msgid "Timestamp: %s" +#~ msgstr "Timestamp: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Signee: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Assinatura separado enviado com sucesso." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Erro ao excluir a assinatura individual; %s " #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" 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 f926a22cea..22615623de 100644 --- a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,144 +9,315 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Document de semnături" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "Fisier semnătura" - -#: links.py:39 -msgid "Delete signature" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "ID cheie:% s" -#: links.py:49 -msgid "Upload signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "ID Semnătura:% s" -#: links.py:54 -msgid "Signatures" -msgstr "" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Verifica semnăturile de documente" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Descarca semnături detașate" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Încărcați semnături detașate" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Nici unul" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" -msgstr "ID Semnătura:% s" - -#: views.py:72 -#, python-format -msgid "Signature type: %s" -msgstr "Tipul semnătura:% s" - -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "ID cheie:% s" - -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Timestamp:% s" - -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Semnat :% s" - -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "Fisier semnătura" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Fisier semnătura" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" +msgstr "ID Semnătura:% s" + +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" +msgstr "Tipul semnătura:% s" + +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" + +#: forms.py:77 +msgid "Key creation date" +msgstr "" + +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Verifica semnăturile de documente" + +#: links.py:39 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signature file" +msgid "Signature list" +msgstr "Fisier semnătura" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signature" +msgstr "Document de semnături" + +#: models.py:89 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signatures" +msgstr "Document de semnături" + +#: models.py:122 +msgid "Signature file" +msgstr "Fisier semnătura" + +#: models.py:126 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signature" +msgstr "Descarca semnături detașate" + +#: models.py:127 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signatures" +msgstr "Descarca semnături detașate" + +#: models.py:130 +#, fuzzy +#| msgid "signature file" +msgid "signature" +msgstr "signature file" + +#: permissions.py:13 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Descarca semnături detașate" + +#: permissions.py:17 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Sign documents with embedded signatures" +msgstr "Verifica semnăturile de documente" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Descarca semnături detașate" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Încărcați semnături detașate" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Verifica semnăturile de documente" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Verifica semnăturile de documente" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Document version signed successfully." msgstr "Semnătura detaşata încărcată cu succes." #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." -msgstr "" - -#: views.py:193 +#: views.py:240 #, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" +#: views.py:267 +#, fuzzy, python-format +#| msgid "Download detached signatures" +msgid "Delete detached signature: %s" +msgstr "Descarca semnături detașate" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Document de semnături" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature type: %s" +msgid "Signatures for document version: %s" +msgstr "Tipul semnătura:% s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signatures" +msgid "Upload detached signature for document version: %s" +msgstr "Încărcați semnături detașate" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." msgstr "" +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Verifica semnăturile de documente" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Signature verification queued successfully." +msgstr "Semnătura detaşata încărcată cu succes." + +#~ msgid "Timestamp: %s" +#~ msgstr "Timestamp:% s" + +#~ msgid "Signee: %s" +#~ msgstr "Semnat :% s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" - -#~ msgid "signature file" -#~ msgstr "signature file" 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 68abec0459..9f6a69f142 100644 --- a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Sergey Glita , 2012 @@ -9,141 +9,322 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Подписи документа" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "Файл подписи" - -#: links.py:39 -msgid "Delete signature" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "ID ключа: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "Подпись ID: %s" -#: links.py:54 -msgid "Signatures" -msgstr "Подписи" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "Проверить подпись документа" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "Удаление отделенных подписей" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "Скачать отделенные подписи" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Выложить отделённые подписи" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Ни один" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" -msgstr "Подпись ID: %s" - -#: views.py:72 -#, python-format -msgid "Signature type: %s" -msgstr "Тип подписи: %s" - -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "ID ключа: %s" - -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Отметка времени: %s" - -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Подписано: %s" - -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." -msgstr "Отделённая подпись выложена." +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "Файл подписи" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "Файл подписи" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" +msgstr "Подпись ID: %s" + +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" +msgstr "Тип подписи: %s" + +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" + +#: forms.py:77 +msgid "Key creation date" +msgstr "" + +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "Проверить подпись документа" + +#: links.py:39 +msgid "Signatures" +msgstr "Подписи" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signatures" +msgid "Signature list" +msgstr "Подписи" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signature" +msgstr "Подписи документа" + +#: models.py:89 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signatures" +msgstr "Подписи документа" + +#: models.py:122 +msgid "Signature file" +msgstr "Файл подписи" + +#: models.py:126 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Document version detached signature" +msgstr "Удаление отделенных подписей" + +#: models.py:127 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Document version detached signatures" +msgstr "Удаление отделенных подписей" + +#: models.py:130 +#, fuzzy +#| msgid "Signatures" +msgid "signature" +msgstr "Подписи" + +#: permissions.py:13 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Sign documents with detached signatures" +msgstr "Удаление отделенных подписей" + +#: permissions.py:17 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Sign documents with embedded signatures" +msgstr "Проверить подпись документа" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "Удаление отделенных подписей" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "Скачать отделенные подписи" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Выложить отделённые подписи" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "Проверить подпись документа" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "Проверить подпись документа" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Document version signed successfully." +msgstr "Отделенная подпись удалена." #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." +#: views.py:240 +#, python-format +msgid "Sign document version \"%s\" with a embedded signature" +msgstr "" + +#: views.py:267 +#, fuzzy, python-format +#| msgid "Delete detached signatures" +msgid "Delete detached signature: %s" +msgstr "Удаление отделенных подписей" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Подписи документа" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature type: %s" +msgid "Signatures for document version: %s" +msgstr "Тип подписи: %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signatures" +msgid "Upload detached signature for document version: %s" +msgstr "Выложить отделённые подписи" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "Проверить подпись документа" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Signature verification queued successfully." msgstr "Отделенная подпись удалена." -#: views.py:193 -#, python-format -msgid "Error while deleting the detached signature; %s" -msgstr "Ошибка при удалении отделенной подписи %s" +#~ msgid "Timestamp: %s" +#~ msgstr "Отметка времени: %s" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" -msgstr "" +#~ msgid "Signee: %s" +#~ msgstr "Подписано: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Отделённая подпись выложена." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Ошибка при удалении отделенной подписи %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" 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 3738321f2f..5b3144323d 100644 --- a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po @@ -1,151 +1,282 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "" -#: forms.py:9 models.py:31 -msgid "Signature file" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:39 -msgid "Delete signature" +#: apps.py:94 models.py:37 +msgid "Key ID" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "signature file" +msgid "Signature ID" +msgstr "signature file" -#: links.py:49 -msgid "Upload signature" -msgstr "" - -#: links.py:54 -msgid "Signatures" -msgstr "" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "Brez" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:72 -#, python-format -msgid "Signature type: %s" +#: forms.py:23 +msgid "Key" msgstr "" -#: views.py:73 -#, python-format -msgid "Key ID: %s" +#: forms.py:27 +msgid "Passphrase" msgstr "" -#: views.py:74 -#, python-format -msgid "Timestamp: %s" +#: forms.py:53 +#, fuzzy +#| msgid "signature file" +msgid "Signature is embedded?" +msgstr "signature file" + +#: forms.py:55 +#, fuzzy +#| msgid "signature file" +msgid "Signature date" +msgstr "signature file" + +#: forms.py:58 +#, fuzzy +#| msgid "signature file" +msgid "Signature key ID" +msgstr "signature file" + +#: forms.py:60 +msgid "Signature key present?" msgstr "" -#: views.py:77 -#, python-format -msgid "Signee: %s" +#: forms.py:73 +msgid "Key fingerprint" msgstr "" -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: forms.py:77 +msgid "Key creation date" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +msgid "Verify all documents" +msgstr "" + +#: links.py:39 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "signature file" +msgid "Signature list" +msgstr "signature file" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +msgid "Document version embedded signature" +msgstr "" + +#: models.py:89 +msgid "Document version embedded signatures" +msgstr "" + +#: models.py:122 +msgid "Signature file" +msgstr "" + +#: models.py:126 +msgid "Document version detached signature" +msgstr "" + +#: models.py:127 +msgid "Document version detached signatures" +msgstr "" + +#: models.py:130 +#, fuzzy +#| msgid "signature file" +msgid "signature" +msgstr "signature file" + +#: permissions.py:13 +msgid "Sign documents with detached signatures" +msgstr "" + +#: permissions.py:17 +msgid "Sign documents with embedded signatures" +msgstr "" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "" + +#: permissions.py:25 +msgid "Download detached document signatures" +msgstr "" + +#: permissions.py:29 +msgid "Upload detached document signatures" +msgstr "" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "" + +#: permissions.py:37 +msgid "View details of document signatures" +msgstr "" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +msgid "Document version signed successfully." msgstr "" #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." -msgstr "" - -#: views.py:193 +#: views.py:240 #, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:204 +#: views.py:267 #, python-format -msgid "Delete the detached signature from document: %s?" +msgid "Delete detached signature: %s" +msgstr "" + +#: views.py:292 +#, python-format +msgid "Details for signature: %s" +msgstr "" + +#: views.py:339 +#, python-format +msgid "Signatures for document version: %s" +msgstr "" + +#: views.py:375 +#, python-format +msgid "Upload detached signature for document version: %s" +msgstr "" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +msgid "Verify all document for signatures?" +msgstr "" + +#: views.py:403 +msgid "Signature verification queued successfully." msgstr "" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" - -#~ msgid "signature file" -#~ msgstr "signature file" 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 532c722d0f..d47cf9d404 100644 --- a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,144 +9,314 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "Chữ kí tài liệu" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "File lưu chữ kí" - -#: links.py:39 -msgid "Delete signature" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "Key ID: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "ID chữ kí: %s" -#: links.py:54 -msgid "Signatures" -msgstr "" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "xác nhận chữ kí tài liệu" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "ống chữ kí đã tách ra" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "Tải lên chữ kí đã tách ra" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "None" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" -msgstr "ID chữ kí: %s" - -#: views.py:72 -#, python-format -msgid "Signature type: %s" -msgstr "Kiểu chũ kí: %s" - -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "Key ID: %s" - -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "Thời gian: %s" - -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "Người kí: %s" - -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "File lưu chữ kí" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "File lưu chữ kí" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" +msgstr "ID chữ kí: %s" + +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" +msgstr "Kiểu chũ kí: %s" + +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" + +#: forms.py:77 +msgid "Key creation date" +msgstr "" + +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "xác nhận chữ kí tài liệu" + +#: links.py:39 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signature file" +msgid "Signature list" +msgstr "File lưu chữ kí" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signature" +msgstr "Chữ kí tài liệu" + +#: models.py:89 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signatures" +msgstr "Chữ kí tài liệu" + +#: models.py:122 +msgid "Signature file" +msgstr "File lưu chữ kí" + +#: models.py:126 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signature" +msgstr "ống chữ kí đã tách ra" + +#: models.py:127 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Document version detached signatures" +msgstr "ống chữ kí đã tách ra" + +#: models.py:130 +#, fuzzy +#| msgid "signature file" +msgid "signature" +msgstr "signature file" + +#: permissions.py:13 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Sign documents with detached signatures" +msgstr "ống chữ kí đã tách ra" + +#: permissions.py:17 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Sign documents with embedded signatures" +msgstr "xác nhận chữ kí tài liệu" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "ống chữ kí đã tách ra" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "Tải lên chữ kí đã tách ra" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "xác nhận chữ kí tài liệu" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "xác nhận chữ kí tài liệu" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Document version signed successfully." msgstr "Detached signature uploaded successfully." #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." -msgstr "" - -#: views.py:193 +#: views.py:240 #, python-format -msgid "Error while deleting the detached signature; %s" +msgid "Sign document version \"%s\" with a embedded signature" msgstr "" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" +#: views.py:267 +#, fuzzy, python-format +#| msgid "Download detached signatures" +msgid "Delete detached signature: %s" +msgstr "ống chữ kí đã tách ra" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "Chữ kí tài liệu" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature type: %s" +msgid "Signatures for document version: %s" +msgstr "Kiểu chũ kí: %s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signatures" +msgid "Upload detached signature for document version: %s" +msgstr "Tải lên chữ kí đã tách ra" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." msgstr "" +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "xác nhận chữ kí tài liệu" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature uploaded successfully." +msgid "Signature verification queued successfully." +msgstr "Detached signature uploaded successfully." + +#~ msgid "Timestamp: %s" +#~ msgstr "Thời gian: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Người kí: %s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" - -#~ msgid "signature file" -#~ msgstr "signature file" diff --git a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po index e6c2051483..b963bdcfb0 100644 --- a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,144 +9,320 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:29 permissions.py:8 settings.py:7 +#: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" msgstr "文档签名" -#: forms.py:9 models.py:31 -msgid "Signature file" -msgstr "签名文件" - -#: links.py:39 -msgid "Delete signature" +#: apps.py:91 +msgid "Date" msgstr "" -#: links.py:43 -msgid "Download signature" -msgstr "" +#: apps.py:94 models.py:37 +#, fuzzy +#| msgid "Key ID: %s" +msgid "Key ID" +msgstr "键 ID: %s" -#: links.py:49 -msgid "Upload signature" -msgstr "" +#: apps.py:98 forms.py:71 models.py:41 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature ID" +msgstr "签名 ID:%s" -#: links.py:54 -msgid "Signatures" -msgstr "" - -#: models.py:27 -msgid "Document version" -msgstr "" - -#: models.py:34 -msgid "Has embedded signature" -msgstr "" - -#: models.py:52 -msgid "Document version signature" -msgstr "" - -#: models.py:53 -msgid "Document version signatures" -msgstr "" - -#: permissions.py:12 -msgid "Verify document signatures" -msgstr "核对文档签名" - -#: permissions.py:15 -msgid "Delete detached signatures" -msgstr "删除分离的签名" - -#: permissions.py:18 -msgid "Download detached signatures" -msgstr "下载分离的签名" - -#: permissions.py:21 -msgid "Upload detached signatures" -msgstr "上传分离的签名" - -#: views.py:58 -#, python-format -msgid "Signature status: %s" -msgstr "" - -#: views.py:62 -msgid "Embedded" -msgstr "" - -#: views.py:64 -msgid "Detached" -msgstr "" - -#: views.py:66 +#: apps.py:99 forms.py:83 msgid "None" msgstr "无" -#: views.py:71 -#, python-format -msgid "Signature ID: %s" -msgstr "签名 ID:%s" - -#: views.py:72 -#, python-format -msgid "Signature type: %s" -msgstr "签名类型:%s" - -#: views.py:73 -#, python-format -msgid "Key ID: %s" -msgstr "键 ID: %s" - -#: views.py:74 -#, python-format -msgid "Timestamp: %s" -msgstr "时间戳: %s" - -#: views.py:77 -#, python-format -msgid "Signee: %s" -msgstr "签名者:%s" - -#: views.py:85 -#, python-format -msgid "Signature properties for document: %s" +#: apps.py:102 +msgid "Type" msgstr "" -#: views.py:115 -msgid "Detached signature uploaded successfully." -msgstr "分离的签名上传成功" +#: forms.py:23 +msgid "Key" +msgstr "" + +#: forms.py:27 +msgid "Passphrase" +msgstr "" + +#: forms.py:53 +#, fuzzy +#| msgid "Signature file" +msgid "Signature is embedded?" +msgstr "签名文件" + +#: forms.py:55 +#, fuzzy +#| msgid "Signature file" +msgid "Signature date" +msgstr "签名文件" + +#: forms.py:58 +#, fuzzy +#| msgid "Signature ID: %s" +msgid "Signature key ID" +msgstr "签名 ID:%s" + +#: forms.py:60 +#, fuzzy +#| msgid "Signature type: %s" +msgid "Signature key present?" +msgstr "签名类型:%s" + +#: forms.py:73 +msgid "Key fingerprint" +msgstr "" + +#: forms.py:77 +msgid "Key creation date" +msgstr "" + +#: forms.py:82 +msgid "Key expiration date" +msgstr "" + +#: forms.py:87 +msgid "Key length" +msgstr "" + +#: forms.py:91 +msgid "Key algorithm" +msgstr "" + +#: forms.py:95 +msgid "Key user ID" +msgstr "" + +#: forms.py:99 +msgid "Key type" +msgstr "" + +#: links.py:32 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all documents" +msgstr "核对文档签名" + +#: links.py:39 +msgid "Signatures" +msgstr "" + +#: links.py:46 +msgid "Delete" +msgstr "" + +#: links.py:51 +msgid "Details" +msgstr "" + +#: links.py:57 +#, fuzzy +#| msgid "Signature file" +msgid "Signature list" +msgstr "签名文件" + +#: links.py:63 +msgid "Download" +msgstr "" + +#: links.py:69 +msgid "Upload signature" +msgstr "" + +#: links.py:75 +msgid "Sign detached" +msgstr "" + +#: links.py:81 +msgid "Sign embedded" +msgstr "" + +#: models.py:31 +msgid "Document version" +msgstr "" + +#: models.py:35 +msgid "Date signed" +msgstr "" + +#: models.py:45 +msgid "Public key fingerprint" +msgstr "" + +#: models.py:51 +msgid "Document version signature" +msgstr "" + +#: models.py:52 +msgid "Document version signatures" +msgstr "" + +#: models.py:71 +msgid "Detached" +msgstr "" + +#: models.py:73 +msgid "Embedded" +msgstr "" + +#: models.py:88 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signature" +msgstr "文档签名" + +#: models.py:89 +#, fuzzy +#| msgid "Document signatures" +msgid "Document version embedded signatures" +msgstr "文档签名" + +#: models.py:122 +msgid "Signature file" +msgstr "签名文件" + +#: models.py:126 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Document version detached signature" +msgstr "删除分离的签名" + +#: models.py:127 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Document version detached signatures" +msgstr "删除分离的签名" + +#: models.py:130 +#, fuzzy +#| msgid "signature file" +msgid "signature" +msgstr "signature file" + +#: permissions.py:13 +#, fuzzy +#| msgid "Delete detached signatures" +msgid "Sign documents with detached signatures" +msgstr "删除分离的签名" + +#: permissions.py:17 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Sign documents with embedded signatures" +msgstr "核对文档签名" + +#: permissions.py:21 +msgid "Delete detached signatures" +msgstr "删除分离的签名" + +#: permissions.py:25 +#, fuzzy +#| msgid "Download detached signatures" +msgid "Download detached document signatures" +msgstr "下载分离的签名" + +#: permissions.py:29 +#, fuzzy +#| msgid "Upload detached signatures" +msgid "Upload detached document signatures" +msgstr "上传分离的签名" + +#: permissions.py:33 +msgid "Verify document signatures" +msgstr "核对文档签名" + +#: permissions.py:37 +#, fuzzy +#| msgid "Verify document signatures" +msgid "View details of document signatures" +msgstr "核对文档签名" + +#: views.py:67 views.py:172 +msgid "Passphrase is needed to unlock this key." +msgstr "" + +#: views.py:77 views.py:182 +msgid "Passphrase is incorrect." +msgstr "" + +#: views.py:98 views.py:202 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Document version signed successfully." +msgstr "分离的签名删除成功" #: views.py:129 #, python-format -msgid "Upload detached signature for document: %s" +msgid "Sign document version \"%s\" with a detached signature" msgstr "" -#: views.py:187 -msgid "Detached signature deleted successfully." +#: views.py:240 +#, python-format +msgid "Sign document version \"%s\" with a embedded signature" +msgstr "" + +#: views.py:267 +#, fuzzy, python-format +#| msgid "Delete detached signatures" +msgid "Delete detached signature: %s" +msgstr "删除分离的签名" + +#: views.py:292 +#, fuzzy, python-format +#| msgid "Document signatures" +msgid "Details for signature: %s" +msgstr "文档签名" + +#: views.py:339 +#, fuzzy, python-format +#| msgid "Signature type: %s" +msgid "Signatures for document version: %s" +msgstr "签名类型:%s" + +#: views.py:375 +#, fuzzy, python-format +#| msgid "Upload detached signatures" +msgid "Upload detached signature for document version: %s" +msgstr "上传分离的签名" + +#: views.py:392 +msgid "On large databases this operation may take some time to execute." +msgstr "" + +#: views.py:393 +#, fuzzy +#| msgid "Verify document signatures" +msgid "Verify all document for signatures?" +msgstr "核对文档签名" + +#: views.py:403 +#, fuzzy +#| msgid "Detached signature deleted successfully." +msgid "Signature verification queued successfully." msgstr "分离的签名删除成功" -#: views.py:193 -#, python-format -msgid "Error while deleting the detached signature; %s" -msgstr "删除分离的签名:%s 出错" +#~ msgid "Timestamp: %s" +#~ msgstr "时间戳: %s" -#: views.py:204 -#, python-format -msgid "Delete the detached signature from document: %s?" -msgstr "" +#~ msgid "Signee: %s" +#~ msgstr "签名者:%s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "分离的签名上传成功" + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "删除分离的签名:%s 出错" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" - -#~ msgid "signature file" -#~ msgstr "signature file" 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 2d2d178813..2df09072e5 100644 --- a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:31 msgid "Document states" @@ -49,7 +51,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +71,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "تحرير" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" 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 a5a385fa59..9ca23d8f1b 100644 --- a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -49,7 +50,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +70,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Редактиране" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" 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 51909700e5..257f68ea8b 100644 --- a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:31 msgid "Document states" @@ -49,7 +51,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +71,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Urediti" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" diff --git a/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po index c3650cf1aa..229043873a 100644 --- a/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/da/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -49,7 +50,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +70,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" 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 ce7803287a..e93ce430b1 100644 --- a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -50,7 +51,7 @@ msgstr "Datum und Zeit" msgid "Completion" msgstr "Fertigstellung" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "Übergang" @@ -70,43 +71,43 @@ msgstr "Herkunftsstatus" msgid "Destination state" msgstr "Zielstatus" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "Workflows" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "Workflow erstellen" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "Löschen" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "Dokumententypen" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Bearbeiten" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "Status erstellen" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "Status" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "Übergang erstellen" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "Übergänge" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "Detail" @@ -122,7 +123,9 @@ msgstr "Workflow" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein Status kann initial sein." +msgstr "" +"Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein " +"Status kann initial sein." #: models.py:73 msgid "Initial" @@ -132,7 +135,9 @@ msgstr "Initial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der Fertigstellung in Bezug auf den Workflow angibt." +msgstr "" +"Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der " +"Fertigstellung in Bezug auf den Workflow angibt." #: models.py:92 msgid "Workflow state" 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 337799916b..ad6da872e9 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: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,7 +49,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +69,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" diff --git a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po index 5fcf1f4c7a..e122282f10 100644 --- a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -50,7 +51,7 @@ msgstr "Fecha y hora" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "Transición" @@ -70,43 +71,43 @@ msgstr "Estado origen" msgid "Destination state" msgstr "Estado destino" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "Flujos de trabajo" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "Borrar" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "Tipos de documentos" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Editar" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "Crear estado" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "Estados" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "Crear transición" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "Transiciones" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "Detalle" @@ -122,7 +123,9 @@ msgstr "Flujo de trabajo" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Seleccione si este va a ser el estado con el que desea que el flujo de trabajo comience. Sólo un estado puede ser el estado inicial." +msgstr "" +"Seleccione si este va a ser el estado con el que desea que el flujo de " +"trabajo comience. Sólo un estado puede ser el estado inicial." #: models.py:73 msgid "Initial" diff --git a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po index 5caa34220b..48b7eef78d 100644 --- a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 @@ -50,7 +51,7 @@ msgstr "تاریخ و زمان" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "تغییر وضعیت" @@ -70,43 +71,43 @@ msgstr "وضعیت شروع" msgid "Destination state" msgstr "وضعیت نهایی" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "گردشکار" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "حذف" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "انواع سند" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "ویرایش" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "وضغیت ایجاد" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "وضعیت ها" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "تغییر وضعیت به ایجاد" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "تغییر وضعیت ها" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "شرح" @@ -122,7 +123,9 @@ msgstr "گردشکار" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "در صورتیکه این وضعیت شروع گردشکار باشد این وضعیت را انتخاب کنید. وضعیت فقط میتواند وضعیت اولیه باشد." +msgstr "" +"در صورتیکه این وضعیت شروع گردشکار باشد این وضعیت را انتخاب کنید. وضعیت فقط " +"میتواند وضعیت اولیه باشد." #: models.py:73 msgid "Initial" diff --git a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po index ffd67f6550..bfdde60f92 100644 --- a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 @@ -50,7 +51,7 @@ msgstr "Date et heure" msgid "Completion" msgstr "Finalisation" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "Transition" @@ -70,43 +71,43 @@ msgstr "État d'origine" msgid "Destination state" msgstr "État de destination" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "Flux de travail" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "Créer un flux de travail" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "Supprimer" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "Types de document" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Modifier" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "Créer un état" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "États" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "Créer une transition" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "Transitions" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "Détail" @@ -122,7 +123,9 @@ msgstr "Flux de travail" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "Sélectionnez si ceci sera l'état avec lequel vous voulez que le flux de travail pour démarrer. Un seul état peut être à l'état initial." +msgstr "" +"Sélectionnez si ceci sera l'état avec lequel vous voulez que le flux de " +"travail pour démarrer. Un seul état peut être à l'état initial." #: models.py:73 msgid "Initial" @@ -132,7 +135,9 @@ msgstr "Initial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "Entrer le pourcentage de finalisation que cet état représente dans la relation du flux de travail. Saisir un nombre sans le signe pourcentage." +msgstr "" +"Entrer le pourcentage de finalisation que cet état représente dans la " +"relation du flux de travail. Saisir un nombre sans le signe pourcentage." #: models.py:92 msgid "Workflow state" diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po index 60bf125d19..a189961611 100644 --- a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -49,7 +50,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +70,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" diff --git a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po index fe9107c2cf..4def390e0a 100644 --- a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 @@ -49,7 +50,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +70,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" diff --git a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po index 43a1e2d123..f929af8fde 100644 --- a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -49,7 +50,7 @@ msgstr "Data e ora" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +70,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "Cancella" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "Tipi di documento" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Modifica" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" 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 3bddcad090..57d7678279 100644 --- a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -49,7 +50,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +70,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "Verwijder" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "bewerken" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" 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 ffb6598704..7fc6040ac2 100644 --- a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:31 msgid "Document states" @@ -50,7 +52,7 @@ msgstr "Data i godzina" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -70,43 +72,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "Usuń" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "Typy dokumentu" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Edytuj" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "Utwórz stan" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "Stany" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "Szczegół" 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 560484855d..e48dc88122 100644 --- a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -49,7 +50,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +70,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "Eliminar" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Editar" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" 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 db224f5712..378764f78d 100644 --- a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 @@ -50,7 +51,7 @@ msgstr "data e hora" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "Transações" @@ -70,43 +71,43 @@ msgstr "Estado Original" msgid "Destination state" msgstr "Estado de destino" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "Workflows" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "Excluir" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "Tipos de Documentos" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Editar" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "Criar estado" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "estado" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "Criar Transições" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "Transações" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "Detalhes" @@ -122,7 +123,9 @@ msgstr "Workflow" 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 para começar em. Apenas um Estado pode ser o estado inicial." +msgstr "" +"Selecione se este será o estado com o qual você deseja que o fluxo de " +"trabalho para começar em. Apenas um Estado pode ser o estado inicial." #: models.py:73 msgid "Initial" 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 17ede563a7..95c82685cd 100644 --- a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:31 msgid "Document states" @@ -49,7 +51,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +71,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Editează" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" 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 69d5be0e1f..28601dca48 100644 --- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:31 msgid "Document states" @@ -49,7 +52,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +72,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Редактировать" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" 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 d4c3f065a1..04bbef4ffa 100644 --- a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:31 msgid "Document states" @@ -49,7 +51,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +71,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" 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 0eb78973a8..7327aea9f9 100644 --- a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 @@ -49,7 +50,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +70,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "Sửa" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" diff --git a/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po index 1e5cdaec1f..b409ced97e 100644 --- a/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/zh_CN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:43-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 @@ -49,7 +50,7 @@ msgstr "" msgid "Completion" msgstr "" -#: apps.py:86 forms.py:39 links.py:78 models.py:187 +#: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" msgstr "" @@ -69,43 +70,43 @@ msgstr "" msgid "Destination state" msgstr "" -#: links.py:15 links.py:37 models.py:59 views.py:185 +#: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Create workflow" msgstr "" -#: links.py:24 links.py:45 links.py:62 +#: links.py:25 links.py:46 links.py:63 msgid "Delete" msgstr "" -#: links.py:28 models.py:25 +#: links.py:29 models.py:25 msgid "Document types" msgstr "" -#: links.py:32 links.py:49 links.py:66 +#: links.py:33 links.py:50 links.py:67 msgid "Edit" msgstr "" -#: links.py:40 +#: links.py:41 msgid "Create state" msgstr "" -#: links.py:53 +#: links.py:54 msgid "States" msgstr "" -#: links.py:57 +#: links.py:58 msgid "Create transition" msgstr "" -#: links.py:70 +#: links.py:71 msgid "Transitions" msgstr "" -#: links.py:74 +#: links.py:75 msgid "Detail" msgstr "" diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po index a65e049b79..9830b7bdb1 100644 --- a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -41,7 +43,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "نوع الملف" @@ -65,26 +67,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "تعليق" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +103,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "صورة الصفحة" @@ -167,15 +176,15 @@ msgstr "موجود في التخزين" msgid "File path in storage" msgstr "مسار الملف في التخزين" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Checksum" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "صفحات" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "نوع الوثيقة" @@ -184,13 +193,9 @@ msgid "Compress" msgstr "ضغط" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +207,9 @@ msgstr "اسم الملف المضغوط" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "اسم الملف المضغوط سيحتوي الوثائق التي سيتم تحويلها، اذا تم اختيار الخيار السابق" +msgstr "" +"اسم الملف المضغوط سيحتوي الوثائق التي سيتم تحويلها، اذا تم اختيار الخيار " +"السابق" #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +223,144 @@ msgstr "Default" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "تحميل" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "تحميل" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." msgstr "مسح بيانات الرسومات المستخدمة لتسريع عرض الوثائق و نتائج التحويلات." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "تحرير" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +370,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +388,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +436,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "ملف" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -465,12 +473,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +501,10 @@ msgid "Delete documents" msgstr "حذف الوثائق" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "تحميل الوثائق" @@ -516,12 +521,10 @@ msgid "Edit document properties" msgstr "تحرير خصائص الوثيقة" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,8 +562,8 @@ msgstr "عرض أنواع الوثائق" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "أكبر عدد من الوثائق الحديثة للتذكر لكل مستخدم." #: settings.py:44 @@ -591,176 +594,168 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "سيتم حذف جميع الإصدارات اللاحقة بعد هذا الإصدار أيضا." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "تم ارجاع اصدار الوثيقة بنجاح" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "خطأ بارجاع اصدار الوثيقة %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "يجب أن توفر ما لا يقل عن وثيقة واحدة." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "ارسال" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" @@ -770,32 +765,31 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" @@ -805,21 +799,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "خطأ بمسح التحويلات الخاصة بالوثيقة: %(document)s; %(error)s." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "كل التحويلات الخاصة بالوثيقة: %s, تم مسحها بنجاح." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" @@ -829,15 +823,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "لا توجد صفحات أخرى بهذه الوثيقة" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "أنت بالفعل في الصفحة الأولى من هذه الوثيقة" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -927,11 +921,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1067,7 +1061,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1081,18 +1076,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1111,11 +1103,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1132,18 +1124,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1197,11 +1190,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1225,11 +1218,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1250,9 +1243,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1282,11 +1277,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1343,15 +1338,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po index f1c78717ad..6bf80fe761 100644 --- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -41,7 +42,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "" @@ -65,26 +66,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Коментар" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +102,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Изображение на страница" @@ -167,15 +175,15 @@ msgstr "Съществува в склада" msgid "File path in storage" msgstr "Файлов път до склада" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Контролна сума" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Страници" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Вид на документа" @@ -184,13 +192,9 @@ msgid "Compress" msgstr "Компресиране" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +206,9 @@ msgstr "Име на компресирания архив" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Името на компресирания архив, съдържащ документите за сваляне, ако предишната опция е избрана." +msgstr "" +"Името на компресирания архив, съдържащ документите за сваляне, ако " +"предишната опция е избрана." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +222,146 @@ msgstr "По подразбиране" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Сваляне" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "Сваляне" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Изчистване на графичното представяне, използвано да ускори изобразяването на документите и интерактивните промени." +msgstr "" +"Изчистване на графичното представяне, използвано да ускори изобразяването на " +"документите и интерактивните промени." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Редактиране" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +371,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +389,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +437,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Файл" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -454,7 +463,9 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "Страница %(page_num)d от общо %(total_pages)d страници от %(document)s документи." +msgstr "" +"Страница %(page_num)d от общо %(total_pages)d страници от %(document)s " +"документи." #: models.py:671 msgid "Document page" @@ -465,12 +476,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +504,10 @@ msgid "Delete documents" msgstr "Изтриване на документи" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Изтегляне на документи" @@ -516,12 +524,10 @@ msgid "Edit document properties" msgstr "Редактиране на свойства на документа" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,29 +565,38 @@ msgstr "Преглед на типовете документи" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Максимален брой от скорошни (създадени, редактирани, прегледани) документи, които да се показват на потребителя" +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Максимален брой от скорошни (създадени, редактирани, прегледани) документи, " +"които да се показват на потребителя" #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Процент приближавани или отдалечаване на страницата на документа, приложен за потребителя" +msgstr "" +"Процент приближавани или отдалечаване на страницата на документа, приложен " +"за потребителя" #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Максимален процент (%) допустим за интерактивно увеличаване страницата от потребителя" +msgstr "" +"Максимален процент (%) допустим за интерактивно увеличаване страницата от " +"потребителя" #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Минимален процент (%) допустим за интерактивно смаляване страницата от потребителя" +msgstr "" +"Минимален процент (%) допустим за интерактивно смаляване страницата от " +"потребителя" #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Градуси на завъртане на страница от документ, при потребителско действие" +msgstr "" +"Градуси на завъртане на страница от документ, при потребителско действие" #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -591,241 +606,235 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Всички версии, следващи тази, ще бъдат изтрити." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Документа е върнат успешно към предна версия" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Грешка при връщане на версията на документа; %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Трябва да посочите поне един документ." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Подаване" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Грешка при изтриването на преобразования на страница на документ %(document)s, %(error)s." +msgstr "" +"Грешка при изтриването на преобразования на страница на документ " +"%(document)s, %(error)s." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Всички преобразования на страницата на документ %s бяха изтрити успешно." +msgstr "" +"Всички преобразования на страницата на документ %s бяха изтрити успешно." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Няма повече страници в този документ" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Вече сте на първа страница на този документ" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -915,11 +924,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1051,7 +1060,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1065,18 +1075,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1095,11 +1102,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1116,18 +1123,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1181,11 +1189,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1209,11 +1217,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1234,9 +1242,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1266,11 +1276,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1327,15 +1337,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 db05fc6c5d..8bff659d89 100644 --- a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -41,7 +43,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "MIME tip" @@ -65,26 +67,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Komentar" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +103,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Slika za stranicu" @@ -167,15 +176,15 @@ msgstr "Postoji u pohrani" msgid "File path in storage" msgstr "Putanja dokumenta u pohrani" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Checksum" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Stranice" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Tip dokumenta" @@ -184,13 +193,9 @@ msgid "Compress" msgstr "Kompresuj" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +207,9 @@ msgstr "Naziv kompresovane datoteke" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Naziv kompresovane datoteke koji sadrži dokumente koji su za download, ako je ova opcija odabrana." +msgstr "" +"Naziv kompresovane datoteke koji sadrži dokumente koji su za download, ako " +"je ova opcija odabrana." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +223,146 @@ msgstr "default" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Download" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "Download" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Obriši grafičku prezentaciju korištenu za ubrzanje prikaza dokumenata i interaktivnu transformaciju rezultata." +msgstr "" +"Obriši grafičku prezentaciju korištenu za ubrzanje prikaza dokumenata i " +"interaktivnu transformaciju rezultata." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Urediti" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +372,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +390,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +438,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Datoteka" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -465,12 +475,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +503,10 @@ msgid "Delete documents" msgstr "Obriši dokumente" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Download dokumenata" @@ -516,12 +523,10 @@ msgid "Edit document properties" msgstr "Izmijeni osobine dokumenta" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,9 +564,11 @@ msgstr "Pregledaj tipove dokumenata" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Maksimalni broj nedavnih (kreiran, izmijenjen, pregledan) dokumenata za pamćenje po korisniku." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Maksimalni broj nedavnih (kreiran, izmijenjen, pregledan) dokumenata za " +"pamćenje po korisniku." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -571,13 +578,17 @@ msgstr "Iznos u procentima zumiranja stranice dokumenta po korisničkoj sesiji." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Maksimalni dozvoljeni iznos u procentima (%) korisniku da zumira stranicu dokumenta." +msgstr "" +"Maksimalni dozvoljeni iznos u procentima (%) korisniku da zumira stranicu " +"dokumenta." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Minimalni dozvoljeni iznos u procentima (%) po korisniku da zumira stranicu dokumenta." +msgstr "" +"Minimalni dozvoljeni iznos u procentima (%) po korisniku da zumira stranicu " +"dokumenta." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." @@ -591,244 +602,235 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Sve naknadne verzije nakon ove će također biti obrisane." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Verzija dokumenta uspješno vraćena" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Greška pri vraćanju verzije dokumenta; %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Mora biti barem jedan dokument." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Podnijeti" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "Greška brisanja transformacija za dokument: %(document)s; %(error)s." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "Sve transformacije stranica za dokument: %s, su uspješno obrisane." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Ovaj dokument nema više stranica." -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Već ste na prvoj stranici ovog dokumenta" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -918,11 +920,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1055,7 +1057,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1069,18 +1072,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1099,11 +1099,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1120,18 +1120,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1185,11 +1186,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1213,11 +1214,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1238,9 +1239,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1270,11 +1273,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1331,15 +1334,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po index 70f1184795..e23e53679f 100644 --- a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -41,7 +42,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "MIME type" @@ -65,26 +66,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Kommentar" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +102,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Side billede" @@ -167,15 +175,15 @@ msgstr "Eksisterer i opbevaring" msgid "File path in storage" msgstr "Filsti i opbevaring" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Checksum" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Sider" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Dokumenttype" @@ -184,13 +192,9 @@ msgid "Compress" msgstr "Komprimér" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +206,9 @@ msgstr "Pakket filnavn" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Filnavnet for den pakkede fil, der vil indeholde dokumenterne til download. Dette hvis den tidligere mulighed er valg." +msgstr "" +"Filnavnet for den pakkede fil, der vil indeholde dokumenterne til download. " +"Dette hvis den tidligere mulighed er valg." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +222,146 @@ msgstr "Standard" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Hent" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "Hent" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Fjern grafiske repræsentationer brugt til at fremskynde visning af de dokumenter og interaktivt transformerede resultater." +msgstr "" +"Fjern grafiske repræsentationer brugt til at fremskynde visning af de " +"dokumenter og interaktivt transformerede resultater." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +371,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +389,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +437,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Fil" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -465,12 +474,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +502,10 @@ msgid "Delete documents" msgstr "Slet dokumenter" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Hent dokumenter" @@ -516,12 +522,10 @@ msgid "Edit document properties" msgstr "Redigér dokumentegenskaber" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,9 +563,11 @@ msgstr "Vis dokumenttyper" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Maksimalt antal seneste (oprettet, redigeret, set) dokumenter der huskes per bruger." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Maksimalt antal seneste (oprettet, redigeret, set) dokumenter der huskes per " +"bruger." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -571,13 +577,17 @@ msgstr "Procent zoom ind eller ud af en dokument side pr brugerinteraktion." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Maksimal mængde i procent (%) en bruger kan zoome i et dokuments side interaktivt." +msgstr "" +"Maksimal mængde i procent (%) en bruger kan zoome i et dokuments side " +"interaktivt." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Minimum procent (%) en brugeren er tilladt at zoome ud af en dokumentside interaktivt." +msgstr "" +"Minimum procent (%) en brugeren er tilladt at zoome ud af en dokumentside " +"interaktivt." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." @@ -591,241 +601,234 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Alle senere versioner af denne vil også blive slettet." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Tidligere dokumentversion genskabt" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Fejl ved genskabelse af dokumentversion; %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Angiv mindst ét ​​dokument." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Fejl ved sletning af sidens transformationer for dokument: %(document)s ; %(error)s ." +msgstr "" +"Fejl ved sletning af sidens transformationer for dokument: %(document)s ; " +"%(error)s ." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "Alle side transformationer for dokument: %s, er blevet slettet." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Der er ikke flere sider i dette dokument" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Du er allerede på den første side af dette dokument" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -915,11 +918,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1051,7 +1054,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1065,18 +1069,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1095,11 +1096,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1116,18 +1117,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1181,11 +1183,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1209,11 +1211,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1234,9 +1236,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1266,11 +1270,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1327,15 +1331,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 1483b43b34..c4fb4b9f76 100644 --- a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -33,7 +34,9 @@ msgstr "Dokumententyp erstellen" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert. " +msgstr "" +"Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da " +"Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert. " #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" @@ -43,7 +46,7 @@ msgstr "Bezeichner" msgid "The MIME type of any of the versions of a document" msgstr "Der MIME-Typ der jeweiligen Dokumentenversion" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "MIME Typ" @@ -67,26 +70,23 @@ msgstr "Zeitpunkt der Löschung" msgid "Time and date" msgstr "Zeit und Datum" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "Kodierung" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Kommentar" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "Neue Dokumente pro Monat" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "Neue Dokumentenversionen pro Monat" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "Neue Dokumentenseiten pro Monat" @@ -106,25 +106,35 @@ msgstr "Summe der Dokumentenseiten im Monat" msgid "Document created" msgstr "Dokument erstellt" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Documents to be downloaded" +msgid "Document downloaded" +msgstr "Herunterzuladende Dokumente" + +#: events.py:15 msgid "Document properties edited" msgstr "Dokumenteneigenschaften bearbeitet" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "Dokumententyp geändert" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "Neue Dokumentenversion hochgeladen." -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "Dokumentenversion wurde erfolgreich wiederhergestellt" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Seitenbild" @@ -169,15 +179,15 @@ msgstr "Im Dateispeicher" msgid "File path in storage" msgstr "Pfad im Dateispeicher" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Prüfsumme" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Seiten" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Dokumententyp" @@ -186,15 +196,14 @@ msgid "Compress" msgstr "Komprimieren" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." +msgstr "" +"Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese " +"Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. " +"Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." #: forms.py:197 msgid "Compressed filename" @@ -204,7 +213,9 @@ msgstr "Name der komprimierten Datei" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, wenn die vorherige Option gewählt wurde." +msgstr "" +"Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, " +"wenn die vorherige Option gewählt wurde." #: forms.py:217 literals.py:23 msgid "Page range" @@ -218,139 +229,146 @@ msgstr "Standard" msgid "Preview" msgstr "Vorschau" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "Eigenschaften" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "Versionen" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "Transformationen löschen" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "Löschen" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "In den Papierkorb verschieben" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "Eigenschaften bearbeiten" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "Typ ändern" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Herunterladen" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "Drucken" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "Seitenzählung korrigieren" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "Wiederherstellen" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Document version" +msgid "Download version" +msgstr "Dokumentenversion" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "Alle Dokumente" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "Letzte Dokumente" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "Papierkorb" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Grafiken löschen, die benutzt werden um die Dokumentendarstellung und interaktive Transformationsausgabe zu beschleunigen." +msgstr "" +"Grafiken löschen, die benutzt werden um die Dokumentendarstellung und " +"interaktive Transformationsausgabe zu beschleunigen." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "Papierkorb leeren" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "Erste Seite" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "Letzte Seite" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "Vorherige Seite" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "Nächste Seite" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "Dokument" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "Nach links drehen" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "Nach rechts drehen" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "Ansicht zurücksetzen" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "Ansicht vergößern" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "Ansicht verkleinern" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "Wiederherstellen" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "Dokumententypen erstellen" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Bearbeiten" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "Schnellbezeichner zu Dokumententyp hinzufügen" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "Schnellbezeichner" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "Dokumententypen" @@ -360,9 +378,10 @@ msgstr "Alle Seiten" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben werden." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben " +"werden." #: models.py:72 msgid "Trash time period" @@ -376,15 +395,15 @@ msgstr "Einheit (Papierkorb)" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden endgültig gelöscht werden." +msgstr "" +"Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden " +"endgültig gelöscht werden." #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "Endgültig löschen nach" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "Einheit (Löschen)" @@ -421,7 +440,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." +msgstr "" +"Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das " +"keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener " +"Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." #: models.py:184 msgid "Is stub?" @@ -429,19 +451,18 @@ msgstr "Inkomplett" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Fragment, ID: %d" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "Zeitstempel" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Datei" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "Dokumentenversion" @@ -467,12 +488,10 @@ msgid "Document pages" msgstr "Dokumentenseiten" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -497,11 +516,10 @@ msgid "Delete documents" msgstr "Dokumente löschen" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "Dokumente in den Papierkorb verschieben" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Dokumente herunterladen" @@ -518,12 +536,10 @@ msgid "Edit document properties" msgstr "Dokumenteneigenschaften bearbeiten" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Dukumente drucken" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "Gelöschte Dokumente wiederherstellen" @@ -561,13 +577,16 @@ msgstr "Dokumententypen anzeigen" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Maximale Anzahl der letzten Dokumente (erstellt, bearbeitet, angezeigt) pro Benutzer." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Maximale Anzahl der letzten Dokumente (erstellt, bearbeitet, angezeigt) pro " +"Benutzer." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." +msgstr "" +"Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." #: settings.py:51 msgid "" @@ -593,241 +612,241 @@ msgstr "Standarddokumentensprache (im ISO639-2 Format)" msgid "List of supported document languages." msgstr "Liste der unterstützen Dokumentensprachen" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "Löschung des Dokumentenbildcaches erfolgreich eingereiht." -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "Dokumente im Papierkorb" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "Das ausgwählte Dokument löschen?" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Dokument %(document)s gelöscht." -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "Die ausgwählten Dokumente löschen?" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "Eigenschaften von Dokument \"%s\" bearbeiten" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "Das ausgwählte Dokument wiederherstellen?" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Dokument %(document)s wiederhergestellt" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "Die ausgwählten Dokumente wiederherstellen?" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "Seiten des Dokuments: %s" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "Seitenbild für %s" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "Vorschau von Dokument %s" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "\"%s\" in den Papierkorb verschieben?" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Dokument \"%(document)s\" erfolgreich in den Papierkorb verschoben." -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "Die ausgewählten Dokumente in den Papierkorb verschieben?" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Dokumente des Typs: %s" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "Alle Dokumente dieses Typs werden auch gelöscht." -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Dokumententyp %s löschen?" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "Dokumententyp %s bearbeiten" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "Schnellbezeichner erstellen für Dokumentenyp %s" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" bearbeiten" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" " +"bearbeiten" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" +msgstr "" +"Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "Schnellbezeichner für Dokumententyp %s" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "Versionen von Dokument %s" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Alle späteren Versionen dieses Dokuments werden ebenfalls gelöscht." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "Diese Dokumentenversion wiederherstellen?" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Dokument wurde erfolgreich wiederhergestellt" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Fehler beim Wiederherstellen der Dokumentenversion %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "Eigenschaften von Dokument %s" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "Papierkorb leeren" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "Papierkorb erfolgreich gelöscht." -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Es muss mindestens ein Dokument angegeben werden." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Ändern" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "Den Typ des ausgewählten Dokuments ändern." msgstr[1] "Den Typ der ausgewählten Dokumente ändern." -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "Herunterzuladende Dokumente" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "Datum und Zeit" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "Es muss mindestens ein Dokument ausgewählt werden." -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "Dokument eingereiht für Neuberechnung der Seitenzahl" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "Dokumente eingereiht für Neuberechnung der Seitenzahlen." -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "Seitenzahl des ausgewählten Dokuments neu berechnen?" msgstr[1] "Seitenzahl der ausgewählten Dokumente neu berechnen?" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s" +msgstr "" +"Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s" -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Alle Seitentransformationen für Dokument %s wurden erfolgreich gelöscht." +msgstr "" +"Alle Seitentransformationen für Dokument %s wurden erfolgreich gelöscht." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" -msgstr[0] "Sind Sie sicher, dass Sie die Transformationen des ausgewählten Dokuments zurücksetzen wollen?" -msgstr[1] "Sind Sie sicher, dass Sie die Transformationen der ausgewählten Dokumente zurücksetzen wollen?" +msgstr[0] "" +"Sind Sie sicher, dass Sie die Transformationen des ausgewählten Dokuments " +"zurücksetzen wollen?" +msgstr[1] "" +"Sind Sie sicher, dass Sie die Transformationen der ausgewählten Dokumente " +"zurücksetzen wollen?" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Keine weiteren Seiten in diesem Dokument" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Sie sind bereits auf der ersten Seite dieses Dokuments" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "%s drucken" @@ -917,11 +936,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1053,7 +1072,8 @@ msgstr "Dokumentenseitenbild" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1067,18 +1087,15 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1097,11 +1114,11 @@ msgstr "Dokumentenseitenbild" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1118,15 +1135,19 @@ msgstr "Dokumentenseitenbild" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1183,11 +1204,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1211,11 +1232,11 @@ msgstr "Dokumentenseitenbild" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1236,9 +1257,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1268,11 +1291,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1329,15 +1352,17 @@ msgstr "Dokumentenseitenbild" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po index aa0c2140ef..c614124639 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: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2013-11-20 11:36+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -42,7 +42,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "MIME type" @@ -70,12 +70,12 @@ msgstr "Date added" msgid "Time and date" msgstr "time and date" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 #, fuzzy msgid "Encoding" msgstr "encoding" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Comment" @@ -114,29 +114,39 @@ msgstr "" msgid "Document created" msgstr "Document creation" -#: events.py:11 +#: events.py:12 +#, fuzzy +msgid "Document downloaded" +msgstr "documents to be downloaded" + +#: events.py:15 #, fuzzy msgid "Document properties edited" msgstr "Edit document properties" -#: events.py:14 +#: events.py:18 #, fuzzy msgid "Document type changed" msgstr "Document types: %d" -#: events.py:17 +#: events.py:21 #, fuzzy #| msgid "Version update" msgid "New version uploaded" msgstr "Version update" -#: events.py:21 +#: events.py:25 #, fuzzy #| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Document version reverted successfully" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Page image" @@ -182,15 +192,15 @@ msgstr "Exists in storage" msgid "File path in storage" msgstr "File path in storage" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Checksum" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Pages" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Document type" @@ -239,72 +249,77 @@ msgstr "" msgid "Preview" msgstr "preview" -#: links.py:47 +#: links.py:48 #, fuzzy msgid "Properties" msgstr "properties" -#: links.py:52 +#: links.py:53 #, fuzzy msgid "Versions" msgstr "versions" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 #, fuzzy msgid "Clear transformations" msgstr "clear transformations" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 #, fuzzy msgid "Delete" msgstr "delete" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 #, fuzzy msgid "Edit properties" msgstr "Edit document properties" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 #, fuzzy msgid "Change type" msgstr "page text" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Download" -#: links.py:88 +#: links.py:91 #, fuzzy msgid "Print" msgstr "print" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +msgid "Download version" +msgstr "document version" + +#: links.py:137 views.py:82 #, fuzzy msgid "All documents" msgstr "all documents" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 #, fuzzy msgid "Recent documents" msgstr "recent documents" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." @@ -312,91 +327,91 @@ msgstr "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -#: links.py:151 +#: links.py:155 #, fuzzy #| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "Clear the document image cache" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 #, fuzzy msgid "First page" msgstr "first page" -#: links.py:168 +#: links.py:172 #, fuzzy msgid "Last page" msgstr "last page" -#: links.py:175 +#: links.py:179 #, fuzzy msgid "Previous page" msgstr "previous page" -#: links.py:181 +#: links.py:185 #, fuzzy msgid "Next page" msgstr "next page" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 #, fuzzy msgid "Document" msgstr "Documents" -#: links.py:192 +#: links.py:196 #, fuzzy msgid "Rotate left" msgstr "rotate left" -#: links.py:197 +#: links.py:201 #, fuzzy msgid "Rotate right" msgstr "rotate right" -#: links.py:205 +#: links.py:209 #, fuzzy msgid "Reset view" msgstr "reset view" -#: links.py:210 +#: links.py:214 #, fuzzy msgid "Zoom in" msgstr "zoom in" -#: links.py:215 +#: links.py:219 #, fuzzy msgid "Zoom out" msgstr "zoom out" -#: links.py:223 +#: links.py:227 #, fuzzy msgid "Revert" msgstr "revert" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 #, fuzzy msgid "Create document type" msgstr "Create document types" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "" -#: links.py:243 +#: links.py:247 #, fuzzy msgid "Add quick label to document type" msgstr "add filename to document type" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 #, fuzzy msgid "Document types" msgstr "Document type" @@ -487,17 +502,17 @@ msgstr "" msgid "Document stub, id: %d" msgstr "Document types: %d" -#: models.py:357 +#: models.py:353 #, fuzzy msgid "Timestamp" msgstr "timestamp" -#: models.py:366 +#: models.py:362 #, fuzzy msgid "File" msgstr "Filename" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 #, fuzzy msgid "Document version" msgstr "document version" @@ -566,7 +581,7 @@ msgstr "Delete documents" msgid "Trash documents" msgstr "Transform documents" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Download documents" @@ -666,226 +681,226 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 +#: views.py:68 #, fuzzy #| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "Clear the document image cache" -#: views.py:74 +#: views.py:75 #, fuzzy msgid "Document cache clearing queued successfully." msgstr "Document image cache cleared successfully" -#: views.py:99 +#: views.py:100 #, fuzzy #| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "Documents in storage: %d" -#: views.py:121 +#: views.py:122 #, fuzzy msgid "Delete the selected document?" msgstr "Create documents" -#: views.py:144 +#: views.py:145 #, fuzzy, python-format #| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Document \"%(document)s\" deleted by %(fullname)s." -#: views.py:152 +#: views.py:153 #, fuzzy msgid "Delete the selected documents?" msgstr "Create documents" -#: views.py:174 +#: views.py:175 #, fuzzy, python-format msgid "Edit properties of document: %s" msgstr "document properties for: %s" -#: views.py:190 +#: views.py:191 #, fuzzy msgid "Restore the selected document?" msgstr "Create documents" -#: views.py:215 +#: views.py:216 #, fuzzy, python-format #| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Document: %(document)s delete error: %(error)s" -#: views.py:223 +#: views.py:224 #, fuzzy msgid "Restore the selected documents?" msgstr "Create documents" -#: views.py:255 +#: views.py:256 #, fuzzy, python-format msgid "Pages for document: %s" msgstr "versions for document: %s" -#: views.py:283 +#: views.py:284 #, fuzzy, python-format msgid "Image of: %s" msgstr "duplicates of: %s" -#: views.py:325 +#: views.py:330 #, fuzzy, python-format msgid "Preview of document: %s" msgstr "versions for document: %s" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, fuzzy, python-format #| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Document deleted successfully." -#: views.py:373 +#: views.py:378 #, fuzzy msgid "Move the selected documents to the trash?" msgstr "Create documents" -#: views.py:388 +#: views.py:393 #, fuzzy, python-format #| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "documents of type \"%s\"" -#: views.py:425 +#: views.py:430 #, fuzzy msgid "All documents of this type will be deleted too." msgstr "All later version after this one will be deleted too." -#: views.py:427 +#: views.py:432 #, fuzzy, python-format #| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Delete document types" -#: views.py:443 +#: views.py:448 #, fuzzy, python-format msgid "Edit document type: %s" msgstr "edit document type: %s" -#: views.py:473 +#: views.py:478 #, fuzzy, python-format msgid "Create quick label for document type: %s" msgstr "create filename for document type: %s" -#: views.py:494 +#: views.py:499 #, fuzzy, python-format msgid "" "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" "edit filename \"%(filename)s\" from document type \"%(document_type)s\"" -#: views.py:519 +#: views.py:524 #, fuzzy, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" "edit filename \"%(filename)s\" from document type \"%(document_type)s\"" -#: views.py:547 +#: views.py:552 #, fuzzy, python-format msgid "Quick labels for document type: %s" msgstr "filenames for document type: %s" -#: views.py:578 +#: views.py:583 #, fuzzy, python-format msgid "Versions of document: %s" msgstr "versions for document: %s" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "All later version after this one will be deleted too." -#: views.py:595 +#: views.py:600 #, fuzzy #| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "Revert documents to a previous version" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Document version reverted successfully" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Error reverting document version; %s" -#: views.py:628 +#: views.py:633 #, fuzzy, python-format msgid "Properties for document: %s" msgstr "versions for document: %s" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 +#: views.py:650 #, fuzzy #| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "Document deleted successfully." -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Must provide at least one document." -#: views.py:699 +#: views.py:704 #, fuzzy, python-format msgid "Document type for \"%s\" changed successfully." msgstr "Document type: %s deleted successfully." -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "" -#: views.py:715 +#: views.py:720 #, fuzzy msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "Create documents" msgstr[1] "Create documents" -#: views.py:794 +#: views.py:799 #, fuzzy #| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "Must provide at least one document." -#: views.py:814 +#: views.py:819 #, fuzzy msgid "Documents to be downloaded" msgstr "documents to be downloaded" -#: views.py:823 +#: views.py:828 #, fuzzy msgid "Date and time" msgstr "Date added" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 #, fuzzy msgid "Document queued for page count recalculation." msgstr "document page transformation" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 #, fuzzy msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" @@ -894,7 +909,7 @@ msgstr[0] "" msgstr[1] "" "Are you sure you wish to update the page count for the office documents (%d)?" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " @@ -903,16 +918,16 @@ msgstr "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -#: views.py:1020 -#, python-format -msgid "" -"All the page transformations for document: %s, have been deleted " -"successfully." -msgstr "" -"All the page transformations for document: %s, have been deleted " -"successfully." - #: views.py:1032 +#, python-format +msgid "" +"All the page transformations for document: %s, have been deleted " +"successfully." +msgstr "" +"All the page transformations for document: %s, have been deleted " +"successfully." + +#: views.py:1044 #, fuzzy msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" @@ -921,15 +936,15 @@ msgstr[0] "" msgstr[1] "" "Are you sure you wish to clear all the page transformations for document: %s?" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "There are no more pages in this document" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "You are already at the first page of this document" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, fuzzy, python-format msgid "Print: %s" msgstr "print: %s" @@ -1221,10 +1236,6 @@ msgstr "document page image" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#, fuzzy -#~ msgid "Document preview" -#~ msgstr "Document edited" - #, fuzzy #~ msgid "Document content" #~ msgstr "Document type" diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index 48c0f0341f..4a38b423b0 100644 --- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2015-2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -42,7 +43,7 @@ msgstr "Etiqueta" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "Tipo MIME" @@ -66,26 +67,23 @@ msgstr "Fecha y hora de envío a papelera " msgid "Time and date" msgstr "Hora y fecha" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "Codificación" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Comentario" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "Nuevos documentos por mes" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "Nuevas versiones de documentos por mes" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "Nuevas páginas de documentos por mes" @@ -105,25 +103,35 @@ msgstr "Total de páginas de documentos cada mes" msgid "Document created" msgstr "Documento creado" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Documents to be downloaded" +msgid "Document downloaded" +msgstr "Documentos a descargar" + +#: events.py:15 msgid "Document properties edited" msgstr "Propiedades del documento fueron editadas" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "Tipo de documento ha sido cambiado" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "Nueva versión subida" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "Versión de documento revertida" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Imagen de la página" @@ -168,15 +176,15 @@ msgstr "Existe en el almacenamiento" msgid "File path in storage" msgstr "Ruta de archivo en el almacenamiento" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Suma de comprobación" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Páginas" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Tipo de documento" @@ -185,15 +193,15 @@ msgid "Compress" msgstr "Comprimir" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Descargue el documento en el formato original o en una forma comprimida. Esta opción se puede seleccionar sólo cuando se descarga un documento. Para múltiples documentos, el paquete será siempre descargado en un archivo comprimido." +msgstr "" +"Descargue el documento en el formato original o en una forma comprimida. " +"Esta opción se puede seleccionar sólo cuando se descarga un documento. Para " +"múltiples documentos, el paquete será siempre descargado en un archivo " +"comprimido." #: forms.py:197 msgid "Compressed filename" @@ -203,7 +211,9 @@ msgstr "Nombre de archivo comprimido" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "El nombre del archivo comprimido que va a contener los documentos a descargar, si la opción anterior está activada." +msgstr "" +"El nombre del archivo comprimido que va a contener los documentos a " +"descargar, si la opción anterior está activada." #: forms.py:217 literals.py:23 msgid "Page range" @@ -217,139 +227,147 @@ msgstr "Por defecto" msgid "Preview" msgstr "Muestra" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "Propiedades" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "Versiones" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "Borrar transformaciones" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "Borrar" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "Mover a la papelera" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "Editar propiedades" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "Cambiar tipo" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Descargar" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "Imprimir" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "Recalcular el conteo de páginas" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "Resturar" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Document version" +msgid "Download version" +msgstr "Versión de documento" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "Todos los documentos" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "Documentos recientes" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "Papelera" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Borrar las representaciones gráficas utilizadas para acelerar la presentación de los documentos y resultados de las transformaciones interactivas." +msgstr "" +"Borrar las representaciones gráficas utilizadas para acelerar la " +"presentación de los documentos y resultados de las transformaciones " +"interactivas." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "Vaciar papelera" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "Primera página" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "Última página" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "Página previa" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "Próxima página" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "Documento" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "Rotar a la izquierda" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "Rotar a la derecha" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "Reestablecer vista" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "Acercar imagen" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "Alejar imagen" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "Revertir" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "Crear tipo de documento" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Editar" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "Añadir nombre típico al tipo de documento" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "Nombres típicos " -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "Tipos de documentos" @@ -359,9 +377,10 @@ msgstr "Todas las páginas" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Cantidad de tiempo tras el cual se enviaran los documentos de este tipo a la papelera." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Cantidad de tiempo tras el cual se enviaran los documentos de este tipo a la " +"papelera." #: models.py:72 msgid "Trash time period" @@ -375,15 +394,15 @@ msgstr "Unidad de tiempo de envío a papelera" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Cantidad de tiempo tras el cual se eliminarán los documentos de este tipo de la papelera." +msgstr "" +"Cantidad de tiempo tras el cual se eliminarán los documentos de este tipo de " +"la papelera." #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "Período de tiempo de eliminación" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "Unidad de tiempo de eliminación" @@ -428,19 +447,18 @@ msgstr "¿Es un recibo?" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Recibo de documento, id: %d" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "Marca de tiempo" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Archivo" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "Versión de documento" @@ -466,12 +484,10 @@ msgid "Document pages" msgstr "Páginas de documento" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -496,11 +512,10 @@ msgid "Delete documents" msgstr "Eliminar documentos" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "Enivar documentos a la papelera" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Descargar documentos" @@ -517,12 +532,10 @@ msgid "Edit document properties" msgstr "Editar propiedades del documento" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Imprimir documentos" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "Restaurar documentos en la papelera" @@ -560,29 +573,39 @@ msgstr "Ver los tipos de documentos" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "El número máximo de documentos recientes (creados, editados, vistos) a recordar por usuario." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"El número máximo de documentos recientes (creados, editados, vistos) a " +"recordar por usuario." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Cantidad en porcentaje a acercar o alejar una página de documento por cada interacción del usuario." +msgstr "" +"Cantidad en porcentaje a acercar o alejar una página de documento por cada " +"interacción del usuario." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Cantidad máxima en porcentaje (%) a permitir al usuario aumentar la página del documento de forma interactiva." +msgstr "" +"Cantidad máxima en porcentaje (%) a permitir al usuario aumentar la página " +"del documento de forma interactiva." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Cantidad mínima en porcentaje (%) a permitir al usuario disminuir la página del documento de forma interactiva." +msgstr "" +"Cantidad mínima en porcentaje (%) a permitir al usuario disminuir la página " +"del documento de forma interactiva." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Cantidad de grados que se va a girar una página de documento por cada acción del usuario." +msgstr "" +"Cantidad de grados que se va a girar una página de documento por cada acción " +"del usuario." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -592,241 +615,236 @@ msgstr "Idioma por defecto para documentos (en formato ISO639-2)." msgid "List of supported document languages." msgstr "Lista de idiomas de documento apoyados." -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "Documentos en la papelera" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "¿Eliminar el documento seleccionado?" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Documento: %(document)s eliminado." -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "¿Eliminar los documentos seleccionados?" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "Editar propiedades del documento: %s" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "¿Restaurar el documento seleccionado?" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "¿Restaurar los documentos seleccionados?" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "Pagínas para documento: %s" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "Imágen de: %s" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "Visualización del documento: %s" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "¿Mover \"%s\" a la papelera?" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Documento: %(document)s movido a la papelera." -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "¿Mover los documentos seleccionados a la papelera?" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Documentos de tipo: %s" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "Todos los documentos de este tipo serán borrados también" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "¿Eliminar el tipo de documento: %s?" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "Editar tipo de documento: %s" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "Nombre típicos para el tipo de documento: %s" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "Versiones del documento: %s" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "También se borrarán todas las versiones más recientes a esta." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Versión de documento revertida con éxito." -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Error revirtiendo la versión del documento; %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "Propiedades para el documento: %s" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "¿Vaciar papelera?" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "Papelera vaciada con éxito" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Debe proveer al menos un documento" -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Enviar" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "Cambiar el tipo del documento seleccionado." msgstr[1] "Cambiar el tipo de los documentos seleccionados." -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "Documentos a descargar" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "Fecha y hora" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Error al eliminar las transformaciones de página para el documento: %(document)s; %(error)s." +msgstr "" +"Error al eliminar las transformaciones de página para el documento: " +"%(document)s; %(error)s." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Todas las transformaciones de la página del documento: %s, se han eliminado con éxito." +msgstr "" +"Todas las transformaciones de la página del documento: %s, se han eliminado " +"con éxito." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "No hay más páginas en este documento" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Usted ya está en la primera página de este documento" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "Imprimir: %s" @@ -916,11 +934,11 @@ msgstr "Imagen de página de documento" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1052,7 +1070,8 @@ msgstr "Imagen de página de documento" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1066,18 +1085,15 @@ msgstr "Imagen de página de documento" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1096,11 +1112,11 @@ msgstr "Imagen de página de documento" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1117,15 +1133,19 @@ msgstr "Imagen de página de documento" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1182,11 +1202,11 @@ msgstr "Imagen de página de documento" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1210,11 +1230,11 @@ msgstr "Imagen de página de documento" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1235,9 +1255,11 @@ msgstr "Imagen de página de documento" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1267,11 +1289,11 @@ msgstr "Imagen de página de documento" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1328,15 +1350,17 @@ msgstr "Imagen de página de documento" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po index c3c83a7163..a5cde64f8a 100644 --- a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -41,7 +42,7 @@ msgstr "برچسب" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "نوع MIME" @@ -65,26 +66,23 @@ msgstr "" msgid "Time and date" msgstr "تاریخ و زمان" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "Encoding" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "شرح" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +102,35 @@ msgstr "" msgid "Document created" msgstr "سند ساخته شد." -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Documents to be downloaded" +msgid "Document downloaded" +msgstr "اسنادی که قرار است دانلود شوند." + +#: events.py:15 msgid "Document properties edited" msgstr "خصوصیات سند ویرایش شد" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "نوع سند تغییر کرد" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "تصویر صفحه" @@ -167,15 +175,15 @@ msgstr "موجود در مخزن" msgid "File path in storage" msgstr "آدرس فایل در مخزن" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "چک سام" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "صفحات" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "نوع سند" @@ -184,13 +192,9 @@ msgid "Compress" msgstr "فشرده سازی" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +206,9 @@ msgstr "نام فایل فشرده شده" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "اگر انتخاب قبلی انجام شده، نام فایل فشرده شده که شامل کلیه فایلهای که قراراست که دانلود شوند." +msgstr "" +"اگر انتخاب قبلی انجام شده، نام فایل فشرده شده که شامل کلیه فایلهای که " +"قراراست که دانلود شوند." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +222,146 @@ msgstr "پیش فرض" msgid "Preview" msgstr "پیش دید ویا دیدن" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "خصوصیات" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "نسخه ها" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "پاک کردن تبدیلات" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "حذف" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "ویرایش خصوصیات" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "تغییر نوع" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "دانلود" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "چاپ" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Document version" +msgid "Download version" +msgstr "نسخه سند" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "کلیه اسناد" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "اسناد تازه" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "پاک کردن نحوه نمایش اسناد که در زمان سرعت بخشی به نمایش اسناد مورد استفاده قرار میگیرد." +msgstr "" +"پاک کردن نحوه نمایش اسناد که در زمان سرعت بخشی به نمایش اسناد مورد استفاده " +"قرار میگیرد." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "اولین صفحه" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "آخرین صفحه" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "صفحه قبلی" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "صفحه بعدی" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "سند" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "چرخش به چپ" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "چرجش به راست" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "ریست ویو Reset View" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "بزرگنمایی" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "کوچک نمایی" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "بازگرداندن" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "ایجاد نوع سند" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "ویرایش" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "انواع سند" @@ -358,8 +371,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +389,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +437,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "علامت زمان" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "فایل" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "نسخه سند" @@ -465,12 +474,10 @@ msgid "Document pages" msgstr "صفحات سند" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +502,10 @@ msgid "Delete documents" msgstr "حذف سند" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "دانلود اسناد" @@ -516,12 +522,10 @@ msgid "Edit document properties" msgstr "ویرایش خصوصیات سند" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,9 +563,11 @@ msgstr "بازدید انواع سند" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "حداکثر تعداد اسناد تازه (ایجاد، ویرایش و بازبینی) که جهت هرکاربر بوسیله سیستم نگهداری شود." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"حداکثر تعداد اسناد تازه (ایجاد، ویرایش و بازبینی) که جهت هرکاربر بوسیله " +"سیستم نگهداری شود." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -571,13 +577,17 @@ msgstr "اندازه بزرگنمایی/کوچک نمایی یک صفحه از msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "حداکثر درصد(%) اندازه بزرگنمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" +msgstr "" +"حداکثر درصد(%) اندازه بزرگنمایی بوسیله کاربر برروی یک صفحه از سند بصورت " +"تعاملی" #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "حداکثر درصد(%) اندازه کوچک نمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" +msgstr "" +"حداکثر درصد(%) اندازه کوچک نمایی بوسیله کاربر برروی یک صفحه از سند بصورت " +"تعاملی" #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." @@ -591,238 +601,229 @@ msgstr "زبان پیش فرض اسناد (in ISO639-2) میباشد." msgid "List of supported document languages." msgstr "لیست زبانهای پشتیبانی سند" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "ویرایش خصوصیات سند : %s" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "پیش نمایش سند : %s" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "کلیه اسناد از این نوع حذف خواهند شد." -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "ویرایش نوع سند : %s" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "نسخ سند : %s" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "همجنین کلیه نسخه های بعد از این نسخه حذف خواهند گردید." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "بازگشت موفق نسخه سند." -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "خطا در بازگشت نسخه سند: %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "خصوصیات سند : %s" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "حداقل یک سند باید ارایه شود." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "ارسال" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "اسنادی که قرار است دانلود شوند." -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "تاریخ و زمان" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "خطا %(error)s در زمان حذف تبدیلات سند %(document)s" -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "حذف کامل کلیه تبدیلات سند %s" -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "پایان صفحات سند" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "شما در حال حاضر برروی اولین صفحه این سند میباشید." -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "چاپ : %s" @@ -912,11 +913,11 @@ msgstr "عکس صفحه سند" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1047,7 +1048,8 @@ msgstr "عکس صفحه سند" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1061,18 +1063,15 @@ msgstr "عکس صفحه سند" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1091,11 +1090,11 @@ msgstr "عکس صفحه سند" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1112,15 +1111,19 @@ msgstr "عکس صفحه سند" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1177,11 +1180,11 @@ msgstr "عکس صفحه سند" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1205,11 +1208,11 @@ msgstr "عکس صفحه سند" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1230,9 +1233,11 @@ msgstr "عکس صفحه سند" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1262,11 +1267,11 @@ msgstr "عکس صفحه سند" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1323,15 +1328,17 @@ msgstr "عکس صفحه سند" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po index df1be9d75b..8e75336d11 100644 --- a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Thierry Schott , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -32,7 +33,9 @@ msgstr "Créer un type de document" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Chaque document téléchargé doit être associé à un type de document, cela permet à Mayan EDMS de catégoriser les documents." +msgstr "" +"Chaque document téléchargé doit être associé à un type de document, cela " +"permet à Mayan EDMS de catégoriser les documents." #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" @@ -42,7 +45,7 @@ msgstr "Libellé" msgid "The MIME type of any of the versions of a document" msgstr "Type MIME d'une version quelconque d'un document" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "Type MIME" @@ -66,26 +69,23 @@ msgstr "Date et heure d'envoi à la corbeille" msgid "Time and date" msgstr "Heure et date" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "Encodage" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Commentaire" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "Nouveaux documents par mois" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "Nouvelles versions de document par mois" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "Nouvelles pages de document par mois" @@ -105,25 +105,35 @@ msgstr "Nombre total de pages de documents chaque mois" msgid "Document created" msgstr "Document créé" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Documents to be downloaded" +msgid "Document downloaded" +msgstr "Documents à télécharger" + +#: events.py:15 msgid "Document properties edited" msgstr "Propriétés du document modifiées" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "Type de document modifié" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "Nouvelle version téléchargée" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "Retour à la version précédente du document" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Image de la page" @@ -168,15 +178,15 @@ msgstr "Présent dans le stockage local" msgid "File path in storage" msgstr "Chemin du fichier dans le stockage local" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Somme de contrôle" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Pages" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Type de document" @@ -185,15 +195,15 @@ msgid "Compress" msgstr "Compresser" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "Télécharger le document dans son format original ou sous forme d'archive compressée. Cette option est uniquement disponible lors du téléchargement d'un document, lors du téléchargement d'un groupe de documents, ce dernier sera toujours téléchargé en tant qu'archive compressée." +msgstr "" +"Télécharger le document dans son format original ou sous forme d'archive " +"compressée. Cette option est uniquement disponible lors du téléchargement " +"d'un document, lors du téléchargement d'un groupe de documents, ce dernier " +"sera toujours téléchargé en tant qu'archive compressée." #: forms.py:197 msgid "Compressed filename" @@ -203,7 +213,9 @@ msgstr "Nom du fichier compressé" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Le nom de fichier du fichier compressé qui contiendra les documents à importer, si l'option précédente est sélectionnée." +msgstr "" +"Le nom de fichier du fichier compressé qui contiendra les documents à " +"importer, si l'option précédente est sélectionnée." #: forms.py:217 literals.py:23 msgid "Page range" @@ -217,139 +229,146 @@ msgstr "Défaut" msgid "Preview" msgstr "Prévisualiser" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "Propriétés" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "Versions" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "Réinitialiser les transformations" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "Supprimer" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "Envoyer à la corbeille" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "Modifier les propriétés" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "Changer le type" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Télécharger" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "Imprimer" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "Réinitialiser le comptage de page" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "Restaurer" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Document version" +msgid "Download version" +msgstr "Version du document" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "Tous les documents" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "Documents récents" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "Corbeille" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Effacer les représentations graphiques utilisées pour accélérer l'affichage du document et le résultat des transformations interactives." +msgstr "" +"Effacer les représentations graphiques utilisées pour accélérer l'affichage " +"du document et le résultat des transformations interactives." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "Vider la corbeille" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "Première page" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "Dernière page" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "Page précédente" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "Page suivante" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "Document" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "Rotation à gauche" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "Rotation à droite" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "Réinitialiser la vue" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "Zoom avant" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "Zoom arrière" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "Rétablir" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "Créer un type de document" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Modifier" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "Ajouter une étiquette rapide au document" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "Etiquettes rapides" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "Types de documents" @@ -359,9 +378,10 @@ msgstr "Toutes les pages" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." -msgstr "Temps après lequel les documents de ce type seront déplacés vers la corbeille." +"Amount of time after which documents of this type will be moved to the trash." +msgstr "" +"Temps après lequel les documents de ce type seront déplacés vers la " +"corbeille." #: models.py:72 msgid "Trash time period" @@ -375,15 +395,15 @@ msgstr "Unité de temps du déplacement vers la corbeille" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "Temps après lequel les documents de ce type présents dans la corbeille seront supprimés." +msgstr "" +"Temps après lequel les documents de ce type présents dans la corbeille " +"seront supprimés." #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "Temps avant suppression" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "Unité de temps avant suppression" @@ -420,7 +440,10 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "Un document parcellaire est un document avec une entrée en base de données mais aucun fichier téléchargé. Cela peut correspondre à un téléchargement interrompu ou à un téléchargement retardé par l'API." +msgstr "" +"Un document parcellaire est un document avec une entrée en base de données " +"mais aucun fichier téléchargé. Cela peut correspondre à un téléchargement " +"interrompu ou à un téléchargement retardé par l'API." #: models.py:184 msgid "Is stub?" @@ -428,19 +451,18 @@ msgstr "Parcellaire ?" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Parcelle de document, id : %d" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "Horodatage" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Fichier" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "Version du document" @@ -466,12 +488,10 @@ msgid "Document pages" msgstr "Pages du document" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -496,11 +516,10 @@ msgid "Delete documents" msgstr "Supprimer les documents" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "Envoyer les documents à la corbeille" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Télécharger les documents" @@ -517,12 +536,10 @@ msgid "Edit document properties" msgstr "Modifier les propriétés du document" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "Imprimer les documents" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "Rétablir le document supprimé" @@ -560,29 +577,38 @@ msgstr "Afficher les types de documents" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Nombre maximum de documents récents (créés, modifiés, visualisés) à mémoriser par utilisateur." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Nombre maximum de documents récents (créés, modifiés, visualisés) à " +"mémoriser par utilisateur." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Valeur en pourcentage du zoom avant ou arrière pour une page de document pour les utilisateurs." +msgstr "" +"Valeur en pourcentage du zoom avant ou arrière pour une page de document " +"pour les utilisateurs." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Maximum en pourcents (%) de la valeur du zoom avant interactif autorisé pour l'utilisateur." +msgstr "" +"Maximum en pourcents (%) de la valeur du zoom avant interactif autorisé pour " +"l'utilisateur." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Minimum en pourcents (%) de la valeur du zoom arrière interactif autorisé pour l'utilisateur." +msgstr "" +"Minimum en pourcents (%) de la valeur du zoom arrière interactif autorisé " +"pour l'utilisateur." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Valeur en degrés pour la rotation d'une page de document par l'utilisateur." +msgstr "" +"Valeur en degrés pour la rotation d'une page de document par l'utilisateur." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -592,241 +618,252 @@ msgstr "Langue des documents par défaut (au format ISO639-2)." msgid "List of supported document languages." msgstr "Liste des langues supportées du document." -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." -msgstr "Demande de nettoyage du cache de documents mise en file d'attente avec succès." +msgstr "" +"Demande de nettoyage du cache de documents mise en file d'attente avec " +"succès." -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "Documents dans la corbeille" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "Êtes vous sûr de vouloir supprimer le document sélectionné ?" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Document %(document)s supprimé." -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "Êtes vous sûr de vouloir supprimer les documents sélectionnés ?" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "Modifier les propriétés du document : %s" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "Êtes vous sûr de vouloir rétablir le document sélectionné ?" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Document %(document)s rétabli." -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "Êtes vous sûr de vouloir rétablir les documents sélectionnés ?" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "Pages du document : %s" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "Image de : %s" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "Aperçu du document : %s" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "Etes-vous sûr de vouloir envoyer \"%s\" à la corbeille ?" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Document : %(document)s envoyé à la corbeille avec succès." -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" -msgstr "Êtes vous sûr de vouloir envoyer les documents sélectionnés à la corbeille ?" +msgstr "" +"Êtes vous sûr de vouloir envoyer les documents sélectionnés à la corbeille ?" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Documents du type : %s" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "Tous les documents de ce type seront également effacés." -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Êtes-vous sûr de vouloir supprimer le type de document : %s ?" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "Modifier le type de document : %s" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "Créer une étiquette rapide pour le type de document : %s" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Modifier l'étiquette rapide \"%(filename)s\" du type de document \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "" +"Modifier l'étiquette rapide \"%(filename)s\" du type de document " +"\"%(document_type)s\"" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Etes-vous sûr de vouloir supprimer l'étiquette rapide %(label)s du type de document \"%(document_type)s\" ?" +msgstr "" +"Etes-vous sûr de vouloir supprimer l'étiquette rapide %(label)s du type de " +"document \"%(document_type)s\" ?" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "Etiquettes rapides pour le type de document : %s" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "Versions du document : %s" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." -msgstr "Toutes les versions postérieures à celle-ci seront également supprimées." +msgstr "" +"Toutes les versions postérieures à celle-ci seront également supprimées." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "Êtes vous certain de vouloir revenir à cette version ?" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Retour à la version précédente du document effectuée avec succès" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Erreur lors du retour à une version précédente du document : %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "Propriétés du document : %s" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "Vider la corbeille ?" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "Corbeille vidée avec succès" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Au moins un document est requis." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Soumettre" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "Modifier le type du document sélectionné." msgstr[1] "Modifier le type des documents sélectionnés." -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "Documents à télécharger" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "Date et heure" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "Au moins un document doit être sélectionné" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "Document en file d'attente pour recomptage du nombre de pages." -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "Documents en file d'attente pour recalcul du nombre de pages." -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" -msgstr[0] "Êtes vous sûr de vouloir recalculer le nombre de pages du document sélectionné ?" -msgstr[1] "Êtes vous sûr de vouloir recalculer le nombre de pages des documents sélectionnés ?" +msgstr[0] "" +"Êtes vous sûr de vouloir recalculer le nombre de pages du document " +"sélectionné ?" +msgstr[1] "" +"Êtes vous sûr de vouloir recalculer le nombre de pages des documents " +"sélectionnés ?" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Erreur lors de la suppression des transformations de page pour le document : %(document)s; %(error)s." +msgstr "" +"Erreur lors de la suppression des transformations de page pour le document : " +"%(document)s; %(error)s." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Toutes les transformations de page pour le document : %s ont été supprimées avec succès." +msgstr "" +"Toutes les transformations de page pour le document : %s ont été supprimées " +"avec succès." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" -msgstr[0] "Êtes-vous sûr de vouloir supprimer toutes les transformations de page pour le document sélectionné ?" -msgstr[1] "Êtes-vous sûr de vouloir supprimer toutes les transformations de page pour les documents sélectionnés ?" +msgstr[0] "" +"Êtes-vous sûr de vouloir supprimer toutes les transformations de page pour " +"le document sélectionné ?" +msgstr[1] "" +"Êtes-vous sûr de vouloir supprimer toutes les transformations de page pour " +"les documents sélectionnés ?" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Il n'y a pas d'autres pages dans ce document" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Vous êtes déjà sur la première page du document" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "Imprimer : %s" @@ -916,11 +953,11 @@ msgstr "Image de la page du document" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1052,7 +1089,8 @@ msgstr "Image de la page du document" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1066,18 +1104,15 @@ msgstr "Image de la page du document" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1096,11 +1131,11 @@ msgstr "Image de la page du document" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1117,15 +1152,19 @@ msgstr "Image de la page du document" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1182,11 +1221,11 @@ msgstr "Image de la page du document" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1210,11 +1249,11 @@ msgstr "Image de la page du document" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1235,9 +1274,11 @@ msgstr "Image de la page du document" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1267,11 +1308,11 @@ msgstr "Image de la page du document" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1328,15 +1369,17 @@ msgstr "Image de la page du document" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po index 82d9f5ae25..239149118d 100644 --- a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -41,7 +42,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "MIME típus" @@ -65,26 +66,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Megjegyzés" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +102,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Oldal kép" @@ -167,15 +175,15 @@ msgstr "Létezik a tárolóban" msgid "File path in storage" msgstr "A fájl elérési útja a tárolóban" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Ellenőrző összeg" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Lapok" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Dokumentum típus" @@ -184,13 +192,9 @@ msgid "Compress" msgstr "Tömörítés" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +206,9 @@ msgstr "Tömörített fájlnév" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "A tömörített fájl neve, amely a letöltött dokumentumokat tartalmazni fogja, ha az előző opció van kiválasztva." +msgstr "" +"A tömörített fájl neve, amely a letöltött dokumentumokat tartalmazni fogja, " +"ha az előző opció van kiválasztva." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +222,146 @@ msgstr "" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Letöltés" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "Letöltés" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Törölje a grafikus ábrázolásokat, hogy felgyorsítsa a dokumentum megjelenítését és az interaktív átalakításokat." +msgstr "" +"Törölje a grafikus ábrázolásokat, hogy felgyorsítsa a dokumentum " +"megjelenítését és az interaktív átalakításokat." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +371,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +389,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +437,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -454,7 +463,9 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "Az oldalak száma %(page_num)d nagyobb mint a %(document)s oldalainak száma: %(total_pages)d " +msgstr "" +"Az oldalak száma %(page_num)d nagyobb mint a %(document)s oldalainak " +"száma: %(total_pages)d " #: models.py:671 msgid "Document page" @@ -465,12 +476,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +504,10 @@ msgid "Delete documents" msgstr "Dokumentum törlése" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Dokumentum letöltése" @@ -516,12 +524,10 @@ msgid "Edit document properties" msgstr "Dokumentum tulajdonságok szerkesztése" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,13 +565,17 @@ msgstr "Dokumentum típus megtekintése" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "A felhasználónként megjegyzendő dokumentumok maximális száma amit az utóbbi időben (létrehozott, szerkesztett, a megtekintett)." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"A felhasználónként megjegyzendő dokumentumok maximális száma amit az utóbbi " +"időben (létrehozott, szerkesztett, a megtekintett)." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Egy dokumentum oldal százalékos nagyításának vagy kicsinyítésének aránya egy lépésben." +msgstr "" +"Egy dokumentum oldal százalékos nagyításának vagy kicsinyítésének aránya egy " +"lépésben." #: settings.py:51 msgid "" @@ -577,11 +587,14 @@ msgstr "Egy dokumentum oldal százalékos (%) nagyításának aránya egy lépé msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Egy dokumentum oldal százalékos (%) kicsinyítésének aránya egy lépésben." +msgstr "" +"Egy dokumentum oldal százalékos (%) kicsinyítésének aránya egy lépésben." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "A felhasználó ennyi fokkal lesz képes elforgatni a dokumentumot oldalt egy lépésben." +msgstr "" +"A felhasználó ennyi fokkal lesz képes elforgatni a dokumentumot oldalt egy " +"lépésben." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -591,241 +604,233 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Minden ezután következő verzió is törölve lesz." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Dokumentum verzió sikeresen visszaállt" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Hiba a dokumentum verzió visszaállítása közben; %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Adjon meg legalább egy dokumentumot." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Hiba %(error)s a dokumentum %(document)s oldal átalakítójának törlése közben." +msgstr "" +"Hiba %(error)s a dokumentum %(document)s oldal átalakítójának törlése közben." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "A dokumentum:% s minden oldal átalakítójának törlése sikeres." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "a dokumentumnak nincs több oldala" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Ez már a dokumentum első oldala" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -915,11 +920,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1051,7 +1056,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1065,18 +1071,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1095,11 +1098,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1116,18 +1119,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1181,11 +1185,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1209,11 +1213,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1234,9 +1238,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1266,11 +1272,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1327,15 +1333,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po index 4d923fd288..056929c46c 100644 --- a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -41,7 +42,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "" @@ -65,26 +66,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Komentar" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +102,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Gambar halaman" @@ -167,15 +175,15 @@ msgstr "Ada di penyimpanan" msgid "File path in storage" msgstr "" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Halaman-halaman" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Jenis dokumen" @@ -184,13 +192,9 @@ msgid "Compress" msgstr "Kompresi" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +206,9 @@ msgstr "Nama berkas terkompresi" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Nama berkas dari berkas terkompresi yang mengandung dokumen-dokumen yang akan diunduh, bila pilihan sebelumnya terpilih." +msgstr "" +"Nama berkas dari berkas terkompresi yang mengandung dokumen-dokumen yang " +"akan diunduh, bila pilihan sebelumnya terpilih." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +222,146 @@ msgstr "" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Unduh" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "Unduh" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Bersihkan representasi gambar-gambar yang dipergunakan untuk mempercepat menampilkan dokumen dan hasil transformasi interaktif." +msgstr "" +"Bersihkan representasi gambar-gambar yang dipergunakan untuk mempercepat " +"menampilkan dokumen dan hasil transformasi interaktif." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +371,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +389,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +437,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "File" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -465,12 +474,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +502,10 @@ msgid "Delete documents" msgstr "Hapus dokumen" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Unduh dokumen" @@ -516,12 +522,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,29 +563,38 @@ msgstr "Lihat jenis-jenis dokumen" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Jumlah maksimal dokumen-dokumen (dibuat, disunting, dilihat) baru-baru ini per pengguna." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Jumlah maksimal dokumen-dokumen (dibuat, disunting, dilihat) baru-baru ini " +"per pengguna." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Satuan dalam persen untuk memperbesar atau memperkecil tampilan halaman dokumen per interaksi pengguna." +msgstr "" +"Satuan dalam persen untuk memperbesar atau memperkecil tampilan halaman " +"dokumen per interaksi pengguna." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Jumlah maksimal dalam persen (%) yang diperbolehkan bagi pengguna untuk memperbesar tampilan halaman dokumen secara interaktif" +msgstr "" +"Jumlah maksimal dalam persen (%) yang diperbolehkan bagi pengguna untuk " +"memperbesar tampilan halaman dokumen secara interaktif" #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Jumlah minimal dalam persen (%) yang diperbolehkan bagi pengguna untuk memperkecil tampilan halaman dokumen secara interaktif." +msgstr "" +"Jumlah minimal dalam persen (%) yang diperbolehkan bagi pengguna untuk " +"memperkecil tampilan halaman dokumen secara interaktif." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Jumlah dalam derajat untuk memutar halaman dokumen per interaksi pengguna." +msgstr "" +"Jumlah dalam derajat untuk memutar halaman dokumen per interaksi pengguna." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -591,238 +604,233 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Semua versi sebelum versi yang ini akan ikut dihapus juga." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Versi dokumen berhasil dikembalikan." -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Masalah dalam mengembalikan versi dokumen; %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Harus memberikan setidaknya satu dokumen." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Masalah dalam menghapus transformasi-transformasi untuk halaman: %(document)s; %(error)s." +msgstr "" +"Masalah dalam menghapus transformasi-transformasi untuk halaman: " +"%(document)s; %(error)s." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Semua transformasi-transformasi halaman untuk dokumen: %s, telah berhasil dihapus." +msgstr "" +"Semua transformasi-transformasi halaman untuk dokumen: %s, telah berhasil " +"dihapus." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Tidak ada halaman lagi dalam dokumen ini" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Anda telah berada pada halaman pertama dari dokumen ini" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -912,11 +920,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1047,7 +1055,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1061,18 +1070,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1091,11 +1097,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1112,18 +1118,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1177,11 +1184,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1205,11 +1212,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1230,9 +1237,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1262,11 +1271,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1323,15 +1332,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po index 21c7f25d50..9e7c97b3e6 100644 --- a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -41,7 +42,7 @@ msgstr "etichetta" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "Tipo MIME" @@ -65,26 +66,23 @@ msgstr "" msgid "Time and date" msgstr "Ora e data" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "Codifica" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Commento" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +102,35 @@ msgstr "" msgid "Document created" msgstr "Documento creato" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Documents to be downloaded" +msgid "Document downloaded" +msgstr "Documenti da scaricare" + +#: events.py:15 msgid "Document properties edited" msgstr "Modificate proprietà del documento " -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "Cambiamenti al tipo di documento" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Immagine della pagina" @@ -167,15 +175,15 @@ msgstr "Esiste nello storage" msgid "File path in storage" msgstr "File path in storage" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Checksum" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Pagine" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Tipo documento " @@ -184,13 +192,9 @@ msgid "Compress" msgstr "Comprimere" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +206,9 @@ msgstr "Nome file compresso " msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Il nome file del file compresso che conterrà il documento da scaricare, se l'opzione precedente è selezionata." +msgstr "" +"Il nome file del file compresso che conterrà il documento da scaricare, se " +"l'opzione precedente è selezionata." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +222,146 @@ msgstr "Default" msgid "Preview" msgstr "Anteprima " -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "Proprietà" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "Versioni" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "Cancella trasformazioni" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "Cancella" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "Modifica proprietà" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "Cambia tipo" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Scarica" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "Stampa" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Document version" +msgid "Download version" +msgstr "Versione documento" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "Tutti i documenti" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "Documenti recenti" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Cancella le rappresentazioni grafiche utilizzate per accellerare la visualizzazione dei documenti e dei risultati interattivi trasformazioni." +msgstr "" +"Cancella le rappresentazioni grafiche utilizzate per accellerare la " +"visualizzazione dei documenti e dei risultati interattivi trasformazioni." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "Prima pagina" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "Ultima pagina" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "Pagina precedente" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "Pagina successiva" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "Documento" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "Ruota a sinistra" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "Ruota a destra" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "View reset" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "Zoom in" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "Zoom out" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "Ritornare" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "Crea tipo di documento" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Modifica" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "Tipi di documento" @@ -358,8 +371,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +389,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +437,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "Timestamp" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "File" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "Versione documento" @@ -465,12 +474,10 @@ msgid "Document pages" msgstr "Le pagine del documento" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +502,10 @@ msgid "Delete documents" msgstr "Cancella documenti" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Scarica documenti" @@ -516,12 +522,10 @@ msgid "Edit document properties" msgstr "Modifica proprietà documento" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,25 +563,33 @@ msgstr "Visualizza i tipi di documento" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Massimo numero recente (creazione, modifica, visualizzazione) di documenti da ricordare per utente" +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Massimo numero recente (creazione, modifica, visualizzazione) di documenti " +"da ricordare per utente" #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Importo in percentuale dello zoom o rimpicciolire una pagina del documento per l'interazione dell'utente." +msgstr "" +"Importo in percentuale dello zoom o rimpicciolire una pagina del documento " +"per l'interazione dell'utente." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Importo massimo in percentuale (%) per consentire all'utente di ingrandire una pagina del documento in modo interattivo." +msgstr "" +"Importo massimo in percentuale (%) per consentire all'utente di ingrandire " +"una pagina del documento in modo interattivo." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Quantità minima in percentuale (%) per consentire all'utente di ingrandire una pagina di documento in modo interattivo." +msgstr "" +"Quantità minima in percentuale (%) per consentire all'utente di ingrandire " +"una pagina di documento in modo interattivo." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." @@ -591,241 +603,236 @@ msgstr "Lingua predefinita per idocumenti (in formato ISO639-2)." msgid "List of supported document languages." msgstr "Elenco delle lingue supportate nei documenti." -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "Modifica le proprietà del documento: %s" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "Anteprima del documento: %s" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "Tutti i documenti di questo tipo saranno cancellati ." -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "Modifica il tipo di documento: %s" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "Versione del documento: %s" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Tutte le versioni più tardi verrà cancellato." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Versione del documento ripristinato con successo" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Errore restituito, quando ripristino documento; %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "Proprietà del documento: %s" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Fornire almeno un documento " -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Presentare" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "Documenti da scaricare" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "Data e ora" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Errore nella cancellazione della trasformazione della pagina per il documento:%(document)s; %(error)s." +msgstr "" +"Errore nella cancellazione della trasformazione della pagina per il " +"documento:%(document)s; %(error)s." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Tutte le trasformazioni alle pagine del documento:%s, sono state cancellate con successo." +msgstr "" +"Tutte le trasformazioni alle pagine del documento:%s, sono state cancellate " +"con successo." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Non ci sono più pagine in questo documento" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Sei già alla prima pagina del documento" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "Stampa: %s" @@ -915,11 +922,11 @@ msgstr "Immagine pagina documento" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1051,7 +1058,8 @@ msgstr "Immagine pagina documento" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1065,18 +1073,15 @@ msgstr "Immagine pagina documento" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1095,11 +1100,11 @@ msgstr "Immagine pagina documento" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1116,15 +1121,19 @@ msgstr "Immagine pagina documento" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1181,11 +1190,11 @@ msgstr "Immagine pagina documento" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1209,11 +1218,11 @@ msgstr "Immagine pagina documento" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1234,9 +1243,11 @@ msgstr "Immagine pagina documento" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1266,11 +1277,11 @@ msgstr "Immagine pagina documento" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1327,15 +1338,17 @@ msgstr "Immagine pagina documento" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 e3aa525074..4324298dd7 100644 --- a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -41,7 +42,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "MIME type" @@ -65,26 +66,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Commentaar" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +102,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Pagina afbeelding" @@ -167,15 +175,15 @@ msgstr "Aanwezig in opslag" msgid "File path in storage" msgstr "Bestandspad in opslag" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Checksum" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Pagina's" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Documentsoort" @@ -184,13 +192,9 @@ msgid "Compress" msgstr "Comprimeren" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +206,10 @@ msgstr "Bestandsnaam gecomprimeerde archiefbestand" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "De bestandsnaam van het gecomprimeerde archiefbestand dat alle documenten bevat die dienen te worden gedownload, als de voorgaande optie is geselecteerd." +msgstr "" +"De bestandsnaam van het gecomprimeerde archiefbestand dat alle documenten " +"bevat die dienen te worden gedownload, als de voorgaande optie is " +"geselecteerd." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +223,146 @@ msgstr "Verstekwaarde" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "Verwijder" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Download" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "Download" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Opschonen van de grafische afbeeldingen, die gebuikt worden bij het versnellen van de documentweergave en interactive transformatie resultaten." +msgstr "" +"Opschonen van de grafische afbeeldingen, die gebuikt worden bij het " +"versnellen van de documentweergave en interactive transformatie resultaten." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "Document" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "bewerken" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +372,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +390,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +438,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Bestand" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -465,12 +475,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +503,10 @@ msgid "Delete documents" msgstr "Documenten verwijderen" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Documenten downloaden" @@ -516,12 +523,10 @@ msgid "Edit document properties" msgstr "Documenteigenschappen bewerken" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,9 +564,11 @@ msgstr "Bekijk de documentsoorten" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Maximum aantal recente docmenten (aangemaakt, bewerkt, bekeken), te onthouden per gebruiker." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Maximum aantal recente docmenten (aangemaakt, bewerkt, bekeken), te " +"onthouden per gebruiker." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -571,13 +578,15 @@ msgstr "Percentage in- of uitzoomen voor documentpagina per gebruikeractie." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Maximaal toegestane documentpagina zoom percentage (%) per gebruikeractie." +msgstr "" +"Maximaal toegestane documentpagina zoom percentage (%) per gebruikeractie." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Minimaal toegestane documentpagina zoom percentage (%) per gebruikeractie. " +msgstr "" +"Minimaal toegestane documentpagina zoom percentage (%) per gebruikeractie. " #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." @@ -591,241 +600,235 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Alle recentere versies na deze zullen ook worden verwijdert." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Documentversie succesvol teruggevoerd" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Fout bij het terugvoeren van de documentversie. Foutmelding: %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "U dient minstens 1 document aan te geven." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Verstuur" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Fout bij verwijderen van de pagina transformaties voor document: %(document)s ; %(error)s ." +msgstr "" +"Fout bij verwijderen van de pagina transformaties voor document: " +"%(document)s ; %(error)s ." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Al de pagina transformaties voor document: %s, zijn succesvol verwijdert." +msgstr "" +"Al de pagina transformaties voor document: %s, zijn succesvol verwijdert." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Er zijn verder geen pagina's meer in dit document" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "U bent al op de eerste pagina in dit document" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -915,11 +918,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1051,7 +1054,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1065,18 +1069,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1095,11 +1096,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1116,18 +1117,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1181,11 +1183,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1209,11 +1211,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1234,9 +1236,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1266,11 +1270,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1327,15 +1331,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po index d787ab8023..8a1ea00b8e 100644 --- a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Wojciech Warczakowski , 2016 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -32,7 +34,9 @@ msgstr "Utwórz typ dokumentu" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "Każdy przesłany dokument musi mieć przypisany typ dokumentu, ponieważ jest to podstawowy sposób kategoryzacji dokumentów w Mayan EDMS." +msgstr "" +"Każdy przesłany dokument musi mieć przypisany typ dokumentu, ponieważ jest " +"to podstawowy sposób kategoryzacji dokumentów w Mayan EDMS." #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" @@ -42,7 +46,7 @@ msgstr "Etykieta" msgid "The MIME type of any of the versions of a document" msgstr "Typ MIME każdej wersji dokumentu" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "Typ MIME" @@ -66,26 +70,23 @@ msgstr "Data i czas umieszczenia w koszu" msgid "Time and date" msgstr "Czas i data" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "Kodowanie" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Komentarz" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "Nowe dokumenty miesięcznie" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "Nowe wersje dokumentów miesięcznie" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "Nowe strony dokumentów miesięcznie" @@ -105,25 +106,35 @@ msgstr "Liczba stron dokumentów w każdym miesiącu" msgid "Document created" msgstr "Dokument został utworzony" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "Właściwości dokumentu zostały zmodyfikowane" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "Właściwości dokumentu zostały zmodyfikowane" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "Nowa wersja została przesłana" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "Wersja dokumentu została przywrócona" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Obraz strony" @@ -168,15 +179,15 @@ msgstr "Istnieje w pamięci" msgid "File path in storage" msgstr "" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Strony" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Typ dokumentów" @@ -185,13 +196,9 @@ msgid "Compress" msgstr "Kompresuj" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -217,139 +224,144 @@ msgstr "Domyślne" msgid "Preview" msgstr "Podgląd" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "Właściwości" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "Wersje" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "Wyczyść transformacje" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "Usuń" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "Przenieś do kosza" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "Edytuj właściwości" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "Zmień typ" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Pobierz" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "Drukuj" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "Przelicz liczbę stron" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Document version" +msgid "Download version" +msgstr "Wersja dokumentu" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "Wszystkie dokumenty" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "Ostatnio przeglądane" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "Kosz" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." msgstr "" -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "Pierwsza strona" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "Ostatnia strona" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "Poprzednia strona" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "Następna strona" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "Dokument" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "Obrót w lewo" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "Obrót w prawo" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "Resetuj widok" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "Powiększ" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "Pomniejszyć" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "Przywróć" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "Tworzenie typów dokumentów" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Edytuj" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "Typy dokumentów" @@ -359,8 +371,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -378,12 +389,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -428,19 +437,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "Pieczęć czasu" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Plik" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "Wersja dokumentu" @@ -466,12 +474,10 @@ msgid "Document pages" msgstr "Strony dokumentu" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -496,11 +502,10 @@ msgid "Delete documents" msgstr "Usuwanie dokumentów" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Pobierz dokumenty" @@ -517,12 +522,10 @@ msgid "Edit document properties" msgstr "Edytuj właściwości dokumentu" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -560,8 +563,8 @@ msgstr "Zobacz typy dokumentów" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "" #: settings.py:44 @@ -592,244 +595,235 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "" -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Musisz dodać co najmniej jeden dokument." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Wykonaj" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "Data i godzina" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Jesteś już na pierwszej stronie tego dokumentu" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "Drukuj: %s" @@ -919,11 +913,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1056,7 +1050,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1070,18 +1065,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1100,11 +1092,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1121,18 +1113,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1186,11 +1179,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1214,11 +1207,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1239,9 +1232,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1271,11 +1266,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1332,15 +1327,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po index 4eb547c100..d226672c34 100644 --- a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -41,7 +42,7 @@ msgstr "Nome" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "Tipo MIME" @@ -65,26 +66,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Comentário" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +102,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Imagem da página" @@ -167,15 +175,15 @@ msgstr "Existe no armazenamento" msgid "File path in storage" msgstr "Caminho do ficheiro no armazenamento" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Soma de verificação" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Páginas" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Tipo de documento" @@ -184,13 +192,9 @@ msgid "Compress" msgstr "Comprimir" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -216,139 +220,146 @@ msgstr "Padrão" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "Eliminar" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Descarregar" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "Descarregar" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Limpar as representações gráficas usadas para acelerar a exibição e transformações interativas de documentos." +msgstr "" +"Limpar as representações gráficas usadas para acelerar a exibição e " +"transformações interativas de documentos." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Editar" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +369,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +387,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +435,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Ficheiro" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -465,12 +472,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +500,10 @@ msgid "Delete documents" msgstr "Excluir documentos" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Descarregar documentos" @@ -516,12 +520,10 @@ msgid "Edit document properties" msgstr "Editar propriedades de documento" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,9 +561,11 @@ msgstr "Ver tipos de documento" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Número máximo de documentos recentes (criados, editados, visualizados) a recordar, por utilizador." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Número máximo de documentos recentes (criados, editados, visualizados) a " +"recordar, por utilizador." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -571,17 +575,23 @@ msgstr "Percentagem de zoom in/out por interação do utilizador." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Percentagem (%) máxima para o utilizador aumentar o zoom de uma página de documento de forma interativa." +msgstr "" +"Percentagem (%) máxima para o utilizador aumentar o zoom de uma página de " +"documento de forma interativa." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Percentagem (%) mínima para o utilizador diminuir o zoom de uma página de documento de forma interativa." +msgstr "" +"Percentagem (%) mínima para o utilizador diminuir o zoom de uma página de " +"documento de forma interativa." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Valor em graus para rodar uma página de documento por interação do utilizador." +msgstr "" +"Valor em graus para rodar uma página de documento por interação do " +"utilizador." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -591,241 +601,236 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Todas as versões posteriores a esta também serão eliminadas." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Versão do documento revertida com sucesso" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Erro ao reverter versão do documento; %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Deve fornecer pelo menos um documento." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Submeter" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Erro ao excluir as transformações de página para o documento: %(document)s; %(error)s ." +msgstr "" +"Erro ao excluir as transformações de página para o documento: %(document)s; " +"%(error)s ." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Todas as transformações de página para o documento: %s, foram excluídas com sucesso." +msgstr "" +"Todas as transformações de página para o documento: %s, foram excluídas com " +"sucesso." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Não há mais páginas neste documento" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Já está na primeira página deste documento" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -915,11 +920,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1051,7 +1056,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1065,18 +1071,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1095,11 +1098,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1116,18 +1119,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1181,11 +1185,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1209,11 +1213,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1234,9 +1238,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1266,11 +1272,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1327,15 +1333,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 fb0627472d..357ffc6e03 100644 --- a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -41,7 +42,7 @@ msgstr "Label" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "Tipo MIME" @@ -65,26 +66,23 @@ msgstr "" msgid "Time and date" msgstr "Hora e Data" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "Codificação" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Comentário" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +102,35 @@ msgstr "" msgid "Document created" msgstr "Documento criado " -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Documents to be downloaded" +msgid "Document downloaded" +msgstr "Documentos a serem baixados" + +#: events.py:15 msgid "Document properties edited" msgstr "As propriedades do documento editado " -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "Tipo de Documento mudado" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Imagem da página" @@ -167,15 +175,15 @@ msgstr "Existe no armazenamento" msgid "File path in storage" msgstr "Caminho do arquivo no armazenamento" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Verificação" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Páginas" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Tipo de Documento" @@ -184,13 +192,9 @@ msgid "Compress" msgstr "comprimir" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +206,9 @@ msgstr "Comprimido o filename " msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "O nome do arquivo do arquivo compactado que vai conter os documentos a serem baixados, se a opção anterior é selecionado." +msgstr "" +"O nome do arquivo do arquivo compactado que vai conter os documentos a serem " +"baixados, se a opção anterior é selecionado." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +222,146 @@ msgstr "Padrão" msgid "Preview" msgstr "Visualizar" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "propriedades" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "Versão" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "remover transformações" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "Excluir" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "Editar propriedades" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "Mudar o tipo" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Baixar" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "Imprimir" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Document version" +msgid "Download version" +msgstr "Versão do Documento" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "Todos os Documentos" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "Documentos recentes" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Desmarque as representações gráficas utilizadas para acelerar a exibição e transformações interativas resultados dos documentos." +msgstr "" +"Desmarque as representações gráficas utilizadas para acelerar a exibição e " +"transformações interativas resultados dos documentos." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "Primeira página" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "Última pagina" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "Página anterior" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "próxima pagina" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "Documento" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "girar para a esquerda" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "girar para a direita" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "redefinir visão" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "mais zoom" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "menos zoom" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "reverter" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "Criar Tipo de documento" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Editar" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "Tipos de Documentos" @@ -358,8 +371,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +389,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +437,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "Timestamp" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Arquivo" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "Versão do Documento" @@ -465,12 +474,10 @@ msgid "Document pages" msgstr "páginas do documento" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +502,10 @@ msgid "Delete documents" msgstr "Excluir documentos" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Baixar documentos" @@ -516,12 +522,10 @@ msgid "Edit document properties" msgstr "Editar propriedades de documento" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,29 +563,38 @@ msgstr "Ver tipos de documentos" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Número máximo de documentos recentes (criado, editado, visualizado) à ser lembrado, por usuário." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Número máximo de documentos recentes (criado, editado, visualizado) à ser " +"lembrado, por usuário." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Quantidade em porcentagem de zoom em uma página ou documento por interação do usuário." +msgstr "" +"Quantidade em porcentagem de zoom em uma página ou documento por interação " +"do usuário." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Valor máximo em porcentagem (%) para permitir ao usuário aumentar o zoom em uma página do documento de forma interativa." +msgstr "" +"Valor máximo em porcentagem (%) para permitir ao usuário aumentar o zoom em " +"uma página do documento de forma interativa." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Valor mínimo em porcentagem (%) para permitir ao usuário diminuir o zoom em uma página do documento de forma interativa." +msgstr "" +"Valor mínimo em porcentagem (%) para permitir ao usuário diminuir o zoom em " +"uma página do documento de forma interativa." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Valor em graus para girar uma página do documento por interação do usuário." +msgstr "" +"Valor em graus para girar uma página do documento por interação do usuário." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -591,241 +604,236 @@ msgstr "Os documentos padrão linguagem (em formato ISO639-2)." msgid "List of supported document languages." msgstr "Lista de idiomas de documentos suportados." -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "Editar propriedades de documento: %s" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "Pré-visualização do documento:%s " -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "Todos os documentos deste tipo serão excluídos também." -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "Editar o tipo de documento: %s" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "Versões do documento: %s" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Tudo versão posterior após este será excluído também." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Versão do documento revertidos com sucesso" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Erro ao reverter versão do documento; %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "Pré-visualização do documento:%s" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Deve fornecer, pelo menos, um documento." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Submeter" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "Documentos a serem baixados" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "data e hora" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Erro ao excluir as transformações de página para o documento: %(document)s; %(error)s ." +msgstr "" +"Erro ao excluir as transformações de página para o documento: %(document)s; " +"%(error)s ." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Todas as transformações de página para o documento: %s, foram excluídas com sucesso." +msgstr "" +"Todas as transformações de página para o documento: %s, foram excluídas com " +"sucesso." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Não há mais páginas neste documento" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Você já está na primeira página deste documento" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -915,11 +923,11 @@ msgstr "Imagem da página do documento" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1051,7 +1059,8 @@ msgstr "Imagem da página do documento" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1065,18 +1074,15 @@ msgstr "Imagem da página do documento" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1095,11 +1101,11 @@ msgstr "Imagem da página do documento" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1116,15 +1122,19 @@ msgstr "Imagem da página do documento" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1181,11 +1191,11 @@ msgstr "Imagem da página do documento" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1209,11 +1219,11 @@ msgstr "Imagem da página do documento" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1234,9 +1244,11 @@ msgstr "Imagem da página do documento" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1266,11 +1278,11 @@ msgstr "Imagem da página do documento" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1327,15 +1339,17 @@ msgstr "Imagem da página do documento" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 fd48713e8f..e61ee4dcf0 100644 --- a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -41,7 +43,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "Tip MIME" @@ -65,26 +67,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Comentariu" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +103,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Imaginea paginii" @@ -167,15 +176,15 @@ msgstr "Există în arhivă" msgid "File path in storage" msgstr "Cale fisier in arhiva" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Suma de control" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Pagini" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Tip document" @@ -184,13 +193,9 @@ msgid "Compress" msgstr "Comprimă" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +207,9 @@ msgstr "Nume fişier comprimat" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Nume fișier comprimat, care va conține documentele ce urmează să fie descărcate, în cazul în care această opțiunea a fost selectată anterior." +msgstr "" +"Nume fișier comprimat, care va conține documentele ce urmează să fie " +"descărcate, în cazul în care această opțiunea a fost selectată anterior." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +223,146 @@ msgstr "Iniţial" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Descarcă" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "Descarcă" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Goliți reprezentările grafice folosite pentru a accelera afișarea documentelor și rezultatele interactive de transformari." +msgstr "" +"Goliți reprezentările grafice folosite pentru a accelera afișarea " +"documentelor și rezultatele interactive de transformari." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Editează" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +372,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +390,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +438,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Fișier" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -465,12 +475,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +503,10 @@ msgid "Delete documents" msgstr "Şterge" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Descarcă" @@ -516,12 +523,10 @@ msgid "Edit document properties" msgstr "Editează proprietăţile" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,29 +564,39 @@ msgstr "Vezi tipuri de documente" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Numărul maxim de documente (create, editate, vizualizate) reţinute per utilizator." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Numărul maxim de documente (create, editate, vizualizate) reţinute per " +"utilizator." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Suma în procente folosită pentru a mării sau micşora un document interactiv cu utilizatorul." +msgstr "" +"Suma în procente folosită pentru a mării sau micşora un document interactiv " +"cu utilizatorul." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Suma maximă în procente (%), permisă utilizatorilor pentru mărirea interactiv a unei pagini ." +msgstr "" +"Suma maximă în procente (%), permisă utilizatorilor pentru mărirea " +"interactiv a unei pagini ." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Suma minimă în procente (%), permisă utilizatorului pentru micșorarea interactivă a unei pagini ." +msgstr "" +"Suma minimă în procente (%), permisă utilizatorului pentru micșorarea " +"interactivă a unei pagini ." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Ce rotaţie pentru pagină (în grade) este folosită în interacțiunea cu utilizatorul." +msgstr "" +"Ce rotaţie pentru pagină (în grade) este folosită în interacțiunea cu " +"utilizatorul." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -591,244 +606,236 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Toate versiune de dupa aceasta, vor fi şterse de asemenea." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Versiunea documentului refacută cu succes" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Eroare la revenirea la versiunea documentului; %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Trebuie selectat cel puțin un document." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Trimiteţi" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "Eroare la ștergerea transformări : %(document)s; %(error)s." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Toate paginile transformate pentru document: %s , au fost șterse cu succes." +msgstr "" +"Toate paginile transformate pentru document: %s , au fost șterse cu succes." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Nu mai sunt pagini în acest document." -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Sunteți deja la prima pagină a acestui document" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -918,11 +925,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1055,7 +1062,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1069,18 +1077,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1099,11 +1104,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1120,18 +1125,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1185,11 +1191,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1213,11 +1219,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1238,9 +1244,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1270,11 +1278,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1331,15 +1339,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po index 4073ac8ced..d17296021d 100644 --- a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -41,7 +44,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "MIME type" @@ -65,26 +68,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Комментарий" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +104,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Изображение страницы" @@ -167,15 +177,15 @@ msgstr "Существует в хранилище" msgid "File path in storage" msgstr "Путь к файлу в хранилище" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Контрольная сумма" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Страницы" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Тип документа" @@ -184,13 +194,9 @@ msgid "Compress" msgstr "Сжать" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +208,9 @@ msgstr "Имя сжатого файла" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Имя файла сжатого файла, который будет содержать загружаемые документы, если выбран предыдущий параметр." +msgstr "" +"Имя файла сжатого файла, который будет содержать загружаемые документы, если " +"выбран предыдущий параметр." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +224,146 @@ msgstr "Умолчание" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Скачать" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "Скачать" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Очистить графику для ускорения отображения документов и интерактивных преобразований." +msgstr "" +"Очистить графику для ускорения отображения документов и интерактивных " +"преобразований." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Редактировать" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +373,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +391,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +439,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "Файл" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -465,12 +476,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +504,10 @@ msgid "Delete documents" msgstr "Удаление документов" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Загрузка документов" @@ -516,12 +524,10 @@ msgid "Edit document properties" msgstr "Редактирование свойств документа" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,9 +565,11 @@ msgstr "Просмотр типов документов" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Максимальное количество последних (созданных, измененных, просмотренных) документов, запоминаемых для каждого пользователя." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Максимальное количество последних (созданных, измененных, просмотренных) " +"документов, запоминаемых для каждого пользователя." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -591,176 +599,168 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Все более поздние версии после этого будут удалены" -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Версия документа восстановлена" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Ошибка получения версии документа %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Необходимо указатьть хотя бы один документ." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "Подтвердить" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" @@ -768,32 +768,31 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" @@ -801,21 +800,23 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Ошибка при удалении страницы для преобразования документов: %(document)s; %(error)s." +msgstr "" +"Ошибка при удалении страницы для преобразования документов: %(document)s; " +"%(error)s." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "Все преобразования страницы для документа: %s успешно удалены." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" @@ -823,15 +824,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr " Нет более страниц в этом документе" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Вы уже на первой странице этого документа" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -921,11 +922,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1059,7 +1060,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1073,18 +1075,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1103,11 +1102,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1124,18 +1123,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1189,11 +1189,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1217,11 +1217,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1242,9 +1242,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1274,11 +1276,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1335,15 +1337,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 9ef3728a1a..3b6d87ec60 100644 --- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -41,7 +43,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "MIME tip" @@ -65,26 +67,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Komentar" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +103,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "Slika strani" @@ -167,15 +176,15 @@ msgstr "Obstaja v shrambi" msgid "File path in storage" msgstr "Pot datoteke v shrambi" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "Nadzorna vsota" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Strani" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Tip dokumenta" @@ -184,13 +193,9 @@ msgid "Compress" msgstr "Stisni" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -202,7 +207,9 @@ msgstr "Ime stisnjene datoteke" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "Ime skrčene datotteke, ki do vsebovala datoteke za prenos, če je bila prejšnja opcija izbrana." +msgstr "" +"Ime skrčene datotteke, ki do vsebovala datoteke za prenos, če je bila " +"prejšnja opcija izbrana." #: forms.py:217 literals.py:23 msgid "Page range" @@ -216,139 +223,146 @@ msgstr "" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "Prenos" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "Prenos" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "Počistite grafične predstavitve, ki se uporabljajo za pospešitev prikaza dokumentov in rezultatov interaktivnih transformacij." +msgstr "" +"Počistite grafične predstavitve, ki se uporabljajo za pospešitev prikaza " +"dokumentov in rezultatov interaktivnih transformacij." -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +372,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +390,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +438,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -465,12 +475,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +503,10 @@ msgid "Delete documents" msgstr "Izbiši dokumente" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Prenesi dokumente" @@ -516,12 +523,10 @@ msgid "Edit document properties" msgstr "Uredi lastnosti dokumenta" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,29 +564,38 @@ msgstr "Poglej tip dokumenta" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Največje število zadnjih (kreiranih, urejenih, pogledanih) dokumentov za prikaz po uporabniku." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Največje število zadnjih (kreiranih, urejenih, pogledanih) dokumentov za " +"prikaz po uporabniku." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Znesek v procentih za približane oziroma oddaljene strani na dokument v uporabniškem vmesniku." +msgstr "" +"Znesek v procentih za približane oziroma oddaljene strani na dokument v " +"uporabniškem vmesniku." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Največji znesek v procentih (%), ki je dovoljen uporabniku za približevanje strani v dokumentu." +msgstr "" +"Največji znesek v procentih (%), ki je dovoljen uporabniku za približevanje " +"strani v dokumentu." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "Naamanjši znesek v procentih (%), ki je dovoljen uporabniku za približevanje strani v dokumentu." +msgstr "" +"Naamanjši znesek v procentih (%), ki je dovoljen uporabniku za približevanje " +"strani v dokumentu." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "Število v stopinjah za rotiranje strani dokumenta ob uporabniški interakciji." +msgstr "" +"Število v stopinjah za rotiranje strani dokumenta ob uporabniški interakciji." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -591,176 +605,168 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "Vse prejšnje verzije bodo tudi izbrisane." -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "Povrnitev verzije dokumenta je bila uspešna" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "Napaka v povrnitvi dokumenta verzija: %s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Potrebno je podati vsaj en dokument" -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" @@ -768,32 +774,31 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" @@ -801,21 +806,22 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "Napaka v izbrisu preoblikovanj strani za dokument: %(document)s; %(error)s." +msgstr "" +"Napaka v izbrisu preoblikovanj strani za dokument: %(document)s; %(error)s." -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "Vsa preoblikovanja strani dokumenta: %s, so bila uspešno izbrisana." -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" @@ -823,15 +829,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "Ni več strani v tem dokumentu" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "Ste že na prvi strani dokumenta" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -921,11 +927,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1059,7 +1065,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1073,18 +1080,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1103,11 +1107,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1124,18 +1128,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1189,11 +1194,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1217,11 +1222,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1242,9 +1247,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1274,11 +1281,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1335,15 +1342,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 fdd1c648ae..da9199a45f 100644 --- a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -41,7 +42,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "MIME type" @@ -65,26 +66,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "Chú thích" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +102,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "" @@ -167,15 +175,15 @@ msgstr "" msgid "File path in storage" msgstr "" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "Trang" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "Kiểu tài liệu" @@ -184,13 +192,9 @@ msgid "Compress" msgstr "Nén" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -216,139 +220,144 @@ msgstr "Mặc định" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download documents" +msgid "Download version" +msgstr "Tải xuống tài liệu" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." msgstr "" -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "Sửa" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +367,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +385,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +433,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "File" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -465,12 +470,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +498,10 @@ msgid "Delete documents" msgstr "Xóa tài liệu" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "Tải xuống tài liệu" @@ -516,12 +518,10 @@ msgid "Edit document properties" msgstr "" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,19 +559,23 @@ msgstr "" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." -msgstr "Số lượng lớn nhất gần nhất (tạo, sửa, xem) số tài liệu để nhớ mỗi người dùng." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." +msgstr "" +"Số lượng lớn nhất gần nhất (tạo, sửa, xem) số tài liệu để nhớ mỗi người dùng." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "Số phần trăm phóng to hoặc thu nhỏ một trang tài liệu mỗi tác động của người dùng." +msgstr "" +"Số phần trăm phóng to hoặc thu nhỏ một trang tài liệu mỗi tác động của người " +"dùng." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "Số phần trăm lớn nhất (%) cho phép người dùng phóng to một trang tài liệu." +msgstr "" +"Số phần trăm lớn nhất (%) cho phép người dùng phóng to một trang tài liệu." #: settings.py:58 msgid "" @@ -591,238 +595,229 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "" -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "Cần cung cấp ít nhất một tài liệu." -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "" -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "" -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -912,11 +907,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1047,7 +1042,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1061,18 +1057,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1091,11 +1084,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1112,18 +1105,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1177,11 +1171,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1205,11 +1199,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1230,9 +1224,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1262,11 +1258,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1323,15 +1319,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po index a3c8957598..93d9b31675 100644 --- a/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -41,7 +42,7 @@ msgstr "" msgid "The MIME type of any of the versions of a document" msgstr "" -#: apps.py:112 apps.py:196 search.py:18 views.py:824 +#: apps.py:112 apps.py:196 search.py:18 views.py:829 msgid "MIME type" msgstr "MIME类型" @@ -65,26 +66,23 @@ msgstr "" msgid "Time and date" msgstr "" -#: apps.py:200 views.py:825 +#: apps.py:200 views.py:830 msgid "Encoding" msgstr "" -#: apps.py:204 models.py:360 +#: apps.py:204 models.py:356 msgid "Comment" msgstr "评论" #: apps.py:386 -#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 -#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 -#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,25 +102,35 @@ msgstr "" msgid "Document created" msgstr "" -#: events.py:11 +#: events.py:12 +#, fuzzy +#| msgid "Document deleted" +msgid "Document downloaded" +msgstr "Document deleted" + +#: events.py:15 msgid "Document properties edited" msgstr "" -#: events.py:14 +#: events.py:18 msgid "Document type changed" msgstr "" -#: events.py:17 -#| msgid "Version update" +#: events.py:21 msgid "New version uploaded" msgstr "" -#: events.py:21 -#| msgid "Document version reverted successfully" +#: events.py:25 msgid "Document version reverted" msgstr "" -#: forms.py:41 links.py:201 +#: events.py:29 +#, fuzzy +#| msgid "Document preview" +msgid "Document viewed" +msgstr "Document edited" + +#: forms.py:41 links.py:205 msgid "Page image" msgstr "页面图片" @@ -167,15 +175,15 @@ msgstr "在存储中存在" msgid "File path in storage" msgstr "在存储中的文件路径" -#: forms.py:140 models.py:375 +#: forms.py:140 models.py:371 msgid "Checksum" msgstr "校验码" -#: forms.py:141 links.py:57 +#: forms.py:141 links.py:58 msgid "Pages" msgstr "页面" -#: forms.py:173 models.py:106 models.py:155 models.py:622 search.py:15 +#: forms.py:172 models.py:106 models.py:155 models.py:622 search.py:15 msgid "Document type" msgstr "文档类型" @@ -184,13 +192,9 @@ msgid "Compress" msgstr "压缩" #: forms.py:190 -#| msgid "" -#| "ad the document in the original format or in a compressed manner. s ion is " -#| "selectable only when downloading one document, for tiple uments, the bundle " -#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This" -" option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This " +"option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -216,139 +220,144 @@ msgstr "" msgid "Preview" msgstr "" -#: links.py:47 +#: links.py:48 msgid "Properties" msgstr "" -#: links.py:52 +#: links.py:53 msgid "Versions" msgstr "" -#: links.py:63 links.py:101 +#: links.py:64 links.py:105 msgid "Clear transformations" msgstr "" -#: links.py:68 links.py:109 links.py:234 links.py:248 +#: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" msgstr "" -#: links.py:72 links.py:105 +#: links.py:74 links.py:109 msgid "Move to trash" msgstr "" -#: links.py:76 +#: links.py:79 msgid "Edit properties" msgstr "" -#: links.py:80 links.py:113 +#: links.py:83 links.py:117 msgid "Change type" msgstr "" -#: links.py:84 links.py:117 links.py:128 views.py:889 +#: links.py:87 links.py:121 views.py:901 msgid "Download" msgstr "下载" -#: links.py:88 +#: links.py:91 msgid "Print" msgstr "" -#: links.py:92 links.py:120 +#: links.py:96 links.py:124 msgid "Recalculate page count" msgstr "" -#: links.py:96 links.py:124 +#: links.py:100 links.py:128 msgid "Restore" msgstr "" -#: links.py:133 views.py:81 +#: links.py:132 +#, fuzzy +#| msgid "Download" +msgid "Download version" +msgstr "下载" + +#: links.py:137 views.py:82 msgid "All documents" msgstr "" -#: links.py:136 models.py:814 views.py:651 +#: links.py:140 models.py:814 views.py:656 msgid "Recent documents" msgstr "" -#: links.py:140 +#: links.py:144 msgid "Trash" msgstr "" -#: links.py:148 +#: links.py:152 msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." msgstr "清除图像信息有助于加速文档显示和变换结果交互。" -#: links.py:151 -#| msgid "Clear the document image cache" +#: links.py:155 msgid "Clear document image cache" msgstr "" -#: links.py:155 permissions.py:47 +#: links.py:159 permissions.py:47 msgid "Empty trash" msgstr "" -#: links.py:163 +#: links.py:167 msgid "First page" msgstr "" -#: links.py:168 +#: links.py:172 msgid "Last page" msgstr "" -#: links.py:175 +#: links.py:179 msgid "Previous page" msgstr "" -#: links.py:181 +#: links.py:185 msgid "Next page" msgstr "" -#: links.py:187 models.py:229 models.py:354 models.py:777 models.py:796 -#: views.py:822 +#: links.py:191 models.py:229 models.py:350 models.py:777 models.py:796 +#: views.py:827 msgid "Document" msgstr "" -#: links.py:192 +#: links.py:196 msgid "Rotate left" msgstr "" -#: links.py:197 +#: links.py:201 msgid "Rotate right" msgstr "" -#: links.py:205 +#: links.py:209 msgid "Reset view" msgstr "" -#: links.py:210 +#: links.py:214 msgid "Zoom in" msgstr "" -#: links.py:215 +#: links.py:219 msgid "Zoom out" msgstr "" -#: links.py:223 +#: links.py:227 msgid "Revert" msgstr "" -#: links.py:230 views.py:414 +#: links.py:234 views.py:419 msgid "Create document type" msgstr "" -#: links.py:238 links.py:252 +#: links.py:242 links.py:256 msgid "Edit" msgstr "" -#: links.py:243 +#: links.py:247 msgid "Add quick label to document type" msgstr "" -#: links.py:256 models.py:633 +#: links.py:260 models.py:633 msgid "Quick labels" msgstr "" -#: links.py:260 links.py:265 views.py:399 +#: links.py:264 links.py:269 views.py:404 msgid "Document types" msgstr "" @@ -358,8 +367,7 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the " -"trash." +"Amount of time after which documents of this type will be moved to the trash." msgstr "" #: models.py:72 @@ -377,12 +385,10 @@ msgid "" msgstr "" #: models.py:82 -#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 -#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -427,19 +433,18 @@ msgstr "" #: models.py:192 #, python-format -#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" -#: models.py:357 +#: models.py:353 msgid "Timestamp" msgstr "" -#: models.py:366 +#: models.py:362 msgid "File" msgstr "文件" -#: models.py:446 models.py:447 models.py:646 +#: models.py:444 models.py:445 models.py:646 msgid "Document version" msgstr "" @@ -465,12 +470,10 @@ msgid "Document pages" msgstr "" #: models.py:782 -#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 -#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -495,11 +498,10 @@ msgid "Delete documents" msgstr "删除文档" #: permissions.py:16 -#| msgid "Transform documents" msgid "Trash documents" msgstr "" -#: permissions.py:19 views.py:891 +#: permissions.py:19 views.py:903 msgid "Download documents" msgstr "下载文档" @@ -516,12 +518,10 @@ msgid "Edit document properties" msgstr "编辑文档属性" #: permissions.py:31 -#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 -#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -559,8 +559,8 @@ msgstr "查看文档类型" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per" -" user." +"Maximum number of recent (created, edited, viewed) documents to remember per " +"user." msgstr "记住每个用户近期文档的最大数(新建, 编辑, 查看)" #: settings.py:44 @@ -591,238 +591,229 @@ msgstr "" msgid "List of supported document languages." msgstr "" -#: views.py:67 -#| msgid "Clear the document image cache" +#: views.py:68 msgid "Clear the document image cache?" msgstr "" -#: views.py:74 +#: views.py:75 msgid "Document cache clearing queued successfully." msgstr "" -#: views.py:99 -#| msgid "Documents in storage: %d" +#: views.py:100 msgid "Documents in trash" msgstr "" -#: views.py:121 +#: views.py:122 msgid "Delete the selected document?" msgstr "" -#: views.py:144 +#: views.py:145 #, python-format -#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" -#: views.py:152 +#: views.py:153 msgid "Delete the selected documents?" msgstr "" -#: views.py:174 +#: views.py:175 #, python-format msgid "Edit properties of document: %s" msgstr "" -#: views.py:190 +#: views.py:191 msgid "Restore the selected document?" msgstr "" -#: views.py:215 +#: views.py:216 #, python-format -#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" -#: views.py:223 +#: views.py:224 msgid "Restore the selected documents?" msgstr "" -#: views.py:255 +#: views.py:256 #, python-format msgid "Pages for document: %s" msgstr "" -#: views.py:283 +#: views.py:284 #, python-format msgid "Image of: %s" msgstr "" -#: views.py:325 +#: views.py:330 #, python-format msgid "Preview of document: %s" msgstr "" -#: views.py:333 +#: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" msgstr "" -#: views.py:360 +#: views.py:365 #, python-format -#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" -#: views.py:373 +#: views.py:378 msgid "Move the selected documents to the trash?" msgstr "" -#: views.py:388 +#: views.py:393 #, python-format -#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" -#: views.py:425 +#: views.py:430 msgid "All documents of this type will be deleted too." msgstr "" -#: views.py:427 +#: views.py:432 #, python-format -#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" -#: views.py:443 +#: views.py:448 #, python-format msgid "Edit document type: %s" msgstr "" -#: views.py:473 +#: views.py:478 #, python-format msgid "Create quick label for document type: %s" msgstr "" -#: views.py:494 +#: views.py:499 #, python-format -msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "" +"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" -#: views.py:519 +#: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" msgstr "" -#: views.py:547 +#: views.py:552 #, python-format msgid "Quick labels for document type: %s" msgstr "" -#: views.py:578 +#: views.py:583 #, python-format msgid "Versions of document: %s" msgstr "" -#: views.py:592 +#: views.py:597 msgid "All later version after this one will be deleted too." msgstr "此版本以后的所有版本将被删除" -#: views.py:595 -#| msgid "Revert documents to a previous version" +#: views.py:600 msgid "Revert to this version?" msgstr "" -#: views.py:605 +#: views.py:610 msgid "Document version reverted successfully" msgstr "文档版本恢复成功" -#: views.py:610 +#: views.py:615 #, python-format msgid "Error reverting document version; %s" msgstr "恢复文档版本失败%s" -#: views.py:628 +#: views.py:633 #, python-format msgid "Properties for document: %s" msgstr "" -#: views.py:634 +#: views.py:639 msgid "Empty trash?" msgstr "" -#: views.py:645 -#| msgid "Document deleted successfully." +#: views.py:650 msgid "Trash emptied successfully" msgstr "" -#: views.py:680 views.py:984 +#: views.py:685 views.py:996 msgid "Must provide at least one document." msgstr "至少要有一个文档" -#: views.py:699 +#: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." msgstr "" -#: views.py:711 views.py:1223 +#: views.py:716 views.py:1235 msgid "Submit" msgstr "提交" -#: views.py:715 +#: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." msgstr[0] "" -#: views.py:794 -#| msgid "Must provide at least one document." +#: views.py:799 msgid "Must provide at least one document or version." msgstr "" -#: views.py:814 +#: views.py:819 msgid "Documents to be downloaded" msgstr "" -#: views.py:823 +#: views.py:828 msgid "Date and time" msgstr "" -#: views.py:919 +#: views.py:931 msgid "At least one document must be selected." msgstr "" -#: views.py:942 +#: views.py:954 msgid "Document queued for page count recalculation." msgstr "" -#: views.py:943 +#: views.py:955 msgid "Documents queued for page count recalculation." msgstr "" -#: views.py:952 +#: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" msgstr[0] "" -#: views.py:1011 +#: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." msgstr "删除文档: %(document)s变换页数失败%(error)s" -#: views.py:1020 +#: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." msgstr "文档: %s的变换页数已经成功删除" -#: views.py:1032 +#: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" msgstr[0] "" -#: views.py:1066 +#: views.py:1078 msgid "There are no more pages in this document" msgstr "此文档中无更多页" -#: views.py:1084 +#: views.py:1096 msgid "You are already at the first page of this document" msgstr "你已经在此文档的第一页了" -#: views.py:1213 views.py:1222 +#: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" msgstr "" @@ -912,11 +903,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" -#~ " bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " +#~ "%(bytes)d bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1047,7 +1038,8 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "" +#~ "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1061,18 +1053,15 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " -#~ "%(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " +#~ "for: %(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" -#~ msgid "Document preview" -#~ msgstr "Document edited" - #~ msgid "Document content" #~ msgstr "Document type" @@ -1091,11 +1080,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for documents: " -#~ "%s?" +#~ "Are you sure you wish to clear all the page transformations for " +#~ "documents: %s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1112,18 +1101,19 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." - -#~ msgid "Document deleted" -#~ msgstr "Document deleted" +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s." +#~ msgstr "" +#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1177,11 +1167,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." -#~ " The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " +#~ "%(fullname)s. The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1205,11 +1195,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents with " -#~ "changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents " +#~ "with changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1230,9 +1220,11 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact matches." +#~ "Search all the documents' checksums and return a list of the exact " +#~ "matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1262,11 +1254,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set to " -#~ "none." +#~ "The document type of all documents using this document type will be set " +#~ "to none." #~ msgid "details" #~ msgstr "details" @@ -1323,15 +1315,17 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of documents, " -#~ "such as: invoices, regulations or manuals. The advantage of using document " -#~ "types are: assigning a list of typical filenames for quick renaming during " -#~ "creation, as well as assigning default metadata types and sets to it." +#~ "Document types define a class that represents a broard group of " +#~ "documents, such as: invoices, regulations or manuals. The advantage of " +#~ "using document types are: assigning a list of typical filenames for quick " +#~ "renaming during creation, as well as assigning default metadata types and " +#~ "sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" 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 eecf28bc3b..9e9d11b73f 100644 --- a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:16 msgid "Dynamic search" @@ -88,7 +90,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 248aa14679..48ce973484 100644 --- a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -88,7 +89,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 772dd95cd8..739f43ebaf 100644 --- a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 msgid "Dynamic search" @@ -88,7 +90,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po index af8cb45611..6ead4fbde0 100644 --- a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -87,7 +88,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 2c841239ff..82f063c50e 100644 --- a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -71,7 +72,8 @@ msgstr "Maximale Anzahl an Treffern, die angezeigt werden soll" #: settings.py:18 msgid "Maximum number of search queries to remember per user." -msgstr "Maximale Anzahl an Suchabfragen, die pro Benutzer gespeichert werden sollen" +msgstr "" +"Maximale Anzahl an Suchabfragen, die pro Benutzer gespeichert werden sollen" #: views.py:25 msgid "Search results" @@ -90,7 +92,8 @@ msgstr "Typ" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 456f7d676e..f179491ecc 100644 --- a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/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: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" 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 d9e28fa5f9..fbe5efa8f7 100644 --- a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -91,7 +92,8 @@ msgstr "Tipo" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 f1d88d054a..eed06b91b0 100644 --- a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -88,7 +89,8 @@ msgstr "نوع" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 dce3c35863..cf4d2f468d 100644 --- a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2014-2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 @@ -90,7 +91,8 @@ msgstr "Type" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 872edff4b6..d29c44f0e2 100644 --- a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Dezső József , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -88,7 +89,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 94a04c5008..f40559ef7a 100644 --- a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -87,7 +88,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 44dbe3faba..7d55a6de7f 100644 --- a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -90,7 +91,8 @@ msgstr "Tipo" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 d661e899cd..079340688d 100644 --- a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -88,7 +89,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 b167afea3a..b078bb88bd 100644 --- a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -12,15 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:16 msgid "Dynamic search" @@ -91,7 +93,8 @@ msgstr "Typ" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po index 8156467484..7cb39d24d0 100644 --- a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -89,7 +90,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 b647706c50..1ee0808566 100644 --- a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 @@ -89,7 +90,8 @@ msgstr "Tipo" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 b8f0c8c8ca..162d7d8902 100644 --- a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:16 msgid "Dynamic search" @@ -88,7 +90,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 25e99f9c1e..572ffbce81 100644 --- a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:16 msgid "Dynamic search" @@ -68,7 +71,9 @@ msgstr "Максимальное количество отображаемых #: settings.py:18 msgid "Maximum number of search queries to remember per user." -msgstr "Максимальное количество поисковых запросов запоминаемых для каждого пользователя." +msgstr "" +"Максимальное количество поисковых запросов запоминаемых для каждого " +"пользователя." #: views.py:25 msgid "Search results" @@ -87,7 +92,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" 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 d57d65cc7f..9df60923fd 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 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" 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 73a72d8dab..b6cb416cf7 100644 --- a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -88,7 +89,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po index 6cf193fdfe..222f94132f 100644 --- a/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -88,7 +89,8 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "" +#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po index 32a4e87fc9..e28d7559a7 100644 --- a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po index a85eab02ed..4f9a33a51e 100644 --- a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 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 2f22e47446..b96a55cf83 100644 --- a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" diff --git a/mayan/apps/events/locale/da/LC_MESSAGES/django.po b/mayan/apps/events/locale/da/LC_MESSAGES/django.po index 78f3bf25c8..a41373f46c 100644 --- a/mayan/apps/events/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/da/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 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 0cc022321e..70dc5f2120 100644 --- a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.po b/mayan/apps/events/locale/en/LC_MESSAGES/django.po index 45ab002232..43b8d58ef0 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: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-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 9fa8d6608f..c8cdf7c5be 100644 --- a/mayan/apps/events/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po index df4b19624e..9d45227dd5 100644 --- a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po index 2cac68c428..0a74c8c2b5 100644 --- a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 # Thierry Schott , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po index eada9e49ee..5f519b943b 100644 --- a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/events/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: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/events/locale/id/LC_MESSAGES/django.po b/mayan/apps/events/locale/id/LC_MESSAGES/django.po index 7920995a77..392da30658 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: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.po b/mayan/apps/events/locale/it/LC_MESSAGES/django.po index ea02647d56..468c8b2b0f 100644 --- a/mayan/apps/events/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/it/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 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 dc1a665890..2793ac5527 100644 --- a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po index 5db40d05e8..4902102aff 100644 --- a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po index 57dae54075..ff8293d01a 100644 --- a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po index da737b810f..ff87fd6030 100644 --- a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Rogerio Falcone , 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 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 5c93562307..3b54134c74 100644 --- a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po index a702e85619..9b60bfe6f7 100644 --- a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" diff --git a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po index ed15ca2c8a..2065b52440 100644 --- a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" 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 3a2c9eb5f5..6c85378cfb 100644 --- a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po index 0098115ce7..a93a54ecbb 100644 --- a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po index 2191565e1e..c067a20cb7 100644 --- a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "المجلدات" @@ -28,7 +30,7 @@ msgstr "المجلدات" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "الوثائق" @@ -36,27 +38,27 @@ msgstr "الوثائق" msgid "Folder" msgstr "مجلد" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "تحرير" @@ -85,7 +87,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,7 +95,6 @@ msgid "Remove documents from folders" msgstr "إزالة وثائق من المجلدات" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,7 +108,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -222,11 +221,11 @@ msgstr[5] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -259,12 +258,12 @@ msgstr[5] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po b/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po index 2b96910d4b..2b3c10a731 100644 --- a/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Папки" @@ -29,7 +30,7 @@ msgstr "Папки" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Документи" @@ -37,27 +38,27 @@ msgstr "Документи" msgid "Folder" msgstr "Папка" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Редактиране" @@ -86,7 +87,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -95,7 +95,6 @@ msgid "Remove documents from folders" msgstr "Премахване на документи от папки" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -109,7 +108,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -215,11 +213,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -252,12 +250,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po index c2dee7fe43..fd5b91f5c0 100644 --- a/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Folderi" @@ -28,7 +30,7 @@ msgstr "Folderi" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Dokumenti" @@ -36,27 +38,27 @@ msgstr "Dokumenti" msgid "Folder" msgstr "Folder" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Urediti" @@ -85,7 +87,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,7 +95,6 @@ msgid "Remove documents from folders" msgstr "Ukloniti dokumente iz foldera" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,7 +108,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -216,11 +215,11 @@ msgstr[2] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -253,12 +252,12 @@ msgstr[2] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/da/LC_MESSAGES/django.po b/mayan/apps/folders/locale/da/LC_MESSAGES/django.po index 9f2b651ef7..92722b49bc 100644 --- a/mayan/apps/folders/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2012 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Mapper" @@ -28,7 +29,7 @@ msgstr "Mapper" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Dokumenter" @@ -36,27 +37,27 @@ msgstr "Dokumenter" msgid "Folder" msgstr "Mappe" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "" @@ -85,7 +86,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,7 +94,6 @@ msgid "Remove documents from folders" msgstr "Fjern dokumenter fra mapper" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,7 +107,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -214,11 +212,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -251,12 +249,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po index 3c4e22c4d0..72ed27f364 100644 --- a/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -13,17 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Ordner" @@ -32,7 +33,7 @@ msgstr "Ordner" msgid "Created" msgstr "Erstellt" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Dokumente" @@ -40,27 +41,27 @@ msgstr "Dokumente" msgid "Folder" msgstr "Ordner" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "Zu Ordner hinzufügen" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "Zu Ordner hinzufügen" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "Ordner erstellen" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "Löschen" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "Aus Ordner entfernen" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Bearbeiten" @@ -89,7 +90,6 @@ msgid "Edit folders" msgstr "Ordner bearbeiten" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Ordner löschen" @@ -98,7 +98,6 @@ msgid "Remove documents from folders" msgstr "Dokumente aus Ordnern entfernen" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "Ordner anzeigen" @@ -112,7 +111,6 @@ msgstr "Primärschlüssel des hinzuzufügenden Dokuments." #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Ordner %s löschen?" @@ -218,11 +216,11 @@ msgstr[1] "Ausgewählte Dokumente aus Ordner %(folder)s entfernen?" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -255,12 +253,12 @@ msgstr[1] "Ausgewählte Dokumente aus Ordner %(folder)s entfernen?" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/en/LC_MESSAGES/django.po b/mayan/apps/folders/locale/en/LC_MESSAGES/django.po index 2103a5ccd7..829fca46b7 100644 --- a/mayan/apps/folders/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/folders/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: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Folders" @@ -28,7 +28,7 @@ msgstr "Folders" msgid "Created" msgstr "created" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 #, fuzzy msgid "Documents" msgstr "documents" @@ -37,32 +37,32 @@ msgstr "documents" msgid "Folder" msgstr "Folder" -#: links.py:19 +#: links.py:20 #, fuzzy msgid "Add to a folder" msgstr "add to a folder" -#: links.py:23 +#: links.py:24 #, fuzzy msgid "Add to folder" msgstr "add to folder" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 #, fuzzy msgid "Create folder" msgstr "create folder" -#: links.py:31 +#: links.py:32 #, fuzzy msgid "Delete" msgstr "delete" -#: links.py:35 +#: links.py:36 #, fuzzy msgid "Remove from folder" msgstr "remove from folder" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "" diff --git a/mayan/apps/folders/locale/es/LC_MESSAGES/django.po b/mayan/apps/folders/locale/es/LC_MESSAGES/django.po index 7225888d67..99c9468f65 100644 --- a/mayan/apps/folders/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Carpetas" @@ -31,7 +32,7 @@ msgstr "Carpetas" msgid "Created" msgstr "Creado" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Documentos" @@ -39,27 +40,27 @@ msgstr "Documentos" msgid "Folder" msgstr "Carpeta" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "Añadir a una carpeta" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "Añadir a carpeta" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "Crear carpetas" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "Borrar" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "Remover de la carpeta" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Editar" @@ -88,7 +89,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,7 +97,6 @@ msgid "Remove documents from folders" msgstr "Eliminar documentos de las carpetas" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -111,7 +110,6 @@ msgstr "Llave primaria del documento a ser agregado." #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "¿Eliminar la carpeta: %s?" @@ -217,11 +215,11 @@ msgstr[1] "¿Eliminar los documentos seleccionados de la carpeta: %(folder)s?" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -254,12 +252,12 @@ msgstr[1] "¿Eliminar los documentos seleccionados de la carpeta: %(folder)s?" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po b/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po index 4bc9f756cd..2429c29d20 100644 --- a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/fa/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "پرونده ها" @@ -27,7 +28,7 @@ msgstr "پرونده ها" msgid "Created" msgstr "ساخته‌شده" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "اسناد" @@ -35,27 +36,27 @@ msgstr "اسناد" msgid "Folder" msgstr "پرونده" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "اضافه به پرونده" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "اضافه به پرونده" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "ایجاد پرونده" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "حذف" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "حذف از پرونده" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "ویرایش" @@ -84,7 +85,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -93,7 +93,6 @@ msgid "Remove documents from folders" msgstr "حذف اسناد از پرونده ها" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,7 +106,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -211,11 +209,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -248,12 +246,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po b/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po index 06f26fcd18..6c4dd413d5 100644 --- a/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Répertoires" @@ -30,7 +31,7 @@ msgstr "Répertoires" msgid "Created" msgstr "Créé" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Documents" @@ -38,27 +39,27 @@ msgstr "Documents" msgid "Folder" msgstr "Répertoire" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "Ajouter à un dossier" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "Ajouter au dossier" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "Créer un dossier" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "Supprimer" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "Supprimer du dossier" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Modifier" @@ -87,7 +88,6 @@ msgid "Edit folders" msgstr "Modifier les dossiers" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Supprimer les dossiers" @@ -96,7 +96,6 @@ msgid "Remove documents from folders" msgstr "Retirer des documents des répertoires" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "Afficher les dossiers" @@ -110,7 +109,6 @@ msgstr "Clé primaire du document à ajouter." #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Supprimer les dossier : %s ?" @@ -141,7 +139,8 @@ msgstr "Document: %(document)s ajouté avec succès au répertoire: %(folder)s." #: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." -msgstr "Document: %(document)s est déjà présent dans le répertoire: %(folder)s." +msgstr "" +"Document: %(document)s est déjà présent dans le répertoire: %(folder)s." #: views.py:205 msgid "Add document to folder" @@ -167,8 +166,12 @@ msgstr "Document: %(document)s erreur de suppression: %(error)s" #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" -msgstr[0] "Êtes vous certain de vouloir supprimer le document sélectionné du dossier %(folder)s ?" -msgstr[1] "Êtes vous certain de vouloir supprimer les documents sélectionnés du dossier %(folder)s ?" +msgstr[0] "" +"Êtes vous certain de vouloir supprimer le document sélectionné du dossier " +"%(folder)s ?" +msgstr[1] "" +"Êtes vous certain de vouloir supprimer les documents sélectionnés du dossier " +"%(folder)s ?" #~ msgid "A folder named: %s, already exists." #~ msgstr "A folder named: %s, already exists." @@ -216,11 +219,11 @@ msgstr[1] "Êtes vous certain de vouloir supprimer les documents sélectionnés #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -253,12 +256,12 @@ msgstr[1] "Êtes vous certain de vouloir supprimer les documents sélectionnés #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po b/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po index 79af4d0855..634ec39862 100644 --- a/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Dezső József , 2013 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Mappák" @@ -28,7 +29,7 @@ msgstr "Mappák" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "dokumentumok" @@ -36,27 +37,27 @@ msgstr "dokumentumok" msgid "Folder" msgstr "Mappa" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "" @@ -85,7 +86,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,7 +94,6 @@ msgid "Remove documents from folders" msgstr "Dokumentumok eltávolítása a mappákból" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,7 +107,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -214,11 +212,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -251,12 +249,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/id/LC_MESSAGES/django.po b/mayan/apps/folders/locale/id/LC_MESSAGES/django.po index 48749b369d..6dfa13f3d6 100644 --- a/mayan/apps/folders/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/id/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "" @@ -27,7 +28,7 @@ msgstr "" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Dokumen" @@ -35,27 +36,27 @@ msgstr "Dokumen" msgid "Folder" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "" @@ -84,7 +85,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -93,7 +93,6 @@ msgid "Remove documents from folders" msgstr "" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,7 +106,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -211,11 +209,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -248,12 +246,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/it/LC_MESSAGES/django.po b/mayan/apps/folders/locale/it/LC_MESSAGES/django.po index cc3759174c..e0c3f4431d 100644 --- a/mayan/apps/folders/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Cartelle" @@ -31,7 +32,7 @@ msgstr "Cartelle" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Documenti" @@ -39,27 +40,27 @@ msgstr "Documenti" msgid "Folder" msgstr "Cartella" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "Cancella" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Modifica" @@ -88,7 +89,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,7 +97,6 @@ msgid "Remove documents from folders" msgstr "Rimuovere i documenti da cartelle" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -111,7 +110,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -137,7 +135,8 @@ msgstr "Bisogna fornire almeno un documento." #: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "Documento: %(document)s aggiunto alla cartella: %(folder)s successfully." +msgstr "" +"Documento: %(document)s aggiunto alla cartella: %(folder)s successfully." #: views.py:184 #, python-format @@ -217,11 +216,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -254,12 +253,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po index cc40effbf9..70e65d09d9 100644 --- a/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "" @@ -27,7 +28,7 @@ msgstr "" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Documenten" @@ -35,27 +36,27 @@ msgstr "Documenten" msgid "Folder" msgstr "Map" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "Verwijder" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "bewerken" @@ -84,7 +85,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -93,7 +93,6 @@ msgid "Remove documents from folders" msgstr "" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,7 +106,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -213,11 +211,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -250,12 +248,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po index 6794fc8a45..266f6c8175 100644 --- a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -11,17 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Foldery" @@ -30,7 +32,7 @@ msgstr "Foldery" msgid "Created" msgstr "Utworzony" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Dokumenty" @@ -38,27 +40,27 @@ msgstr "Dokumenty" msgid "Folder" msgstr "Folder" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "Dodaj do folderu" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "Dodaj do folderu" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "Utwórz folder" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "Usuń" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "Usuń z folderu" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Edytuj" @@ -87,7 +89,6 @@ msgid "Edit folders" msgstr "Edytuj foldery" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "Usuń foldery" @@ -96,7 +97,6 @@ msgid "Remove documents from folders" msgstr "Usuń dokumenty z folderów" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "Przeglądaj foldery" @@ -110,7 +110,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Usunąć folder: %s?" @@ -218,11 +217,11 @@ msgstr[2] "Usunąć wybrane dokumenty z folderu: %(folder)s?" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -255,12 +254,12 @@ msgstr[2] "Usunąć wybrane dokumenty z folderu: %(folder)s?" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po index d3c630ab6b..2b4b8b46f0 100644 --- a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/folders/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: # Translators: # Renata Oliveira , 2011 @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Pastas" @@ -30,7 +31,7 @@ msgstr "Pastas" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Documentos" @@ -38,27 +39,27 @@ msgstr "Documentos" msgid "Folder" msgstr "Pasta" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "Eliminar" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Editar" @@ -87,7 +88,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -96,7 +96,6 @@ msgid "Remove documents from folders" msgstr "Remover documentos das pastas" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -110,7 +109,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -216,11 +214,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -253,12 +251,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po index c25add5e8a..0294ab1b75 100644 --- a/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2012 @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Pastas" @@ -31,7 +32,7 @@ msgstr "Pastas" msgid "Created" msgstr "Criando" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Documentos" @@ -39,27 +40,27 @@ msgstr "Documentos" msgid "Folder" msgstr "Pasta" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "Adicionar a uma pasta" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "Adicione a pasta" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "Criar pasta" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "Excluir" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "Remover da pasta" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Editar" @@ -88,7 +89,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -97,7 +97,6 @@ msgid "Remove documents from folders" msgstr "Remover documentos das pastas" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -111,7 +110,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -217,11 +215,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -254,12 +252,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po index 3e77e6fd35..81f4b9e431 100644 --- a/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Directoare" @@ -28,7 +30,7 @@ msgstr "Directoare" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Documente" @@ -36,27 +38,27 @@ msgstr "Documente" msgid "Folder" msgstr "Director" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Editează" @@ -85,7 +87,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,7 +95,6 @@ msgid "Remove documents from folders" msgstr "Scoateți documentele din directoare" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,7 +108,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -134,7 +133,8 @@ msgstr "Trebuie selectat cel puțin un document." #: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "Documentul:%(document)s a fost adăugat la directorul :%(folder)s cu succes." +msgstr "" +"Documentul:%(document)s a fost adăugat la directorul :%(folder)s cu succes." #: views.py:184 #, python-format @@ -216,11 +216,11 @@ msgstr[2] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -253,12 +253,12 @@ msgstr[2] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po index 5d11dea076..ddeb337325 100644 --- a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/ru/LC_MESSAGES/django.po @@ -1,24 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Папки" @@ -27,7 +30,7 @@ msgstr "Папки" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Документы" @@ -35,27 +38,27 @@ msgstr "Документы" msgid "Folder" msgstr "Папка" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Редактировать" @@ -84,7 +87,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -93,7 +95,6 @@ msgid "Remove documents from folders" msgstr "Удаление документов из папок" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,7 +108,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -217,11 +217,11 @@ msgstr[3] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -254,12 +254,12 @@ msgstr[3] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po index 74bf49f744..dbe39e5b02 100644 --- a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.po @@ -1,24 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "" @@ -27,7 +29,7 @@ msgstr "" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Dokumenti" @@ -35,27 +37,27 @@ msgstr "Dokumenti" msgid "Folder" msgstr "" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "" @@ -84,7 +86,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -93,7 +94,6 @@ msgid "Remove documents from folders" msgstr "" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,7 +107,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -217,11 +216,11 @@ msgstr[3] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -254,12 +253,12 @@ msgstr[3] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po index 35a8494f90..7c4af9d694 100644 --- a/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "Các thư mục" @@ -28,7 +29,7 @@ msgstr "Các thư mục" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "Tài liệu" @@ -36,27 +37,27 @@ msgstr "Tài liệu" msgid "Folder" msgstr "Thư mục" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "Sửa" @@ -85,7 +86,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,7 +94,6 @@ msgid "Remove documents from folders" msgstr "Xóa các tài liệu từ các thư mục" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,7 +107,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -212,11 +210,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -249,12 +247,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po index 36b74ee62f..2ac6ba6cee 100644 --- a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:44-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 links.py:16 links.py:43 models.py:45 permissions.py:7 +#: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" msgstr "文件夹" @@ -28,7 +29,7 @@ msgstr "文件夹" msgid "Created" msgstr "" -#: apps.py:71 links.py:46 models.py:26 +#: apps.py:71 links.py:47 models.py:26 msgid "Documents" msgstr "文档" @@ -36,27 +37,27 @@ msgstr "文档" msgid "Folder" msgstr "文件夹" -#: links.py:19 +#: links.py:20 msgid "Add to a folder" msgstr "" -#: links.py:23 +#: links.py:24 msgid "Add to folder" msgstr "" -#: links.py:26 views.py:42 +#: links.py:27 views.py:42 msgid "Create folder" msgstr "" -#: links.py:31 +#: links.py:32 msgid "Delete" msgstr "" -#: links.py:35 +#: links.py:36 msgid "Remove from folder" msgstr "" -#: links.py:39 +#: links.py:40 msgid "Edit" msgstr "" @@ -85,7 +86,6 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 -#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,7 +94,6 @@ msgid "Remove documents from folders" msgstr "从文件夹中移除文档" #: permissions.py:22 -#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,7 +107,6 @@ msgstr "" #: views.py:54 #, python-format -#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -212,11 +210,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" -#~ " \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the " +#~ "folder \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -249,12 +247,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to let " -#~ "individual users create their own document organization methods. Folders " -#~ "created by one user and the documents contained by them don't affect any " -#~ "other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to " +#~ "let individual users create their own document organization methods. " +#~ "Folders created by one user and the documents contained by them don't " +#~ "affect any other user folders or documents." diff --git a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po index 2d436f6291..c27840e3a9 100644 --- a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po b/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po index 4e6e510c80..846d27ad99 100644 --- a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po index f493ae6fce..1df407ea3a 100644 --- a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/da/LC_MESSAGES/django.po b/mayan/apps/installation/locale/da/LC_MESSAGES/django.po index bc9618c687..6475667e99 100644 --- a/mayan/apps/installation/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # René Rovsing Bach , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po index bc90e16507..11bab55ff8 100644 --- a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/en/LC_MESSAGES/django.po b/mayan/apps/installation/locale/en/LC_MESSAGES/django.po index 7cee77f5de..2c914d156c 100644 --- a/mayan/apps/installation/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/installation/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: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/installation/locale/es/LC_MESSAGES/django.po b/mayan/apps/installation/locale/es/LC_MESSAGES/django.po index 604af1e956..bf994f20ed 100644 --- a/mayan/apps/installation/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Igor Támara , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po b/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po index 2d39f46abc..81f84b77ef 100644 --- a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po index a7431067ac..760f69d3c4 100644 --- a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:12-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po b/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po index 293daa32b8..dbc68e1b01 100644 --- a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/id/LC_MESSAGES/django.po b/mayan/apps/installation/locale/id/LC_MESSAGES/django.po index fd357988e7..857e4e70c4 100644 --- a/mayan/apps/installation/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/it/LC_MESSAGES/django.po b/mayan/apps/installation/locale/it/LC_MESSAGES/django.po index ff4714c853..0bc8356bfe 100644 --- a/mayan/apps/installation/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po index f2f90d3c02..7839e9578a 100644 --- a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po b/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po index ecf0fa505b..5ab583602f 100644 --- a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -11,15 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/pt/LC_MESSAGES/django.po b/mayan/apps/installation/locale/pt/LC_MESSAGES/django.po index bc7b9a3837..b1fd41c0a2 100644 --- a/mayan/apps/installation/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/installation/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: # Translators: # Vítor Figueiró , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po index ee1762ccdd..29b57e562e 100644 --- a/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Rogerio Falcone , 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po index 7f0f68975d..1f3f4ec8f2 100644 --- a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/ru/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ru/LC_MESSAGES/django.po index 1ea9e0e3a0..cb8c7fc531 100644 --- a/mayan/apps/installation/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po index c72c50bf5d..9e77c268e6 100644 --- a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po index 8568d7df5c..cce62ef395 100644 --- a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po index 3606919b44..d1f11a501e 100644 --- a/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po index 131ce90fc4..1f14d8eac4 100644 --- a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:33 msgid "Linking" @@ -143,8 +145,8 @@ msgstr "is in regular expression (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -220,7 +222,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -248,7 +251,6 @@ msgstr "تحرير الرابط الذكي: %s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -268,7 +270,6 @@ msgstr "تحرير شرط الرابط الذكي" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +377,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po index 5b1287a16c..6b441a0684 100644 --- a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -143,8 +144,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -220,7 +221,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -248,7 +250,6 @@ msgstr "" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -268,7 +269,6 @@ msgstr "" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 4efa59f043..7bc480a3cd 100644 --- a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 msgid "Linking" @@ -143,8 +145,8 @@ msgstr "je u regularnom izrazu (nije bitno velika ili mala slova)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -220,7 +222,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -248,7 +251,6 @@ msgstr "Izmjeni smart link: %s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -268,7 +270,6 @@ msgstr "Izmjeniti uslove smart linka" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +377,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/da/LC_MESSAGES/django.po b/mayan/apps/linking/locale/da/LC_MESSAGES/django.po index 3ab9503814..c4dd0a355a 100644 --- a/mayan/apps/linking/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -142,8 +143,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -219,7 +220,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -247,7 +249,6 @@ msgstr "" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -267,7 +268,6 @@ msgstr "" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -375,14 +375,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 f465dcda8a..086bdb17e7 100644 --- a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -146,9 +147,12 @@ msgstr "ist in regulärem Ausdruck (ohne Groß/Kleinschreibung)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." -msgstr "Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die {{ document }} Kontextvariable ist verfügbar." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die " +"{{ document }} Kontextvariable ist verfügbar." #: models.py:43 #, python-format @@ -223,8 +227,10 @@ msgstr "Ähnliche Dokumente für %s" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" #: views.py:97 msgid "Available document types" @@ -251,7 +257,6 @@ msgstr "Smart Link %s bearbeiten" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Smart Link %s wirklich löschen?" @@ -271,7 +276,6 @@ msgstr "Bedingung für Smart Link bearbeiten" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Bedingung für Smart Link \"%s\" wirklich löschen?" @@ -379,14 +383,14 @@ msgstr "Bedingung für Smart Link \"%s\" wirklich löschen?" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po b/mayan/apps/linking/locale/en/LC_MESSAGES/django.po index 4bce6930e8..509bdb07f9 100644 --- a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/linking/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: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po index 1c518611c0..e310063622 100644 --- a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -144,8 +145,8 @@ msgstr "está en la expresión regular (no sensible a mayúsculas)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -155,7 +156,9 @@ msgstr "" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "Este enlace inteligente no está permitido para el tipo de documento seleccionado." +msgstr "" +"Este enlace inteligente no está permitido para el tipo de documento " +"seleccionado." #: models.py:88 models.py:100 msgid "Smart link" @@ -221,7 +224,8 @@ msgstr "Documentos en enlace inteligente: %s" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -249,7 +253,6 @@ msgstr "Editar enlace inteligente: %s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,7 +272,6 @@ msgstr "Editar condición de enlace inteligente" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -377,14 +379,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po index 689eca5027..e36f2ff9f3 100644 --- a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -143,8 +144,8 @@ msgstr "موجود در عبارات منظم (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -220,7 +221,8 @@ msgstr "اسناد در لینک هوشمند: %s" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -248,7 +250,6 @@ msgstr "ویرایش پیوند هوشمند %s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -268,7 +269,6 @@ msgstr "ویرایش شرط پیوند هوشمند \"%s\"" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po index b6a95ae210..28b9ec65e6 100644 --- a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -144,9 +145,12 @@ msgstr "est une expression régulière (insensible à la casse)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." -msgstr "Indiquez un modèle à restituer. Utilise le langage de rendu de Django par défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). La variable de contexte {{ document }} est disponible." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"Indiquez un modèle à restituer. Utilise le langage de rendu de Django par " +"défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). La " +"variable de contexte {{ document }} est disponible." #: models.py:43 #, python-format @@ -155,7 +159,8 @@ msgstr "Erreur de génération de l'étiquette dynamique : %s" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "Un lien intelligent n'est pas autorisé pour le type de document sélectionné." +msgstr "" +"Un lien intelligent n'est pas autorisé pour le type de document sélectionné." #: models.py:88 models.py:100 msgid "Smart link" @@ -221,8 +226,11 @@ msgstr "Lien inetlligent du document: %s" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Documents du lien intelligent \"%(smart_link)s\" en relation avec \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "" +"Documents du lien intelligent \"%(smart_link)s\" en relation avec " +"\"%(document)s\"" #: views.py:97 msgid "Available document types" @@ -249,7 +257,6 @@ msgstr "Modifier le lien intelligent:%s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Supprimer le lien intelligent : %s" @@ -269,7 +276,6 @@ msgstr "Modifier la condition sur le lien intelligent" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Supprimer la condition du lien intelligent : \"%s\" ?" @@ -377,14 +383,14 @@ msgstr "Supprimer la condition du lien intelligent : \"%s\" ?" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po index 8a9d4a1c61..6752652dd9 100644 --- a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -142,8 +143,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -219,7 +220,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -247,7 +249,6 @@ msgstr "" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -267,7 +268,6 @@ msgstr "" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -375,14 +375,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po index d9495bb271..144fabbfcb 100644 --- a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -142,8 +143,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -219,7 +220,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -247,7 +249,6 @@ msgstr "" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -267,7 +268,6 @@ msgstr "" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -375,14 +375,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po index 9b18341ff8..0af9710aa8 100644 --- a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -143,8 +144,8 @@ msgstr "è un'espressione regolare (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -220,7 +221,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -248,7 +250,6 @@ msgstr "Modifica il link intelligente: %s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -268,7 +269,6 @@ msgstr "Modifica condizioni per i link intelligenti" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 b0e6a9a71e..edad8dfac2 100644 --- a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -143,8 +144,8 @@ msgstr "komt overeen met 'reguliere expressie (hoofdletter ongevoelig)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -220,7 +221,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -248,7 +250,6 @@ msgstr "'smartlink': %s bewerken." #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -268,7 +269,6 @@ msgstr "Bewerk 'smartlink' conditie." #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po index 610460ac97..5cd89d8e8d 100644 --- a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012,2015 @@ -10,15 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:33 msgid "Linking" @@ -144,9 +146,12 @@ msgstr "jest w wyrażeniu regularnym (wielkość liter ma znaczenie)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." -msgstr "Podaj szablon do wyrenderowania. Użyj domyślnego języka szablonów Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Zmienna kontekstowa {{ document }} jest dostępna." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." +msgstr "" +"Podaj szablon do wyrenderowania. Użyj domyślnego języka szablonów Django " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Zmienna " +"kontekstowa {{ document }} jest dostępna." #: models.py:43 #, python-format @@ -221,7 +226,8 @@ msgstr "Dokumenty w łączu: %s" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "Dokumenty w łączu \"%(smart_link)s\" powiązane z \"%(document)s\"" #: views.py:97 @@ -249,7 +255,6 @@ msgstr "Edytuj łącze: %s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Usuń łącze: %s" @@ -269,7 +274,6 @@ msgstr "Edycja warunku łącza" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Usunąć warunek łącza: \"%s\"?" @@ -377,14 +381,14 @@ msgstr "Usunąć warunek łącza: \"%s\"?" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po index 3c07dcbb8e..40ef7ec13a 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: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -145,8 +146,8 @@ msgstr "contido em expressão regular (insensível a minúsculas/maiúsculas)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -222,7 +223,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,7 +252,6 @@ msgstr "Editar Ligação inteligente: %s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -270,7 +271,6 @@ msgstr "Editar condição de ligação inteligente" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -378,14 +378,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 27975e41c4..fb92fcd288 100644 --- a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -145,8 +146,8 @@ msgstr "está em expressão regular (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -156,7 +157,8 @@ msgstr "" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "Este link inteligente não é permitido para o tipo de documento selecionado. " +msgstr "" +"Este link inteligente não é permitido para o tipo de documento selecionado. " #: models.py:88 models.py:100 msgid "Smart link" @@ -222,7 +224,8 @@ msgstr "Os documentos em referência inteligente: %s " #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,7 +253,6 @@ msgstr "Editar Ligação inteligente: %s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -270,7 +272,6 @@ msgstr "Editar condição de ligação Inteligente" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -378,14 +379,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 9c2d633fb3..d5aa95f979 100644 --- a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:33 msgid "Linking" @@ -143,8 +145,8 @@ msgstr "este în expresie regulată (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -220,7 +222,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -248,7 +251,6 @@ msgstr "Editare legătură inteligentă:% s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -268,7 +270,6 @@ msgstr "Editați condiție legătură inteligentă" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +377,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po index 8e29dad649..9ee233e275 100644 --- a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:33 msgid "Linking" @@ -142,8 +145,8 @@ msgstr "В регулярном выражении (без учета регис #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -219,7 +222,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -247,7 +251,6 @@ msgstr "Редактировать отношение %s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -267,7 +270,6 @@ msgstr "Изменить условие отношения" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -375,14 +377,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 4b2635fa23..8275ac21e4 100644 --- a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:33 msgid "Linking" @@ -142,8 +144,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -219,7 +221,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -247,7 +250,6 @@ msgstr "" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -267,7 +269,6 @@ msgstr "" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -375,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 93b6fb7ad4..7d4ff6d157 100644 --- a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -143,8 +144,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -220,7 +221,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -248,7 +250,6 @@ msgstr "Sửa liên kết thông minh: %s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -268,7 +269,6 @@ msgstr "" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po index 1527cf5b87..a0c299f7a6 100644 --- a/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -143,8 +144,8 @@ msgstr "正则表达式(大小写不敏感)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " -"document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " +"{{ document }} context variable is available." msgstr "" #: models.py:43 @@ -220,7 +221,8 @@ msgstr "" #: views.py:81 #, python-format -msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "" +"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -248,7 +250,6 @@ msgstr "编辑智能链接: %s" #: views.py:210 #, python-format -#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -268,7 +269,6 @@ msgstr "编辑智能链接条件" #: views.py:334 #, python-format -#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query the " -#~ "database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate in " -#~ "some manner to the document being displayed and allow users the ability to " -#~ "jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query " +#~ "the database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate " +#~ "in some manner to the document being displayed and allow users the " +#~ "ability to jump to and from linked documents very easily." 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 2c965f4cac..d878a150b1 100644 --- a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:10 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po index c9a84f4c7d..05772eeb5c 100644 --- a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 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 cc7ed9dee1..7ad4644666 100644 --- a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:10 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po index e0daf20420..3f9d569896 100644 --- a/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 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 7c5a1e3f90..0b7674d113 100644 --- a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:04+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 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 6cdf40411d..e0d702d0af 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: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-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 b98852d6af..75771be845 100644 --- a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:04+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 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 23bdc8d16f..d992740962 100644 --- a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 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 7c7e071aff..151be2e564 100644 --- a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:04+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 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 a5094fdd65..2af1440d1d 100644 --- a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/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: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" 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 168d5e1020..48378f0d9d 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: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" 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 8464abd1c6..141fc1a7a7 100644 --- a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 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 6c12a726b6..d1dd0f611f 100644 --- a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 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 b3f3353345..0c3a3862a2 100644 --- a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:10 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po index 8dd9f5d3e9..7d39595619 100644 --- a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 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 74ab7bfad9..188927453a 100644 --- a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 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 1509af9a13..1094cec05a 100644 --- a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:10 msgid "Lock manager" 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 114a3d0834..1f9a733a31 100644 --- a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:10 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po index d34b7639ca..1a9787db15 100644 --- a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:10 msgid "Lock manager" 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 ffa40b0ab5..9c0f9acab1 100644 --- a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po index 3ad18166a0..46ab3f063f 100644 --- a/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po index bec53d1e82..93320904bd 100644 --- a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po @@ -1,31 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +43,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po index e25e8facff..ac6a06ea64 100644 --- a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po @@ -1,32 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -42,11 +43,11 @@ msgstr "Относно" msgid "Body" msgstr "Съдържание" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "Пощ. документ" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "Пощ. връзка" 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 b9d7a1c808..1b6e18ef1f 100644 --- a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po @@ -1,31 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +43,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" diff --git a/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po index 511bbf40c6..8d451fb31f 100644 --- a/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/da/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +42,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" 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 d0985eb7de..059cb468c5 100644 --- a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "Mailer" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "Zeit" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "Nachricht" @@ -41,11 +42,11 @@ msgstr "Betreff" msgid "Body" msgstr "Nachrichtenteil" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "Dokument als E-Mailanhang senden" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "Link zum Dokument per E-Mail senden" @@ -60,7 +61,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Anlagen: {{ document }}\n\n --------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "" +"Anlagen: {{ document }}\n" +"\n" +" --------\n" +" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -69,7 +74,12 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: {{ link }}\n\n--------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "" +"Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: " +"{{ link }}\n" +"\n" +"--------\n" +" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" #: models.py:13 msgid "Date time" @@ -105,11 +115,14 @@ msgstr "Link für Dokument: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung" +msgstr "" +"Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung" #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "Vorlage für den Nachrichtenteil des Formulars für die Dokumentenlinkversendung" +msgstr "" +"Vorlage für den Nachrichtenteil des Formulars für die " +"Dokumentenlinkversendung" #: settings.py:24 msgid "Document: {{ document }}" @@ -117,11 +130,13 @@ msgstr "Dokument: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung" +msgstr "" +"Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung" #: settings.py:30 msgid "Template for the document email form body line." -msgstr "Vorlage für den Nachrichtenteil des Formulars für die Dokumentenversendung" +msgstr "" +"Vorlage für den Nachrichtenteil des Formulars für die Dokumentenversendung" #: views.py:56 msgid "Must provide at least one document." diff --git a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po index 448d742207..628a976d0f 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: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,15 +17,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +41,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po index 3babf14302..975e5e2128 100644 --- a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2015 @@ -10,25 +10,26 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "Mensaje" @@ -44,11 +45,11 @@ msgstr "Tema" msgid "Body" msgstr "Cuerpo" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "Enviar documento" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "Enviar enlace" @@ -108,11 +109,15 @@ msgstr "Enlace para el documento: {{ documento }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Plantilla para la línea de asunto del correo electrónico para envío de enlace del documento." +msgstr "" +"Plantilla para la línea de asunto del correo electrónico para envío de " +"enlace del documento." #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "Plantilla para el cuerpo del correo electrónico de envío de enlace de documento." +msgstr "" +"Plantilla para el cuerpo del correo electrónico de envío de enlace de " +"documento." #: settings.py:24 msgid "Document: {{ document }}" @@ -120,11 +125,15 @@ msgstr "Documento: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "Plantilla para la línea de sujeto del correo electrónico de envio de documento." +msgstr "" +"Plantilla para la línea de sujeto del correo electrónico de envio de " +"documento." #: settings.py:30 msgid "Template for the document email form body line." -msgstr "Plantilla para la línea de cuerpo del correo electrónico para envío de documento." +msgstr "" +"Plantilla para la línea de cuerpo del correo electrónico para envío de " +"documento." #: views.py:56 msgid "Must provide at least one document." @@ -132,7 +141,9 @@ msgstr "Debe proveer al menos un documento" #: views.py:105 msgid "Successfully queued for delivery via email." -msgstr "Añadido de forma exitosa a la lista de espera para envío de correo electrónico" +msgstr "" +"Añadido de forma exitosa a la lista de espera para envío de correo " +"electrónico" #: views.py:114 msgid "Send" diff --git a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po index 281a6e3e78..9259305a60 100644 --- a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po @@ -1,32 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "تاریخ و زمان" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -42,11 +43,11 @@ msgstr "موضوع" msgid "Body" msgstr "بدنه" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "ایمیل کردن سند" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "پیوند پلکترونیکی" diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po index 685ee2e97a..7f050f3fa0 100644 --- a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po @@ -1,32 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "Gestionnaire d'envoi" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "Date et heure" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "Message" @@ -42,11 +43,11 @@ msgstr "Sujet" msgid "Body" msgstr "Corps" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "Envoyer le document par courriel" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "Lien du courriel" @@ -61,7 +62,11 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Attaché à ce courriel , voici le - document: {{ document }}\n\n --------\n Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" +msgstr "" +"Attaché à ce courriel , voici le - document: {{ document }}\n" +"\n" +" --------\n" +" Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -70,7 +75,11 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "Pour acceder à ce document cliquer sur le lien suivant: {{ link }}\n\n--------\n Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" +msgstr "" +"Pour acceder à ce document cliquer sur le lien suivant: {{ link }}\n" +"\n" +"--------\n" +" Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" #: models.py:13 msgid "Date time" diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po index 86a57153ea..6b7a25e34c 100644 --- a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +42,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" diff --git a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po index d7436b7558..3da68ff2e6 100644 --- a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +42,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" diff --git a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po index 2700a563f5..2ea0bc35c8 100644 --- a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "Data e ora" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +42,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" 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 62424157e0..cbd185db2b 100644 --- a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +42,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" diff --git a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po index c4cc2713fc..acfd5874c9 100644 --- a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 # Wojciech Warczakowski , 2016 @@ -9,25 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "Data i godzina" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -43,11 +45,11 @@ msgstr "Temat" msgid "Body" msgstr "Treść" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "Dokument e-mail" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "Link e-mail" diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po index 858a517081..baefe06a81 100644 --- a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +42,11 @@ msgstr "Assunto" msgid "Body" msgstr "Corpo" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "Documento de correio eletrónico" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "Hiperçigação de correio eletrónico" @@ -105,7 +106,9 @@ msgstr "Hiperligação para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Modelo para a linha do assunto do formulário de mensagem da hiperligação de documento." +msgstr "" +"Modelo para a linha do assunto do formulário de mensagem da hiperligação de " +"documento." #: settings.py:20 msgid "Template for the document link email form body line." 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 52fd123755..8ea591073f 100644 --- a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po @@ -1,32 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "data e hora" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -42,11 +43,11 @@ msgstr "Assunto" msgid "Body" msgstr "Corpo" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "Email documento" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "Email de ligação" @@ -106,7 +107,8 @@ msgstr "Link para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "Template para a linha de formulário electrónico Assunto link do documento." +msgstr "" +"Template para a linha de formulário electrónico Assunto link do documento." #: settings.py:20 msgid "Template for the document link email form body line." 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 73985fdda9..105eac5180 100644 --- a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po @@ -1,31 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +43,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" diff --git a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po index b61153fc0f..8e678ff5c0 100644 --- a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po @@ -1,31 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +44,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" 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 9fa1be594c..1606c0f68a 100644 --- a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po @@ -1,31 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +43,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" 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 45801cfe40..30283fa212 100644 --- a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +42,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" diff --git a/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po index fc3482bc1c..6258b8a553 100644 --- a/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:45-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:24 +#: apps.py:25 msgid "Mailer" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Date and time" msgstr "" -#: apps.py:40 models.py:16 +#: apps.py:41 models.py:16 msgid "Message" msgstr "" @@ -41,11 +42,11 @@ msgstr "" msgid "Body" msgstr "" -#: links.py:13 +#: links.py:14 msgid "Email document" msgstr "" -#: links.py:17 +#: links.py:18 msgid "Email link" msgstr "" diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po index 849b045ec6..e5d2f5ff3d 100644 --- a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" @@ -97,7 +99,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,7 +143,6 @@ msgid "Metadata types" msgstr "أنواع البيانات الوصفية" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -165,8 +165,8 @@ msgstr "Default" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,8 +185,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -325,15 +324,16 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." -msgstr "تم اضافة نوع البيانات الوصفية %(metadata_type)s بنجاح للوثيقة %(document)s ." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"تم اضافة نوع البيانات الوصفية %(metadata_type)s بنجاح للوثيقة %(document)s ." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "نوع البيانات الوصفية %(metadata_type)s موجود مسبقا للوثيقة %(document)s ." +msgstr "" +"نوع البيانات الوصفية %(metadata_type)s موجود مسبقا للوثيقة %(document)s ." #: views.py:313 msgid "Add metadata types to document" @@ -380,7 +380,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -394,7 +393,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -584,47 +582,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po index fc66d7febb..11faf3a204 100644 --- a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -97,7 +98,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,7 +142,6 @@ msgid "Metadata types" msgstr "" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -165,8 +164,8 @@ msgstr "По подразбиране" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,8 +184,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -317,8 +315,7 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:282 @@ -364,7 +361,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -378,7 +374,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -556,47 +551,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 44896dd869..44fb80455c 100644 --- a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" @@ -97,7 +99,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,7 +143,6 @@ msgid "Metadata types" msgstr "Metadata tip" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -165,8 +165,8 @@ msgstr "default" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,8 +185,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -319,9 +318,9 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." -msgstr "Metadata tip: %(metadata_type)s uspješno dodan u dokument %(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Metadata tip: %(metadata_type)s uspješno dodan u dokument %(document)s." #: views.py:282 #, python-format @@ -368,7 +367,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -382,7 +380,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -563,47 +560,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po index 5c0ae3f4c8..f4ed7f6769 100644 --- a/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -97,7 +98,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,7 +142,6 @@ msgid "Metadata types" msgstr "" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -165,8 +164,8 @@ msgstr "Standard" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,8 +184,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -317,8 +315,7 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:282 @@ -364,7 +361,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -378,7 +374,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -556,47 +551,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 d5d442c574..9bc0dbaa0f 100644 --- a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -38,7 +39,9 @@ msgstr "Dokumente mit fehlenden optionalen Metadaten" msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "Queryset enthaltend eine Referenz auf eine Metadatentyp Instanz und einen Wert für diesen Metadatentyp" +msgstr "" +"Queryset enthaltend eine Referenz auf eine Metadatentyp Instanz und einen " +"Wert für diesen Metadatentyp" #: apps.py:118 msgid "Metadata type name" @@ -100,7 +103,6 @@ msgid "Default value error: %s" msgstr "Fehler für Standardwert: %s" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "Verfügbare Kontextvariablen:" @@ -145,11 +147,12 @@ msgid "Metadata types" msgstr "Metadatentypen" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." -msgstr "Name unter dem andere Apps diesen Wert referenzieren. Keine reservierten Worte aus Python oder Leerzeichen verwenden." +msgstr "" +"Name unter dem andere Apps diesen Wert referenzieren. Keine reservierten " +"Worte aus Python oder Leerzeichen verwenden." #: models.py:47 msgid "Label" @@ -159,7 +162,10 @@ msgstr "Bezeichner" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Vorlage/Template zur Generierung eingeben. Django's Standard-Vorlagen-" +"Sprache benutzen (https://docs.djangoproject.com/en/1.7/ref/templates/" +"builtins/)" #: models.py:55 msgid "Default" @@ -168,9 +174,12 @@ msgstr "Standard" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." -msgstr "Vorlage/Template zur Generierung eingeben. Muss eine komma-separierte Zeichenkette ausgeben (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." +msgstr "" +"Vorlage/Template zur Generierung eingeben. Muss eine komma-separierte " +"Zeichenkette ausgeben (https://docs.djangoproject.com/en/1.7/ref/templates/" +"builtins/)" #: models.py:65 msgid "Lookup" @@ -180,7 +189,9 @@ msgstr "Suche" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem geforderten Format nicht entspricht." +msgstr "" +"Der Validierer wird den eingegebenen Wert zurückweisen, wenn er dem " +"geforderten Format nicht entspricht." #: models.py:72 msgid "Validator" @@ -188,9 +199,10 @@ msgstr "Validierer" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "Der Parser wird den eingegebenen Wert so reformatieren, dass er dem geforderten Format entspricht." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"Der Parser wird den eingegebenen Wert so reformatieren, dass er dem " +"geforderten Format entspricht." #: models.py:78 msgid "Parser" @@ -297,7 +309,9 @@ msgstr[1] "Für die ausgewählten Dokumente existieren keine Metadaten" #: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Fehler bei der Bearbeitung der Metadaten für Dokument %(document)s: %(exception)s" +msgstr "" +"Fehler bei der Bearbeitung der Metadaten für Dokument %(document)s: " +"%(exception)s" #: views.py:150 #, python-format @@ -315,20 +329,24 @@ msgstr[1] "Metadaten bearbeiten" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Fehler beim Hinzufügen von Metadatentyp \"%(metadata_type)s\" zu Dokument %(document)s: %(exception)s" +msgstr "" +"Fehler beim Hinzufügen von Metadatentyp \"%(metadata_type)s\" zu Dokument " +"%(document)s: %(exception)s" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." -msgstr "Metadatentyp %(metadata_type)s erfolgreich hinzugefügt zu Dokument %(document)s" +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Metadatentyp %(metadata_type)s erfolgreich hinzugefügt zu Dokument " +"%(document)s" #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Metadatentyp %(metadata_type)s bereits vorhanden für Dokument %(document)s" +msgstr "" +"Metadatentyp %(metadata_type)s bereits vorhanden für Dokument %(document)s" #: views.py:313 msgid "Add metadata types to document" @@ -341,14 +359,18 @@ msgstr[1] "Metadatentypen zu Dokumenten hinzufügen" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Metadatentyp \"%(metadata_type)s\" erfolgreich entfernt von Dokument %(document)s" +msgstr "" +"Metadatentyp \"%(metadata_type)s\" erfolgreich entfernt von Dokument " +"%(document)s" #: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Fehler bei der Entfernung von Metadatentyp \"%(metadata_type)s\" von Dokument %(document)s: %(exception)s" +msgstr "" +"Fehler bei der Entfernung von Metadatentyp \"%(metadata_type)s\" von " +"Dokument %(document)s: %(exception)s" #: views.py:461 msgid "Remove metadata types from the document" @@ -367,7 +389,6 @@ msgstr "Metadatentyp erstellen" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "Metadatentyp %s löschen?" @@ -381,7 +402,6 @@ msgid "Internal name" msgstr "Interner Name" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "Verfügbare Metadatentypen" @@ -559,47 +579,47 @@ msgstr "Erforderliche Metadatentypen für Dokumententyp %s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po index 6bfba82d11..fb54a19f99 100644 --- a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po index 67bcfde2d4..3fb4dfa9b8 100644 --- a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -37,7 +38,9 @@ msgstr "" msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "QuerySet que contiene una referencia de instancia de tipo de meta datos y un valor para ese tipo de meta datos " +msgstr "" +"QuerySet que contiene una referencia de instancia de tipo de meta datos y un " +"valor para ese tipo de meta datos " #: apps.py:118 msgid "Metadata type name" @@ -99,7 +102,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -144,7 +146,6 @@ msgid "Metadata types" msgstr "Tipos de metadatos" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -167,8 +168,8 @@ msgstr "Por defecto" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -187,8 +188,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -314,20 +314,25 @@ msgstr[1] "Editar meta datos de documentos" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Error al añadir tipo de metadatos \"%(metadata_type)s\" al documento: %(document)s; %(exception)s" +msgstr "" +"Error al añadir tipo de metadatos \"%(metadata_type)s\" al documento: " +"%(document)s; %(exception)s" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipo de metadatos: %(metadata_type)s añadido con éxito al documento " "%(document)s." -msgstr "Tipo de metadatos: %(metadata_type)s añadido con éxito al documento %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Tipo de metadatos: %(metadata_type)s ya presente en el documento %(document)s." +msgstr "" +"Tipo de metadatos: %(metadata_type)s ya presente en el documento " +"%(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -340,14 +345,18 @@ msgstr[1] "Añadir tipos de meta datos a los documentos" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Remoción con éxito el tipo de meta datos \"%(metadata_type)s\" del documento: %(document)s." +msgstr "" +"Remoción con éxito el tipo de meta datos \"%(metadata_type)s\" del " +"documento: %(document)s." #: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Error al eliminar el tipo de metadatos \"%(metadata_type)s\" del documento: %(document)s; %(exception)s" +msgstr "" +"Error al eliminar el tipo de metadatos \"%(metadata_type)s\" del documento: " +"%(document)s; %(exception)s" #: views.py:461 msgid "Remove metadata types from the document" @@ -366,7 +375,6 @@ msgstr "Crear tipo de metadatos" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -380,7 +388,6 @@ msgid "Internal name" msgstr "Nombre interno" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -558,47 +565,47 @@ msgstr "Tipos de metadata requerida para tipo de documento: %s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po index eb06db1b5a..455bebee3f 100644 --- a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -35,7 +36,9 @@ msgstr "" msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "محتوای مجموعه درخواستها شامل یک نمونه مرجع و یک مقدار برای متا داده مورد نظر است" +msgstr "" +"محتوای مجموعه درخواستها شامل یک نمونه مرجع و یک مقدار برای متا داده مورد نظر " +"است" #: apps.py:118 msgid "Metadata type name" @@ -97,7 +100,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,7 +144,6 @@ msgid "Metadata types" msgstr "انواه متادیتا" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -165,8 +166,8 @@ msgstr "پیش فرض" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,8 +186,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -310,13 +310,14 @@ msgstr[0] "اسناد متاداده را ویرایش کنید" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "نوع متا داده افزودن خطا \"%(metadata_type)s به سند %(document)s; %(exception)s" +msgstr "" +"نوع متا داده افزودن خطا \"%(metadata_type)s به سند %(document)s; " +"%(exception)s" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "جذف موفق متادیتای ندع : %(metadata_type)s برای سند : %(document)s." #: views.py:282 @@ -342,7 +343,9 @@ msgstr "حذف موفق متادیتای نوع \"%(metadata_type)s\" از سن msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "خطا در حذف متادیتای نوع\"%(metadata_type)s\" ازسند: %(document)s; %(exception)s" +msgstr "" +"خطا در حذف متادیتای نوع\"%(metadata_type)s\" ازسند: %(document)s; " +"%(exception)s" #: views.py:461 msgid "Remove metadata types from the document" @@ -360,7 +363,6 @@ msgstr "ایجاد نوع متا دیتا" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -374,7 +376,6 @@ msgid "Internal name" msgstr "نام داخلی" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -549,47 +550,47 @@ msgstr "متادیتای نوع الزامی برای نوع سند :%s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po index df2a76b652..f6f33f38a3 100644 --- a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # PatrickHetu , 2012 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -38,7 +39,9 @@ msgstr "Documents avec métadonnées optionnelles manquantes" msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "Jeu de requête contenant une référence d'instance MetadataType et une valeur pour ce type de métadonnées" +msgstr "" +"Jeu de requête contenant une référence d'instance MetadataType et une valeur " +"pour ce type de métadonnées" #: apps.py:118 msgid "Metadata type name" @@ -100,7 +103,6 @@ msgid "Default value error: %s" msgstr "Erreur de valeur par défaut : %s" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "Variable de contexte du modèle disponibles :" @@ -145,11 +147,12 @@ msgid "Metadata types" msgstr "Types de métadonnées" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." -msgstr "Nom utilisé par d'autres applications pour référencer cette valeur. Veuillez ne pas utiliser de mots réservés Python ou d'espaces." +msgstr "" +"Nom utilisé par d'autres applications pour référencer cette valeur. Veuillez " +"ne pas utiliser de mots réservés Python ou d'espaces." #: models.py:47 msgid "Label" @@ -159,7 +162,9 @@ msgstr "Libellé" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Indiquez un modèle à restituer. Utilise le langage de rendu de Django par défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Indiquez un modèle à restituer. Utilise le langage de rendu de Django par " +"défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:55 msgid "Default" @@ -168,9 +173,12 @@ msgstr "Par défaut" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." -msgstr "Indiquez un modèle à restituer. Le résultat doit être une chaîne de caractères délimitée par des virgules. Utilise le langage de rendu de Django par défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." +msgstr "" +"Indiquez un modèle à restituer. Le résultat doit être une chaîne de " +"caractères délimitée par des virgules. Utilise le langage de rendu de Django " +"par défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:65 msgid "Lookup" @@ -180,7 +188,9 @@ msgstr "Recherche" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Le système de validation rejettera les données saisies si elles ne sont pas conformes au format attendu." +msgstr "" +"Le système de validation rejettera les données saisies si elles ne sont pas " +"conformes au format attendu." #: models.py:72 msgid "Validator" @@ -188,9 +198,10 @@ msgstr "Validateur" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." -msgstr "L'analyseur syntaxique reformatera la valeur saisie pour la rendre conforme au format attendu." +"The parser will reformat the value entered to conform to the expected format." +msgstr "" +"L'analyseur syntaxique reformatera la valeur saisie pour la rendre conforme " +"au format attendu." #: models.py:78 msgid "Parser" @@ -297,7 +308,9 @@ msgstr[1] "Les documents sélectionnés n'ont pas de métadonnées." #: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Erreur lors de la modification des métadonnées du document %(document)s; %(exception)s." +msgstr "" +"Erreur lors de la modification des métadonnées du document %(document)s; " +"%(exception)s." #: views.py:150 #, python-format @@ -315,20 +328,25 @@ msgstr[1] "Modifier les métadonnées des documents" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Erreur lors de l'ajout d'un type de métadonnées \"%(metadata_type)s\" au document: %(document)s; %(exception)s" +msgstr "" +"Erreur lors de l'ajout d'un type de métadonnées \"%(metadata_type)s\" au " +"document: %(document)s; %(exception)s" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Le type de métadonnées: %(metadata_type)s ajouter avec succès au document " "%(document)s." -msgstr "Le type de métadonnées: %(metadata_type)s ajouter avec succès au document %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Le type de métadonnée: %(metadata_type)s est déjà présent dans le document %(document)s." +msgstr "" +"Le type de métadonnée: %(metadata_type)s est déjà présent dans le document " +"%(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -341,14 +359,18 @@ msgstr[1] "Ajouter des types de métadonnées aux documents" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Type de métadonnées supprimer avec succès \"%(metadata_type)s\" pour le document: %(document)s." +msgstr "" +"Type de métadonnées supprimer avec succès \"%(metadata_type)s\" pour le " +"document: %(document)s." #: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Erreur lors de la suppression du type de métadonnée \"%(metadata_type)s\" pour le document: %(document)s; %(exception)s" +msgstr "" +"Erreur lors de la suppression du type de métadonnée \"%(metadata_type)s\" " +"pour le document: %(document)s; %(exception)s" #: views.py:461 msgid "Remove metadata types from the document" @@ -367,7 +389,6 @@ msgstr "Créer un type de métadonnée" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "Êtes vous certain de vouloir supprimer le type de métadonnées : %s?" @@ -381,7 +402,6 @@ msgid "Internal name" msgstr "Nom interne" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "Types de métadonnées disponibles" @@ -559,47 +579,47 @@ msgstr "Types de métadonnées requises pour le type de document: %s" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po index 78e624b183..695ceb8f1e 100644 --- a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -96,7 +97,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -141,7 +141,6 @@ msgid "Metadata types" msgstr "" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -164,8 +163,8 @@ msgstr "" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -184,8 +183,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -316,8 +314,7 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:282 @@ -363,7 +360,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -377,7 +373,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -555,47 +550,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po index c890fa6808..62c452572c 100644 --- a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -96,7 +97,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -141,7 +141,6 @@ msgid "Metadata types" msgstr "" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -164,8 +163,8 @@ msgstr "" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -184,8 +183,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -314,8 +312,7 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:282 @@ -359,7 +356,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -373,7 +369,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -548,47 +543,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po index 8355d3ede2..0e551a1758 100644 --- a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -97,7 +98,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,7 +142,6 @@ msgid "Metadata types" msgstr "Tipi di Metadati" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -165,8 +164,8 @@ msgstr "Default" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,8 +184,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -317,15 +315,17 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipo metadata: %(metadata_type)s aggiunto con successo al documento " "%(document)s." -msgstr "Tipo metadata: %(metadata_type)s aggiunto con successo al documento %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Tipo Metadata: %(metadata_type)s già presente per il documento %(document)s." +msgstr "" +"Tipo Metadata: %(metadata_type)s già presente per il documento %(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -364,7 +364,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -378,7 +377,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -556,47 +554,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 d11c521b4f..50dacede89 100644 --- a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -96,7 +97,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -141,7 +141,6 @@ msgid "Metadata types" msgstr "" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -164,8 +163,8 @@ msgstr "Verstekwaarde" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -184,8 +183,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -316,8 +314,7 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:282 @@ -363,7 +360,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -377,7 +373,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -555,47 +550,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po index 9e67669097..a5dc686152 100644 --- a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -11,15 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" @@ -37,7 +39,9 @@ msgstr "Dokumenty, w których brak jest opcjonalnych metadanych" msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "Queryset zawierający referencję do instancji MetadataType i wartość dla tego typu metadanych" +msgstr "" +"Queryset zawierający referencję do instancji MetadataType i wartość dla tego " +"typu metadanych" #: apps.py:118 msgid "Metadata type name" @@ -99,7 +103,6 @@ msgid "Default value error: %s" msgstr "Błąd dotyczący domyślnej wartości: %s" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "Dostępne zmienne kontekstowe szablonu:" @@ -144,7 +147,6 @@ msgid "Metadata types" msgstr "Typy metadanych" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -158,7 +160,9 @@ msgstr "Etykieta" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "Podaj szablon do wyrenderowania. Użyj domyślnego języka szablonów Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" +msgstr "" +"Podaj szablon do wyrenderowania. Użyj domyślnego języka szablonów Django " +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:55 msgid "Default" @@ -167,9 +171,12 @@ msgstr "Domyślny" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." -msgstr "Podaj szablon do wyrenderowania. Wynikiem szablonu musi być łańcuch rozdzielony przecinkami. Użyj domyślnego języka szablonów Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." +msgstr "" +"Podaj szablon do wyrenderowania. Wynikiem szablonu musi być łańcuch " +"rozdzielony przecinkami. Użyj domyślnego języka szablonów Django (https://" +"docs.djangoproject.com/en/1.7/ref/templates/builtins/)." #: models.py:65 msgid "Lookup" @@ -179,7 +186,9 @@ msgstr "Wyszukanie" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "Walidator odrzuci dane jeśli podana wartość nie będzie zgodna z oczekiwanym formatem." +msgstr "" +"Walidator odrzuci dane jeśli podana wartość nie będzie zgodna z oczekiwanym " +"formatem." #: models.py:72 msgid "Validator" @@ -187,8 +196,7 @@ msgstr "Walidator" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "Parser zmieni format podanej wartości na format oczekiwany." #: models.py:78 @@ -297,7 +305,8 @@ msgstr[2] "Wybrane dokumenty nie mają żadnych metadanych." #: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "Błąd podczas edycji metadanych dla dokumentu: %(document)s; %(exception)s." +msgstr "" +"Błąd podczas edycji metadanych dla dokumentu: %(document)s; %(exception)s." #: views.py:150 #, python-format @@ -321,8 +330,7 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:282 @@ -370,7 +378,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -384,7 +391,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -565,47 +571,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po index 3f909e16a0..65a0870fec 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: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -99,7 +100,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -144,7 +144,6 @@ msgid "Metadata types" msgstr "Tipos de metadados" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -167,8 +166,8 @@ msgstr "Padrão" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -187,8 +186,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -319,15 +317,17 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipo de metadados: %(metadata_type)s adicionado com sucesso ao documento " "%(document)s." -msgstr "Tipo de metadados: %(metadata_type)s adicionado com sucesso ao documento %(document)s." #: views.py:282 #, 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:313 msgid "Add metadata types to document" @@ -366,7 +366,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -380,7 +379,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -558,47 +556,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 d8b85e753b..03d661b6ed 100644 --- a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2013 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -37,7 +38,9 @@ msgstr "" msgid "" "Queryset containing a MetadataType instance reference and a value for that " "metadata type" -msgstr "Contendo queryset para MetadataType, referência de instância e um valor para esse tipo de metadados" +msgstr "" +"Contendo queryset para MetadataType, referência de instância e um valor para " +"esse tipo de metadados" #: apps.py:118 msgid "Metadata type name" @@ -99,7 +102,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -144,7 +146,6 @@ msgid "Metadata types" msgstr "Tipos de metadados" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -167,8 +168,8 @@ msgstr "Padrão" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -187,8 +188,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -314,20 +314,24 @@ msgstr[1] "" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Erro ao adicionar metadados de tipo \"%(metadata_type)s\" para o documento: %(document)s; %(exception)s" +msgstr "" +"Erro ao adicionar metadados de tipo \"%(metadata_type)s\" para o documento: " +"%(document)s; %(exception)s" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipo Metadado %(metadata_type)s adicionado com sucesso para o documento " "%(document)s." -msgstr "Tipo Metadado %(metadata_type)s adicionado com sucesso para o documento %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Tipo Metadado: %(metadata_type)s já está presente no documento%(document)s." +msgstr "" +"Tipo Metadado: %(metadata_type)s já está presente no documento%(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -340,14 +344,18 @@ msgstr[1] "" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Removido com sucesso o Stipo de metadato \"%(metadata_type)s\" do documento: %(document)s." +msgstr "" +"Removido com sucesso o Stipo de metadato \"%(metadata_type)s\" do " +"documento: %(document)s." #: views.py:439 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Erro para remover o tipo de metadado \"%(metadata_type)s\" do documento: %(document)s; %(exception)s" +msgstr "" +"Erro para remover o tipo de metadado \"%(metadata_type)s\" do documento: " +"%(document)s; %(exception)s" #: views.py:461 msgid "Remove metadata types from the document" @@ -366,7 +374,6 @@ msgstr "Criar Tipo de documento" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -380,7 +387,6 @@ msgid "Internal name" msgstr "nome interno" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -558,47 +564,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 373639817c..aa7d533ab5 100644 --- a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" @@ -97,7 +99,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,7 +143,6 @@ msgid "Metadata types" msgstr "Metadate tipuri de" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -165,8 +165,8 @@ msgstr "Iniţial" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,8 +185,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -319,15 +318,18 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Tipul de metadate:%(metadata_type)s au fost adăugate cu succes documentul " "%(document)s." -msgstr "Tipul de metadate:%(metadata_type)s au fost adăugate cu succes documentul %(document)s." #: views.py:282 #, python-format msgid "" "Metadata type: %(metadata_type)s already present in document %(document)s." -msgstr "Tipul de metadate:%(metadata_type)s e deja prezent în documentul %(document)s." +msgstr "" +"Tipul de metadate:%(metadata_type)s e deja prezent în documentul " +"%(document)s." #: views.py:313 msgid "Add metadata types to document" @@ -368,7 +370,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -382,7 +383,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -563,47 +563,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po index a370ed794a..c872134046 100644 --- a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" @@ -96,7 +99,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -141,7 +143,6 @@ msgid "Metadata types" msgstr "Типы метаданных" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -164,8 +165,8 @@ msgstr "Умолчание" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -184,8 +185,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -320,9 +320,9 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." -msgstr "Тип метаданных: %(metadata_type)s успешно добавлены к документу %(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." +msgstr "" +"Тип метаданных: %(metadata_type)s успешно добавлены к документу %(document)s." #: views.py:282 #, python-format @@ -371,7 +371,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -385,7 +384,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -569,47 +567,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 f498fd29fa..09b0c5e528 100644 --- a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:13-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" @@ -96,7 +98,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -141,7 +142,6 @@ msgid "Metadata types" msgstr "" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -164,8 +164,8 @@ msgstr "" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -184,8 +184,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -320,8 +319,7 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:282 @@ -371,7 +369,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -385,7 +382,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -569,47 +565,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" 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 bc9428a1e8..dd1a96e2e2 100644 --- a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -97,7 +98,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,7 +142,6 @@ msgid "Metadata types" msgstr "" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -165,8 +164,8 @@ msgstr "Mặc định" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,8 +184,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -315,8 +313,7 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "" #: views.py:282 @@ -360,7 +357,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -374,7 +370,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -549,47 +544,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.po index 5c0b1cc7a6..dc4553add8 100644 --- a/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 @@ -97,7 +98,6 @@ msgid "Default value error: %s" msgstr "" #: forms.py:116 -#| msgid " Available models: %s" msgid " Available template context variables: " msgstr "" @@ -142,7 +142,6 @@ msgid "Metadata types" msgstr "元数据类型" #: models.py:42 -#| msgid "Do not use python reserved words, or spaces." msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." @@ -165,8 +164,8 @@ msgstr "" #: models.py:60 msgid "" "Enter a template to render. Must result in a comma delimited string. Use " -"Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." +"Django's default templating language (https://docs.djangoproject.com/en/1.7/" +"ref/templates/builtins/)." msgstr "" #: models.py:65 @@ -185,8 +184,7 @@ msgstr "" #: models.py:76 msgid "" -"The parser will reformat the value entered to conform to the expected " -"format." +"The parser will reformat the value entered to conform to the expected format." msgstr "" #: models.py:78 @@ -315,8 +313,7 @@ msgstr "" #: views.py:272 #, python-format msgid "" -"Metadata type: %(metadata_type)s successfully added to document " -"%(document)s." +"Metadata type: %(metadata_type)s successfully added to document %(document)s." msgstr "元数据类型: %(metadata_type)s成功加入到文档%(document)s" #: views.py:282 @@ -360,7 +357,6 @@ msgstr "" #: views.py:529 #, python-format -#| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" msgstr "" @@ -374,7 +370,6 @@ msgid "Internal name" msgstr "" #: views.py:568 -#| msgid "View metadata types" msgid "Available metadata types" msgstr "" @@ -549,47 +544,47 @@ msgstr "" #~ msgstr "What are metadata sets?" #~ msgid "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgstr "" -#~ "A metadata set is a group of one or more metadata types. Metadata sets are " -#~ "useful when creating new documents; selecing a metadata set automatically " -#~ "attaches it's member metadata types to said document." +#~ "A metadata set is a group of one or more metadata types. Metadata sets " +#~ "are useful when creating new documents; selecing a metadata set " +#~ "automatically attaches it's member metadata types to said document." #~ msgid "What are metadata types?" #~ msgstr "What are metadata types?" #~ msgid "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgstr "" -#~ "A metadata type defines the characteristics of a value of some kind that can" -#~ " be attached to a document. Examples of metadata types are: a client name, " -#~ "a date, or a project to which several documents belong. A metadata type's " -#~ "name is the internal identifier with which it can be referenced to by other " -#~ "modules such as the indexing module, the title is the value that is shown to" -#~ " the users, the default value is the value an instance of this metadata type" -#~ " will have initially, and the lookup value turns an instance of a metadata " -#~ "of this type into a choice list which options are the result of the lookup's" -#~ " code execution." +#~ "A metadata type defines the characteristics of a value of some kind that " +#~ "can be attached to a document. Examples of metadata types are: a client " +#~ "name, a date, or a project to which several documents belong. A metadata " +#~ "type's name is the internal identifier with which it can be referenced to " +#~ "by other modules such as the indexing module, the title is the value that " +#~ "is shown to the users, the default value is the value an instance of this " +#~ "metadata type will have initially, and the lookup value turns an instance " +#~ "of a metadata of this type into a choice list which options are the " +#~ "result of the lookup's code execution." #~ msgid " Available functions: %s" #~ msgstr " Available functions: %s" #~ msgid "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgstr "" -#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user in " -#~ "User.objects.all()].%s" +#~ "Enter a string to be evaluated. Example: [user.get_full_name() for user " +#~ "in User.objects.all()].%s" #~ msgid "Error deleting document indexes; %s" #~ msgstr "Error deleting document indexes; %s" diff --git a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po index 4d245022f9..fc312a41ca 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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/" diff --git a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po index ec47469d15..0f246c639f 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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/" 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 8e37f328bd..1d91cefc1d 100644 --- a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" diff --git a/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po index 7211a8b238..c93050ae9b 100644 --- a/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" 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 03563460da..7fdfee9188 100644 --- a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 @@ -24,8 +25,12 @@ msgstr "Spiegelung" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden soll." +msgstr "" +"Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden " +"soll." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt zwischengespeichert werden soll." +msgstr "" +"Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt " +"zwischengespeichert werden soll." diff --git a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po index 3d744eee0a..d9764b37f3 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po index c7a827641c..fa5932c339 100644 --- a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 @@ -24,8 +25,12 @@ msgstr "Reflejado" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Tiempo en segundos durante los cuales se almacenará en caché la ruta de búsqueda de acceso a un documento." +msgstr "" +"Tiempo en segundos durante los cuales se almacenará en caché la ruta de " +"búsqueda de acceso a un documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Tiempo en segundos durante los cuales se almacenará en caché la ruta de búsqueda de acceso a un nodo de índice." +msgstr "" +"Tiempo en segundos durante los cuales se almacenará en caché la ruta de " +"búsqueda de acceso a un nodo de índice." diff --git a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po index 261ed41198..c5ecdc2cee 100644 --- a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po index 1ab1ee74fa..18bd6f8ac9 100644 --- a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:7 @@ -24,8 +25,10 @@ msgstr "Duplication" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "Temps en secondes de rétention en cache du chemin d'accès à un document." +msgstr "" +"Temps en secondes de rétention en cache du chemin d'accès à un document." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "Temps en seconde de rétention en cache du chemin d'accès à un noeud d'index." +msgstr "" +"Temps en seconde de rétention en cache du chemin d'accès à un noeud d'index." diff --git a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po index 31dc7a09fd..53436800a1 100644 --- a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po index 6468f4db8f..ea522d1e9e 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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/" diff --git a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po index cece74f38c..e5b02c5ee6 100644 --- a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Giovanni Tricarico \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 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 1c47bee001..2d295d4041 100644 --- a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po index 302f6451f0..87c4e850d3 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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/" diff --git a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po index c5d38e72f2..7a2e005ae2 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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/" 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 0d6000ca83..5a7ec0972d 100644 --- a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" 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 36f1c7866c..94c01c0f58 100644 --- a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po index 3be55d26e2..da16730d6b 100644 --- a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" 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 5b21637df0..952c0c5720 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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-" 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 3f06322625..5ddaae9e38 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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/" diff --git a/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po index 3a07b1148a..ea9fde7034 100644 --- a/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po index a2617198e5..0d00c96068 100644 --- a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po index dd843a5e30..e1527a55e5 100644 --- a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po index 86e5544789..fcbcc06f00 100644 --- a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/da/LC_MESSAGES/django.po b/mayan/apps/motd/locale/da/LC_MESSAGES/django.po index 4c14c27332..c8112c843d 100644 --- a/mayan/apps/motd/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/da/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po index d63a9c8e3d..1d6c1d5e22 100644 --- a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/en/LC_MESSAGES/django.po b/mayan/apps/motd/locale/en/LC_MESSAGES/django.po index 2aa50fe002..32b901b377 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po index fbad0e48b4..28de2f6a0f 100644 --- a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:13+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 @@ -68,7 +69,8 @@ msgstr "Mensaje" #: models.py:23 msgid "Date and time after which this message will be displayed." -msgstr "Fecha y hora después de la cual este mensaje comenzara a ser desplegado." +msgstr "" +"Fecha y hora después de la cual este mensaje comenzara a ser desplegado." #: models.py:28 msgid "Date and time until when this message is to be displayed." diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po index e53344dc6e..e4473cd9b3 100644 --- a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po index 0522d39e84..060ebc06b9 100644 --- a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po index 462d539fef..519469f6bf 100644 --- a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po index 6ccf3e3577..865df178c9 100644 --- a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po index f4b5cc9f1a..4c3fee666f 100644 --- a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 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 3927724526..cc6d5bc628 100644 --- a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po index f0d1a3901f..b892055d8e 100644 --- a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po index 1b719b92d5..348320930c 100644 --- a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po index 823c5cced4..46c022b3a9 100644 --- a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po index e2c5b46be9..090bd9aa41 100644 --- a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po index 5468f9725e..8031f2bf62 100644 --- a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po @@ -1,21 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po index ce7753556c..58586a73c3 100644 --- a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" 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 ca5b9637e6..2944d75ed6 100644 --- a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po index 98897c79a0..791c163b63 100644 --- a/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po index f06d845b93..0b053dede6 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 710451c882..add8f0085b 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 85cab50007..09fead3ae5 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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/da/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/da/LC_MESSAGES/django.po index db53043470..54c83a1f1b 100644 --- a/mayan/apps/navigation/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/da/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" 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 0ea780eb43..9951491f3f 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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/en/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po index 7c22023bd1..e748f99413 100644 --- a/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po index 5af1c1e97a..e92c3eac29 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 a989590a1e..6bc367b58b 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 52dd2d9ed0..51396af656 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 63af46bc89..0ea01d5422 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 90393c06ce..ba1f667076 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 a02f0366c4..c658932ab4 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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/nl_NL/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po index 9647214a32..492c9b0ee5 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 2fc51e08cf..0746929d42 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 f5cecd51b0..67d66a804a 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 9a1f92590b..f1b375fa11 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 5f4c2627f8..5bba077345 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 2dd77d43f3..833e587dee 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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 ec0b71877d..6d995d1568 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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/vi_VN/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po index 3425dc8b7a..6d9277cc71 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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-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_CN/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/zh_CN/LC_MESSAGES/django.po index 3f2078cf0f..7704bb6c22 100644 --- a/mayan/apps/navigation/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/zh_CN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po index 419e61b018..0b476d7c6e 100644 --- a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -61,8 +63,7 @@ msgstr "" msgid "Contents" msgstr "المحتويات" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -127,7 +128,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,15 +154,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"File path to poppler's pdftotext program used to extract text from PDF files." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -173,7 +172,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -193,18 +191,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -214,7 +211,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -394,11 +390,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -455,9 +451,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po index c6de44c13a..270c02b575 100644 --- a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -61,8 +62,7 @@ msgstr "" msgid "Contents" msgstr "Съдържание" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -127,7 +127,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,14 +153,12 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -173,7 +170,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -193,18 +189,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -214,7 +209,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -386,11 +380,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -447,9 +441,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 b2f3da7b14..384583a46e 100644 --- a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -61,8 +63,7 @@ msgstr "" msgid "Contents" msgstr "Sadržaj" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -127,7 +128,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,15 +154,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Staza do popplerovog programa pdftotext za vađenje teksta iz PDF datoteka." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Staza do popplerovog programa pdftotext za vađenje teksta iz PDF datoteka." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -173,7 +172,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -193,18 +191,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -214,7 +211,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -388,11 +384,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -449,9 +445,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po index 987b591ab9..50023ae523 100644 --- a/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -62,8 +63,7 @@ msgstr "" msgid "Contents" msgstr "Indhold" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -128,7 +128,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -155,15 +154,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Fil sti til poppler's pdftotext program, brugt til at identificere tekst fra PDF filer." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Fil sti til poppler's pdftotext program, brugt til at identificere tekst fra " +"PDF filer." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -174,7 +173,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -194,18 +192,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -215,7 +212,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -387,11 +383,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -448,9 +444,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 3108f3a1c6..61d66c40f6 100644 --- a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -65,8 +66,7 @@ msgstr "Seite %(page_number)d" msgid "Contents" msgstr "Inhalte" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "In die OCR-Verarbeitung einstellen" @@ -131,7 +131,6 @@ msgid "Document page content" msgstr "Seiteninhalt" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Seiteninhalt" @@ -158,26 +157,29 @@ msgid "Change document type OCR settings" msgstr "OCR-Einstellungen für Dokumententyp beabeiten" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "Pfad zum 'tesseract'-Programm" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Pfad zum \"pdftotext\"-Programm (bereitgestellt von poppler), das benutzt wird, um Text aus PDF-Dateien zu extrahieren." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Pfad zum \"pdftotext\"-Programm (bereitgestellt von poppler), das benutzt " +"wird, um Text aus PDF-Dateien zu extrahieren." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." -msgstr "Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet werden soll." +msgstr "" +"Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet " +"werden soll." #: settings.py:27 msgid "Set new document types to perform OCR automatically by default." -msgstr "Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch durchgeführt werden soll." +msgstr "" +"Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch " +"durchgeführt werden soll." #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "Dokumente in die OCR-Verarbeitung einstellen?" @@ -197,18 +199,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Dokument %(document)s in OCR-Warteschlange eingereiht" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "Ausgewählte Dokumente in die OCR-Warteschlange einreihen?" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -218,7 +219,6 @@ msgstr "OCR-Einstellungen für Dokumententyp %s bearbeiten" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -390,11 +390,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -451,9 +451,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po index e08001af48..22fdb96801 100644 --- a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/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: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2012-06-17 22:12+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -64,7 +64,7 @@ msgstr "" msgid "Contents" msgstr "" -#: links.py:17 links.py:25 +#: links.py:18 links.py:25 #, fuzzy #| msgid "Submit documents for OCR" msgid "Submit for OCR" diff --git a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po index a0129d541c..05c5e0f8fa 100644 --- a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -63,8 +64,7 @@ msgstr "Página %(page_number)d" msgid "Contents" msgstr "Contenido" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "Enviar para OCR" @@ -129,7 +129,6 @@ msgid "Document page content" msgstr "Contenido de página de documento" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Contenido de página de documento" @@ -156,15 +155,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Ruta de acceso al programa de poppler llamado pdftotext utilizado para extraer texto de archivos PDF." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Ruta de acceso al programa de poppler llamado pdftotext utilizado para " +"extraer texto de archivos PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -175,7 +174,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "¿Enviar todos los documentos para OCR?" @@ -195,18 +193,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Documento: %(document)s fue añadido a la lista de espera de OCR" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -216,7 +213,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -388,11 +384,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -449,9 +445,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po index 136db3ce95..cb56b8f363 100644 --- a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -60,8 +61,7 @@ msgstr "صفحه %(page_number)d" msgid "Contents" msgstr "محتوا" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -126,7 +126,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,14 +152,12 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "محل فایل POPPLER جهت استخراج TEXT از PDF" #: settings.py:22 @@ -172,7 +169,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -192,18 +188,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "سند : %(document)s جهت ocr وارد صف شد." #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -213,7 +208,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -383,11 +377,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -444,9 +438,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po index 8d28bb6f3c..07e961c762 100644 --- a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -63,8 +64,7 @@ msgstr "Page %(page_number)d" msgid "Contents" msgstr "Contenus" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "Soumettre à l'OCR" @@ -90,7 +90,8 @@ msgstr "Type de document" #: models.py:20 msgid "Automatically queue newly created documents for OCR." -msgstr "Ajouter automatiquement les nouveaux documents créés à la file d'attente OCR." +msgstr "" +"Ajouter automatiquement les nouveaux documents créés à la file d'attente OCR." #: models.py:24 msgid "Document type settings" @@ -129,7 +130,6 @@ msgid "Document page content" msgstr "Contenu de la page du document" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Contenu des pages du document" @@ -156,15 +156,15 @@ msgid "Change document type OCR settings" msgstr "Modifier les paramétrages OCR du type de document" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "Chemin vers l'exécutable tesseract." #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à partir des fichiers PDF." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à " +"partir des fichiers PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -175,7 +175,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "Traiter automatiquement les nouveaux types de document par l'OCR." #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "Soumettre tous les documents à l'OCR ?" @@ -195,18 +194,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Le document : %(document)s a été ajouté à la file d'attente OCR." #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "Soumettre les documents sélectionnés à la file d'attente OCR ?" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -216,7 +214,6 @@ msgstr "Modifier les paramètres OCR pour le type de document : %s" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -388,11 +385,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -449,9 +446,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po index efd74405a9..2cfcfc7cee 100644 --- a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -60,8 +61,7 @@ msgstr "" msgid "Contents" msgstr "Tartalom" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -126,7 +126,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,14 +152,12 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -172,7 +169,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -192,18 +188,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -213,7 +208,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -385,11 +379,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -446,9 +440,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po index d8fb7f7ae1..df07e01486 100644 --- a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -60,8 +61,7 @@ msgstr "" msgid "Contents" msgstr "Isi" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -126,7 +126,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,14 +152,12 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -172,7 +169,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -192,18 +188,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -213,7 +208,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -383,11 +377,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -444,9 +438,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po index 00ff8574d1..6909be6827 100644 --- a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011-2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -61,8 +62,7 @@ msgstr "Pagina %(page_number)d" msgid "Contents" msgstr "Contenuti" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -127,7 +127,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,14 +153,12 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -173,7 +170,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -193,18 +189,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -214,7 +209,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -386,11 +380,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -447,9 +441,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 e5941c56cb..e4c75552fd 100644 --- a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -61,8 +62,7 @@ msgstr "" msgid "Contents" msgstr "Inhoud" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -127,7 +127,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,15 +153,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF " "files." -msgstr "Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF files." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -173,7 +172,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -193,18 +191,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -214,7 +211,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -386,11 +382,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -447,9 +443,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po index 95b5b47a8a..661c5c6525 100644 --- a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -10,15 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -62,8 +64,7 @@ msgstr "" msgid "Contents" msgstr "Zawartość" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "Zgłoś do OCR" @@ -128,7 +129,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -155,14 +155,12 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -174,7 +172,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -194,18 +191,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Dokument : %(document)s dodany do kolejki OCR" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -215,7 +211,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -389,11 +384,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -450,9 +445,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po index c21ff36bdc..7d08294d5f 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: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -63,8 +64,7 @@ msgstr "" msgid "Contents" msgstr "Conteúdos" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -129,7 +129,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -156,15 +155,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Caminho para o programa pdftotext de poppler, usado para extrair texto de ficheiros PDF." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Caminho para o programa pdftotext de poppler, usado para extrair texto de " +"ficheiros PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -175,7 +174,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -195,18 +193,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -216,7 +213,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -388,11 +384,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -449,9 +445,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 c88cc49abb..97137ac2c3 100644 --- a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Renata Oliveira , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -62,8 +63,7 @@ msgstr "Pagina: %(page_number)d" msgid "Contents" msgstr "Conteúdos" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -128,7 +128,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -155,15 +154,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Caminho para o programa poppler pdftotext usado para extrair texto de arquivos PDF." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Caminho para o programa poppler pdftotext usado para extrair texto de " +"arquivos PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -174,7 +173,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -194,18 +192,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Documento: %(document)s foi adicionado à fila de OCR." #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -215,7 +212,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -387,11 +383,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -448,9 +444,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 fd537b160a..50689db2b2 100644 --- a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -61,8 +63,7 @@ msgstr "" msgid "Contents" msgstr "Conţinut" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -127,7 +128,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,15 +154,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Calea de fișier pentru programul pdftotext folosit pentru a extrage textul din fișiere PDF." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Calea de fișier pentru programul pdftotext folosit pentru a extrage textul " +"din fișiere PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -173,7 +173,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -193,18 +192,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -214,7 +212,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -388,11 +385,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -449,9 +446,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po index 403d2d84c8..5ffe280ec4 100644 --- a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -60,8 +63,7 @@ msgstr "" msgid "Contents" msgstr "Содержание" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -126,7 +128,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,15 +154,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." -msgstr "Путь к файлу программы pdftotext Poppler, используемой для извлечения текста из PDF файлов." +"File path to poppler's pdftotext program used to extract text from PDF files." +msgstr "" +"Путь к файлу программы pdftotext Poppler, используемой для извлечения текста " +"из PDF файлов." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -172,7 +173,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -192,18 +192,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -213,7 +212,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -389,11 +387,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -450,9 +448,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 a9b74390ce..cbde4865ab 100644 --- a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -60,8 +62,7 @@ msgstr "" msgid "Contents" msgstr "Vsebina" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -126,7 +127,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,14 +153,12 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -172,7 +170,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -192,18 +189,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -213,7 +209,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -389,11 +384,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -450,9 +445,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" 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 d1898cbe54..fe6181e9cd 100644 --- a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -61,8 +62,7 @@ msgstr "" msgid "Contents" msgstr "Nội dung" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -127,7 +127,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,14 +153,12 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "" #: settings.py:22 @@ -173,7 +170,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -193,18 +189,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -214,7 +209,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -384,11 +378,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -445,9 +439,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po index 130ccadd22..944871e2e4 100644 --- a/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:46-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -61,8 +62,7 @@ msgstr "" msgid "Contents" msgstr "内容" -#: links.py:17 links.py:25 -#| msgid "Submit documents for OCR" +#: links.py:18 links.py:25 msgid "Submit for OCR" msgstr "" @@ -127,7 +127,6 @@ msgid "Document page content" msgstr "" #: models.py:63 -#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,14 +153,12 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 -#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF " -"files." +"File path to poppler's pdftotext program used to extract text from PDF files." msgstr "程序pdftotext文件路径,用以从PDF文件中提取文本。" #: settings.py:22 @@ -173,7 +170,6 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 -#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -193,18 +189,17 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 -#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 -#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "" +"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -214,7 +209,6 @@ msgstr "" #: views.py:154 #, python-format -#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -384,11 +378,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " -#~ "replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's " +#~ "storage replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -445,9 +439,11 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" +#~ "\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po index fe8b3f9dee..39874d1ca0 100644 --- a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -125,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po index 9483f57c97..8c3eb3f352 100644 --- a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -125,7 +126,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +162,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +181,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 70ab23fbda..cc6be8e2d9 100644 --- a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -125,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po index e3fcf682d3..b6c55a9640 100644 --- a/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -124,7 +125,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,8 +161,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -178,13 +180,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 b14c987e77..b21e62e5d2 100644 --- a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -127,7 +128,6 @@ msgid "Available permissions" msgstr "Verfügbare Berechtigungen" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Erteilte Berechtigungen" @@ -164,8 +164,10 @@ msgstr "Berechtigungen der Rolle %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,13 +183,17 @@ msgstr "Berechtigungen der Rolle %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po index a03a61666b..d8dd0944e5 100644 --- a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2012-02-02 18:18+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po index a1460e8a96..b8dd36f3a0 100644 --- a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -127,7 +128,6 @@ msgid "Available permissions" msgstr "Permisos disponibles" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Permisos otorgados" @@ -164,8 +164,10 @@ msgstr "Permisos para el rol: %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,13 +183,17 @@ msgstr "Permisos para el rol: %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po index 77eff7500e..4542b92d34 100644 --- a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -126,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -180,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po index a0d37d0cf4..b002b09e18 100644 --- a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:14-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -127,7 +128,6 @@ msgid "Available permissions" msgstr "Permissions disponibles" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Permissions accordées" @@ -164,8 +164,10 @@ msgstr "Permissions pour le rôle : %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,13 +183,17 @@ msgstr "Permissions pour le rôle : %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po index 32eba13042..04e4bf004f 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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po index 446255cc93..08c3aa5f47 100644 --- a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po index fe71aa95d5..325a5b821b 100644 --- a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Giovanni Tricarico , 2016 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Giovanni Tricarico \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -126,7 +127,6 @@ msgid "Available permissions" msgstr "Autorizzazioni disponibili " #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Autorizzazioni concesse " @@ -163,8 +163,10 @@ msgstr "Autorizzazioni per ruolo: %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -180,13 +182,17 @@ msgstr "Autorizzazioni per ruolo: %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 db74e4e1f2..3c849ad75a 100644 --- a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -125,7 +126,6 @@ msgid "Available permissions" msgstr "Beschikbare permissies" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Toegekende permissies" @@ -162,8 +162,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +181,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po index 127ed35134..96f4e1957d 100644 --- a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012,2015 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -125,7 +127,6 @@ msgid "Available permissions" msgstr "Dostępne uprawnienia" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Przyznane uprawnienia" @@ -162,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po index 3d80d51389..87569e49b1 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: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -127,7 +128,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -164,8 +164,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,13 +183,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 979bfcc6c8..f323b71e65 100644 --- a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -127,7 +128,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -164,8 +164,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,13 +183,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 ed1f6b99c2..ab50e4fecc 100644 --- a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -125,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po index d395c97ae9..ab895e299b 100644 --- a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -124,7 +127,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,8 +163,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -178,13 +182,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 da026e8de9..66cf68366b 100644 --- a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -124,7 +126,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,8 +162,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -178,13 +181,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 15da0e1e50..a381357557 100644 --- a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -125,7 +126,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +162,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +181,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po index 8aa2bea2b0..52756c50b6 100644 --- a/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -125,7 +126,6 @@ msgid "Available permissions" msgstr "" #: views.py:80 -#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,8 +162,10 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -179,13 +181,17 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "" +#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s " +#~ "%(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" 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 a7aa3bde06..0957e21a8e 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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" 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 4ecc97158e..b2ca2f7ef0 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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" 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 ce0e3fc6a9..3d8e5e8ec8 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 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" diff --git a/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po index 802f92ed60..4fcac11367 100644 --- a/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" 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 c238932c9a..9f78189bcd 100644 --- a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 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 a65b0d73e2..1aebf2c6c6 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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po index 4fbea9bc18..ac385b3d74 100644 --- a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 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 08966805d1..d076cbe08f 100644 --- a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 links.py:8 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 fa7ad58af0..ae639509b3 100644 --- a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 links.py:8 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 9c5aeff52c..e3912f5b82 100644 --- a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" 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 4044a7bc4a..896d4bd706 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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" 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 20fd98e267..3b16811790 100644 --- a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Giovanni Tricarico \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 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 844db1158b..52e77c5167 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 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" 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 844e62060b..ceceb7c232 100644 --- a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Annunnaky , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:16 links.py:8 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po index 3727591e02..19e63e7cf9 100644 --- a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po @@ -1,20 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 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 c2c6eabeff..a6791f8823 100644 --- a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 links.py:8 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 917596186a..6b5bd838e8 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 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" 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 0748699d58..193059cda0 100644 --- a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" 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 2f84f61dc0..7e47bc1eaa 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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" 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 8a852d0558..4be201bcc6 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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" diff --git a/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po index 1537323524..0ae72548bc 100644 --- a/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" 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 7fa2560136..3d480d6958 100644 --- a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po index f4937786a6..be210fcb96 100644 --- a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 e62deb6a2b..c9f9ac419f 100644 --- a/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po index d979d02a91..0cc8184428 100644 --- a/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 7896945190..8bfb1aa921 100644 --- a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 3db04789d1..3f703a47d0 100644 --- a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" 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 2f3b8466ce..a0ea2b2b91 100644 --- a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lory977 , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 a87bb3828a..d44b6a36d0 100644 --- a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 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 169d204924..868beecf01 100644 --- a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 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 462e2674d3..68cb3cbd1e 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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" 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 4d76d32bb1..faed28643b 100644 --- a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" 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 a153a3980b..27cb5b5c3f 100644 --- a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 ba389bbf40..ffd4504aa6 100644 --- a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 144849dde6..b7fb916e47 100644 --- a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -12,15 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po index a610dcf464..0e8fb8db8b 100644 --- a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 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 ccea646ca9..0c1ddd096c 100644 --- a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 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 9c61333c67..adbbec2131 100644 --- a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" 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 b98971d03e..af802ee265 100644 --- a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po index b23d317452..ac7eefd408 100644 --- a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" 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 84476cc263..637fb3dd5e 100644 --- a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po index 65fc80707c..1475111d9a 100644 --- a/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po index f7c0e92c1a..b3226422e3 100644 --- a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,22 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -115,7 +116,7 @@ msgstr "مصادر الوثائق" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -305,7 +306,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,7 +408,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -423,12 +422,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -451,8 +449,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -467,7 +464,6 @@ msgstr "انشاء مصدر جديد من النوع: %s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -586,9 +582,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po index d1834c3b2d..85125abdd3 100644 --- a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -24,7 +25,6 @@ msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -115,7 +115,7 @@ msgstr "Източници на документи" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -305,7 +305,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,7 +407,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -423,12 +421,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -451,8 +448,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -467,7 +463,6 @@ msgstr "" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -586,9 +581,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" 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 7644ce7193..ec1125eb94 100644 --- a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,22 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -115,7 +116,7 @@ msgstr "izvori dokumenata" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -305,7 +306,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,7 +408,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -423,12 +422,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -451,8 +449,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -467,7 +464,6 @@ msgstr "Kreiraj novi tip izvora: %s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -586,9 +582,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/da/LC_MESSAGES/django.po b/mayan/apps/sources/locale/da/LC_MESSAGES/django.po index 243fc6e297..91b38a7d0e 100644 --- a/mayan/apps/sources/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -24,7 +25,6 @@ msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -115,7 +115,7 @@ msgstr "Document kilder" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -305,7 +305,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,7 +407,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -423,12 +421,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -451,8 +448,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -467,7 +463,6 @@ msgstr "Dan en ny kilde af typen: %s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -586,9 +581,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" 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 0c3badce1d..654c9113cc 100644 --- a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -14,14 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -29,7 +30,6 @@ msgid "Sources" msgstr "Quellen" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "Quelle definieren" @@ -38,7 +38,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist erforderlich." +msgstr "" +"Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung " +"in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist " +"erforderlich." #: apps.py:65 msgid "Created" @@ -120,7 +123,7 @@ msgstr "Dokumentenquelle" msgid "Upload new version" msgstr "Neue Version hochladen" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "Protokolle" @@ -278,7 +281,9 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 für IMAP über SSL" +msgstr "" +"Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 " +"für IMAP über SSL" #: models.py:338 msgid "Port" @@ -297,7 +302,10 @@ msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste Anhang sein)." +msgstr "" +"Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für " +"die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste " +"Anhang sein)." #: models.py:349 msgid "Metadata attachment name" @@ -310,7 +318,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -413,7 +420,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Fehler bei der Verarbeitung der Quelle %s" @@ -428,12 +434,13 @@ msgstr "Logeinträge für Quelle %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen oder aktivieren Sie eine bevor Sie fortsetzen." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen " +"oder aktivieren Sie eine bevor Sie fortsetzen." #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "Dokumenteneigenschaften" @@ -443,7 +450,8 @@ msgstr "Dateien im Staging Pfad" #: views.py:262 msgid "New document queued for uploaded and will be available shortly." -msgstr "Neues Dokument in die Upload-Warteschlange eingereiht und demnächst verfügbar" +msgstr "" +"Neues Dokument in die Upload-Warteschlange eingereiht und demnächst verfügbar" #: views.py:302 #, python-format @@ -456,9 +464,10 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." -msgstr "Neue Dokumentenvrsion in die Upload-Warteschlange eingereiht und demnächst verfügbar" +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" +"Neue Dokumentenvrsion in die Upload-Warteschlange eingereiht und demnächst " +"verfügbar" #: views.py:419 #, python-format @@ -472,7 +481,6 @@ msgstr "Quelle des Typs %s erstellen" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Quelle %s wirklich löschen?" @@ -591,9 +599,11 @@ msgstr "Uploadassistent" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po index 5650b9666d..91c58fd0fb 100644 --- a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2013-11-20 13:14+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" @@ -123,7 +123,7 @@ msgstr "Document sources" msgid "Upload new version" msgstr "upload new version" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" diff --git a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po index 3b608aa0aa..b6bb0e9cdc 100644 --- a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -27,7 +28,6 @@ msgid "Sources" msgstr "Fuentes" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "Crear una nueva fuente de documentos" @@ -36,7 +36,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Las fuentes de documentos son la manera en la que se almacenan nuevos documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario web para poder cargar documentos desde un navegador." +msgstr "" +"Las fuentes de documentos son la manera en la que se almacenan nuevos " +"documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario " +"web para poder cargar documentos desde un navegador." #: apps.py:65 msgid "Created" @@ -64,7 +67,8 @@ msgstr "Expandir archivos comprimidos" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Subir los archivos de un archivo comprimido como documentos individuales" +msgstr "" +"Subir los archivos de un archivo comprimido como documentos individuales" #: forms.py:67 views.py:432 msgid "Staging file" @@ -118,7 +122,7 @@ msgstr "Fuentes de documentos" msgid "Upload new version" msgstr "Subir versión nueva" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "Bitácoras" @@ -246,7 +250,8 @@ msgstr "Intérvalo" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "Asignar un tipo de documento a los documentos subidos desde esta fuente" +msgstr "" +"Asignar un tipo de documento a los documentos subidos desde esta fuente" #: models.py:275 msgid "Document type" @@ -276,7 +281,9 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." +msgstr "" +"Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para " +"IMAP, 993 para IMAP sobre SSL." #: models.py:338 msgid "Port" @@ -308,7 +315,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -411,7 +417,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Error procesando fuente: %s" @@ -426,12 +431,13 @@ msgstr "Entradas de bitácora para fuente: %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "No se han definido fuentes de documentos interactivos o no hay ninguna habilitada, cree una antes de continuar." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"No se han definido fuentes de documentos interactivos o no hay ninguna " +"habilitada, cree una antes de continuar." #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "Propiedades de documento" @@ -454,9 +460,10 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." -msgstr "Nueva versión del documento en cola para ser cargado, estará disponible en breve." +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" +"Nueva versión del documento en cola para ser cargado, estará disponible en " +"breve." #: views.py:419 #, python-format @@ -470,7 +477,6 @@ msgstr "Crear nuevo tipo de fuente: %s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "¿Eliminar la fuente: %s?" @@ -589,9 +595,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po index c8c627484b..7bef83e419 100644 --- a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -24,7 +25,6 @@ msgid "Sources" msgstr "سورس" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -115,7 +115,7 @@ msgstr "سورسهای سند" msgid "Upload new version" msgstr "آپلود نسخه دید" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -133,7 +133,9 @@ msgstr "پرسیدن از کاربر" #: literals.py:27 models.py:252 msgid "Web form" -msgstr "وب فرم ا " +msgstr "" +"وب فرم " +"ا " #: literals.py:28 models.py:232 msgid "Staging folder" @@ -273,7 +275,9 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 for IMAP over SSL." +msgstr "" +"Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " +"for IMAP over SSL." #: models.py:338 msgid "Port" @@ -305,7 +309,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,7 +411,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -423,12 +425,13 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع بسازید." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع " +"بسازید." #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -451,8 +454,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "نسخه سند جدید که جهت آپلود وارد صف شد بزودی قابل دسترس خواهد بود." #: views.py:419 @@ -467,7 +469,6 @@ msgstr "ایجاد سورس جدید از نوع %s." #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -586,9 +587,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po index 5bb9f3a4b4..3c0c89a271 100644 --- a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2015 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,7 +26,6 @@ msgid "Sources" msgstr "Sources" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "Créer un document source" @@ -34,7 +34,10 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "Les sources de document seront la façon pour lesquels les nouveaux documents seront suivis dans Mayan EDMS, créer par au moins un formulaire web pour téléverser le document depuis le navigateur" +msgstr "" +"Les sources de document seront la façon pour lesquels les nouveaux documents " +"seront suivis dans Mayan EDMS, créer par au moins un formulaire web pour " +"téléverser le document depuis le navigateur" #: apps.py:65 msgid "Created" @@ -62,7 +65,9 @@ msgstr "Décompresser les fichiers" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Importer le contenu d'un ensemble de fichiers compressés comme fichiers individuels" +msgstr "" +"Importer le contenu d'un ensemble de fichiers compressés comme fichiers " +"individuels" #: forms.py:67 views.py:432 msgid "Staging file" @@ -116,7 +121,7 @@ msgstr "Sources du document" msgid "Upload new version" msgstr "Importer une nouvelle version" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "Journaux évènement" @@ -244,7 +249,8 @@ msgstr "Intervalle" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "Assigner un type de document aux documents importés à partir de cette source." +msgstr "" +"Assigner un type de document aux documents importés à partir de cette source." #: models.py:275 msgid "Document type" @@ -274,7 +280,9 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 pour l'IMAP, 993 pour l'IMAP over SSL." +msgstr "" +"Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 " +"pour l'IMAP, 993 pour l'IMAP over SSL." #: models.py:338 msgid "Port" @@ -293,7 +301,10 @@ msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "Le nom de la pièce jointe qui contiendra les noms des type de métadonnée et aux couple de valeur qui seront assignés au reste des documents téléversés. Noter que cette pièce jointe sera la première." +msgstr "" +"Le nom de la pièce jointe qui contiendra les noms des type de métadonnée et " +"aux couple de valeur qui seront assignés au reste des documents téléversés. " +"Noter que cette pièce jointe sera la première." #: models.py:349 msgid "Metadata attachment name" @@ -306,7 +317,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -409,7 +419,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Erreur lors du traitement de la source: %s" @@ -424,12 +433,13 @@ msgstr "Entrée du journal pour la source: %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Aucune source de document interactifs n'a été définie ou/ni activée, créer en une avant de continuer." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Aucune source de document interactifs n'a été définie ou/ni activée, créer " +"en une avant de continuer." #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "Propriété du document" @@ -439,7 +449,9 @@ msgstr "Fichiers dans l'index, en cours de modification" #: views.py:262 msgid "New document queued for uploaded and will be available shortly." -msgstr "Nouveau document ajouter dans la file d'attente pour transfert et disponible dans les plus bref délai." +msgstr "" +"Nouveau document ajouter dans la file d'attente pour transfert et disponible " +"dans les plus bref délai." #: views.py:302 #, python-format @@ -452,9 +464,10 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." -msgstr "Une nouvelle version du document mis en fille d'attente pour importation qui sera disponible dans les plus brefs délai." +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" +"Une nouvelle version du document mis en fille d'attente pour importation qui " +"sera disponible dans les plus brefs délai." #: views.py:419 #, python-format @@ -468,7 +481,6 @@ msgstr "Créer une nouvelle source de type:%s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Supprimer la source: %s?" @@ -587,9 +599,11 @@ msgstr "Assistant d'envoi de document" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po index 824ac6c3ad..4b081fa902 100644 --- a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Dezső József , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -24,7 +25,6 @@ msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -115,7 +115,7 @@ msgstr "Dokumentum források" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -305,7 +305,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,7 +407,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -423,12 +421,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -451,8 +448,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -467,7 +463,6 @@ msgstr "" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -586,9 +581,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po index 208860d369..2faf44a44e 100644 --- a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Sehat , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -24,7 +25,6 @@ msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -61,7 +61,9 @@ msgstr "Kembangkan berkas-berkas terkompresi" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-dokumen individual" +msgstr "" +"Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-" +"dokumen individual" #: forms.py:67 views.py:432 msgid "Staging file" @@ -115,7 +117,7 @@ msgstr "Sumber-sumber dokumen" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -305,7 +307,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,7 +409,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -423,12 +423,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -451,8 +450,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -467,7 +465,6 @@ msgstr "Membuat sumber baru dengan jenis: %s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -586,9 +583,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po index 17d8515a92..3a8ccbdd1b 100644 --- a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Giovanni Tricarico , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,7 +26,6 @@ msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -116,7 +116,7 @@ msgstr "Sorgente del documento" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -182,7 +182,8 @@ msgstr "" #: models.py:165 msgid "Width value to be passed to the converter backend." -msgstr "valore della larghezza da passare per le operazioni di conversione in backend" +msgstr "" +"valore della larghezza da passare per le operazioni di conversione in backend" #: models.py:166 msgid "Preview width" @@ -190,7 +191,8 @@ msgstr "" #: models.py:170 msgid "Height value to be passed to the converter backend." -msgstr "valore dell'altezza da passare per le operazioni di conversione in backend" +msgstr "" +"valore dell'altezza da passare per le operazioni di conversione in backend" #: models.py:171 msgid "Preview height" @@ -306,7 +308,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -409,7 +410,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -424,12 +424,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -452,8 +451,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -468,7 +466,6 @@ msgstr "Crea nuovo tipo di sorgente:%s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -587,9 +584,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" 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 163a1a1f15..4585d046d1 100644 --- a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lucas Weel , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -24,7 +25,6 @@ msgid "Sources" msgstr "Bronnen" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -61,7 +61,8 @@ msgstr "Uitpakken gecomprimeerde bestanden" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Upload een gecomprimeerd archief van bestanden als individuele documenten" +msgstr "" +"Upload een gecomprimeerd archief van bestanden als individuele documenten" #: forms.py:67 views.py:432 msgid "Staging file" @@ -115,7 +116,7 @@ msgstr "Documentbronnen" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -214,7 +215,9 @@ msgstr "" #: models.py:207 #, python-format msgid "Unable get list of staging files: %s" -msgstr "Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. Foutmelding: %s" +msgstr "" +"Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. " +"Foutmelding: %s" #: models.py:228 #, python-format @@ -243,7 +246,8 @@ msgstr "" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "Wijs een documentsoort toe voor documenten die worden geüpload van deze bron." +msgstr "" +"Wijs een documentsoort toe voor documenten die worden geüpload van deze bron." #: models.py:275 msgid "Document type" @@ -305,7 +309,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,7 +411,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -423,12 +425,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -451,8 +452,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -467,7 +467,6 @@ msgstr "Aanmaken van nieuw documentbron van type: %s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -586,9 +585,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po index 4a1e29883d..ace1d11d4a 100644 --- a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012-2013 @@ -10,22 +10,23 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -116,7 +117,7 @@ msgstr "" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -306,7 +307,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -409,7 +409,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -424,12 +423,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -452,8 +450,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -468,7 +465,6 @@ msgstr "Utwórz nowe typ źródło:%s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -587,9 +583,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po index 7542f15aa4..537dc6927f 100644 --- a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -26,7 +27,6 @@ msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -63,7 +63,9 @@ msgstr "Expandir ficheiros comprimidos" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Enviar os ficheiros contidos num ficheiro comprimido como documentos individuais" +msgstr "" +"Enviar os ficheiros contidos num ficheiro comprimido como documentos " +"individuais" #: forms.py:67 views.py:432 msgid "Staging file" @@ -117,7 +119,7 @@ msgstr "Fontes de documentoo" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -307,7 +309,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -410,7 +411,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -425,12 +425,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -453,8 +452,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -469,7 +467,6 @@ msgstr "Criar nova fonte do tipo: %s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -588,9 +585,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" 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 9040a1a34b..eef83448f7 100644 --- a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,7 +26,6 @@ msgid "Sources" msgstr "Fontes" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -62,7 +62,8 @@ msgstr "Expandir arquivos compactados" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Upload de um arquivo compactado contendo arquivos como documentos individuais" +msgstr "" +"Upload de um arquivo compactado contendo arquivos como documentos individuais" #: forms.py:67 views.py:432 msgid "Staging file" @@ -116,7 +117,7 @@ msgstr "Fontes de documentos" msgid "Upload new version" msgstr "Upload de uma nova versão" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -244,7 +245,8 @@ msgstr "intervalo" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "Atribuir um tipo de documento para documentos enviados a partir desta fonte." +msgstr "" +"Atribuir um tipo de documento para documentos enviados a partir desta fonte." #: models.py:275 msgid "Document type" @@ -274,7 +276,9 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." +msgstr "" +"Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, " +"993 para IMAP sobre SSL." #: models.py:338 msgid "Port" @@ -306,7 +310,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -409,7 +412,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -424,12 +426,13 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." -msgstr "Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. Criar uma antes de prosseguir." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." +msgstr "" +"Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. " +"Criar uma antes de prosseguir." #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -452,9 +455,10 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." -msgstr "Nova versão do documento na fila para carregados e estará disponível em breve." +msgid "New document version queued for uploaded and will be available shortly." +msgstr "" +"Nova versão do documento na fila para carregados e estará disponível em " +"breve." #: views.py:419 #, python-format @@ -468,7 +472,6 @@ msgstr "Criar nova fonte do tipo: %s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -587,9 +590,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" 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 1fcf1cb212..cff6f4b449 100644 --- a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Abalaru Paul , 2013 @@ -10,22 +10,23 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -62,7 +63,9 @@ msgstr "Dezarhivare fișiere comprimate" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "Încărcați fișiere de fișier comprimat care sunt incluse ca documente individuale" +msgstr "" +"Încărcați fișiere de fișier comprimat care sunt incluse ca documente " +"individuale" #: forms.py:67 views.py:432 msgid "Staging file" @@ -116,7 +119,7 @@ msgstr "Sursa documentului" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -306,7 +309,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -409,7 +411,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -424,12 +425,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -452,8 +452,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -468,7 +467,6 @@ msgstr "Creați o nouă sursă de tipul:% s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -587,9 +585,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po index 266b96e028..7357aeffc2 100644 --- a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po @@ -1,29 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "Источники" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -114,7 +116,7 @@ msgstr "Источники документов" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -242,7 +244,8 @@ msgstr "" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "Назначить тип документов для документов, загружаемых из этого источника." +msgstr "" +"Назначить тип документов для документов, загружаемых из этого источника." #: models.py:275 msgid "Document type" @@ -304,7 +307,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -407,7 +409,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -422,12 +423,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -450,8 +450,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -466,7 +465,6 @@ msgstr "Создать новый источник типа: %s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -585,9 +583,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" 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 5c17ff7d62..b9889f7dd8 100644 --- a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po @@ -1,29 +1,30 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -114,7 +115,7 @@ msgstr "" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -304,7 +305,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -407,7 +407,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -422,12 +421,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -450,8 +448,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -466,7 +463,6 @@ msgstr "" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -585,9 +581,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" 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 34ed8e446c..3c4fc53970 100644 --- a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -24,7 +25,6 @@ msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -115,7 +115,7 @@ msgstr "Các nguồn tài liệu" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -305,7 +305,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,7 +407,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -423,12 +421,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -451,8 +448,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -467,7 +463,6 @@ msgstr "" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -586,9 +581,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po index daa42c6e61..1aff16fee2 100644 --- a/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:47-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,7 +26,6 @@ msgid "Sources" msgstr "" #: apps.py:53 -#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -116,7 +116,7 @@ msgstr "文档数据源" msgid "Upload new version" msgstr "" -#: links.py:84 +#: links.py:83 msgid "Logs" msgstr "" @@ -306,7 +306,6 @@ msgid "" msgstr "" #: models.py:356 -#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -409,7 +408,6 @@ msgstr "" #: tasks.py:31 #, python-format -#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -424,12 +422,11 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled," -" create one before proceeding." +"No interactive document sources have been defined or none have been enabled, " +"create one before proceeding." msgstr "" #: views.py:155 views.py:173 -#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -452,8 +449,7 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "" -"New document version queued for uploaded and will be available shortly." +msgid "New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -468,7 +464,6 @@ msgstr "新建数据源类型:%s" #: views.py:480 #, python-format -#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -587,9 +582,11 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s" +#~ "\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po index d7a0e152d3..3eb7dd2798 100644 --- a/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po index b9195f3ad1..5af34f0049 100644 --- a/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Iliya Georgiev , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po index 674d1e75c2..0a44ce8768 100644 --- a/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # www.ping.ba , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po index 3d2559c1ed..e177325259 100644 --- a/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mads L. Nielsen , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po index 51b5d50803..b7c7813c6a 100644 --- a/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Mathias Behrle , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po index 221189d6cb..39c39a5c95 100644 --- a/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po index 22103f71e7..c6e5094825 100644 --- a/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po index 4113b7a256..1ee1660889 100644 --- a/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014 # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po index b048637eeb..7d304c8ce9 100644 --- a/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pierre Lhoste , 2012 # Thierry Schott , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po index 51b34d180d..2bffa18a13 100644 --- a/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Dezső József , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po index 74dccba60e..5a8cafe335 100644 --- a/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Sehat , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po index 566b936ac6..e5269c556c 100644 --- a/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Giovanni Tricarico \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po index 69bd9cc011..3e96ce8d16 100644 --- a/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lucas Weel , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po index 916f0f1da6..04015d13c4 100644 --- a/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Wojciech Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po index 5b08c95983..3fc7796fdf 100644 --- a/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Manuela Silva , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Manuela Silva \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po index d5545d67a3..2cbbfd8a99 100644 --- a/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po index af186b5679..064564381f 100644 --- a/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Badea Gabriel , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:15-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po index 1aeea7b5a4..f3e287c535 100644 --- a/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Sergey Glita , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:23 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/sl_SI/LC_MESSAGES/django.po index b9218a3d4f..8bf2d4fb2b 100644 --- a/mayan/apps/statistics/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-09-24 05:16+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po index 01a1416c9f..1b0e572590 100644 --- a/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po index 906b9b825b..0b903dbc37 100644 --- a/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ford Guo , 2014 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 links.py:28 permissions.py:7 diff --git a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po index aea0b5751b..727edbdb43 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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po index 468b88de09..94b7f7d0ab 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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" 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 959364f308..a31ae44c77 100644 --- a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" diff --git a/mayan/apps/storage/locale/da/LC_MESSAGES/django.po b/mayan/apps/storage/locale/da/LC_MESSAGES/django.po index fc8969a807..e22001dcbd 100644 --- a/mayan/apps/storage/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/da/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" 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 3dcee5d396..df32c63992 100644 --- a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po b/mayan/apps/storage/locale/en/LC_MESSAGES/django.po index e0722b248c..b7d6c7910e 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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po index 66874b41e3..b58210d20b 100644 --- a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po index 87690b4aea..c5c9088485 100644 --- a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po index 28c16a4bbb..c66127a58f 100644 --- a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po index d4dacdede2..a0e39bdfa3 100644 --- a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po index e05b49580c..0d4345bda5 100644 --- a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po index e6c9d250be..92651f4e52 100644 --- a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Giovanni Tricarico \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 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 49921f8e73..8ad54cd17e 100644 --- a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po index 2cde26f8ea..78819179fe 100644 --- a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po index d051507ada..3d5bc7a79f 100644 --- a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Manuela Silva , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Manuela Silva \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 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 ac5f3b203a..a4a10e86ab 100644 --- a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" 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 ce1e56e454..d96b257e8a 100644 --- a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po index 2ffcec41ee..11bc79830f 100644 --- a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" 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 3817a569e6..74c5f4466a 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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" 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 645c5fcf2b..8f6a776600 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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" diff --git a/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po index c86a7d348f..cde265c3f0 100644 --- a/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po index 51137d35ef..60d0389918 100644 --- a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -195,22 +197,16 @@ msgstr "ازالة الكلمة الاستدلالية من الوثائق: %s" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -227,7 +223,8 @@ msgstr "الوثيقة \"%(document)s\" لم تربط مع: \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." +msgstr "" +"الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po index ce63480f44..50acd44e3c 100644 --- a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -187,22 +188,16 @@ msgstr "" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" 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 791c76f011..7adb73b81e 100644 --- a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -189,22 +191,16 @@ msgstr "Ukloni tag iz dokumenata: %s." #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/da/LC_MESSAGES/django.po b/mayan/apps/tags/locale/da/LC_MESSAGES/django.po index 97ee8aad4a..42a7e7fb11 100644 --- a/mayan/apps/tags/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -187,22 +188,16 @@ msgstr "Fjern tag fra dokumenter: %s." #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" 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 ad2a1d8c1e..ec54451baa 100644 --- a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -187,22 +188,17 @@ msgstr "Tag von Dokumenten %s entfernen." #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" -msgstr "Wollen Sie den Tag %(tag)s wirklich vom Dokument %(document)s entfernen?" +msgstr "" +"Wollen Sie den Tag %(tag)s wirklich vom Dokument %(document)s entfernen?" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "Tag \"%(tag)s\" wirklich von den Dokumenten %(documents)s entfernen?" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "Wollen Sie die Tags %(tags)s vom Dokument %(document)s entfernen?" diff --git a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po index bfca70b577..55a9c01eb1 100644 --- a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2012-12-12 06:07+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po index 87bd791f12..86596a2f70 100644 --- a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -189,22 +190,16 @@ msgstr "Quitar etiqueta de los documentos: %s." #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "¿Remover la etiqueta \"%(tag)s\" del documento: %(document)s?" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "¿Remover la etiqueta \"%(tag)s\" de los documentos: %(documents)s?" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "¿Remover las etiquetas: %(tags)s del documento: %(document)s?" @@ -221,7 +216,8 @@ msgstr "Documento \"%(document)s\" no estaba etiquetado como \"%(tag)s \"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." +msgstr "" +"Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po index efe540667f..c1f40bcdd5 100644 --- a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -185,22 +186,16 @@ msgstr "حذف برچسب از اسناد: %s" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po index 872e83666d..00d5e56f75 100644 --- a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2015 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -126,7 +127,9 @@ msgstr "Le document \"%(document)s\" est déjà étiqueté comme \"%(tag)s\"" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s\"." +msgstr "" +"L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s" +"\"." #: views.py:110 msgid "Attach tag to document" @@ -189,22 +192,16 @@ msgstr "Supprimer l'étiquette des documents: %s" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "Supprimer l'étiquette \"%(tag)s\" du document %(document)s?" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "Supprimer l'étiquette \"%(tag)s\" des documents %(documents)s?" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "Supprimer les étiquettes \"%(tags)s\" du document %(document)s?" @@ -221,7 +218,9 @@ msgstr "Le document \"%(document)s\" n'a pas été étiqueté avec \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "L'étiquette \"%(tag)s\" à été supprimée avec succès du document \"%(document)s\"." +msgstr "" +"L'étiquette \"%(tag)s\" à été supprimée avec succès du document " +"\"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po index ba781fdddc..406e09b610 100644 --- a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -186,22 +187,16 @@ msgstr "" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po index b67cf47bfb..9b4efbb77a 100644 --- a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -184,22 +185,16 @@ msgstr "" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po index cc513b370d..1207bede67 100644 --- a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Giovanni Tricarico , 2016 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -126,7 +127,9 @@ msgstr "Il documento \"%(document)s\" è stato già etichettato come \"%(tag)s\" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "L'etichetta \"%(tag)s\" è stata allegata con successo al documento \"%(document)s\"" +msgstr "" +"L'etichetta \"%(tag)s\" è stata allegata con successo al documento " +"\"%(document)s\"" #: views.py:110 msgid "Attach tag to document" @@ -189,22 +192,16 @@ msgstr "Rimuovi l'etichetta dai documenti: %s" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "Rimuovere l'etichetta \"%(tag)s\" dal documento %(document)s?" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "Rimuovere l'etichetta \"%(tag)s\" dai documenti: %(documents)s?" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "Rimuovere le etichette: %(tags)s dal documento: %(document)s?" @@ -221,7 +218,8 @@ msgstr "Il documento \"%(document)s\" non è stato etichettato come \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Etichetta \"%(tag)s\" rimossa con successo dal documento \"%(document)s\"." +msgstr "" +"Etichetta \"%(tag)s\" rimossa con successo dal documento \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po index 5381b94da4..d0c089d354 100644 --- a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -143,7 +144,8 @@ msgstr "Label \"%s\" verwijderd." #: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" -msgstr "Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" +msgstr "" +"Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" #: views.py:196 msgid "Will be removed from all documents." @@ -186,22 +188,16 @@ msgstr "Verwijder label van documenten: %s" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po index 3a23f9ff1a..492286fbf0 100644 --- a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -11,15 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -191,22 +193,16 @@ msgstr "Usuń tagi z dokumentów: %s." #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po index 61b64df460..af4ff8ce63 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: # Translators: # Emerson Soares , 2011 @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -189,22 +190,16 @@ msgstr "" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" 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 615b3e458f..5cdcb80000 100644 --- a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2012 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -125,7 +126,8 @@ msgstr "Documento \"%(document)s\" já está marcado como \"%(tag)s\"" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." +msgstr "" +"Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." #: views.py:110 msgid "Attach tag to document" @@ -188,22 +190,16 @@ msgstr "Remove etiqueta dos documentos: %s." #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" 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 5f45519ee4..aec1f61c34 100644 --- a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Abalaru Paul , 2013 @@ -10,15 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -125,7 +127,8 @@ msgstr "Documentul \"%(document)s\" este deja etichetat cu \"%(tag)s\"" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." +msgstr "" +"Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." #: views.py:110 msgid "Attach tag to document" @@ -190,22 +193,16 @@ msgstr "Eliminați eticheta de la documentele:% s." #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -222,7 +219,9 @@ msgstr "Documentul \"%(document)s\" nu a fost etichetat cu \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s\"." +msgstr "" +"Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s" +"\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po index 9690278ae4..8f4301af31 100644 --- a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -190,22 +193,16 @@ msgstr "Снять метку с документов %s." #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" 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 7c46334939..6523e9bf45 100644 --- a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # kontrabant , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -191,22 +193,16 @@ msgstr "" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" 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 ea7067074a..7953157a51 100644 --- a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -185,22 +186,16 @@ msgstr "Xóa tag từ các tài liệu: %s" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po index 0162b36200..5e5c432aea 100644 --- a/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -186,22 +187,16 @@ msgstr "从文档: %s移除标签" #: views.py:344 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format -#| msgid "" -#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format -#| msgid "" -#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" 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 c1115550ec..758bfe9a88 100644 --- a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" +"ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -126,7 +128,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,7 +175,9 @@ msgstr "يجب أن توفر ما لا يقل عن مستخدم واحد." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user deleting is not allowed, use the admin interface " +"for these cases." #: views.py:237 #, python-format @@ -188,13 +191,11 @@ msgstr "خطأ أثناء حذف المستخدم \"%(user)s\": %(error)s" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,7 +207,9 @@ msgstr "لا تتطابق كلمات المرور، حاول مرة أخرى." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user password reseting is not allowed, use the admin " +"interface for these cases." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po index 094ba8c5d8..65921a1710 100644 --- a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -126,7 +127,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,7 +174,9 @@ msgstr "Трябва да изберете поне един потребите msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Изтриване на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." +msgstr "" +"Изтриване на потребители от супер потребител и служител не е разрешено. " +"Използвайте администраторския модул за тези случаи." #: views.py:237 #, python-format @@ -188,13 +190,11 @@ msgstr "Грешка при изтриването на потребител \"% #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,7 +206,9 @@ msgstr "Паролата не съвпада. Опитайте отново." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Промяна на парола на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." +msgstr "" +"Промяна на парола на потребители от супер потребител и служител не е " +"разрешено. Използвайте администраторския модул за тези случаи." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po index ebdcc4f0f6..ee19bf3c56 100644 --- a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" +"rosarior/mayan-edms/language/bs_BA/)\n" +"Language: bs_BA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs_BA\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -126,7 +128,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,7 +175,9 @@ msgstr "Mora biti obebjeđen bar jedan korisnik." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user i staff user brisanja nisu dozvoljena, koristite administratorski interface za takve slučajeve" +msgstr "" +"Super user i staff user brisanja nisu dozvoljena, koristite administratorski " +"interface za takve slučajeve" #: views.py:237 #, python-format @@ -188,13 +191,11 @@ msgstr "Greška brisanja korisnika \"%(user)s\": %(error)s" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,7 +207,9 @@ msgstr "Lozinke se ne podudaraju, pokušajte ponovo." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user i staff user reset lozinke nije dozvoljen, koristite administratorski interface za takve slučajeve" +msgstr "" +"Super user i staff user reset lozinke nije dozvoljen, koristite " +"administratorski interface za takve slučajeve" #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po index 111c2125ea..1e9c78671a 100644 --- a/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # René Rovsing Bach , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" +"da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -126,7 +127,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,7 +174,9 @@ msgstr "Der skal angives mindst én bruger." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Det er ikke tilladt at slette superbruger og personalebruger. Anvend administrator brugerfladen i disse tilfælde." +msgstr "" +"Det er ikke tilladt at slette superbruger og personalebruger. Anvend " +"administrator brugerfladen i disse tilfælde." #: views.py:237 #, python-format @@ -188,13 +190,11 @@ msgstr "Fejl ved sletning af bruger \"%(user)s\": %(error)s" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,7 +206,9 @@ msgstr "De to password stemmer ikke overens, prøv igen." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Det er ikke tilladt at nulstille Superbruger og personale brugeradgangskode. Anvend administrator brugerflade istedet." +msgstr "" +"Det er ikke tilladt at nulstille Superbruger og personale brugeradgangskode. " +"Anvend administrator brugerflade istedet." #: views.py:319 #, python-format 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 715c2b77cf..46b38547c7 100644 --- a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -13,14 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" +"edms/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -130,7 +131,6 @@ msgstr "Gruppe %s bearbeiten" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Gruppe %s löschen?" @@ -178,7 +178,9 @@ msgstr "Es muss mindestens ein Benutzer angegeben werden" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die Administratoren-Oberfläche dafür." +msgstr "" +"Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die " +"Administratoren-Oberfläche dafür." #: views.py:237 #, python-format @@ -192,13 +194,11 @@ msgstr "Fehler beim Löschen des Benutzers \"%(user)s\": %(error)s" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "Benutzer %s löschen?" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "Die Benutzer %s löschen?" @@ -210,7 +210,9 @@ msgstr "Passwörter stimmen nicht überein, bitte noch einmal versuchen" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die Administratoren-Oberfläche dafür." +msgstr "" +"Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die " +"Administratoren-Oberfläche dafür." #: views.py:319 #, python-format @@ -220,7 +222,9 @@ msgstr "Passwort erfolgreich zurückgesetzt für Benutzer %s" #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": %(error)s" +msgstr "" +"Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": " +"%(error)s" #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po index dcd9f5f161..49ced42460 100644 --- a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2012-12-12 06:07+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po index 40ea8d6ecb..2fea756543 100644 --- a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -129,7 +130,6 @@ msgstr "Editar grupo: %s" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "¿Borrar el grupo: %s?" @@ -177,7 +177,9 @@ msgstr "Debe indicar al menos un usuario." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "No se permite eliminar el super usuario y usuario de personal. Use la interfaz de administración para estos casos." +msgstr "" +"No se permite eliminar el super usuario y usuario de personal. Use la " +"interfaz de administración para estos casos." #: views.py:237 #, python-format @@ -191,13 +193,11 @@ msgstr "Error eliminando el usuario \"%(user)s\": %(error)s " #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "¿Borrar el usuario: %s?" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "¿Borrar los usuarios: %s?" @@ -209,7 +209,9 @@ msgstr "Las contraseñas no coinciden. Vuelva a intentarlo." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "No se permite cambiar la contraseña del super usuario y del usuario de personal. Use la interfaz de administración para estos casos." +msgstr "" +"No se permite cambiar la contraseña del super usuario y del usuario de " +"personal. Use la interfaz de administración para estos casos." #: views.py:319 #, python-format @@ -219,7 +221,8 @@ msgstr "Contraseña restablecida para el usuario: %s." #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " +msgstr "" +"Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po index a51fea1c97..fd16f275f0 100644 --- a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" +"language/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:29 permissions.py:7 @@ -126,7 +127,6 @@ msgstr "ویرایش گروه : %s" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -188,13 +188,11 @@ msgstr "خطا در حذف کاربر \"%(user)s\": %(error)s" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po index f3ebfa9366..55995897f0 100644 --- a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2014 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" +"fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:29 permissions.py:7 @@ -129,7 +130,6 @@ msgstr "Modification du groupe : %s" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Supprimer le groupe : %s ?" @@ -177,7 +177,9 @@ msgstr "Vous devez indiquer au moins un utilisateur." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "La suppression des comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'administration." +msgstr "" +"La suppression des comptes super utilisateur et staff n'est pas autorisée " +"ici, veuillez le faire via l'interface d'administration." #: views.py:237 #, python-format @@ -187,17 +189,16 @@ msgstr "Utilisateur \"%s\" supprimé avec succès." #: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" -msgstr "Erreur lors de la suppression de l'utilisateur \"%(user)s\" : %(error)s" +msgstr "" +"Erreur lors de la suppression de l'utilisateur \"%(user)s\" : %(error)s" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "Supprimer l'utilisateur : %s ?" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "Supprimer les utilisateurs : %s ?" @@ -209,7 +210,10 @@ msgstr "Les mots de passe ne correspondent pas, veuillez réessayer." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "La réinitialisation des mots de passe pour les comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'administration." +msgstr "" +"La réinitialisation des mots de passe pour les comptes super utilisateur et " +"staff n'est pas autorisée ici, veuillez le faire via l'interface " +"d'administration." #: views.py:319 #, python-format @@ -219,7 +223,9 @@ msgstr "Mot de passe ré-initialisé avec succès pour l'utilisateur : %s." #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur \"%(user)s\" : %(error)s" +msgstr "" +"Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur " +"\"%(user)s\" : %(error)s" #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po index d2b45d1508..90199814de 100644 --- a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" +"language/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -125,7 +126,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -187,13 +187,11 @@ msgstr "" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po index e350d05ed1..541920c51a 100644 --- a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:29 permissions.py:7 @@ -125,7 +126,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -187,13 +187,11 @@ msgstr "" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" diff --git a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po index 9fee8a451a..ef4916a032 100644 --- a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierpaolo Baldan , 2011 @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -127,7 +128,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -175,7 +175,9 @@ msgstr "Devi fornire almeno un utente." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Al super utente e utente non è consentito la cancellazione del personale, utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "" +"Al super utente e utente non è consentito la cancellazione del personale, " +"utilizzare l'interfaccia di amministrazione per questi casi." #: views.py:237 #, python-format @@ -189,13 +191,11 @@ msgstr "Errore nella cancellazione dell'utente \"%(user)s\": %(error)s" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -207,7 +207,9 @@ msgstr "La password non corrisponde, riprova." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Al super utente e utente non è consentito di reimpostare la password personale, utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "" +"Al super utente e utente non è consentito di reimpostare la password " +"personale, utilizzare l'interfaccia di amministrazione per questi casi." #: views.py:319 #, python-format @@ -217,7 +219,9 @@ msgstr "Password reimpostata per l'utente: %s." #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Errore per il reimpostamento della password per l'utente \"%(user)s\": %(error)s" +msgstr "" +"Errore per il reimpostamento della password per l'utente \"%(user)s\": " +"%(error)s" #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po index 07db185dfc..0e6c1a24dc 100644 --- a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Justin Albstbstmeijer , 2016 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" +"edms/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -126,7 +127,6 @@ msgstr "Bewerk groep: %s" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Verwijder de groep: %s?" @@ -174,7 +174,9 @@ msgstr "U dient minimaal één gebruiker in te voeren." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super gebruiker en medewerker verwijderen is niet toegestaan, gebruik de admin gebruiker voor deze zaken." +msgstr "" +"Super gebruiker en medewerker verwijderen is niet toegestaan, gebruik de " +"admin gebruiker voor deze zaken." #: views.py:237 #, python-format @@ -188,13 +190,11 @@ msgstr "Fout tijdens het verwijderen van gebruiker \"%(user)s\": %(error)s" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "Verwijder de gebruiker: %s?" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "Verwijder de gebruikers: %s?" @@ -206,7 +206,9 @@ msgstr "Wachtwoord is niet het zelfde, probeer het opnieuw." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super gebruiker en medewerker wachtwoord aanpassen is niet toegestaan, gebruik de admin gebruiker voor deze zaken." +msgstr "" +"Super gebruiker en medewerker wachtwoord aanpassen is niet toegestaan, " +"gebruik de admin gebruiker voor deze zaken." #: views.py:319 #, python-format @@ -216,7 +218,9 @@ msgstr "Succesvol wachtwoord aangepast voor gebruiker: %s" #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "Fout tijdens het veranderen van het wachtwoord voor gebruiker \"%(user)s\": %(error)s" +msgstr "" +"Fout tijdens het veranderen van het wachtwoord voor gebruiker \"%(user)s\": " +"%(error)s" #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po index 2e55a19ce5..7bdc446135 100644 --- a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -10,15 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" +"pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -127,7 +129,6 @@ msgstr "Edycja grupy: %s" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -175,7 +176,9 @@ msgstr "Musi podać co najmniej jednego użytkownika." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user oraz staff user usuwanie nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." +msgstr "" +"Super user oraz staff user usuwanie nie jest możliwa , należy użyć " +"interfejsu administratora w takich przypadkach." #: views.py:237 #, python-format @@ -189,13 +192,11 @@ msgstr "Błąd podczas usuwania użytkownika \" %(user)s \": %(error)s " #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -207,7 +208,9 @@ msgstr "Hasła nie pasują, spróbuj ponownie." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." +msgstr "" +"Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu " +"administratora w takich przypadkach." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po index 8346d518ba..d649913d79 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: # Translators: # Manuela Silva , 2015 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:29 permissions.py:7 @@ -129,7 +130,6 @@ msgstr "Editar grupo: %s" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Eliminar o grupo: %s?" @@ -177,7 +177,9 @@ msgstr "Deve indicar pelo menos um utilizador." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Não é permitida a eliminação de administradores ou membros da equipa, utilize a interface de administrador para estes casos." +msgstr "" +"Não é permitida a eliminação de administradores ou membros da equipa, " +"utilize a interface de administrador para estes casos." #: views.py:237 #, python-format @@ -191,13 +193,11 @@ msgstr "Erro ao eliminar o utilizador \"%(user)s\": %(error)s " #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "Eliminar o utilizador: %s?" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "Eliminar os utilizadores: %s?" @@ -209,7 +209,9 @@ msgstr "As senhas não coincidem, tente novamente." 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:319 #, python-format diff --git a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po index 75e7ff6523..de116c4c8d 100644 --- a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2013 @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" +"edms/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:29 permissions.py:7 @@ -129,7 +130,6 @@ msgstr "Editar grupo:%s" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -177,7 +177,9 @@ msgstr "Deve fornecer pelo menos um usuário." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Excluir super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." +msgstr "" +"Excluir super usuário e usuário pessoal não é permitido, use a interface de " +"administração para esses casos." #: views.py:237 #, python-format @@ -191,13 +193,11 @@ msgstr "Erro ao excluir usuário \"%(user)s\": %(error)s " #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -209,7 +209,9 @@ msgstr "Senhas não coincidem, tente novamente." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Redefinir senha de super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." +msgstr "" +"Redefinir senha de super usuário e usuário pessoal não é permitido, use a " +"interface de administração para esses casos." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po index 4862865428..943a436c1f 100644 --- a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,15 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" +"edms/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -126,7 +128,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,7 +175,9 @@ msgstr "Trebuie să furnizeze cel puțin un utilizator." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super-utilizator și personalul ștergerea utilizator nu este permisă, utilizați interfata de administrare pentru aceste cazuri." +msgstr "" +"Super-utilizator și personalul ștergerea utilizator nu este permisă, " +"utilizați interfata de administrare pentru aceste cazuri." #: views.py:237 #, python-format @@ -188,13 +191,11 @@ msgstr "Eroare la ștergerea utilizator \"%(user)s\": %(error)s" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,7 +207,9 @@ msgstr "Parolele nu corespund, încercați din nou." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super utilizator și parola de utilizator personalul resetarea nu este permisă, utilizați interfata de administrare pentru aceste cazuri." +msgstr "" +"Super utilizator și parola de utilizator personalul resetarea nu este " +"permisă, utilizați interfata de administrare pentru aceste cazuri." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po index 0e6052eb62..792d6c36f4 100644 --- a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po @@ -1,22 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" +"language/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -125,7 +128,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -173,7 +175,9 @@ msgstr "Должен быть хотя бы один пользователь." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Удаление суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." +msgstr "" +"Удаление суперпользователя и персонала не допускается, используйте " +"интерфейс администратора для этих случаев." #: views.py:237 #, python-format @@ -187,13 +191,11 @@ msgstr "Ошибка при удалении пользователя \"%(user)s #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -205,7 +207,9 @@ msgstr "Пароли не совпадают, попробуйте еще раз msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Сброс паролей суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." +msgstr "" +"Сброс паролей суперпользователя и персонала не допускается, используйте " +"интерфейс администратора для этих случаев." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po index f5b4a128f5..7d61b8c351 100644 --- a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" +"edms/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: apps.py:29 permissions.py:7 msgid "User management" @@ -125,7 +127,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -187,13 +188,11 @@ msgstr "" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" 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 f928b0fbe8..e624d65c0b 100644 --- a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" +"mayan-edms/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:29 permissions.py:7 @@ -126,7 +127,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,7 +174,9 @@ msgstr "Cần cung cấp ít nhất một user." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user deleting is not allowed, use the admin interface " +"for these cases." #: views.py:237 #, python-format @@ -188,13 +190,11 @@ msgstr "Lỗi xóa người dùng \"%(user)s\": %(error)s" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,7 +206,9 @@ msgstr "Mật khẩu không khớp, thử lại." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." +msgstr "" +"Super user and staff user password reseting is not allowed, use the admin " +"interface for these cases." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po index 45bf6ff901..18bcbdb5df 100644 --- a/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-21 16:48-0400\n" +"POT-Creation-Date: 2016-04-27 14:16-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" +"language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:29 permissions.py:7 @@ -126,7 +127,6 @@ msgstr "" #: views.py:66 #, python-format -#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -188,13 +188,11 @@ msgstr "删除用户: \"%(user)s\": %(error)s出错。" #: views.py:255 #, python-format -#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format -#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" From 232cb5e38d47a6f4c845d03e83ecd10e8b07d8a6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Apr 2016 14:54:33 -0400 Subject: [PATCH 187/205] Synchronize and compile translations. --- .../apps/acls/locale/ar/LC_MESSAGES/django.mo | Bin 863 -> 863 bytes .../apps/acls/locale/bg/LC_MESSAGES/django.mo | Bin 759 -> 759 bytes .../acls/locale/bs_BA/LC_MESSAGES/django.mo | Bin 891 -> 891 bytes .../apps/acls/locale/da/LC_MESSAGES/django.mo | Bin 515 -> 515 bytes .../acls/locale/de_DE/LC_MESSAGES/django.mo | Bin 1745 -> 1745 bytes .../apps/acls/locale/en/LC_MESSAGES/django.mo | Bin 703 -> 703 bytes .../apps/acls/locale/es/LC_MESSAGES/django.mo | Bin 1560 -> 1560 bytes .../apps/acls/locale/fa/LC_MESSAGES/django.mo | Bin 1125 -> 1125 bytes .../apps/acls/locale/fr/LC_MESSAGES/django.mo | Bin 1710 -> 1710 bytes .../apps/acls/locale/hu/LC_MESSAGES/django.mo | Bin 520 -> 520 bytes .../apps/acls/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../apps/acls/locale/it/LC_MESSAGES/django.mo | Bin 1193 -> 1193 bytes .../acls/locale/nl_NL/LC_MESSAGES/django.mo | Bin 1740 -> 1740 bytes .../apps/acls/locale/pl/LC_MESSAGES/django.mo | Bin 1700 -> 1700 bytes .../apps/acls/locale/pt/LC_MESSAGES/django.mo | Bin 824 -> 824 bytes .../acls/locale/pt_BR/LC_MESSAGES/django.mo | Bin 1062 -> 1062 bytes .../acls/locale/ro_RO/LC_MESSAGES/django.mo | Bin 844 -> 844 bytes .../apps/acls/locale/ru/LC_MESSAGES/django.mo | Bin 1027 -> 1027 bytes .../acls/locale/sl_SI/LC_MESSAGES/django.mo | Bin 560 -> 560 bytes .../acls/locale/vi_VN/LC_MESSAGES/django.mo | Bin 528 -> 528 bytes .../acls/locale/zh_CN/LC_MESSAGES/django.mo | Bin 902 -> 902 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 2487 -> 2487 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 2240 -> 2240 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2409 -> 2409 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 688 -> 688 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4501 -> 4501 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 3866 -> 3866 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 2975 -> 2975 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 4586 -> 4586 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 754 -> 754 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 542 -> 542 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 1600 -> 1600 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 4451 -> 4451 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 4491 -> 4491 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 2104 -> 2104 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 2755 -> 2755 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2388 -> 2388 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 2900 -> 2900 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 560 -> 560 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1841 -> 1841 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2393 -> 2393 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 977 -> 977 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 808 -> 808 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 901 -> 901 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 502 -> 502 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1421 -> 1421 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1446 -> 1446 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 1201 -> 1201 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 1434 -> 1434 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 513 -> 513 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 879 -> 879 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 1114 -> 1114 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 1426 -> 1426 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 1392 -> 1392 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 919 -> 919 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1132 -> 1132 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 875 -> 875 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 998 -> 998 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 754 -> 754 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1010 -> 1010 bytes .../checkouts/locale/ar/LC_MESSAGES/django.mo | Bin 2288 -> 2288 bytes .../checkouts/locale/bg/LC_MESSAGES/django.mo | Bin 2699 -> 2699 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2261 -> 2261 bytes .../checkouts/locale/da/LC_MESSAGES/django.mo | Bin 490 -> 490 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3350 -> 3350 bytes .../checkouts/locale/en/LC_MESSAGES/django.mo | Bin 2125 -> 2125 bytes .../checkouts/locale/es/LC_MESSAGES/django.mo | Bin 3499 -> 3499 bytes .../checkouts/locale/fa/LC_MESSAGES/django.mo | Bin 3462 -> 3462 bytes .../checkouts/locale/fr/LC_MESSAGES/django.mo | Bin 3659 -> 3659 bytes .../checkouts/locale/hu/LC_MESSAGES/django.mo | Bin 500 -> 500 bytes .../checkouts/locale/id/LC_MESSAGES/django.mo | Bin 489 -> 489 bytes .../checkouts/locale/it/LC_MESSAGES/django.mo | Bin 3019 -> 3019 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 1626 -> 1626 bytes .../checkouts/locale/pl/LC_MESSAGES/django.mo | Bin 3494 -> 3494 bytes .../checkouts/locale/pt/LC_MESSAGES/django.mo | Bin 546 -> 546 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3070 -> 3070 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2272 -> 2272 bytes .../checkouts/locale/ru/LC_MESSAGES/django.mo | Bin 2766 -> 2766 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 512 -> 512 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1986 -> 1986 bytes .../common/locale/ar/LC_MESSAGES/django.mo | Bin 1240 -> 1240 bytes .../common/locale/bg/LC_MESSAGES/django.mo | Bin 1062 -> 1062 bytes .../common/locale/bs_BA/LC_MESSAGES/django.mo | Bin 1209 -> 1209 bytes .../common/locale/da/LC_MESSAGES/django.mo | Bin 674 -> 674 bytes .../common/locale/de_DE/LC_MESSAGES/django.mo | Bin 3771 -> 3771 bytes .../common/locale/en/LC_MESSAGES/django.mo | Bin 771 -> 771 bytes .../common/locale/es/LC_MESSAGES/django.mo | Bin 3267 -> 3267 bytes .../common/locale/fa/LC_MESSAGES/django.mo | Bin 2702 -> 2702 bytes .../common/locale/fr/LC_MESSAGES/django.mo | Bin 4022 -> 4022 bytes .../common/locale/hu/LC_MESSAGES/django.mo | Bin 622 -> 622 bytes .../common/locale/id/LC_MESSAGES/django.mo | Bin 1394 -> 1394 bytes .../common/locale/it/LC_MESSAGES/django.mo | Bin 2294 -> 2294 bytes .../common/locale/nl_NL/LC_MESSAGES/django.mo | Bin 1050 -> 1050 bytes .../common/locale/pl/LC_MESSAGES/django.mo | Bin 3748 -> 3748 bytes .../common/locale/pt/LC_MESSAGES/django.mo | Bin 1152 -> 1152 bytes .../common/locale/pt_BR/LC_MESSAGES/django.mo | Bin 2497 -> 2497 bytes .../common/locale/ro_RO/LC_MESSAGES/django.mo | Bin 1174 -> 1174 bytes .../common/locale/ru/LC_MESSAGES/django.mo | Bin 1940 -> 1940 bytes .../common/locale/sl_SI/LC_MESSAGES/django.mo | Bin 598 -> 598 bytes .../common/locale/vi_VN/LC_MESSAGES/django.mo | Bin 1037 -> 1037 bytes .../common/locale/zh_CN/LC_MESSAGES/django.mo | Bin 1069 -> 1069 bytes .../converter/locale/ar/LC_MESSAGES/django.mo | Bin 835 -> 835 bytes .../converter/locale/bg/LC_MESSAGES/django.mo | Bin 701 -> 701 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 828 -> 828 bytes .../converter/locale/da/LC_MESSAGES/django.mo | Bin 488 -> 488 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 2949 -> 2949 bytes .../converter/locale/en/LC_MESSAGES/django.mo | Bin 641 -> 641 bytes .../converter/locale/es/LC_MESSAGES/django.mo | Bin 1766 -> 1766 bytes .../converter/locale/fa/LC_MESSAGES/django.mo | Bin 1250 -> 1250 bytes .../converter/locale/fr/LC_MESSAGES/django.mo | Bin 3092 -> 3092 bytes .../converter/locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../converter/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../converter/locale/it/LC_MESSAGES/django.mo | Bin 1117 -> 1117 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 791 -> 791 bytes .../converter/locale/pl/LC_MESSAGES/django.mo | Bin 3021 -> 3021 bytes .../converter/locale/pt/LC_MESSAGES/django.mo | Bin 753 -> 753 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1237 -> 1237 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 780 -> 780 bytes .../converter/locale/ru/LC_MESSAGES/django.mo | Bin 974 -> 974 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 559 -> 559 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 529 -> 529 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 686 -> 686 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 2359 -> 2167 bytes .../locale/ar/LC_MESSAGES/django.po | 50 ++-- .../locale/bg/LC_MESSAGES/django.mo | Bin 2994 -> 2670 bytes .../locale/bg/LC_MESSAGES/django.po | 55 ++-- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2438 -> 2230 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 62 +++-- .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 552 bytes .../locale/da/LC_MESSAGES/django.po | 55 +++- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3858 -> 3200 bytes .../locale/de_DE/LC_MESSAGES/django.po | 74 +++-- .../locale/en/LC_MESSAGES/django.mo | Bin 2197 -> 1919 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 2972 -> 2758 bytes .../locale/es/LC_MESSAGES/django.po | 67 ++--- .../locale/fa/LC_MESSAGES/django.mo | Bin 3255 -> 3015 bytes .../locale/fa/LC_MESSAGES/django.po | 57 ++-- .../locale/fr/LC_MESSAGES/django.mo | Bin 3811 -> 3165 bytes .../locale/fr/LC_MESSAGES/django.po | 74 +++-- .../locale/hu/LC_MESSAGES/django.mo | Bin 497 -> 603 bytes .../locale/hu/LC_MESSAGES/django.po | 55 +++- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 521 bytes .../locale/id/LC_MESSAGES/django.po | 53 +++- .../locale/it/LC_MESSAGES/django.mo | Bin 2874 -> 2661 bytes .../locale/it/LC_MESSAGES/django.po | 63 +++-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 575 -> 659 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 59 ++-- .../locale/pl/LC_MESSAGES/django.mo | Bin 2833 -> 2635 bytes .../locale/pl/LC_MESSAGES/django.po | 63 +++-- .../locale/pt/LC_MESSAGES/django.mo | Bin 2495 -> 2312 bytes .../locale/pt/LC_MESSAGES/django.po | 60 +++-- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1980 -> 1885 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 53 ++-- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2498 -> 2324 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 71 ++--- .../locale/ru/LC_MESSAGES/django.mo | Bin 2997 -> 3235 bytes .../locale/ru/LC_MESSAGES/django.po | 81 +++--- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 628 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 58 ++-- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 2308 -> 2096 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 52 ++-- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2193 -> 2038 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 56 ++-- .../locale/ar/LC_MESSAGES/django.mo | Bin 995 -> 995 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 998 -> 998 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 958 -> 958 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 850 -> 850 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1434 -> 1434 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 743 -> 743 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1438 -> 1438 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 1181 -> 1181 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 1528 -> 1528 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 855 -> 855 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 840 -> 840 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 1051 -> 1051 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 930 -> 930 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 1527 -> 1527 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 906 -> 906 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1157 -> 1157 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 922 -> 922 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 1141 -> 1141 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 860 -> 860 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 881 -> 881 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 829 -> 829 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 2042 -> 2042 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 1487 -> 1487 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2100 -> 2100 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 727 -> 727 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4913 -> 4913 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 1731 -> 1731 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 3700 -> 3700 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 4050 -> 4050 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 5155 -> 5155 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 727 -> 727 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 714 -> 714 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 3718 -> 3718 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 2001 -> 2001 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 2785 -> 2785 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 2152 -> 2152 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3643 -> 3643 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2142 -> 2142 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 2662 -> 2662 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 806 -> 806 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 670 -> 670 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1791 -> 1791 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 1266 -> 1061 bytes .../locale/ar/LC_MESSAGES/django.po | 127 ++++----- .../locale/bg/LC_MESSAGES/django.mo | Bin 1885 -> 1319 bytes .../locale/bg/LC_MESSAGES/django.po | 123 ++++----- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1303 -> 1081 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 131 ++++----- .../locale/da/LC_MESSAGES/django.mo | Bin 489 -> 749 bytes .../locale/da/LC_MESSAGES/django.po | 74 +++-- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 2602 -> 1591 bytes .../locale/de_DE/LC_MESSAGES/django.po | 151 ++++------- .../locale/en/LC_MESSAGES/django.mo | Bin 1153 -> 637 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 2423 -> 1554 bytes .../locale/es/LC_MESSAGES/django.po | 149 ++++------ .../locale/fa/LC_MESSAGES/django.mo | Bin 2546 -> 1628 bytes .../locale/fa/LC_MESSAGES/django.po | 150 ++++------- .../locale/fr/LC_MESSAGES/django.mo | Bin 2637 -> 1595 bytes .../locale/fr/LC_MESSAGES/django.po | 151 ++++------- .../locale/hu/LC_MESSAGES/django.mo | Bin 492 -> 713 bytes .../locale/hu/LC_MESSAGES/django.po | 72 +++-- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 696 bytes .../locale/id/LC_MESSAGES/django.po | 72 +++-- .../locale/it/LC_MESSAGES/django.mo | Bin 2334 -> 1537 bytes .../locale/it/LC_MESSAGES/django.po | 148 ++++------ .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 507 -> 766 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 74 +++-- .../locale/pl/LC_MESSAGES/django.mo | Bin 1292 -> 1134 bytes .../locale/pl/LC_MESSAGES/django.po | 131 ++++----- .../locale/pt/LC_MESSAGES/django.mo | Bin 1272 -> 1087 bytes .../locale/pt/LC_MESSAGES/django.po | 127 ++++----- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 2438 -> 1597 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 146 ++++------ .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 1271 -> 1179 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 137 ++++------ .../locale/ru/LC_MESSAGES/django.mo | Bin 1897 -> 1493 bytes .../locale/ru/LC_MESSAGES/django.po | 131 ++++----- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 560 -> 792 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 75 ++++-- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1222 -> 804 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 124 ++++----- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1415 -> 1016 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 126 ++++----- .../locale/ar/LC_MESSAGES/django.mo | Bin 737 -> 737 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 686 -> 686 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 746 -> 746 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 551 -> 551 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4181 -> 4181 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 3661 -> 3661 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 3882 -> 3882 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 4591 -> 4591 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 563 -> 563 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 522 -> 522 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 855 -> 855 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 726 -> 726 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 2483 -> 2483 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 705 -> 705 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3483 -> 3483 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 708 -> 708 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 847 -> 847 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 593 -> 593 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 609 -> 609 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 592 -> 592 bytes .../documents/locale/ar/LC_MESSAGES/django.mo | Bin 5721 -> 5721 bytes .../documents/locale/ar/LC_MESSAGES/django.po | 160 ++++++----- .../documents/locale/bg/LC_MESSAGES/django.mo | Bin 6745 -> 6745 bytes .../documents/locale/bg/LC_MESSAGES/django.po | 191 +++++++------ .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 5160 -> 5160 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 176 ++++++------ .../documents/locale/da/LC_MESSAGES/django.mo | Bin 4944 -> 4944 bytes .../documents/locale/da/LC_MESSAGES/django.po | 177 ++++++------ .../locale/de_DE/LC_MESSAGES/django.mo | Bin 15334 -> 15926 bytes .../locale/de_DE/LC_MESSAGES/django.po | 224 +++++++-------- .../documents/locale/en/LC_MESSAGES/django.mo | Bin 4825 -> 4825 bytes .../documents/locale/es/LC_MESSAGES/django.mo | Bin 13236 -> 13236 bytes .../documents/locale/es/LC_MESSAGES/django.po | 201 +++++++------- .../documents/locale/fa/LC_MESSAGES/django.mo | Bin 9226 -> 9226 bytes .../documents/locale/fa/LC_MESSAGES/django.po | 170 ++++++------ .../documents/locale/fr/LC_MESSAGES/django.mo | Bin 16227 -> 16692 bytes .../documents/locale/fr/LC_MESSAGES/django.po | 254 ++++++++---------- .../documents/locale/hu/LC_MESSAGES/django.mo | Bin 5183 -> 5183 bytes .../documents/locale/hu/LC_MESSAGES/django.po | 185 ++++++------- .../documents/locale/id/LC_MESSAGES/django.mo | Bin 4843 -> 4843 bytes .../documents/locale/id/LC_MESSAGES/django.po | 190 +++++++------ .../documents/locale/it/LC_MESSAGES/django.mo | Bin 8615 -> 8682 bytes .../documents/locale/it/LC_MESSAGES/django.po | 187 +++++++------ .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 5366 -> 5366 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 181 +++++++------ .../documents/locale/pl/LC_MESSAGES/django.mo | Bin 6102 -> 7710 bytes .../documents/locale/pl/LC_MESSAGES/django.po | 199 +++++++------- .../documents/locale/pt/LC_MESSAGES/django.mo | Bin 5041 -> 5041 bytes .../documents/locale/pt/LC_MESSAGES/django.po | 183 ++++++------- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 8574 -> 8574 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 187 +++++++------ .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 5203 -> 5672 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 212 +++++++-------- .../documents/locale/ru/LC_MESSAGES/django.mo | Bin 6629 -> 6695 bytes .../documents/locale/ru/LC_MESSAGES/django.po | 179 ++++++------ .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 4983 -> 4983 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 188 ++++++------- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 2980 -> 2980 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 165 ++++++------ .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 4579 -> 4579 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 155 ++++++----- .../locale/ar/LC_MESSAGES/django.mo | Bin 1034 -> 1034 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 1026 -> 1026 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1019 -> 1019 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 490 -> 490 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1353 -> 1353 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 847 -> 847 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1374 -> 1374 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 1385 -> 1385 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 1409 -> 1409 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 937 -> 937 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 489 -> 489 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 929 -> 929 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 891 -> 891 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 1448 -> 1448 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 948 -> 948 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1320 -> 1320 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 958 -> 958 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 1252 -> 1252 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 747 -> 747 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 854 -> 854 bytes .../events/locale/ar/LC_MESSAGES/django.mo | Bin 621 -> 621 bytes .../events/locale/bg/LC_MESSAGES/django.mo | Bin 561 -> 561 bytes .../events/locale/bs_BA/LC_MESSAGES/django.mo | Bin 644 -> 644 bytes .../events/locale/da/LC_MESSAGES/django.mo | Bin 540 -> 540 bytes .../events/locale/de_DE/LC_MESSAGES/django.mo | Bin 1096 -> 1096 bytes .../events/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../events/locale/es/LC_MESSAGES/django.mo | Bin 1066 -> 1066 bytes .../events/locale/fa/LC_MESSAGES/django.mo | Bin 1112 -> 1112 bytes .../events/locale/fr/LC_MESSAGES/django.mo | Bin 1117 -> 1117 bytes .../events/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../events/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../events/locale/it/LC_MESSAGES/django.mo | Bin 613 -> 613 bytes .../events/locale/nl_NL/LC_MESSAGES/django.mo | Bin 517 -> 517 bytes .../events/locale/pl/LC_MESSAGES/django.mo | Bin 1118 -> 1118 bytes .../events/locale/pt/LC_MESSAGES/django.mo | Bin 1031 -> 1031 bytes .../events/locale/pt_BR/LC_MESSAGES/django.mo | Bin 1072 -> 1072 bytes .../events/locale/ro_RO/LC_MESSAGES/django.mo | Bin 598 -> 598 bytes .../events/locale/ru/LC_MESSAGES/django.mo | Bin 688 -> 688 bytes .../events/locale/sl_SI/LC_MESSAGES/django.mo | Bin 569 -> 569 bytes .../events/locale/vi_VN/LC_MESSAGES/django.mo | Bin 558 -> 558 bytes .../events/locale/zh_CN/LC_MESSAGES/django.mo | Bin 548 -> 548 bytes .../folders/locale/ar/LC_MESSAGES/django.mo | Bin 1598 -> 1598 bytes .../folders/locale/bg/LC_MESSAGES/django.mo | Bin 1617 -> 1617 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1472 -> 1472 bytes .../folders/locale/da/LC_MESSAGES/django.mo | Bin 1326 -> 1326 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 2994 -> 2994 bytes .../folders/locale/en/LC_MESSAGES/django.mo | Bin 1297 -> 1297 bytes .../folders/locale/es/LC_MESSAGES/django.mo | Bin 2624 -> 2624 bytes .../folders/locale/fa/LC_MESSAGES/django.mo | Bin 2305 -> 2305 bytes .../folders/locale/fr/LC_MESSAGES/django.mo | Bin 3146 -> 3146 bytes .../folders/locale/hu/LC_MESSAGES/django.mo | Bin 1400 -> 1400 bytes .../folders/locale/id/LC_MESSAGES/django.mo | Bin 706 -> 706 bytes .../folders/locale/it/LC_MESSAGES/django.mo | Bin 1486 -> 1486 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 858 -> 858 bytes .../folders/locale/pl/LC_MESSAGES/django.mo | Bin 2955 -> 2955 bytes .../folders/locale/pt/LC_MESSAGES/django.mo | Bin 1466 -> 1466 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1998 -> 1998 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 1473 -> 1473 bytes .../folders/locale/ru/LC_MESSAGES/django.mo | Bin 1725 -> 1725 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 770 -> 770 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1480 -> 1480 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1326 -> 1326 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 759 -> 759 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 750 -> 750 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 764 -> 764 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 624 -> 624 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1135 -> 1135 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 599 -> 599 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1121 -> 1121 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 1101 -> 1101 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 1128 -> 1128 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 500 -> 500 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 490 -> 490 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 596 -> 596 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 514 -> 514 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 1202 -> 1202 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 865 -> 865 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1124 -> 1124 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 719 -> 719 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 840 -> 840 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 544 -> 544 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 757 -> 757 bytes .../linking/locale/ar/LC_MESSAGES/django.mo | Bin 2695 -> 2695 bytes .../linking/locale/bg/LC_MESSAGES/django.mo | Bin 1692 -> 1692 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2630 -> 2630 bytes .../linking/locale/da/LC_MESSAGES/django.mo | Bin 499 -> 499 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4921 -> 4921 bytes .../linking/locale/en/LC_MESSAGES/django.mo | Bin 2371 -> 2371 bytes .../linking/locale/es/LC_MESSAGES/django.mo | Bin 3962 -> 3962 bytes .../linking/locale/fa/LC_MESSAGES/django.mo | Bin 4174 -> 4174 bytes .../linking/locale/fr/LC_MESSAGES/django.mo | Bin 5080 -> 5080 bytes .../linking/locale/hu/LC_MESSAGES/django.mo | Bin 504 -> 504 bytes .../linking/locale/id/LC_MESSAGES/django.mo | Bin 493 -> 493 bytes .../linking/locale/it/LC_MESSAGES/django.mo | Bin 2755 -> 2755 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 2727 -> 2727 bytes .../linking/locale/pl/LC_MESSAGES/django.mo | Bin 4878 -> 4878 bytes .../linking/locale/pt/LC_MESSAGES/django.mo | Bin 2762 -> 2762 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3925 -> 3925 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2745 -> 2745 bytes .../linking/locale/ru/LC_MESSAGES/django.mo | Bin 3207 -> 3207 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1916 -> 1916 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2299 -> 2299 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 583 -> 583 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 503 -> 503 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 603 -> 603 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 498 -> 498 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 732 -> 732 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 729 -> 729 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 767 -> 767 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 500 -> 500 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 517 -> 517 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 557 -> 557 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 502 -> 502 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 548 -> 548 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 557 -> 557 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 639 -> 639 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 569 -> 569 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 512 -> 512 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 508 -> 508 bytes .../mailer/locale/ar/LC_MESSAGES/django.mo | Bin 673 -> 673 bytes .../mailer/locale/bg/LC_MESSAGES/django.mo | Bin 1492 -> 1492 bytes .../mailer/locale/bs_BA/LC_MESSAGES/django.mo | Bin 662 -> 662 bytes .../mailer/locale/da/LC_MESSAGES/django.mo | Bin 557 -> 557 bytes .../mailer/locale/de_DE/LC_MESSAGES/django.mo | Bin 3231 -> 3231 bytes .../mailer/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../mailer/locale/es/LC_MESSAGES/django.mo | Bin 2539 -> 2539 bytes .../mailer/locale/fa/LC_MESSAGES/django.mo | Bin 2490 -> 2490 bytes .../mailer/locale/fr/LC_MESSAGES/django.mo | Bin 3296 -> 3296 bytes .../mailer/locale/hu/LC_MESSAGES/django.mo | Bin 565 -> 565 bytes .../mailer/locale/id/LC_MESSAGES/django.mo | Bin 603 -> 603 bytes .../mailer/locale/it/LC_MESSAGES/django.mo | Bin 635 -> 635 bytes .../mailer/locale/nl_NL/LC_MESSAGES/django.mo | Bin 625 -> 625 bytes .../mailer/locale/pl/LC_MESSAGES/django.mo | Bin 2313 -> 2313 bytes .../mailer/locale/pt/LC_MESSAGES/django.mo | Bin 1400 -> 1400 bytes .../mailer/locale/pt_BR/LC_MESSAGES/django.mo | Bin 2308 -> 2308 bytes .../mailer/locale/ro_RO/LC_MESSAGES/django.mo | Bin 624 -> 624 bytes .../mailer/locale/ru/LC_MESSAGES/django.mo | Bin 793 -> 793 bytes .../mailer/locale/sl_SI/LC_MESSAGES/django.mo | Bin 632 -> 632 bytes .../mailer/locale/vi_VN/LC_MESSAGES/django.mo | Bin 585 -> 585 bytes .../mailer/locale/zh_CN/LC_MESSAGES/django.mo | Bin 557 -> 557 bytes .../metadata/locale/ar/LC_MESSAGES/django.mo | Bin 2824 -> 2824 bytes .../metadata/locale/bg/LC_MESSAGES/django.mo | Bin 1049 -> 1049 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2322 -> 2322 bytes .../metadata/locale/da/LC_MESSAGES/django.mo | Bin 1091 -> 1091 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 8507 -> 8507 bytes .../metadata/locale/en/LC_MESSAGES/django.mo | Bin 2011 -> 2011 bytes .../metadata/locale/es/LC_MESSAGES/django.mo | Bin 6270 -> 6270 bytes .../metadata/locale/fa/LC_MESSAGES/django.mo | Bin 6643 -> 6643 bytes .../metadata/locale/fr/LC_MESSAGES/django.mo | Bin 9170 -> 9170 bytes .../metadata/locale/hu/LC_MESSAGES/django.mo | Bin 705 -> 705 bytes .../metadata/locale/id/LC_MESSAGES/django.mo | Bin 745 -> 745 bytes .../metadata/locale/it/LC_MESSAGES/django.mo | Bin 2435 -> 2435 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 952 -> 952 bytes .../metadata/locale/pl/LC_MESSAGES/django.mo | Bin 5693 -> 5693 bytes .../metadata/locale/pt/LC_MESSAGES/django.mo | Bin 2391 -> 2391 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 5426 -> 5426 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2393 -> 2393 bytes .../metadata/locale/ru/LC_MESSAGES/django.mo | Bin 2949 -> 2949 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 815 -> 815 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1847 -> 1847 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2114 -> 2114 bytes .../mirroring/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 547 bytes .../mirroring/locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../mirroring/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 464 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 861 -> 861 bytes .../mirroring/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../mirroring/locale/es/LC_MESSAGES/django.mo | Bin 872 -> 872 bytes .../mirroring/locale/fa/LC_MESSAGES/django.mo | Bin 458 -> 458 bytes .../mirroring/locale/fr/LC_MESSAGES/django.mo | Bin 837 -> 837 bytes .../mirroring/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../mirroring/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../mirroring/locale/it/LC_MESSAGES/django.mo | Bin 528 -> 528 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 483 bytes .../mirroring/locale/pl/LC_MESSAGES/django.mo | Bin 522 -> 522 bytes .../mirroring/locale/pt/LC_MESSAGES/django.mo | Bin 468 -> 468 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 482 -> 482 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 523 bytes .../mirroring/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 603 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 478 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 472 bytes .../apps/motd/locale/ar/LC_MESSAGES/django.mo | Bin 620 -> 620 bytes .../apps/motd/locale/bg/LC_MESSAGES/django.mo | Bin 549 -> 549 bytes .../motd/locale/bs_BA/LC_MESSAGES/django.mo | Bin 636 -> 636 bytes .../apps/motd/locale/da/LC_MESSAGES/django.mo | Bin 499 -> 499 bytes .../motd/locale/de_DE/LC_MESSAGES/django.mo | Bin 704 -> 704 bytes .../apps/motd/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../apps/motd/locale/es/LC_MESSAGES/django.mo | Bin 1806 -> 1806 bytes .../apps/motd/locale/fa/LC_MESSAGES/django.mo | Bin 664 -> 664 bytes .../apps/motd/locale/fr/LC_MESSAGES/django.mo | Bin 680 -> 680 bytes .../apps/motd/locale/hu/LC_MESSAGES/django.mo | Bin 502 -> 502 bytes .../apps/motd/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../apps/motd/locale/it/LC_MESSAGES/django.mo | Bin 655 -> 655 bytes .../motd/locale/nl_NL/LC_MESSAGES/django.mo | Bin 625 -> 625 bytes .../apps/motd/locale/pl/LC_MESSAGES/django.mo | Bin 703 -> 703 bytes .../apps/motd/locale/pt/LC_MESSAGES/django.mo | Bin 599 -> 599 bytes .../motd/locale/pt_BR/LC_MESSAGES/django.mo | Bin 664 -> 664 bytes .../motd/locale/ro_RO/LC_MESSAGES/django.mo | Bin 593 -> 593 bytes .../apps/motd/locale/ru/LC_MESSAGES/django.mo | Bin 735 -> 735 bytes .../motd/locale/sl_SI/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../motd/locale/vi_VN/LC_MESSAGES/django.mo | Bin 539 -> 539 bytes .../motd/locale/zh_CN/LC_MESSAGES/django.mo | Bin 505 -> 505 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 537 -> 537 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 560 -> 560 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 454 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 549 -> 549 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 535 -> 535 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 493 -> 493 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 493 -> 493 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 455 -> 455 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 473 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 550 -> 550 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 458 -> 458 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 512 -> 512 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 513 -> 513 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 593 -> 593 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 468 -> 468 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 462 -> 462 bytes .../apps/ocr/locale/ar/LC_MESSAGES/django.mo | Bin 1312 -> 1312 bytes .../apps/ocr/locale/bg/LC_MESSAGES/django.mo | Bin 992 -> 992 bytes .../ocr/locale/bs_BA/LC_MESSAGES/django.mo | Bin 1324 -> 1324 bytes .../apps/ocr/locale/da/LC_MESSAGES/django.mo | Bin 1218 -> 1218 bytes .../ocr/locale/de_DE/LC_MESSAGES/django.mo | Bin 3800 -> 3800 bytes .../apps/ocr/locale/en/LC_MESSAGES/django.mo | Bin 857 -> 857 bytes .../apps/ocr/locale/es/LC_MESSAGES/django.mo | Bin 2891 -> 2891 bytes .../apps/ocr/locale/fa/LC_MESSAGES/django.mo | Bin 2075 -> 2075 bytes .../apps/ocr/locale/fr/LC_MESSAGES/django.mo | Bin 3888 -> 3888 bytes .../apps/ocr/locale/hu/LC_MESSAGES/django.mo | Bin 710 -> 710 bytes .../apps/ocr/locale/id/LC_MESSAGES/django.mo | Bin 690 -> 690 bytes .../apps/ocr/locale/it/LC_MESSAGES/django.mo | Bin 1069 -> 1069 bytes .../ocr/locale/nl_NL/LC_MESSAGES/django.mo | Bin 1048 -> 1048 bytes .../apps/ocr/locale/pl/LC_MESSAGES/django.mo | Bin 1744 -> 1744 bytes .../apps/ocr/locale/pt/LC_MESSAGES/django.mo | Bin 1182 -> 1182 bytes .../ocr/locale/pt_BR/LC_MESSAGES/django.mo | Bin 2124 -> 2124 bytes .../ocr/locale/ro_RO/LC_MESSAGES/django.mo | Bin 1306 -> 1306 bytes .../apps/ocr/locale/ru/LC_MESSAGES/django.mo | Bin 1593 -> 1593 bytes .../ocr/locale/sl_SI/LC_MESSAGES/django.mo | Bin 773 -> 773 bytes .../ocr/locale/vi_VN/LC_MESSAGES/django.mo | Bin 766 -> 766 bytes .../ocr/locale/zh_CN/LC_MESSAGES/django.mo | Bin 1308 -> 1308 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 1254 -> 1254 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 1300 -> 1300 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1171 -> 1171 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 488 -> 488 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1878 -> 1878 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 975 -> 975 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1679 -> 1679 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 1487 -> 1487 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 1877 -> 1877 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 1871 -> 1871 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 1513 -> 1513 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 1188 -> 1188 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 1280 -> 1280 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1453 -> 1453 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 1157 -> 1157 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 1416 -> 1416 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 559 -> 559 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 710 -> 710 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1074 -> 1074 bytes .../rest_api/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 547 bytes .../rest_api/locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../rest_api/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 464 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 582 -> 582 bytes .../rest_api/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../rest_api/locale/es/LC_MESSAGES/django.mo | Bin 556 -> 556 bytes .../rest_api/locale/fa/LC_MESSAGES/django.mo | Bin 510 -> 510 bytes .../rest_api/locale/fr/LC_MESSAGES/django.mo | Bin 586 -> 586 bytes .../rest_api/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../rest_api/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../rest_api/locale/it/LC_MESSAGES/django.mo | Bin 578 -> 578 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 483 bytes .../rest_api/locale/pl/LC_MESSAGES/django.mo | Bin 554 -> 554 bytes .../rest_api/locale/pt/LC_MESSAGES/django.mo | Bin 520 -> 520 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 514 -> 514 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 523 bytes .../rest_api/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 603 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 478 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 472 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 604 -> 604 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 532 -> 532 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 626 -> 626 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 488 -> 488 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1054 -> 1054 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 968 -> 968 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 557 -> 557 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 1095 -> 1095 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 519 -> 519 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 507 -> 507 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 1141 -> 1141 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 520 -> 520 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 572 -> 572 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 577 -> 577 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 668 -> 668 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 559 -> 559 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 535 -> 535 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 524 -> 524 bytes .../sources/locale/ar/LC_MESSAGES/django.mo | Bin 2591 -> 2591 bytes .../sources/locale/bg/LC_MESSAGES/django.mo | Bin 1571 -> 1571 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2375 -> 2375 bytes .../sources/locale/da/LC_MESSAGES/django.mo | Bin 2148 -> 2148 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 7590 -> 7590 bytes .../sources/locale/en/LC_MESSAGES/django.mo | Bin 2019 -> 2019 bytes .../sources/locale/es/LC_MESSAGES/django.mo | Bin 7371 -> 7371 bytes .../sources/locale/fa/LC_MESSAGES/django.mo | Bin 7372 -> 7372 bytes .../sources/locale/fr/LC_MESSAGES/django.mo | Bin 8366 -> 8366 bytes .../sources/locale/hu/LC_MESSAGES/django.mo | Bin 1472 -> 1472 bytes .../sources/locale/id/LC_MESSAGES/django.mo | Bin 1808 -> 1808 bytes .../sources/locale/it/LC_MESSAGES/django.mo | Bin 2591 -> 2591 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 3127 -> 3127 bytes .../sources/locale/pl/LC_MESSAGES/django.mo | Bin 1317 -> 1317 bytes .../sources/locale/pt/LC_MESSAGES/django.mo | Bin 2494 -> 2494 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 6087 -> 6087 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2378 -> 2378 bytes .../sources/locale/ru/LC_MESSAGES/django.mo | Bin 3660 -> 3660 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 653 -> 653 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1632 -> 1632 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2107 -> 2107 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 589 -> 589 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 513 -> 513 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 606 -> 606 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 499 -> 499 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1503 -> 1503 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 1544 -> 1544 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 842 -> 842 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 1608 -> 1608 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 504 -> 504 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 546 -> 546 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 1500 -> 1500 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 559 -> 559 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 1585 -> 1585 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 1089 -> 1089 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 849 -> 849 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 560 -> 560 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 698 -> 698 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 515 -> 515 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 504 -> 504 bytes .../storage/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 547 bytes .../storage/locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../storage/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 464 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 534 -> 534 bytes .../storage/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../storage/locale/es/LC_MESSAGES/django.mo | Bin 502 -> 502 bytes .../storage/locale/fa/LC_MESSAGES/django.mo | Bin 458 -> 458 bytes .../storage/locale/fr/LC_MESSAGES/django.mo | Bin 528 -> 528 bytes .../storage/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../storage/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../storage/locale/it/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 483 bytes .../storage/locale/pl/LC_MESSAGES/django.mo | Bin 522 -> 522 bytes .../storage/locale/pt/LC_MESSAGES/django.mo | Bin 533 -> 533 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 482 -> 482 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 523 bytes .../storage/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 603 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 478 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 472 bytes .../apps/tags/locale/ar/LC_MESSAGES/django.mo | Bin 2952 -> 2952 bytes .../apps/tags/locale/bg/LC_MESSAGES/django.mo | Bin 1763 -> 1763 bytes .../tags/locale/bs_BA/LC_MESSAGES/django.mo | Bin 2343 -> 2343 bytes .../apps/tags/locale/da/LC_MESSAGES/django.mo | Bin 2159 -> 2159 bytes .../tags/locale/de_DE/LC_MESSAGES/django.mo | Bin 3906 -> 3906 bytes .../apps/tags/locale/en/LC_MESSAGES/django.mo | Bin 2129 -> 2129 bytes .../apps/tags/locale/es/LC_MESSAGES/django.mo | Bin 3999 -> 3999 bytes .../apps/tags/locale/fa/LC_MESSAGES/django.mo | Bin 3274 -> 3274 bytes .../apps/tags/locale/fr/LC_MESSAGES/django.mo | Bin 4217 -> 4217 bytes .../apps/tags/locale/hu/LC_MESSAGES/django.mo | Bin 624 -> 624 bytes .../apps/tags/locale/id/LC_MESSAGES/django.mo | Bin 587 -> 587 bytes .../apps/tags/locale/it/LC_MESSAGES/django.mo | Bin 3742 -> 3742 bytes .../tags/locale/nl_NL/LC_MESSAGES/django.mo | Bin 2357 -> 2357 bytes .../apps/tags/locale/pl/LC_MESSAGES/django.mo | Bin 3022 -> 3022 bytes .../apps/tags/locale/pt/LC_MESSAGES/django.mo | Bin 1532 -> 1532 bytes .../tags/locale/pt_BR/LC_MESSAGES/django.mo | Bin 2659 -> 2659 bytes .../tags/locale/ro_RO/LC_MESSAGES/django.mo | Bin 2432 -> 2432 bytes .../apps/tags/locale/ru/LC_MESSAGES/django.mo | Bin 2707 -> 2707 bytes .../tags/locale/sl_SI/LC_MESSAGES/django.mo | Bin 862 -> 862 bytes .../tags/locale/vi_VN/LC_MESSAGES/django.mo | Bin 2306 -> 2306 bytes .../tags/locale/zh_CN/LC_MESSAGES/django.mo | Bin 2096 -> 2096 bytes .../locale/ar/LC_MESSAGES/django.mo | Bin 3112 -> 3112 bytes .../locale/bg/LC_MESSAGES/django.mo | Bin 3579 -> 3579 bytes .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2765 -> 2765 bytes .../locale/da/LC_MESSAGES/django.mo | Bin 2487 -> 2487 bytes .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3785 -> 3785 bytes .../locale/en/LC_MESSAGES/django.mo | Bin 2387 -> 2387 bytes .../locale/es/LC_MESSAGES/django.mo | Bin 3872 -> 3872 bytes .../locale/fa/LC_MESSAGES/django.mo | Bin 3524 -> 3524 bytes .../locale/fr/LC_MESSAGES/django.mo | Bin 4169 -> 4169 bytes .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/id/LC_MESSAGES/django.mo | Bin 487 -> 487 bytes .../locale/it/LC_MESSAGES/django.mo | Bin 2813 -> 2813 bytes .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 3909 -> 3909 bytes .../locale/pl/LC_MESSAGES/django.mo | Bin 3453 -> 3453 bytes .../locale/pt/LC_MESSAGES/django.mo | Bin 3751 -> 3751 bytes .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3306 -> 3306 bytes .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2833 -> 2833 bytes .../locale/ru/LC_MESSAGES/django.mo | Bin 3571 -> 3571 bytes .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 2514 -> 2514 bytes .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2391 -> 2391 bytes 732 files changed, 3615 insertions(+), 3786 deletions(-) diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.mo index 78981340026494ac262cdd781348ef0f0ce6cf60..a4b8f27cb2fa6599937115aa0a0831c4f7d43b45 100644 GIT binary patch delta 43 zcmcc5cAsrS4kMR|u93Ndp^24&<>WHPg*-lqdFiEz>8Vx8Vx3g delta 42 ycmey)`ki%y1>@udMpjlsGbE^`;0_=F diff --git a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.mo index 24ed42faa45495f441b48529a56327d92b3d9b75..e603ae40a434f7662e79610eeae4d4473140ad78 100644 GIT binary patch delta 46 zcmey(_M2@(4kMR|u93Ndp^24&<>WHPef&O&dFiEz>8VxX=a(Qi_1jU$XvnD#LB>O;*o_sK8bnhrHSdORthPJlT#R@C!b+72LKMy4TJyy delta 41 xcmZo>X=a(Qi_2Ko$WX!1%*w=Y;*o`uix{JLd=m50OB2&mtrSucC!c1t000im4Tt~$ diff --git a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.mo index 776125a3dcafca621c28ea2e9b64974d0b43a18a..eab90faf66a8c812ba3b99c4d61b7c9e84e5f1df 100644 GIT binary patch delta 47 zcmcb}dy#iT6El~Iu93Ndp^24&<>Vgb1N=UTdFiEz>8VxXxEMLa%8Vx8VxVgb!#qBTdFiEz>8Vxh($ delta 44 zcmZ3-yN-856El~wu92aFp_!G5;p86X!;@oJqIi4~^U_Nb(^IV!(uy{3W%0p_#i_1jU$XvnD#LB>O;*ljhK8bnhrHSdORtg!VlhYZaC!c4u1OO4A4Y2?K delta 41 xcmeBR>0p_#i_2Ko$WX!1%*w=Y;*lkjOBthhd=m50OB2&mtrRj!C!b@q0ss+V4YdFO diff --git a/mayan/apps/acls/locale/id/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/id/LC_MESSAGES/django.mo index f1244c3becb7eb6f6ffc3af413a9ff8ed843fec8..cafa4fd8bfef51e93b4236710d2134d2f672cf77 100644 GIT binary patch delta 21 ccmX@ie3*Gc2bYPik-37QiIsun#z}^Z07%3J761SM delta 21 ccmX@ie3*Gc2bZy~k)eX2nU#s*#z}^Z07!HO4FCWD diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/it/LC_MESSAGES/django.mo index 54fe717b2b6aec6801e1b60aad21f85beef696b8..2f2547059d2ad9eb774ac78e3ad8d8c5646e49a7 100644 GIT binary patch delta 44 zcmZ3XeTMLa%8VxrMF-tQ704Grm AC;$Ke delta 42 ycmZ3Vgb^ZY)EdFiEz>8VxJb& delta 47 zcmX@Zdxm#I6El~wu92aFp_!G5;p86X^OLh#qWFCh^U_Nb(^IV!@^a$+d^R6p;a~y) DX#Ecj diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.mo index 2f02c67f35dac7114fa26fd5d3160a6e7d71d0a1..a448871dc60aa312ab2769dc73a14013ba5dc307 100644 GIT binary patch delta 44 zcmZ3&yM%W`6El~Iu93Ndp^24&<>VgbLp(l-dFiEz>8Vx<1v!&_S)w;@WqHpC054Py Ac>n+a delta 44 zcmZ3&yM%W`6El~wu92aFp_!G5;p86XLzAOfqIi4~^U_Nb(^IV!3UW4YVfnxa04?ec AeEaZ1OL=?}^U_Nb(^IV!3Q8thGDS~b$TS@QBK-~L delta 42 ycmdnNwu5a$HzSv^u92aFp_!G5;pC}|ODDTCMREHi=B1Y=rl(pd6ilAaG!p<4Q4Mwg diff --git a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.mo index 5b9f5e3691a557818352832b4ec86419ed3873fb..89de4968eab061b8ecf1db1e7102c7d53539a5c7 100644 GIT binary patch delta 46 zcmZ3+v5aGbBomj3u93Ndp^24&8Vx<1tsxLL6a{tMNhV4egOb3 Cg${54 delta 46 zcmZ3+v5aGbBomjhu92aFp_!G5;bdi|jgy}+Me+M2=B1Y=rl(pd6qLj}1x>bPehC0I CZ4P$; diff --git a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo index cfd9bb8bf3f933df2c0b9a914fea7d8b2f41e7e8..c67de251f2a548274b3d00d4948168a9e6106499 100644 GIT binary patch delta 46 zcmX@Zc7|<34kMR|u93Ndp^24&<>WHP4g5ZddFiEz>8Vx5>f diff --git a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.mo index 0cea19c18cb11a843931f1e29c6a9744032c5cfe..9d3dbeb766c45e89365f9a1dd1bb6d8eba20b919 100644 GIT binary patch delta 44 zcmdnMvVmp7QZ5r+BXb2q6DtGDiR(A<`y}S2mnNpCS}7Fg#0Ps$PGF3le3~&807a7z A1^@s6 delta 44 zcmdnMvVmp7QZ8d%BSQs4Gb8Vxv+6Dkf C@DEA= diff --git a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.mo index 5e162d5e8a417c7188c3e2d39e5170da02ded007..8010418322e4c278db80e700c88777faf6efb603 100644 GIT binary patch delta 44 zcmdlkyj^&MDJz$Wu93Ndp^24&8Vxh($ delta 44 zcmdlkyj^&MDJz$;u92aFp_!G5;beQ(g_Ga1M)CM0=B1Y=rl(pdBo=LUV=H6^04bym AnE(I) diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.mo index 33863e878f06beaafd8551b9723be1f1de205b07..1dd64db8a5e9dd3ae96e7e928f505dd8bd3da772 100644 GIT binary patch delta 44 zcmX>gctCK2F$8VxgctCK2F$8Vx< delta 47 zcmaDU^ipVpDJz$;u92aFp_!G5;beQ(eUo|FqWFCh^U_Nb(^IV!l8WP<95<)2F*5@I DQ~wRp diff --git a/mayan/apps/appearance/locale/da/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/da/LC_MESSAGES/django.mo index 4f7193e2df68877e8eab1be37eab4e2ede245b68..afa20c7a594e7f5d96e7c8f243441cd363ab0efd 100644 GIT binary patch delta 43 zcmdnMx`B0r6(g64u93Ndp^24&8Vx8Vx#+d< DJ-!W! diff --git a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.mo index 9611ab493ccb4a58a77096e41fa6e3d5aae16dcd..3a664af1881d6b466b6c591a63a65a978dcd2e6d 100644 GIT binary patch delta 20 bcmeyx^owaiFPDj~k-37QiIsun#OaR#OIrsW delta 20 bcmeyx^owaiFPE{dk)eX2nU#s*#OaR#OB4qb diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.mo index e7ffdbed4119d8d6d61dcee7f8638084aed9d4ad..6aa83c8f4d4b0858016c55f5017d4b0ab6dcf521 100644 GIT binary patch delta 44 zcmbOwH%o5AI}R=rT_bY^LlY|l%gH}D7V-Eb=B1Y=rl(pdq!v$}$r-(wkxP;l07%RZ A761SM delta 43 zcmbOwH%o5AI}R>mT_ZyULo+KA!^uB57ENBx8O7t1n3rCfn4W5-kXpQnONtc$J(>;~ diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.mo index 6a8f8eec53d2fce72b31214beede74f8cf9bdfe2..437b59090d3ff6f39e49d3dbc0ff686498e753bf 100644 GIT binary patch delta 44 zcmbO)K3{ypG&U|1T_bY^LlY|l%gGDa7V-Eb=B1Y=rl(pdq$N&vWRKpwlKmSq05XaW Aa{vGU delta 44 zcmbO)K3{ypG&U|{T_ZyULo+KA!^sQS7EShNkK*x3%u6p#Oi#5^NK4$jg8e%)05Ja! AcK`qY diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.mo index b32fefbc5ce34866c2cbe0d565d1ca1460a8a830..643903eb904406bfa2b041201adcba17ad268747 100644 GIT binary patch delta 44 zcmaE*{7QL)2^W`%u93Ndp^24&8VxY9_B|JWfdFiEz>8Vx<8Ksl|F-A{LW9k6_E9(wh delta 43 zcmeyw`iXTzAS0Ktu92aFp_!G5;pAw>C6jrWqIi4~^U_Nb(^IV!GD;_>GW7xgA7Tw) diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.mo index c205e94b8915e2283a3c52d03e3d9676743ba96d..b7f21aad49494e9f22fe4bd9eb65addd6ea83f6a 100644 GIT binary patch delta 41 xcmbQoGLL1#VJ;J0BXb2q6DtGDiD#Gc_$20~mnNpCS}A0vOfF=Mo_v$h6#yEE4gdfE delta 41 xcmbQoGLL1#VJ>4`BSQs4Gb%I diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.mo index 0c5d5ca0769a8101f094c2333ff66f5fcd81ef5c..7148938f78da11e50e07d18c1ec7891ba9282ffc 100644 GIT binary patch delta 44 zcmX@WbAV^VW@auET_bY^LlY|l%gKA07xDNc=B1Y=rl(pdWR^^hV~O5;jHQYZ070z| Ap8x;= delta 42 ycmX@WbAV^VW@av9T_ZyULo+KA!^wM@7fsG#iQ@7}%u6p#Oi#5^*nF6!mJt9W#SO#& 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 97ad5f2a51e2f9bc520730ceb0e8cf4f11355015..fcdee11935edd1054b72b665a58eb1d6886520ed 100644 GIT binary patch delta 47 zcmaE?^jK+w2^W`%u93Ndp^24&8VxsdRTNr6dRX`u93Ndp^24&<>VB$jr=}|dFiEz>8Vx<1tsxLL6b$;qc_*HyD$R) DSziuV delta 47 zcmX>sdRTNr6dRYZu92aFp_!G5;p7yyjgwW`qxgLi^U_Nb(^IV!3QFRgf;QK&yD|d+ DRIUzR 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 d910e44789cb43e179cd3d62f77c3fb9f3f940be..b11558cf3273832825a1e7d8f85248c1814ab926 100644 GIT binary patch delta 47 zcmca2bVX=`DJz$Wu93Ndp^24&8Vx delta 47 zcmca2bVX=`DJz$;u92aFp_!G5;beQ(4U_+~M)CV3=B1Y=rl(pd6y?VU`EQP3`@;kP DWSI}2 diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.mo index a60757c426f5c71f43e9c89332a58df3682c7112..784128fa71e68c2dcf9968b8aaf0a490451f562e 100644 GIT binary patch delta 44 zcmca2c13K1DJz$Wu93Ndp^24&8Vx=B1Y=rl(pdlx4<;`Atq{iQasUC7B5T DX)_Of delta 46 zcmdnUw~=qda^}hBnORv4&8$oeCvRllJh_A=ir*(OFTFG|J=IE~EHggLZ}VA}6ea+A Ctq=wP diff --git a/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.mo index 348bd93d22ac82a491fab22ec901a575ef4d9f88..714d6c663b1e154ffd82515bef49a45d997d1050 100644 GIT binary patch delta 47 zcmca9bW>==X?<)jU3ldFiEz>8Vx8Vx&SZ?@@kz`}FHKBOwNgk)oP3DU1OP4;4mtn; diff --git a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.mo index 21e1a58a1ed0eaeb45e5f2ef83bffc5764e1ccaf..f35fd54941fe71a7244129bc52796d10dd8b2ca2 100644 GIT binary patch delta 47 zcmeC>?&aRFgo(>U*T`JK(8S8Xa`HN+1N=UTdFiEz>8Vx?&aRFgo(>o*T_)8(9FujaPm5)1C#5RqxgLi^U_Nb(^IV!Qc~kxTsL25-o^+3 DTWJq% diff --git a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.mo index 9611ab493ccb4a58a77096e41fa6e3d5aae16dcd..3a664af1881d6b466b6c591a63a65a978dcd2e6d 100644 GIT binary patch delta 20 bcmeyx^owaiFPDj~k-37QiIsun#OaR#OIrsW delta 20 bcmeyx^owaiFPE{dk)eX2nU#s*#OaR#OB4qb diff --git a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.mo index 225b45bba9c4c2011e79c14d3829713999bb89fe..817cad60933a7c272479fb3562443af07c6fd0f6 100644 GIT binary patch delta 44 zcmZ3+y^MRq5+*JaT_bY^LlY|l%gO7Q7V-Eb=B1Y=rl(pdq!v&1XO7;yo%uZ@05p{j AnE(I) delta 44 zcmZ3+y^MRq5+*KVT_ZyULo+KA!^!KI7EO+2j^go2%u6p#Oi#5^NG;yHjrjv305eDq Aod5s; diff --git a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.mo index 6f1d7f9b68cafa32cafc34df5e5d7cf87e6fa295..ad8524daf5bc7c9d1096e3f7bc9bc3827986ac02 100644 GIT binary patch delta 44 zcmdnUxsh{&C=-{7u93Ndp^24&8VxO;>LA6K8bnhrHSdORtg!Vlj9hpCm&<91^^3^4R-(l delta 41 xcmZoLB8a~Pv|d=m50OB2&mtrRj!Cm&_B0RRf$4SN6p diff --git a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.mo index 4ba514e714b057ca2bd81b3bad3f5dac31aac5da..ed29088be5aaba645b00fc8d1457adc72adc7bd9 100644 GIT binary patch delta 43 zcmaFQ_MUCSVn!|#T_bY^LlY|l%gJjQ*Yo%!=B1Y=rl(pdWTs4xW{RGCm}w0FJV*}F delta 43 zcmaFQ_MUCSVn!}wT_ZyULo+KA!^vwI*H6x5isJD}%u6p#Oi#5^$V{1hh-obVJF*Vd diff --git a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.mo index e117489a9198b4c70b0d70930eada6599d0657df..0ba289c6b27a7085d17a0cb2d6e7fda638cfc5ac 100644 GIT binary patch delta 44 zcmcb`af@SvC=-{7u93Ndp^24&8VxO$08vK| AJpcdz diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.mo index a023098294a48edb745f429fb353eba10559cb3b..0ef3c1013ba3413563ac015c21d7714dea9d2ff2 100644 GIT binary patch delta 43 zcmbQvKAnBTB1SF~T_bY^LlY|l%gJjP5ApaU=B1Y=rl(pd6qHQPWs07BmFW-wBEAlV delta 42 ycmbQvKAnBTB1SG_T_ZyULo+KA!^vwH4^6ISisJT3%u6p#Oi#5^D42Yi=?DN6cMcQ) diff --git a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.mo index 348fc2a8c91622381934dbdb39d9965e06ee3b1c..3b9563e1d899608a8ce1fbaadf3e966971cfc5f2 100644 GIT binary patch delta 47 zcmaFE@rGlAC=-{7u93Ndp^24&8Vx<1tsxLL6dJXMQ?Ut)?fqx DRdNn% delta 47 zcmaFE@rGlAC=-{lu92aFp_!G5;beKH-IHH2Me+M2=B1Y=rl(pd6qLj}1#Na_)?@?# DT)_@< diff --git a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo index 6a82ad1768bbe92123b9ca8cb5b6b57613dc3ea0..c56a6cf2137705c1d295ddea2f72e8c2b323f046 100644 GIT binary patch delta 46 zcmaFO_L^-&CL@=Lu93Ndp^24&<>X?8Vxq9;#hx&i=L Cy$?hH delta 46 zcmaFO_L^-&CL@=zu92aFp_!G5;pAe*U6XB@qWFCh^U_Nb(^IV!it^)w{3lOix(WbQ C4G&8I diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.mo index 490c6154f658edba864e801ef2a920c38d8470ce..d3015d1b7934f8f6cd22ea66e8c15ab20fc2cdb3 100644 GIT binary patch delta 44 zcmaFH{)~M?CL@=Lu93Ndp^24&<>X?8Vx8Vx~jMo*4qnhF3< CbPpx~ delta 46 zcmeyw`iXUe4kMSbu92aFp_!G5;bb$$y_1=lqWFCh^U_Nb(^IV!$};1_{3gdRO#=Wy CCJrtD diff --git a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.mo index 45298e5fa7b6d08a22a0f922d587371b4bd8a4bf..be01c00cb1692afd6f7b05d3e9a062b2e78e17dd 100644 GIT binary patch delta 46 zcmeyw{)v6VTShJuT_bY^LlY|l%gNsvxAXfX=B1Y=rl(pdRAt0F`%PZU6g^pj`4#|w C*AP36vgk8n3rCfn4W5-P?Zty>^E7Q`8EKA Ca}Zhp diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.mo index eab74d7074bf03e15f0101aa5f1ae9e58a6cbc1f..f0fec8ed276bca7838911c425a4a97b307f6440a 100644 GIT binary patch delta 44 zcmew$_(5>PRTeH2T_bY^LlY|l%gOgy7V`Kc=B1Y=rl(pdBoPRTeH|T_ZyULo+KAqsjMK7EbPEjpFf1%u6p#Oi#5^NG#g?jFpQS0A0=x A9smFU diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.mo index 3b0377ab8bab8df344bfb3ecc1ed4cc3d0413e2c..17d66cf664d06b52a794b409956c84176160d425 100644 GIT binary patch delta 44 zcmeAc?H1i|m4(Yh*T`JK(8S8Xa`JtaB|JWfdFiEz>8VxP8pZFEn3rCfn4W5-kW?J+2XxK5tL5xw~@ha?LC DarY0m delta 47 zcmbOxHBD;6ZFVkWT_ZyULo+KAqsdR%*G*o`5ykJ5n3rCfn4W5-kdhkj;=1_{hZG9{ Db?gtn diff --git a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.mo index 5e6a145d2977273fa35fd3c566a1e71d466acec6..605451f643029421b6664387108c9b1d6daba08a 100644 GIT binary patch delta 23 fcmX>ra8_W$L>4X+T_bY^LlY|l%gwV{HZcPLS*r&F delta 23 fcmX>ra8_W$L>4Y%T_ZyULo+KAqs_BfHZcPLSy%@9 diff --git a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.mo index a1bbdd57729acbcee278778c7e83353aadf6ee43..a8f5164905911601767d7a4922553b3a6eff1018 100644 GIT binary patch delta 44 zcmZ22y;^$1ZFVjbT_bY^LlY|l%gImK7xDNc=B1Y=rl(pdq!v$Z8Vxtb6RG@ZFVjbT_bY^LlY|l%gImK7xMTd=B1Y=rl(pdq!mqW<%r(=mLrZ809O+a AWdHyG delta 44 zcmX>tb6RG@ZFVkWT_ZyULo+KAqsdR%7fznc5yj(^n3rCfn4W5-kXE$$4M#jH09fD; AY5)KL diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.mo index 4512dd55891043b3715dd025c5f92727e3be43de..18a8192f4cf1f046c8708d83a95a4ffef8ce65a6 100644 GIT binary patch delta 41 xcmeyu{DpbKQZ5r+BXb2q6DtGDiR+i}_$20~mnNpCS}A0dP7Y#>p1h0E3IHu>4m1D& delta 41 xcmeyu{DpbKQZ8d%BSQs4Gbtep-CP3pOqjT_bY^LlY|l%gLYE7V-Eb=B1Y=rl(pdWR^^x%pSe@H~R%<09ri| A0{{R3 delta 41 xcmX>tep-CP3%1Du?5wPYW>zLflRvR7n!J!bipwW4FTFG|J=IEK^AGmR%m6e34)6c~ diff --git a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.mo index acadeb69d9fe76859794a984ed977e83eaca6df9..7ecd300562039f88c6ae3e9bc3366ccabc0f2748 100644 GIT binary patch delta 47 zcmcb`bBkv~BQuwYu93Ndp^25D!Q^h{jr=}|dFiEz>8Vx{3v4aY7P08I4{ Ad;kCd diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.mo index fcf65439427b27a1008682c367042dc907e3719d..207dd34cda5c4eb636caff7f12f053a23842a433 100644 GIT binary patch delta 41 xcmZ3)vWR8E87>oDBXb2q6Dvc5iPx6$_$20~mnNpCS}7EiOs-;#p8SZ>0RSFA4mJP) delta 40 wcmZ3)vWR8E87^a8BSQs4GbzLflRvR-oV=Mmir*(OFTFG|J=IE~pd{WYXfqGTCuRVX CP7sFx diff --git a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.mo index 117616d18d0cd7d92430bf224a8e7dd03ba2a59b..3312aa641ba5ac2341d72ad4501bf3ce6c62c066 100644 GIT binary patch delta 47 zcmaDL_&{*ORTeH2T_bY^LlY}QgUR<kB3T DjeZdy diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.mo index a644f2c5c43afd91271404231ef9bc9745ff32de..8f5724339b950f6dbe83625a8195bd0fc4764c52 100644 GIT binary patch delta 44 zcmX>ndQNo1RTeH2T_bY^LlY}QgUR<<7V-Eb=B1Y=rl(pd6qQbHV2$4Vg7p~-08}Oq A$^ZZW delta 44 zcmX>ndQNo1RTeH|T_ZyULo+KAqsjMK7ESJBjpFf1%u6p#Oi#5^C@S6job@>i09Gas A*8l(j diff --git a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.mo index c0359784eff2cd478af4520a17ba9e04ab64eaf2..c0cdf0f1b9447d93ddffb85f287d9f139353ff09 100644 GIT binary patch delta 44 zcmeBU>0_DD!DXUrWUgRnVr6JBandG!pTxZM(!}&sD}~~m_+Zb;&WzEM*D)pl05HT3 AK>z>% delta 42 ycmeBU>0_DDF>wPctD%{diP6MKnfd$XvnD#LCcM;`+_}K8bnhrHSdORtjaA@nL?G6B(l?pJ6ls05sGN AcmMzZ delta 44 zcmZo*X<(VKl*?Gx$WX!1%*w=Q;`+^#ix{K$eG>E1OB2&mtrW^KRTeH2T_bY^LlY}QgUR<<*7Ex#=B1Y=rl(pdRAt0F`%UgRTeH|T_ZyULo+KAqsjMK)=r+o8pZFEn3rCfn4W5-P?Zty?6>(V>sdws DfXfi8 diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo index b75a50fd1269899072cd4c8c72ac1e7e340ba5db..2808e032324ee62494991928be3a4146b0d7b997 100644 GIT binary patch delta 44 zcmcb?d4qF9I1`tNu93Ndp^25D!Q@1yg*-lqdFiEz>8VxrI#kAr&=i_7H!U8E?@)zEPM@f diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo index 19c4ce504ceacf2ccbca57441e2ee1922f768e9e..d434f0d2d4a9a3e909356df99c18bb102188d9b1 100644 GIT binary patch delta 44 zcmZ3+v5aHGKSnMST_bY^LlY}QgUK9BOL%+|^U_Nb(^IV!lF}!yW{Tb{%q+|Z04_oe A3;+NC delta 44 zcmZ3+v5aHGKSnNNT_ZyULo+KAqsbghOD6ARisJD}%u6p#Oi#5^NJ`%<#4N%H05ZZ2 A82|tP diff --git a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo index 564ae8a5aecb6f644da2ded2723c2bd93404a799..f5fd77caebe2207d2de5cc4dea14b4dd661062c9 100644 GIT binary patch delta 47 zcmdnVxs!84I1`tNu93Ndp^25D!Q@1yef&O&dFiEz>8Vxqc?Xl8!!R@ DPP+~H delta 46 zcmdnVxs!84IMd{MCRSEMGb8Vx8VxYi8S!%gAM-YhYi8S!%gAM{Yhsd029T3OkpHu93Ndp^25D!DK!5MLa%8Vx=jdSp03@;v Ang9R* delta 44 zcmX>sd029T3Okpvu92aFp_!G5(PTaLMU(HcNAdV1=B1Y=rl(pdq!w>B8Vx8Vxk delta 44 zcmdlczfFEaB?p(Wu92aFp_!G5(d1^1g_8|Aqj-E0^U_Nb(^IV!(uy{Baq6%E05Gf# AkN^Mx diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo index 9edf31da8ec49057e6f7e69491c29d12213592f7..6e3f7b20c9b4bc8fbf2fc334ccef7abd802d1325 100644 GIT binary patch delta 42 ycmaFI@{VP~4=xj3BXb2q6Dvc5$xMt(czhD`(n}N5Q>_#-N+&O6jGoNPln4MV)eV^d delta 41 xcmaFI@{VP~kI4#*tgMD+RwhQ1nHZN$-pm-q>Y=4R-(l diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.mo b/mayan/apps/common/locale/id/LC_MESSAGES/django.mo index 8d74bbb49613ba066f69fc7d10a11cf0957f0e15..1c5038b2c8a5eb277881c52b39059c71fd97b876 100644 GIT binary patch delta 44 zcmeyw^@(eP6f>8Ju93Ndp^25D!DJQYr93`~dFiEz>8Vx8xu92aFp_!G5(PS0orIW8QNAdV1=B1Y=rl(pdWTtG^XK`i(05H}K AU;qFB diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.mo b/mayan/apps/common/locale/it/LC_MESSAGES/django.mo index 8de1977da1906a0169bc589b686b3adf94385c27..54187a20300266751fc7ba8a1496a3070efdc93d 100644 GIT binary patch delta 44 zcmew+_)TzwH7l2iu93Ndp^25D!DLs~MLa%8Vx)1=yA6>5 diff --git a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo index 41f130b5acb5dd43bae4b01c348df27a8dcf79b8..f53c46accab6e0e77cc9d7e3ef6ccb1fcd25f44b 100644 GIT binary patch delta 46 zcmbQmF^gk^EEAWBu93Ndp^25D!DMx&jr=}|dFiEz>8Vx8Vx<1v!(IIiojsb4s!T04z=o AOaK4? delta 44 zcmZ1?yF_+FB?p(Wu92aFp_!G5(d1^1g_8|Aqj-E0^U_Nb(^IV!3UW4gaZ0fQ04eni ASpWb4 diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo index b17597db94681e3126cd010b827945479f40ca0f..4a06bda1f07069ba16221994b8f60081381e9eac 100644 GIT binary patch delta 44 zcmZqRY~b7w!^CBxYh0}A!C~lv`y!6t<^i(T_g3SfY0*nCue+%sZ diff --git a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.mo index ca792344de9df860f90c879e02f4e6f7d963de0f..cfa925f22bd9ff0c91a13f87a39dadeeb9d2517b 100644 GIT binary patch delta 47 zcmX>od{B79Y*sE4T_bY^LlY}QgUL%-H}d-==B1Y=rl(pd6qLj}1x*fRi{5;Ijgc7u DYXT1i delta 47 zcmX>od{B79Y*sE~T_ZyULo+KAqsdEIH%?Ati{kf5%u6p#Oi#5^C@6_{3fjD%jfoim DYhDi( diff --git a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.mo index 8494f9bf9a6e801191a00ec5488729e4a6365441..8d2b3ab197d0409e9d807c645c159e556950691e 100644 GIT binary patch delta 47 zcmbQnIgN8eI1`tNu93Ndp^25D!Q@1y4g5ZddFiEz>8VxMGOEUrh DLD3DK delta 46 zcmbQnIgN8eIMd{MCRSEMGb8Vx=;he(hmp%f*T`JK(8S8nU@{xiW`3W=;he(hmp%z*T_)8(9FujXfhkq=E*0SqWFCh^U_Nb(^IV!$};1_{3a_gzXkwH CoDSpw diff --git a/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.mo index 5442a72bb39c32702f42c017f232e5c7d188c369..37be02398b256ba98127d725407d63be1dfdee12 100644 GIT binary patch delta 46 zcmZ3>v6f>)I1`tNu93Ndp^25D!Q@1ywfsJbdFiEz>8Vxv6f>)IMd{MCRSEMGb8VxEuR delta 43 zcmX@ic9?C08zYyou92aFp_!G5(c}Qeg_Hj=M)CM0=B1Y=rl(pdBo<8$XLC?l7Nu93Ndp^25D!DM;HB|JWfdFiEz>8VxC?l7#u92aFp_!G5(PVkXC6g~OM)CM0=B1Y=rl(pdB&AQ*WSRm14YmyV diff --git a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.mo index ad483333124fac242706d7f2fb81f3c4899fca9d..f79af753956d31d1bf98825c0242dbd124ee4e01 100644 GIT binary patch delta 46 zcmdnPwufzl8zYyAu93Ndp^25D!Q=qOef&O&dFiEz>8VxttQ_=*=_O-!cOL DN5u}X delta 47 zcmZn_Zx!E=!p3E+Yh8VxpOWAV!Z delta 44 zcmaFF`G|8vGZUAwu92aFp_!G5(d1sHMU!oqqj-E0^U_Nb(^IV!(h@gMW%gwR06D)6 A+5i9m diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.mo index 89e4581c85861a4923c7ff9ddf66c9a19de33418..b62e2d7299759c32518139e52c6be683c68aeb18 100644 GIT binary patch delta 44 zcmbOtF-2lS3LBS+u93Ndp^25D!Q?!)BRoEddFiEz>8Vx8VxKWBv{RCN2)3 delta 41 xcmcc1ahGF5FcX)tu92aFp_!G5(d1aBMU#1$qquw$^U_Nb(^IV!CMPrh0ssI549@@n diff --git a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.mo index bd4a60fed82f25ee4c9b79c6c12729a9cbcc51d7..952ef4350e860dbe8ed8b30c38edcaf596d3b8e3 100644 GIT binary patch delta 46 zcmbQvHl1xlEF+hRu93Ndp^25D!Q^ztjr=}|dFiEz>8VxoO$7in Ckq!I+ delta 46 zcmbQvHl1xlEF+h(u92aFp_!G5(d2Z-jgvK)qWFCh^U_Nb(^IV!@^a$+d?q(CO#=Wh C%?=Cz diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.mo index 8402a01f519fd3bf7cb1b9b67fdc26262de92324..80179f30d441266b312edb639b814797a49e1623 100644 GIT binary patch delta 44 zcmX>repY-#3LBS+u93Ndp^25D!Q?!)Lp(l-dFiEz>8Vx<1v!)T*`qg4XE$R305%K_ AwEzGB delta 44 zcmX>repY-#3LBTPu92aFp_!G5(d0a~Lz8XUqj-E0^U_Nb(^IV!3UW42V>f3305mlX A!T8Vx<1tpWYnW85bGt~hACx;Dw delta 42 ycmey!`jK@*EF+h(u92aFp_!G5(d2Z-rIRI@qPTq$^U_Nb(^IV!3MLmaH2?q=hYc10 diff --git a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.mo index cee81c91081691549bf8fb6b1131e90ca7c2c078..0be2c7b6608e5c2e984ad162e58d8297ba33b905 100644 GIT binary patch delta 47 zcmcc0d6jd+TqZ6PT_bY^LlY}QgUQR8HuC!<=B1Y=rl(pd6qLj}1x*fTj^2ETS(p(3 DZi){j delta 47 zcmcc0d6jd+TqZ7KT_ZyULo+KAqshyeHcrl9j^g)8%u6p#Oi#5^C@6_{3fg>-S%eV) DZq^Sq diff --git a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.mo index d0711f933372155bd375f30b03fd8f56392f09c0..351ac0d3947df1fcb9832a7462dddf0527fadac8 100644 GIT binary patch delta 46 zcmeBS>tWmA#>i!&YhtWmA#>i!?Yh8VxHq)$ delta 44 zcmbQpGLdD%E-qtTBSQs4Gb8Vx4LQKEM(_!Xeyt?%-LjPw|kClc@dIaU5@9%9vI2 zj4x{5#w2c`8h*keenStlOj_^5UOeF(Mz)wsZoTBZ>ei=`kGajX59jd*;qGCE{$`p} zb-)}dSq0T#2}`(!O1A0zg-SL+91@tzsAN-2N;d26KSc$5fjnY9pn`ow1^bF=`kNkp zA8qJIH9qMaLA}^Gb{e7fO}X_OsAP9g$*QP-t%uS$M&&4-p`maGDZRu|ihsyd_A?!! zc83ni?p|O&m7vsELoafO>Z8|Fl0Uz%rI X`RH}L5k05vOloE!T+ZJOR~qIY)&_Gh delta 1001 zcmd7Qy=zlZ7{~D^$!(Ly*4Fsa`W8;X4wg2U7&>H9(yf9Hwu9)M2S;!{^bzt^c@{o@5&9~8-bF6iWYB^> z;{fN&7L!k;-9|0o1H0=+Ur>{NMNRr0i})Kg=^1uWE2v4=Q8#|cph@4LCQT-K`wXE5 z9YZ}Qk7>@AA`?xzgqm~>HE9<)OWva<-3Z-6E$|m=fjg+{5(B+;!$=k}s0B?RmrOH+ zziM#LN7C8Ppuf8&JVZ~?wH=`!4rc#`A*P%awBb-ac#yu2u0wjst9blqqwGe$9 zyG;wE_>_z>(R7+vU(cw2B|1JRv$kp*)>LfU^KbUQ_AkWeBD4Pe*wp3KMR)P4UA1mQ z=4`uQCcG(A3Rahl*IZty*GtL==OTk#sERt`3?_3O6onMTblS#zyv>npZo%C)*_ zx)rz9a)U(~e=|1IcfRG?x<8u8_(kVLe7^VGFFTi#r>ApSlbtE#bAH!J_il69LiW^? VZRbYhzbJYk6&5TDE4CG+lE2}Eq>=yt 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 ff2e0be73a..bb96b6a46c 100644 --- a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:30 msgid "Django GPG" @@ -55,7 +53,7 @@ msgstr "" #: forms.py:28 msgid "None" -msgstr "" +msgstr "لا شيء" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -79,11 +77,11 @@ msgstr "" #: links.py:17 msgid "Details" -msgstr "" +msgstr "التفاصيل" #: links.py:21 msgid "Download" -msgstr "" +msgstr "تحميل" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -98,10 +96,9 @@ msgid "Key management" msgstr "Key management" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Import key" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -164,10 +161,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -198,16 +194,16 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "View keys" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -220,16 +216,15 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "List of keyservers to be queried for unknown keys." +msgstr "" #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Delete keys" +msgstr "" #: views.py:48 #, python-format @@ -238,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -247,6 +243,7 @@ msgstr "Import key" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -272,7 +269,7 @@ msgid "Upload new key" msgstr "" #~ msgid "Unknown" -#~ msgstr "Unknown" +#~ msgstr "unknown" #~ msgid "ID" #~ msgstr "ID" @@ -280,12 +277,23 @@ msgstr "" #~ msgid "Owner" #~ msgstr "Owner" +#~ msgid "Identities" +#~ msgstr "Identifies" + #~ msgid "Key: %s, deleted successfully." #~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" #~ msgstr "Delete key" +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." + #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.mo index b5b79e563cd3d8a552449db19c5274809568b108..45c1332f6b56cc1e0abe96126ce793f41c5b42a6 100644 GIT binary patch delta 845 zcmXxhO=uHA6u|Mx$2Q4UYd=!!7a9*1TdCL({0LT2b1+n^;6;m87PFQ@vr!YU9yFl{ z;s>cX2%;!>@#4YK5~;0v62X&`ix*oD9`quf^rqF_5*1%IRLdxiG*;scbM`-q$I zD~?cKwQ?MuRRN{52~6X4+>LKg4i=ydDP*B^6lYk28~pjSZx%b5KaTP*E+Zx6mfK0$ zOF|A)?qHBjSCjm8YB||O{ts%aHvdJ6ts*UwOK1c&RGeH%a*>UYW+dbgD@eH&xd{nr zQ0;eeiQ?F(=alr*U`Mp5GH%Hk8`tlGZ=;#QMQ^;|P>u5m#X|kJZ^+_{r zUYG?lr{70&{k~3zRygxel3yBXeYKsr|i>_hb(z% Yru7s1bLSm1XPzg_{J&M^HG9<5U%6a_V*mgE delta 1120 zcmZ9~NoZ3+7zgml-gL3rR_j{EO2yVDBx&d&6c-vnsoElVDK5ljDxqzHc}Z&y(k342 z0v0-`xD@S0ZxUN$W5o0(f*$7KNpS%$3I#8s7d`m@US2O9^5ys5HNno1}?*1_!f4+dJG~%km?BNf-~?SybUpw zeSoMl$v)v>8xr3kO=PoI7SjL&c=y8~j6w&z1D)^zTn`_aE@ObNNZ3$)2D`3=>0=mzMc4y>L0X^>_dq8X zgh;VoxD_5Z^D)zlkm^mtjqpC4G_Tn>0pwUCVg~|!Y!jjZL5&J-F`g>dMUQm|Y|d!) zrZ^l{i`amm#nD9c-&$?709q{lCvYmQt9j#2X!V;Bv|GAsI<96pX5CrC!eUgU1RoI@ zdCU4*3R|BgET7mqPmM+5k@I3q#8a$KWJ0`6>*P^maFlE5p&_AZ!|Bn{jF%maX(^r< zrW%?^j*FzmQwe@f@C#{?jEN{8P9%9cJ`zt%#En5-xnk>f^iRY^QnuMoyG~a6WY#_y z=<)>o+}|Av20Xr?&sROr?>QmHV_GZ`_k<%U5#j-#zuV(8#s&N#zi+Y5F<_BB&b{)0 zt8MX~v(F-byRKS~gyp5Gv+_q(`@XyCrG7)7uIxb-xGJh8J*Q8pqMqaWWj(8wRYAX^ zUa7K|sd>B=^{jqPl{iv)`PseeP$ySQDsOxl-8r?O^5`w, 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 @@ -26,7 +25,7 @@ msgstr "" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "Ключ ID" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -54,7 +53,7 @@ msgstr "" #: forms.py:28 msgid "None" -msgstr "" +msgstr "Няма" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -78,11 +77,11 @@ msgstr "" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Детайли" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Сваляне" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -97,10 +96,9 @@ msgid "Key management" msgstr "Управление на ключове" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Внасяне на ключ" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -163,10 +161,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -197,16 +194,16 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "Виж ключове" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Подписи" @@ -219,16 +216,15 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "Списък на сървъри за ключове, за запитвания по неизвестни ключове." +msgstr "" #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Изтриване на ключове" +msgstr "" #: views.py:48 #, python-format @@ -237,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -246,6 +243,7 @@ msgstr "Внасяне на ключ" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -271,19 +269,30 @@ msgid "Upload new key" msgstr "" #~ msgid "Unknown" -#~ msgstr "Неизвестен" +#~ msgstr "unknown" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "Собственик" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "Ключ: %s, е изтрит успешно." +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr "Изтриване на ключ" +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.mo index 3cccdf34e73cd3aed590cb92758456959c8b381e..50f81f1b35a7b0493be08d2350cb63fa2d9f64e6 100644 GIT binary patch delta 797 zcmYMxPe>F|9KiAC?rbybzueuj+BCL6C`HL-weZp(=VC6BilCCv)IPS|9cK#HWDja5 z3Cb=HkI|u9*C6Q7Eu@2ctWyNtg07)gzrSUqAM<;kdGp@9zdM;vsqJ5BYflju$v*NQ zIY1t?Q4kMfN_C@$aeRs$SVtRQ;3U4pK|F{&!fVv8@RNf@l>Q5N2UoCNscrR+7n%G6 zp2B^U37c5JpJ-uyc< zg$sm|_-dcpAT8KQ@t_s=s&+4{;2;`PpWEMF(l;LGNhdD1(F+5UKfR| z>Llcdp4w5SnyyF>^mG`?};+qdqd)F&(jFaR2}S delta 1029 zcmYMyO=uHA6bJB^WZR^zRhwGd+8U+@L2HdotQCsjS8h>LKO*86Y@12hWV0K0vn}l< zCo2k~GSs73CRX^=njH zAhf->`*CXlq66?ZiT%A@~fo!X?-SU&1r+EgXdZd`LfYrU;UJG#6eH{J+0J_@cHSBN*& zg`2Z%v|Z?M6*(cUMx&wFeEw1DL5FwE8Sww0Tipx}v{6c$vLZ!M&Z_y~2bB$_11a@1 zG<2h+Tl$nNNvlF>IXfoyxkDmX3(g7Go1B!coA*p}Hcn>^w<7F3&*4gES~{+%*kVG8 z+n#g`nG<>25uR1F>=~;T6j$q^(WcCdB^}kJT?}XIV=Av*Ydvx(nGlK5v5}-&(_;14 zWMV8ayu6_;1frCgaE#SOLln(|_x^#LmMReLQ7@WbsmbtlY<(qscq&_V^l7u8TLmQM z#~CG^(zSj)70)df, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:30 msgid "Django GPG" @@ -27,7 +25,7 @@ msgstr "" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "ID ključa" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -55,7 +53,7 @@ msgstr "" #: forms.py:28 msgid "None" -msgstr "" +msgstr "Nijedno" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -79,11 +77,11 @@ msgstr "" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Detalji" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Download" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -98,10 +96,9 @@ msgid "Key management" msgstr "Upravljanje ključevima" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Importuj ključ" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -164,10 +161,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -198,40 +194,37 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "Pogledaj ključeve" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih " -"datoteka." +msgstr "Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih datoteka." #: settings.py:21 msgid "Path to the GPG binary." msgstr "" #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "Popis keyservera za upit za nepoznate ključeve." +msgstr "" #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Obriši ključeve" +msgstr "" #: views.py:48 #, python-format @@ -240,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -249,6 +243,7 @@ msgstr "Importuj ključ" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -274,19 +269,30 @@ msgid "Upload new key" msgstr "" #~ msgid "Unknown" -#~ msgstr "Nepoznat" +#~ msgstr "unknown" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "Vlasnik" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "Ključ: %s, uspješno obrisan." +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr "Obriši ključ" +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.mo index 0f694a24a5387fa1ae14074885cafcaa2b9d465e..07d28f67093410ec6145d3fe87ff3cbc36706f1c 100644 GIT binary patch delta 238 zcmX@cyn?0vo)F7a1|VPoVi_Q|0b*7ljsap2C;(!1AT9)A4j`@sVvyP%u7$rV*miEEGyLj delta 116 zcmZ3%a*WyHo)F7a1|VPrVi_P-0b*t#)&XJ=umIv7prj>`2C0F8iERN~#=1s^3WjD@ wCPotz3r9lzUgSrO{jqyQZ3>dS(rqndMrmZpYKt1Zg zpll3@!I&8T0F!z^87bW9YD8E}nN$fpp zxaEvnm@L1C2fcKfP{Ttwi88?)*5PB^iv?uUY8}tvN0g1XF*`+6M^L^$jB-@xkxNZ; zlagP@2E60=G)Vm=<7FPm1aD9lc#CqT8;)Bj8U94cs3}ygR6Cwx+=Wu9G*a18lLX{_ zI!Hu`Hlme~)dz|8$myxH z{m%WtuUR+Ew53nmPdpQLl~=1cquC?gR&T;Elermt#jCl`TBczKecSe5-{nAmZ+sxy z*FV%3v&a3BSb2DCC?4;L(E#p=d8?7^nx{MWO5c}^-Rhty!Ib=`O52O z3ts}2uJDMFxnbsvOj@5dO#5qa+`byBv#*4vWGgR1F>j*y%uE{gSa`}aYNSk~uo8~D XYA;UBq>IbhtdWlD<}D+YG)(mmtzVA| delta 1851 zcmZvbO>9(E6o7AOr!8%15r3d)>qScCXF4#I6rB(en2HUhl9Y)AR&QqRbYA=Vro8v2 zrFAhbWoLZo+65Xmn2-iAhQx%Cgv6N0#zaG!82>gdjGEY(X#CEbnK}zk-nrj>_vf5@ z&bjxk{&xo}Yuno1Q^-N|8T4w4QYT?gD-E)vO{rek54XU*P^QLUJ50eYcpP4aldv1! zua7^3V($^$4|S}@({P_s6}3pGgNYAdAG{8a!%yHQ_!krhe?xKDNhAM#a2wnSpN1n) z4mtrJgXiHOoP~Vq3e6~d2Ofr1xCQ@eoes8DJEzzVdteV7f=sC-l!#u0TVcA+43tb1 zpsbs%^HP2OGL(Z}fqURpND|bib$$j9;9q@Chfn=Vvl*_#k14~ZPNg2_|0aXt_&yYe zUqhzUw@~K4hhM=z>;Dh%Dvlq~T!cTvBk&|qB;lLz5WE2^;&_b?pZbX=4S$1@`Xi)4 zGLfQ@`BU&II1LBjER4gq;gj$d+yTFUyWtN|GSkV$8HauFEX+U&=p)I$7{0@R7^p(2 z={Hcue}Phxb=VKLQefeJD49q@Dcx&O98Ez!m8mliC1M{+pdUincLSb)H+#uHSyO*7 zAgTNZlKIH#UU&eNh~;I7BdO!Fs2G!jN*RXGhCD|{UQ$Dzr!$O7v<)GaNF)%sf6=p$ zbjz(xpdu3e|A}T$G9?#DO0W;*%o`%n$t#j^|sFYdKkmhi#m3%wh)t6mF?8|to=@Osx!rD+dw8m~}tW;{b2{~1=3)obpIiApFJ z#naPK1&N6SxE5>6Zr03Mu8ZZS=v|#Jd$}U_p%`$hJo1`QQ`WqR>+z8@mhHrK_+8hz f?s0pD, 2014 @@ -12,14 +12,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 @@ -28,7 +27,7 @@ msgstr "Django GPG" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "Schlüssel-ID" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -56,7 +55,7 @@ msgstr "Länge" #: forms.py:28 msgid "None" -msgstr "" +msgstr "Keine" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -72,9 +71,7 @@ msgstr "Begriff" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "" -"Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht " -"wird" +msgstr "Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht wird" #: links.py:13 msgid "Delete" @@ -82,11 +79,11 @@ msgstr "Löschen" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Details" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Herunterladen" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -101,10 +98,9 @@ msgid "Key management" msgstr "Schlüssel-Management" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Schlüssel importieren" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -148,9 +144,7 @@ msgstr "Signaturfehler" #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung " -"verfügbar." +msgstr "Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung verfügbar." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -169,10 +163,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -183,10 +176,8 @@ msgid "Invalid key data" msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Key query results" msgid "Key already exists." -msgstr "Ergebnis Schlüsselsuche" +msgstr "" #: permissions.py:10 msgid "Delete keys" @@ -205,16 +196,16 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "Schlüssel anzeigen" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Unterschriften" @@ -227,16 +218,15 @@ msgid "Path to the GPG binary." msgstr "Pfad zum Programm GPG" #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "Liste der Server, die nach unbekannten Schlüsseln durchsucht werden." +msgstr "" #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Schlüssel löschen" +msgstr "" #: views.py:48 #, python-format @@ -245,6 +235,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Schlüssel-ID %s importieren?" @@ -254,6 +245,7 @@ msgstr "Schlüssel importieren" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "Schlüssel-ID %(key_id)s konnte nicht importiert werden: %(error)s" @@ -279,34 +271,30 @@ msgid "Upload new key" msgstr "" #~ msgid "Unknown" -#~ msgstr "Unbekannt" +#~ msgstr "unknown" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "Eigentümer" +#~ msgstr "Owner" -#~| msgid "Identifies" #~ msgid "Identities" -#~ msgstr "Identitäten" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "Schlüssel %s erfolgreich gelöscht" +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr "Schlüssel löschen" +#~ msgstr "Delete key" -#~| msgid "" -#~| "u sure you wish to delete key: %s? If you try to delete a public that " -#~| "part of a public/private pair the private key will be deleted well." #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Sind Sie sicher, dass Sie den Schlüssel %s löschen wollen? Wenn Sie einen " -#~ "öffentlichen Schlüssel löschen, der Teil eines öffentlichen/privaten " -#~ "Paars ist, wird der private Schlüssel ebenfalls gelöscht." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.mo index fda6bbeae50962fb0be5592cb83869f9b0a84d5a..06542ff8b6d22ffacc786c42292c3607de72ed61 100644 GIT binary patch delta 620 zcma*kze@sP7{KvIJM}cP&VEutwv`d290qNNHAF*;LyLrvG?W%pMAQ8PLc<{q4Xr^# zgHu~X|3FY%L|aP{L^K8Uef0eUdbsC4@0~pF^So!v`AzxHX{#l~D48K2$Vsvp;zrnE zkrc+U2gk4%Gg!iD%;Apl6lZw8#TdS!hhLb$BAZO0hfxtg0FGB`@5x!7J+E-{$=+#X5MwSVCrzGHTtrdB1@c{bi4ZPJW2`)wNhdn`-do zI-!42KRHZlW1G~vG^wFYG?HCp$k=Dp(>tUN!I?XUjE}I;&o>xU!c*<-s1pkOSk75l slGWOAwq9*iw`%oT;~8Q%|)%IYVB2#S(rsdg``2yt|VOu6#}Iyg3!ifQmn~IdoG3`n4Kso zba8M|5Lb$HDRJSx+d`pkOTUAln^MsKn;btwhrIJUnK^TLIM?yL{`#MR@SdU#QNz?F zm7sov=xFcmC>6&XcHl?sMi=j59W&U#G5i_$7oYJz!J-&uaTb@5DfJcEr>^#Ski(Br z4*HHG_zP2bfoU8KD;2?IjN)7D!(w0+c~$KM^PhupANi?6x-R^NUkKO4IOnSjyUD`W zD9IL4lI1XiWt3zmfxl6b#fT-zl5~=68YS5#%062t!FExC9iap}MG1C}Y0g*C&UUgF z$lhueCD~lyGRg%%1oKuf?x7^xMoHE{`D$``X;0g<*7ox(ml~wxGO|uCTj-^`Z9P25 zMgzA4_?UV`$;G5eqWjbnNJ z?@ifQu6ku^Gdkgn>w+m6*A%ql<@3gIie9Nyn^f~_j;kw0y>4obu{VtEXt$zQjsD~r zdyUtN6c!Kt(PYKtLRiDTeXbskHr@Je;wKG=M$-HcKl-A%|KSfuliaG9qadl<+zaYcb!!Hj{{0VNn;Q z%{Yap@fLRCn&%JfVBFvr31I@6 zUy)%t+xg%;CU6`z@e)Sx74F3q@AJ>71%2_x-?5kRPvnxe0E=J;ZovdRgET9(h0(F5mo+}t;yo!%FwNI#tN7+_APN3$UM&0pE)Dyhx zjps4V`tp>{3H*hpu#4G;@fzv^^T=1Sh`VqJGx!d**cnIcn#EE#C0>Ks>(uHaP5y{97iUHzoT#)MC3sU&BdL$~eWWQ?$YGjC~j$ y^bOhDk!X{gF{N_u!?GKjFtJSDxo%1_!o-3djbwwVoSU6;?Z?PkZQ2w!zW)o6OL?LI delta 1277 zcmYMyO>7NO6u|LQeXp;r()z5=x+q0xv}mG<1sW2S)WS!wF`ak&Ogu9+Gf!1SMIs?c zFzhUd6+5vY7D9-K*oh4Z8w&~Xkr0VRI6HFz59@f=RXtGF3&;0pYh*_abq&UH5yu!xN! zBT{CtksBva*L;LJ@e|aEU*KGPjatYzY{5~~y!m;NPHe@sxCi;k1y0R)1sm`VYW{uH zLLXrh>&we@Ao30=R=%Jne$V`!Js(9asF8=PEpsv#pzf#@>u@Drq>EkH#Pu^CPQ^E< z^MArx{DKXvFTWUQYbS7bH#XsVEa3*ciEa1+NtFVtOvgrau@$v*XOR>+kJ_oLxD0Qh z7VrwSb03hs$S98VG03qki#t(U^AL4`=g5B~?@%ZHjJl(rsNYJSWL;np>dtzRIi(M^ z(7mYdJE#jDL7is^wS%W7(tpNsh7)tjWu$ZI7}94tkuExZ=(jL~SVU+MI^i6GZp%Vq zDWQw%PPGfO2rX(cF@9(_w4k=Mf7xB#aVw!8%lKi&2RM_^s;6Z4^y8XOOv|p*zmV~4 zLc6gfyT2gWP~FuaJ+^FPYYy4rD0y5xJ-JkUH`$ikU)7V`%B^t^JHAu0hpit=uO03- zOQMygn7&aoQN?v_6b)3$<>7YOZv9exP_}zfY=VJwJ{umjVPxXK^jmYJVnfds%|H;E zihsxthWs?CJ^7mJ%J&WVHcXb~lftgCXUW6-zWOz*Iy+29SNGb^q@|{1?6R|?yJPje zEj8P!Cd;NE44u%pW#_1kk{^YZ, 2014 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 @@ -27,7 +26,7 @@ msgstr "" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "Identificador de clave" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -55,7 +54,7 @@ msgstr "Largo" #: forms.py:28 msgid "None" -msgstr "" +msgstr "Ninguno" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -71,9 +70,7 @@ msgstr "Término" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "" -"Nombre, dirección de correo electrónico, identificador de clave o huella " -"digital de clave a buscar." +msgstr "Nombre, dirección de correo electrónico, identificador de clave o huella digital de clave a buscar." #: links.py:13 msgid "Delete" @@ -81,11 +78,11 @@ msgstr "Eliminar" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Detalles" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Descargar" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -100,10 +97,9 @@ msgid "Key management" msgstr "Gestión de claves" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Importar clave" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -147,9 +143,7 @@ msgstr "Error de firma." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"El documento ha sido firmado pero no hay clave pública disponible para " -"verificación." +msgstr "El documento ha sido firmado pero no hay clave pública disponible para verificación." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -168,10 +162,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -202,42 +195,37 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "Ver claves" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Firma" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Directorio de inicio utilizado para almacenar las claves, así como los " -"archivos de configuración." +msgstr "Directorio de inicio utilizado para almacenar las claves, así como los archivos de configuración." #: settings.py:21 msgid "Path to the GPG binary." msgstr "Ruta al binario GPG." #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" -"Lista de servidores de claves a ser utilizados para buscar claves " -"desconocidas." #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Borrar claves" +msgstr "" #: views.py:48 #, python-format @@ -246,6 +234,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -255,6 +244,7 @@ msgstr "Importar clave" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -280,19 +270,30 @@ msgid "Upload new key" msgstr "" #~ msgid "Unknown" -#~ msgstr "Desconocido" +#~ msgstr "unknown" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "Propietario" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "Clave: %s, borrada con éxito." +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr "Borrar clave" +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.mo index 3187832965c7172448f55c09a8260de821da6020..ceabf1e3a688b1bffab2f6690426229d58780411 100644 GIT binary patch delta 1070 zcmYMz-%C?r7{Kv&ZLXuUEX!YII@2Kgg|4OLO|3>?ibPNm{bJ_HggHTtD5_mFH!q}+ z7ol#1C^VNa)>4D63aZ=i>Kui->7t9kKcT+Q>0}S*J)ieIJbQmU=WMCwOI7k)xo=7l zduX+^s7I+I7~jB+IN?=lGe&R|o<%Nojhi2PF@OWO5pUxue1QA#gX=GBW?bb{%D@Pc zpHye)l=0vkMz9xU;+I&0uW=_Xy3dzUHe|cwpBQGmhFq$th()j&OEH2nUk}Pg&*K)1 zIVP1Fro-mcBb3C9>tiQDsVS6=%%CigcU{C{#_usr)jpvt+|98nun%S4dnofh#N9ZC zvaweqHG|9 z*YOxi#h+nvFP%9$GSM<}sUO^Af;Fs1FLgVNjVLF&h>~|1Wr3Tx9q*%TcoMnPG&fl| zi;|Z|3g!G3Bq!-4$ou#gauP|FkoV5vov7m;{M%KHD5aKDNN`}Mw6Y2LNXu!w4d_$gCz6nlPW}|tG^s)pO`<_x^|l!!Dr%0#2I6|! z``L&N-ATlUVtx9C?~4BDYpw2#sxI?xa4?pL^_zocVpMgTiT=@B`a)5guV*M>>d7Ll z5BM*Ygb#+=gRS9?))xK5U*`^wc7#HOCI4}c_8U!sdFzcevpQkTT3P+wXee|V`#pi2 zHEXBsls#_c^l2T$!^|{3NIBF)K$WPs{#)YAxC0c1qU;Vr6z_ Xbz&vGGH1z*V}}ZvK(R+ZFRlCo6Y-su delta 1303 zcmX}rPiRy}9KiA4x|=_{(QfLW#MqjQHt|mz7xTv`3sP!r4l0OXDKrO-$xAA(8{M~2 zQmP>#CJH%(KJ87=_K+B`$+D4vXs~!tdg!4=m}fvlyeYL_^d|lO-flAN%xB)4-<$cp zd9#nI=W7O^t&Ut1%2w*9)T1GhT{ymihH^YC@)368Dm;Vyquki+c zjxUSGBO=?mPGT8$V_alVQgpuJ#!skgE}%~Q2kOL+@e}+9HIX-1iyu(qHkODqV?DOw zcgRo1X{zyOT#3`D@$;yOE?_0=%b!6#1yzd`4X=tLgAHIrLpiw+flob4d=%#Vq$k zs_5%?*B#NK-*zKacSMW+JM;k8P<1yNs9Ng0yCT5lqp^A1Eh zLi@enA}w8~JJX%L&S@u|m4nVe(loe@raO3|+qnH*U5@Ma^run-2|47Xd$T{tp_6Xb z^z{VuIhk`##x>bKbHXua`<={5r`z=OWlVqiRJ!kcItWU5|3=zM4xdju8E;#OSN3gT z%)49ieXM0ibCYRmOSU$9wWYO%%jTwJ)6RT*>6f9ny=`axA@lT>Ke9M(XS|WJhH%~= z^^TO+GT6u|MHy1TCXC(YH={L^HXx?=2ZW@&V=2Fa2RVFycuX&qf*+lkqgf}lNg z451oAs6#}j4GKyEr4Hdn1S!#>2q7cHW5+1y()X=HKjzJ6X58QJ_uiXvv-MkJexufN zPceFk79v-s)G=Hw=fqg5P-+J*V;J8fhx)?FhwB)`A6SV$F@V4DBr1RY&>V8I+1Aa6itVY&7qB7p1!kScOHr zMVHqw!v1QUK1k-5Q8vn>{O~45a2`3-BTll>6P(1C7{@w(EDocz`Wi~bk5M}N9A*7w zlzAVJy;YRO@=`&Z3(5QhCNPDvzyp+t1#HJxC=)mE5N@H&Z=!89QAM#HV<@j=7$x!Z zD6e)B+c1L~&IjqgRQ!wwB&A-UZ15WEu!!uTzM>?!iLy~uXuHMLc$oV-lyBoS(%I6G z0%X$zghq4_QiO~iLe}?|UN{%>LA5w{DkAwkTo=<+=x|&H_#+38WJK7KJz#&m*}Th5=#@jzd1 z;)oXS8;r-Ci~hFQ_U+NZM4~6g2#gxpT<@4|WU^@^XW4_=IqQ;X=Pb+`_N=wI>hCD4 zF|%4ST`Z7Du~5q7UEptctXSY#GG*8^rtQ25UUx=9SHdH@Hf3sQqcp);3ibQ+IlEXe foeSY%@6cRwF0=SF+*}qJnx39brc7H)|6lwcK@FA_ delta 1850 zcmZvbOKenC7{^a(r&Ia>#77IYc+^rTOsC8g8Z%L`VPb4(z@(x?665Xdna-uRbBFtw zQZ}>GU}7|0WZh+FLqfnrjfv5L1Y=AjEL?zW3_D{?TtGA?{=RvXjVJS+-@WIY`#t{O znO}!~8>!yk+4Z?%Ok&SsmpYU>2Kzgi7(-o3ZG*eu0Nf8{YZ`XL9PEWN@I0J@eeh;$ z{WcVT_uv7j6HOk6<4RRkg@+^?>u@{VfHUw*xCQ0`@S;`*ye!?uNr~0!pH@ z@CkSt?ty0^KXs8Q3qOU2VI2+-Up?Xh->RD|24O$!hog`!m4Q;xOK=Cww|EMQ5(Oyd z&bD~2wSOK;q8H&_cnKnc`ntt$;X&f78$9q+e===_kKh&Bu%$<-CwafhqEvJfO2A*B zoV(jve*nMX{UMa|*NG~DZ!x_G@4yVqQiX649)Oo&RRVv2P57f0^EAe@3{p!oSj^p{Ju&h#|A0;PvH zAjPXYQ0~M%D82k0YS_miQ6dFJi9=8V<=|6r21?>@LrK(v(&7)HwBTcS1b(&+{Y8OW zEXZa08KQjS9_)t)v1c&(XNUuF_8cbP$azU}6l)KuUj9k#v5$u_OsZ`UYG{mIGE4uZ z7b3Svn8sw#f&U$vRZ&W+7{SIda^4)GiYO*($dG@A3{gYw#ssz-6V+1Ki1bOM71?Ca zvc?!>EmWCM{cQ27eQp(CI||V>#n8MoGC4ZMK$LHjjV_n7{6ltK!=_L zJ{K9^F^jt3`8p~sm%P=IloO=m%ZYsAi-;VgOP+7aWVYml#b_aIdn>PA z3zMTARZH7$y{76Pg(lDyFAB76{LperR3`7Phkij+M!pr}Yqxn`YCo#yo#q$q?F-am z8vdFsqDm@tbis1MMu!|E-zR6JD~*%y)HaV!N+OLm)oUizj?`Yzlws+5ZOL-Y3hij; z#M!i(f1Dpxh@W_)=b!lM)(eljSFZ)}c&{JVdXH3(aiZD2R_b`sR>jzOwe9*wpz@K= zTBCt-O#%sDF%b, 2012 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" -"Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 @@ -27,7 +26,7 @@ msgstr "Django GPG" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "ID de la clé" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -55,7 +54,7 @@ msgstr "Durée" #: forms.py:28 msgid "None" -msgstr "" +msgstr "Aucun" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -79,11 +78,11 @@ msgstr "Supprimer" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Détails" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Télécharger" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -98,10 +97,9 @@ msgid "Key management" msgstr "Gestion des clés" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Importer la clé" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -145,9 +143,7 @@ msgstr "Erreur de signature." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Ce document est signé mais aucune clé publique n'est disponible pour " -"vérifier la signature." +msgstr "Ce document est signé mais aucune clé publique n'est disponible pour vérifier la signature." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -166,10 +162,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -180,10 +175,8 @@ msgid "Invalid key data" msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Key query results" msgid "Key already exists." -msgstr "Résultats de la recherche de clé" +msgstr "" #: permissions.py:10 msgid "Delete keys" @@ -202,40 +195,37 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "Afficher les clés" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Signatures" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers " -"de configuration" +msgstr "Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers de configuration" #: settings.py:21 msgid "Path to the GPG binary." msgstr "Chemin du binaire GPG" #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "Liste des serveurs de clés à interroger pour les clés inconnues." +msgstr "" #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Supprimer les clés" +msgstr "" #: views.py:48 #, python-format @@ -244,6 +234,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Importer l'identifiant de clé : %s ?" @@ -253,6 +244,7 @@ msgstr "Importer la clé" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "Impossible d'importer la clé : %(key_id)s; %(error)s" @@ -278,34 +270,30 @@ msgid "Upload new key" msgstr "" #~ msgid "Unknown" -#~ msgstr "Inconnu" +#~ msgstr "unknown" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "Propriétaire" +#~ msgstr "Owner" -#~| msgid "Identifies" #~ msgid "Identities" -#~ msgstr "Identités" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "Clé: %s, supprimée avec succès" +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr "Supprimer la clé" +#~ msgstr "Delete key" -#~| msgid "" -#~| "u sure you wish to delete key: %s? If you try to delete a public that " -#~| "part of a public/private pair the private key will be deleted well." #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Êtes vous certain de vouloir supprimer la clé: %s? Si vous supprimez une " -#~ "clé publique qui fait partie d'une paire clé publique/clé privée, la clé " -#~ "privée sera également supprimée." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.mo index a966e8142b5ecc5390afe6ee4668ef6c3ae96a9c..f198b7d957bae24f878093c2b750095349d3d036 100644 GIT binary patch delta 234 zcmey!e4C~Io)F7a1|VPsVi_QI0b+I_&H-W&=m266zY~Z#fOsMhvjFidAZ7#N`9R#y z$iT1+NOJ+P854wd1kxZgeSkDbUl5Q6Dgy&%APF)9C@;?d6o&wp)RM%^oMHx-{PMh< z{KOOnzx=$^i2>nUCb~xE3Wg?Dh6WQi%0YP+Rz^k}Z}Ky$1|42mT$PhrlA6unlUj0k XTTTg3fFU?FH#d{PJGCga7{mnt8L%o3 delta 128 zcmcc3@{u{APxlLentj{2q4V?#4mtsAc6ys ueh`>AFPzI**T_)8(9FujXySi42+zpS%Ftl5IwLmYVqNf#S8$w9TJ-W 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 b1c9d2de11..0e8906261e 100644 --- a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 @@ -25,7 +24,7 @@ msgstr "" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -53,7 +52,7 @@ msgstr "" #: forms.py:28 msgid "None" -msgstr "" +msgstr "Semmi" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -77,11 +76,11 @@ msgstr "" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Részletek" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Letöltés" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -96,6 +95,7 @@ msgid "Key management" msgstr "" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -160,10 +160,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -194,16 +193,16 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -216,11 +215,13 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -231,6 +232,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -240,6 +242,7 @@ msgstr "" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -264,6 +267,32 @@ msgstr "" msgid "Upload new key" msgstr "" +#~ msgid "Unknown" +#~ msgstr "unknown" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Key: %s, deleted successfully." + +#~ msgid "Delete key" +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." + #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.mo index 06f777370f75f75746cae23e9c4d9bc43073f2be..139ed4d4d747849e38ecb5b025434691d6ce271c 100644 GIT binary patch delta 223 zcmX@i+{sdZPl#nI0}wC+u?!HK05K~N`v5TrBmglx5GMjL2M}ihaVH}KLlKZ>1L8kG zHb^})69WT~2{s2vF#x#`;F4OBn3+?|;F4dSmy@5E!VplDpOuKTp>su_V<>!N|bS3@8UyXJKVDacA9R7sei{tbSO9S+P|^}egVeyl#KHhBV_hRd1w%6{ v6QhZzrFl$s4J>qxOcV@EtPCc8s^jrV%u6p#Oi#5^$V{1>&lo-VI-@E8WT+I| 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 a3705ebb01..1d9609128d 100644 --- a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2015-08-24 04:02+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 @@ -25,7 +24,7 @@ msgstr "" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -77,11 +76,11 @@ msgstr "" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Detail" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Unduh" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -96,6 +95,7 @@ msgid "Key management" msgstr "" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -160,10 +160,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -194,16 +193,16 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -216,11 +215,13 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -231,6 +232,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -240,6 +242,7 @@ msgstr "" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -264,6 +267,32 @@ msgstr "" msgid "Upload new key" msgstr "" +#~ msgid "Unknown" +#~ msgstr "unknown" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Owner" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" + +#~ msgid "Key: %s, deleted successfully." +#~ msgstr "Key: %s, deleted successfully." + +#~ msgid "Delete key" +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." + #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.mo index 91ddb72ddfb3478123e61a119938a347aa982aa8..52709f455ea5adb96075dff550353ea4d9ca2835 100644 GIT binary patch delta 1056 zcmY+@&r1|x9LMp;T-SB`t!7qclc}|lk&9V)h_;q~X%b4NP{HgvtOM&v?r0^{9z1yI zClB7DQ*;S}2n>o275N855M8+u5eF;}_7F^6l>$6B1hlXwgF@n0xu$$u#WK?yi3(Sq7oZsTbnV5nm0s!{|0KK z^Qa0~yu|wE5uGmljeD?-r+e`fa?1pfv#2AujiY!6wZj$E!oRQ+tH?@;?c=fq)6w`0 zs!~J9t7ZYqJLx>2qY0iz58k3mw2TgZK_&JFwWAic!)A?xO0W~PvxCw7W2gnPsEVD( zdK^LuRjCH(ILeihYq8bXPDfcQbnco+(MogFA(V{HSc@vi%e2uNX{wMGQ-U3|f1`xHggw2!No6WOWj zL2=3*xB1v*`##p)d^T(Py_?RY8@L5;(hEW};01+n!j9DR#s;SX&pxcN_CS0r+0&Ii z;&k`)bsw_#RUQs?OIkp<5{0`o!nj;k-NT=Uuy!xMs)dPNeb^zB}tV ztajQfg+B8-<6g1oIh6;#8JGzQ6W-jMYnzh2i9xSanh9LTjwU}ejQFL{{r~O1lgWIU delta 1237 zcmXxiPe>F|9Ki8suC9MuD_u*=UZq)4lB?}up+hJgQpl*t>e96P)S+!=o0(OVNazp* zMbXs7E<(3%(jo95MIEB6(Itou76_po0xuzbf8*|B-hAH9ynVml`@Q+uyqKK*zBBeh z(Yon->6a>$I)#t6aiiU+RBAg~*oXz>Qunx3<9)2dhggr#aRBG>7_O8|#FRS9?+nH< zhY6)-Ri42a9^6HVxrDOtdz6JgVLL9PB(jbjxQQ}vUzJiR?8JV&f?Vnmw^n?H4fq;m z{#%qpm#~TW>T@(u>Kl@*`i(O2Psxqa`%RRD61*g~YAd-PWk;P@i^uUXRZOEK{E?SC za2aL&pD63BVuJYUuM99&L-yE=CoqqPa1Oh137M*Xp&Z2;j^aO*%3UV9>~s_*u))I^ zU<z@-J&#j&S*H=Dg2{U7FK5xtZ6|gkm5a&)(K}g4f|i?n3$mMobopRq!8SV8RtM;^ zV+ktXh$O$8F1wXP%S~cQqTMQ6enibS$q$+wi5$Zo zx>Tc!E^U8!x-#9M22I`sM&B~ie)z7kIec2V5T1)&uNVwp#rm?hEyo%+w~Z61Av2xP zUH);Mi~f<*eleRhzCTvX=cjwruyMwN2{ml{fp*8D^^7-ZJYNT{zG?KGqVa5#(_^lu zi_R^_opPc{J>gm`U3GrSFP2UK z!pzKAQTCS3+1ihC*9GHkEp3C*zO4(c@4JqxZ6`3E=Z;&R=?O2?rW-~)x4;Gi%d_3^ TN$rQaiv)4~tX&Mkk-C=uQ, 2011-2012,2015 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 @@ -26,7 +25,7 @@ msgstr "" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "chiave ID" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -54,7 +53,7 @@ msgstr "Lunghezza" #: forms.py:28 msgid "None" -msgstr "" +msgstr "Nessuna " #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -78,11 +77,11 @@ msgstr "Cancellare" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Dettagli" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Scarica" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -97,10 +96,9 @@ msgid "Key management" msgstr "Gestione delle chiavi" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Importa chiave" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -144,9 +142,7 @@ msgstr "Errore di firma" #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Il documento è stato firmato, ma la chiave pubblica non è disponibile per la " -"verifica" +msgstr "Il documento è stato firmato, ma la chiave pubblica non è disponibile per la verifica" #: literals.py:58 msgid "Document is signed, and signature is good." @@ -165,10 +161,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -199,40 +194,37 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "Vista delle chiavi" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Firme" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Home directory utilizzata per memorizzare le chiavi così come i file di " -"configurazione." +msgstr "Home directory utilizzata per memorizzare le chiavi così come i file di configurazione." #: settings.py:21 msgid "Path to the GPG binary." msgstr "Percorso per il programma GPG" #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "Lista di server per chiavi che si possono interrogare." +msgstr "" #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Cancella chiavi" +msgstr "" #: views.py:48 #, python-format @@ -241,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -250,6 +243,7 @@ msgstr "Importa chiave" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -275,19 +269,30 @@ msgid "Upload new key" msgstr "" #~ msgid "Unknown" -#~ msgstr "Sconosciuto" +#~ msgstr "unknown" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "Proprietario" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "chiave: %s, cancellata con successo." +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr "Cancella chiave" +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.mo index 105deb16b8628bae139954409b786932607cecdf..51520aa836cc4bb0f8f1d0ed272aac8b677b9324 100644 GIT binary patch delta 272 zcmdnbGMTmho)F7a1|VPqVi_Rz0b*_-t^r~YSOLT!xs^c74#XRPm;;D+05J;?9|U5M z{4pS&&&a@V7D#gfaV`@?T{)C)0Ma1!olv?DNCTDo0)-eDn1L812?8L)fO2ra3S+sX z=A@RSGPtCcBxdFmGq~iJ=jG%lrZD*B=cO_PrzRF9XH0Ah;4;xQGFLD(u`)E6_&^TI iv#>HU+RVYI$tdHVnx0ygnuny_JvB9tAu2yLn*jjqhAPhh delta 189 zcmbQtx}T-~o)F7a1|VPoVi_Q|0b*7ljsap2C;(zMATET`6+oIDi0grPJ|hD|JCNoC zVs$2n8HPZb1IRZ6(m-i205Tbvff!^5gG*{oYDp?XaB5;vas~r?XkK<+etF)+GXY%2 sx<-ZyhGteKMw8VTLUhsE zX_qQQF5>tBZbZ0Jq!ukagnh^*gWRfc1Z!{%eQ5A1rtutpa{Y;C8T&jUezcJJMTyZl z%!2{!#}U+pUt$1DcnsgW&%dH3wBwGyW0di4VETb;`+O>q$jNjrm)%t+C(Ibwd2U$d2Zw2+FtEd~7T-R`v@dln} zfAKLZj6E2^Y2-60xxT}C#_KqQUr-aRB@3-YBWi`ZP@nfIQADov7bGgSv1p>b%RS>-8fADklNuD(Lrh4>yX^ zMo+WV&{J@@a&&MH?serP>O0lVG<0!|2AcjTwK}|o@{bt)M-x4*`sg#+}a| ztL0`~ZkdH(+RoSslQx;W+%}m+e%iV2?e+|2Gsb!9eeTp%jYXoNNKep;#;kBC91Vv9 z!$YAF^EjDHW;3CEE3sxQ}wW-Ic`!WZ-O&sAt$4S$%09I+t^xK zaMt`CPQQQGH=LbFn%RO=Q=N96R9mMt9kRM_&lWb9rwVo^$(K`elLb4Sl=#-tTq3(w Z+I;4;2jZTAS$oDw1y%$1l4gEyi+@=pf?EIp delta 1284 zcmbW$O-vI(6bJB!EtW!2J}RIHjtUylVq2hx-qa?>KmPN!Y0c4%Nt}rndSN|$jq0^R z4)_^2ks*DDyzUyTf-anR13nhQ-k`WV)m|pT^7!igOwX+!ddJ<=PY=EE$AF@ zJ9;NN2jg#ov*!eO@xL2a4R6i<$jjIL80_S_bLQnH$^+Ph&bzO7uJOmzhTiD>=6?g1 ze=|B~*MZJ$n-y?Hd=!&OX-F|4bGr4+<+m=o=B=pvOhwGH+&%G>qABAtB{hTkWiBc@ z^?f2?Kami+8IMa{A2XB5TsI9!ZQM9d1FCL_^q9S#%uLFRE{wD|C&fimW>lFFW9f`A zwFxbq)$B>#*0MWNIhfUC#%ig&;TisO&$?eZ67C6vLn0K3_J#w&-e9nLXfSYGPO7?^ z)&eobkWmp1h9ZHWJue)JhJw%cuD?*xJgl3gX)%#BT0mtM&F2 zMwCo`@oFNkXew&J4=5>>`gsuLT=Qw&P)bE%>ZYbH-ZhYDtW-3|)1}$P>;I7~9Z6vs sp$bjOXI0&r^!E8qmx@YhHm=51nY5mIZ#5oOWnNRX9Gy~S)-DqL2BaI*yZ`_I 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 b99671100e..fa777ac157 100644 --- a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -11,16 +11,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:30 msgid "Django GPG" @@ -56,7 +54,7 @@ msgstr "Długość" #: forms.py:28 msgid "None" -msgstr "" +msgstr "Brak" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -80,11 +78,11 @@ msgstr "Usunąć" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Szczegóły" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Pobierz" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -99,10 +97,9 @@ msgid "Key management" msgstr "Zarządzanie kluczami" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Importuj klucz" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -146,9 +143,7 @@ msgstr "Błąd podpisu." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Dokument został podpisany, ale klucz publiczny nie jest dostępny do " -"weryfikacji." +msgstr "Dokument został podpisany, ale klucz publiczny nie jest dostępny do weryfikacji." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -167,10 +162,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -201,39 +195,37 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "View keys" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." +msgstr "Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." #: settings.py:21 msgid "Path to the GPG binary." msgstr "Ścieżka do GPG binary." #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "List of keyservers to be queried for unknown keys." +msgstr "" #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Delete keys" +msgstr "" #: views.py:48 #, python-format @@ -242,6 +234,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -251,6 +244,7 @@ msgstr "Importuj klucz" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -276,19 +270,30 @@ msgid "Upload new key" msgstr "" #~ msgid "Unknown" -#~ msgstr "Nieznany" +#~ msgstr "unknown" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "Właściciel" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "Klucz:%s, został usunięty." +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr "Usuń klucz" +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" 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 45cee22921322e03fb2c898103147feb25ff81ac..647ea756ab36c7ed6a0c9ed4ff2ac5a4b8558adf 100644 GIT binary patch delta 845 zcmXZZKWI}y9Ki8w@|wRYZPNNLtz=URsV^Z$$)xyDZxZ8 zVoZF-6n;ku@DC-hWhs@%BvRFRI$6JrV>s`tk-w;}zrN`E&|hChiSrz(YJ)CHeD#{a zD!1LlNfsPVmxFGgWPA%Hk&6Gji#Pe*!vb#Oah%{$q#UFj7>tIWS%z|G)Sr`trAS~Y5?GRw8%pw0M|a#>-FytZk2tM+&3el%o3-F2^D{UzUUJk$eLvlBn{GunbhBe_ zTLo*b)zs#d^){E!KIUA>aIrn@z-)@o)Px1)>coSiMOHrRKvn9FTG z89g-;8wRacwP)^xQ|3?TN8Higg4=HEirY3{!t>@>q%d7_(q%WjP<6Xnozq@t>t!ol V*24+UY)8(9=5(`qw_)t)%6~k_a$o=e delta 1016 zcmYMxOK1~87{KvqnzXe|e5AHoA7w!r9?zaDfI^Q7ilBnU;@yL1MgL#2;J~-P*`3*MzL~ikf74l8jE8S3 zS}(DIh&Cy;9e<;=`yr*4;|w!}-Us6!1HT62ODOC8!Z7Qr zKXjJyAw^h2Fyx$?aB$~rEe1S21i&Ee_JcZwI0Qa)JJ?LORK0?{?7aoUk3E8pQ zNiz9Afm>N$?W3~_4Q|3|9KqXxizo|krb@ahiE>pLlxsVIQs`7Leja7vi`a=*P_F16 z%E>)O$@dg%!8O;9gl}rKJZMp34Iv4n$;dXp=VCJRgQI3Y!K6H=rs zEKN>!1tA;ZH2gv+)+NRD5ON3{rrJoX^{<7tb*K?jG@j7~Q}thk7W}KtqfI0Jr{=zs zC97)TpUu^cJ^I=jxMl+O1@>#&yRl#bPy~#`3PG?QzNB8fVHluJ&ww+UT@Z;fu$kFMtas09H^Y-1lQc0a0$fQ$#G}7C6O(iqQ{<(DI zKvPT|JeMt2@{Z0je2hu z$H{M(7-%O;s6=<->wC!09?|LOo}w0bgIaJ6^~pZqIQ~Qxm?Nv^4WbGdqZ`D7s61t) zMyp^~M?1qn-}W4`@hG&A7SWOKq3QWBZGfi5^vOnO3Kgf&>1hKKG!>{A+9c|gO9hZ7 z3W_gA109Eg|4j5p+>NSG-)SFB!RDe}?hW51j;9x`;&;4yBXp8S(v{YYpwaT?!$NW- ztR@TN(-k}GFS$)G@D}{0A9QTi4;DH#tF{6^e3e`d%c%?frK80YZlN?)$cOh+6Y*tv zs#tuvmb%y%r)bo|NvGtT^6EFec6iwt4VRr``RR%~@40g|@49bi{I(y=)xEa6d1KM$ eTFtBNy7IQH>Ib!J&G3)&ID6i2yWZmeN&f%{S8ZJY delta 1012 zcmXxi&r1|x9LMoTcU{fjSypP;Bbk7@*3C{Z0e6vOVLF0L~&vuftSLx(`< z(om-eyaXN!A?Va8FV!CqT?*<@P*BvVgNNRqb$i%nUeC@v^ZoJcer$i$vH7Vh`Oq*N z=1I*uW6sNZE{r$Wj&HFIKVSmCVhX=wGycXF+{d%n#HL2fVh84tM`jZB-WBA%O>>P! zA2)8H5^Z2VZlN~rU<2-AE55AV-$NyQhn@Jo<~QVH{&La#`!y5EgMH1Yg8MK@elt*A z&^4-J7Z2eDe8Oprp%Q$iio^H^l^{uU?QcSzOed;=esnQidwvu3{v7HA*02fhU_1HE zT^6VC0V=^Rp2pXx4!@uh{6rn)J}N*f*%i1O_0tWY;*6sT^icaO@-aS_Be;r+yM>!N z+D9yC(mX~T@ir>qbL0T3L;J{EJsAbnaF|N0q0W?41!<@djiXG(R6I4O(S3kUYqGjL zQM)0IGu3?$vzMt#)wK#d#?)`8q5nu1Q~w=x)fhjk&$XBdTecPJEZX(>NBv;zBzo#5 z;?cx#Zprh#dAnr&ikY(OdFMQGr?VL+lgp1})9#4tHqT6_uiDj8R0{m`gjcb7C+lW%X}7vBo5^R~ z7x$C1b#3P2?Lv8_6gq_kZ#DkaFcP0j^-|hcYIN$74Xs}&d7)E%Y9lkwCPJx3Z`qso zih)xImQ*KY21AA~%V9~)1ZE}-Sli0pc32AHoz&C5qKyiHzhDccVqk9A(D9=Gf&T$D Ckd0;l 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 f81946171e..ec39336699 100644 --- a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2012 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 @@ -27,7 +26,7 @@ msgstr "" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "ID da chave" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -55,7 +54,7 @@ msgstr "comprimento" #: forms.py:28 msgid "None" -msgstr "" +msgstr "Nenhum" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -79,11 +78,11 @@ msgstr "Excluir" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Detalhes" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Baixar" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -98,10 +97,9 @@ msgid "Key management" msgstr "Gerenciar chaves" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Importar chave" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -164,10 +162,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -198,16 +195,16 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "Ver as chaves" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "assinaturas" @@ -220,14 +217,15 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Excluir chaves" +msgstr "" #: views.py:48 #, python-format @@ -236,6 +234,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -245,6 +244,7 @@ msgstr "Importar chave" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -270,19 +270,30 @@ msgid "Upload new key" msgstr "" #~ msgid "Unknown" -#~ msgstr "desconhecido" +#~ msgstr "unknown" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "Proprietário" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "Chave: %s, apagado com sucesso." +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr "Excluir chave" +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.mo index 787a7adc694d82e5cf5fa303ac44a474146a6652..8d112fb258922e33e295f6096c1d28a3cc304ee9 100644 GIT binary patch delta 830 zcmX}qKWGzC9Ki9{f^!q!n{_q)7Gt#mKvS}~>6 zT12UB_z*kr8J@(KIEc~cKab!5`3%N!5oP>MJdP`v#E-ZiKclSw8#~c)l*(ZWxzs5~ zwSobYWV`4nglc4tx{9(uGjt*R{RVQWJE8Y5LH+>Wwkh=(d&%oemUWg;4tfi_a5c;y z#ag@#9qV)qVJD-qIEopppe($GTnEyl>_Xnj?QC8(egOHL-9HhyjJ7{}o-86|lnrtc| zb0y?+%fZeb;3g%JkON4_##(ZR0qyqeIB^qlLvB|WG8nw@rrovE^~?UHlO zDKzG_{pwsu<_>3%rZc&b%#fXE?+?>sBiZcJYWr+kpW3`#)0L9mylc|ME82KE*wr(} z{)&B1^R*J6|?YEALb~1jbcRU}A)2gJaHBF|90%~9`(OK`treMOuY(80UEEDP?4c4R0vF5Dz^KDGzTJkMow50oe+ZVS zs3<6S5k-d}qB<4PMf!8GC<|{923ek6(39yZG=V0osGjrI0JXXE3gQk zzyt6%H4t=8`MT4e33ig!7t|S_=vbDu5cIT+SrN(e^)M)zx&$2X$Qse zkvFOHkUwmjZcu%RcAu#`VZFN`bU$oq zwHXbKuJ1, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:30 msgid "Django GPG" @@ -27,7 +25,7 @@ msgstr "" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "ID cheie" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -35,7 +33,7 @@ msgstr "" #: apps.py:77 forms.py:34 models.py:70 msgid "Type" -msgstr "" +msgstr "Tip" #: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" @@ -55,7 +53,7 @@ msgstr "" #: forms.py:28 msgid "None" -msgstr "" +msgstr "Nici unul" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -75,15 +73,15 @@ msgstr "Nume, e-mail, ID-ul de cheie sau amprenta cheii pentru a căuta." #: links.py:13 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Detalii" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Descarcă" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -98,10 +96,9 @@ msgid "Key management" msgstr "gestionare chei" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Import cheie" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -145,9 +142,7 @@ msgstr "Eroare semnătură." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru " -"verificare." +msgstr "Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru verificare." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -166,10 +161,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -200,41 +194,37 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "Vizualiza cheile" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Cale director utilizată pentru a stoca cheile, precum și fișiere de " -"configurare." +msgstr "Cale director utilizată pentru a stoca cheile, precum și fișiere de configurare." #: settings.py:21 msgid "Path to the GPG binary." msgstr "" #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" -"Lista de keyservers care urmează să fie interogat pentru chei necunoscute." #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Ștergeți cheile" +msgstr "" #: views.py:48 #, python-format @@ -243,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -252,6 +243,7 @@ msgstr "Import cheie" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -277,19 +269,30 @@ msgid "Upload new key" msgstr "" #~ msgid "Unknown" -#~ msgstr "Necunoscut" +#~ msgstr "unknown" #~ msgid "ID" -#~ msgstr "ID-ul" +#~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "Proprietar" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "Cheie :% s, elimină cu succes." +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr "Ștergeți-cheie" +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.mo index 7f2f95b07381d7928684fabd7327118e3ca2da1d..d8b6935ba1e42f4477f98ad834573617e23f8881 100644 GIT binary patch delta 1402 zcmZA0TWkzb7{KwO%)v)kh|kjFA5jweobLa?a{9lJpIYo^5nP6oFo+Uw4@#nk za4MRfDWwuLNKRcwnb?xH&6}Xq4U|M4pe*nt?K2F}AH;l4>n#@3|H`)J;2)H@`D|Ab zE<_n$j*?giE!J22Xl%ni+=LQ!FKkA6@H)!TcA}ibLu|)4D1nZUodmY93R5Vr>OC&P zPsmUG=CTWY9E057hp8nrj?rPI9yqv;J6-Bb2PCQ6<|MRM{0tdqs98e~JRCoWf$Nlm&9xV%8d` zBXu#;Zc13Csxo1jb|fA%YE9cxp#wn`vZ9tWJ&aRU@-%JR%#1{x51H?bQ2cBx8aHdz z)@YsCU`Ex}bB&S2cnqf_E97rzj3;d8OIAt2_K@0XC5;9%X4Y8^R?JqrtXQ30@6`C# zZQK)&St@MW^@bfc?0U?>p=}m~6D1 zO#jiG@|9)ljWy*JYgRia{6*>RhKjPXr)~bej1t|hyWM8pZMc{83*D!CbhjSX{q8ky z$GXcK7-XQ?z3Q0RMS)(Ktr>B?XD@tuE4wJ8OyAK1L}`&o?$xpFkA)`i0CiYqj0AUH zPwbeaZ|WiaQonF7y3NkfKuzBEkio=3w@oHGLxH7%c3Fr=x}Dmby{TKe-ylwp3@P2| zUY6x}#5){PyyRZ-Zj-+xq=!lssrBjs_o9}xhuv1)JHAA}(zhAquG>naR{i|{fqy4E QpK>1i?-Ki^(~(>J7cCb_Gynhq delta 1192 zcmZ9~Ur19?90%|-H=Rz+GRrJm2f_zSSDWI)h{BqcBv|x^s2-ZzQHJx5cDF<*ri<#q z$m&*7P$ohTKCS6cw>BeRf`ZPadMF~OmmY#1d$EVUzwIj0!QVdjo^$T+{LVQ})un1< z->NMS7@8eXkEk#))(HPXYR`%oTL&kh8780&&cbrI2oJ%xa2Kq?B+?BjkAPM<2HW8{ z#8mbfB2SEc#ltpq{DicS*-|K`8oKcAgsspIi{T?!0w>^l_}p*~A_aS6jK4GdV2po( zRQNB5KlTSdR;J4z`)~=;j?ZEd`u;pT0;6yz)@NB`;5!W9eHnH^fpTewNy8=Bg!hlI8JckZRNx+n zF4h98;eJS0c>>ajDv)-371qEw+z!WK%(&+K380T{M9?6{*k%MJq_!17)l;MEqE?B( z=JKt|kglczu>nEFZ9>rh)=HxSs3!pQwU<~kt`D!Rb%Ff@=0Gd? 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 9c963614e6..21b2647582 100644 --- a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,17 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:30 msgid "Django GPG" @@ -27,7 +24,7 @@ msgstr "" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "ID ключа" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -35,15 +32,15 @@ msgstr "" #: apps.py:77 forms.py:34 models.py:70 msgid "Type" -msgstr "" +msgstr "Тип" #: apps.py:79 forms.py:23 models.py:51 msgid "Creation date" -msgstr "" +msgstr "Дата создания" #: apps.py:82 forms.py:27 models.py:55 msgid "Expiration date" -msgstr "" +msgstr "Дата окончания" #: apps.py:83 msgid "No expiration" @@ -51,11 +48,11 @@ msgstr "" #: apps.py:85 forms.py:32 models.py:62 msgid "Length" -msgstr "" +msgstr "Длина" #: forms.py:28 msgid "None" -msgstr "" +msgstr "Ни один" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -75,15 +72,15 @@ msgstr "Имя, e-mail, ID ключа или отпечаток для поис #: links.py:13 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Детали" #: links.py:21 msgid "Download" -msgstr "" +msgstr "Скачать" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -91,25 +88,24 @@ msgstr "Запрос к серверам ключей" #: links.py:29 msgid "Import" -msgstr "" +msgstr "Импорт" #: links.py:34 permissions.py:7 msgid "Key management" msgstr "Управление ключами" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Получить ключ" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" -msgstr "" +msgstr "Секретные ключи" #: links.py:45 views.py:149 msgid "Public keys" -msgstr "" +msgstr "Открытые ключи" #: literals.py:6 literals.py:14 msgid "Public" @@ -164,10 +160,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -198,40 +193,37 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "Просмотр ключей" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Подписи" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Домашний каталог, используемый для хранения ключей, а также файлов " -"конфигурации." +msgstr "Домашний каталог, используемый для хранения ключей, а также файлов конфигурации." #: settings.py:21 msgid "Path to the GPG binary." -msgstr "" +msgstr "Путь к GPG исходникам." #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "Список ключевых серверов для запроса неизвестных ключей." +msgstr "" #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Удалить ключи" +msgstr "" #: views.py:48 #, python-format @@ -240,6 +232,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -249,6 +242,7 @@ msgstr "Получить ключ" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -274,19 +268,30 @@ msgid "Upload new key" msgstr "" #~ msgid "Unknown" -#~ msgstr "Неизвестно" +#~ msgstr "unknown" #~ msgid "ID" #~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "Владелец" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "Ключ %s удалён." +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr "Удалить ключ." +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.mo index 6852ce84294e454e20bbfe3d09bce7b2d94eb719..46792062ac115d916008d3e8b0eb96fbef1395ed 100644 GIT binary patch delta 245 zcmeBU`NC3vPl#nI0}!wPu?!H~05K~N#{e-16aXi{tbSOD=Aprj>`2C0F8iERN~#=1s^3WjD@ zCdLyVNb{KL8d&HWnJ5^TSQ$)aXYA(pNz6+xO-xUct&bFu1Ta6B|WOJt$s; zp#(2pJ<33+h>i^pz4Se1Edkhko-)o+nSf-*3{Vm3K3PZ5<8g3HJrvfcnt4h8y{gE_cFiZ6|O66(tX$PI{G+;&+wu#1M`xT zA`?5PMDMYQBP`(WZ2d3Ja9v2MVpbGkk$8lfl?hmB+sUEzDcQ-_ z%Zt8Q3Le|NZq&US^nxf(Zj|QpTTzfig|}YQ@#gJDv(<1Nx9Pf5E6dKU;9=Mgw<5>y z#zD*W+{RVb()$)#o;O^YaB|hv(XeZ8taCK&_0W#PgWb>ZaJyK~Dd{XpI}Z+a-$eH2 NX#eQG|7l;8;(tk@Uwr@o delta 1002 zcmbW#&r1|x7{Kv&-Bru1Y)$)N$V(uktkQ1g!CUE}Fp5qE1u^OC?&9uj?#%e(5Zl4% zC^7`mZ}8L)&@hnPf@m|yLl@}~MY8<`5p%;W$R|1~%Xf?!Z|bz_tOU>ZqLPmp~| z>Nyu}+*n3AXdT<}2c|F*Q>qtxu@^o=H0NP&!;jd4C0^!Bv!kt9TfH zVT$ur%eJi!Phm6b>)42MC@(z37F<9na22J%k0_mdM#F_5?L%&hJqU1_Q5fZY; z9)=WG+RG%#@}g9|ld+#6Aw|dmaan|M0QWIyJ_z~WNYMuw@_8gUH;7i|-3%HH8jzb( zs5)tlXeXPtE!V$P)7+>AP0qMRkC|!5Z>ziDf2w&E8T4;P6PNRrZKX}#*sdBf)BU=` zN$8Ovn;pF2VdFTXUM@G?qt0X, 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 @@ -54,7 +53,7 @@ msgstr "" #: forms.py:28 msgid "None" -msgstr "" +msgstr "None" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -78,7 +77,7 @@ msgstr "" #: links.py:17 msgid "Details" -msgstr "" +msgstr "Chi tiết" #: links.py:21 msgid "Download" @@ -97,10 +96,9 @@ msgid "Key management" msgstr "Quản lý khóa" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "Import key" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -163,10 +161,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -197,16 +194,16 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "Xem các khóa" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -219,16 +216,15 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "List of keyservers to be queried for unknown keys." +msgstr "" #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "Xóa khóa" +msgstr "" #: views.py:48 #, python-format @@ -237,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -246,6 +243,7 @@ msgstr "Import key" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -270,17 +268,31 @@ msgstr "" msgid "Upload new key" msgstr "" +#~ msgid "Unknown" +#~ msgstr "unknown" + #~ msgid "ID" #~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "Nhười sở hữu" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "Khóa: %s, đã xóa thành công." +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr " Xóa khóa" +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.mo index 366bee8b4ca366f03029c7586ed056e0c024e259..16658929ed800a91b0b84cf5d99fd6bc02f2c7ba 100644 GIT binary patch delta 780 zcmXxhPe>F|9KiAC?l?P|wXUXCR;*#jDigEQpt2DW?j@D}K?lL4DF<25S;a;1WPf1$ zcgbE6oytQ*g?8u?#2&gxkX<}Rc!*;49(C>elkvy=-e+dsoA-P3-csssa&fcCc&dnY z@-X>_JWj6H&=A*RO6@}*<2a3bu!IS`i34~KyKz18A7*$y#zz(oql~|TXYnf5E48Rz za3jUvqKRuL1;3$(KhVGwjr6x-BOZx7fecY+qW*!%!KnWda;fVybvS`f__-NupuRGh zRVHZ025dtq)JfxD4|d`xcHu4Tz&FUHzS78_ZJ>?cQRcCDc@$evcECe8zK_I=16E zPW{CT_T^x%Fk2{wcHS=qxwPwKd+FO5*PnCU4@0$XjamIv-g7cD6bJC(qkyzp+ghz3X;x!nB(y18BnD4bE~F-&OguEH2m>L7g|g6wLqkmv zk!V^SjaG?>N>Zz_2TeTm;>kmgdem5BvOupMJbCc{cK4+-zkRdQH#0l@?Y}=z`Z;KS z#1JRU_79Gs{ji`zWUY)HfD6zDSD+h~VJ}>Tm*6w#fxD(|Og@YJ9CX4tco8Nbrm!~< zbxQ0V9*$$+6QqT{!BO}d%FtqG%n$vr2PUBdX5c}%XnGssU)U4#eckkx`F<1Pk8Pvd z2S3AymJ(w-c<95x9I8@*6r? znkeWiQ&5coG`hypA$0WF@e%Z0?}sC36jX#37^K9EqmXt_8=#=y%@Eo#G`b!NtgFXi z^t3UYOFsw=(v`94NK8_b2_=#j^VXqW7UC(M=h8ecii-7%xN4iRgv4{3cQzeSA_<=6 zN}kQ|Vo(}Wy;4k{i~@ydl&fmIkV+LN*yW^}mojmxq4L}!*ABi-QALV@R!JSN36 zIjNw`E14xlpEM!9+X6jTmK2^7!}hoCsd3pS`2s<|EOzXpMk@P)zR3@N?6Rd#tG?J< zf30m*_8zo^$I%pD9RX`NB%IEvaOZuqvsPioOMR2Z>~?ict2J1=(dur!Y}YqCjg~Q| m^R#R{wCne@T2ou!(5jES%?%NDUU1#L*{, 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:10-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 @@ -26,7 +25,7 @@ msgstr "" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "Key ID" +msgstr "密钥ID" #: apps.py:74 apps.py:87 forms.py:19 models.py:67 msgid "User ID" @@ -54,7 +53,7 @@ msgstr "" #: forms.py:28 msgid "None" -msgstr "" +msgstr "无" #: forms.py:31 models.py:59 msgid "Fingerprint" @@ -78,11 +77,11 @@ msgstr "" #: links.py:17 msgid "Details" -msgstr "" +msgstr "细节" #: links.py:21 msgid "Download" -msgstr "" +msgstr "下载" #: links.py:25 permissions.py:28 msgid "Query keyservers" @@ -97,10 +96,9 @@ msgid "Key management" msgstr "密钥管理" #: links.py:37 -#, fuzzy #| msgid "Import key" msgid "Upload key" -msgstr "导入密钥" +msgstr "" #: links.py:41 views.py:160 msgid "Private keys" @@ -163,10 +161,9 @@ msgid "Key data" msgstr "" #: models.py:76 -#, fuzzy #| msgid "Key ID" msgid "Key" -msgstr "Key ID" +msgstr "" #: models.py:77 msgid "Keys" @@ -197,16 +194,16 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 -#, fuzzy #| msgid "public keys" msgid "Upload keys" -msgstr "public keys" +msgstr "" #: permissions.py:25 msgid "View keys" msgstr "查看密钥" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -219,16 +216,15 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 -#, fuzzy #| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "查询未知密钥的密钥服务器列表" +msgstr "" #: views.py:38 -#, fuzzy, python-format +#, python-format #| msgid "Delete keys" msgid "Delete key: %s" -msgstr "删除密钥" +msgstr "" #: views.py:48 #, python-format @@ -237,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -246,6 +243,7 @@ msgstr "导入密钥" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -270,17 +268,31 @@ msgstr "" msgid "Upload new key" msgstr "" +#~ msgid "Unknown" +#~ msgstr "unknown" + #~ msgid "ID" #~ msgstr "ID" #~ msgid "Owner" -#~ msgstr "持有者" +#~ msgstr "Owner" + +#~ msgid "Identities" +#~ msgstr "Identifies" #~ msgid "Key: %s, deleted successfully." -#~ msgstr "密钥: %s,删除成功" +#~ msgstr "Key: %s, deleted successfully." #~ msgid "Delete key" -#~ msgstr "删除密钥" +#~ msgstr "Delete key" + +#~ msgid "" +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." +#~ msgstr "" +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.mo index 596114aaaabbf5c9624d420d4ecc59b6e36c44cf..24bac3d340e506ceafa3b3b66b7998f43bb7b3bf 100644 GIT binary patch delta 44 zcmaFN{+NBkOhzsfT_bY^LlY}QgUO2-7xMTd=B1Y=rl(pdBo<9}W{Tdtn#qC@0701! A6aWAK delta 44 zcmaFN{+NBkOhztaT_ZyULo+KA&=%079V- A82|tP delta 44 zcmaFH{)~OYOhztaT_ZyULo+KA}isJD}%u6p#Oi#5^NJ`(lmdTP4074rM ACjbBd diff --git a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.mo index 44355b3e2236ab702a2ebda54bfca917f20fbbe9..658621d9a6e6dbf828b13f0eed63ba1a60cd20e8 100644 GIT binary patch delta 46 zcmdnTzK?ywOhzsfT_bY^LlY}QgUO2-_woBA=B1Y=rl(pdBo)UyIZjSsik^I$=`#RT C=?|p< delta 46 zcmdnTzK?ywOhztaT_ZyULo+KA8Vx2XxNf#%iD3i) DJyH$M diff --git a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.mo index b3005071b7e0ec8b34076a7652699faefb9c542e..82e9040877766e2a9b24945df9e7de2bc214afdc 100644 GIT binary patch delta 23 ecmaFP`kZxxKO>iku93Ndp^25D!RAQDK1Kjl^ag1F delta 23 ecmaFP`kZxxKO>j1u92aFp_!G5@#aXzK1Kjl)&^<- diff --git a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.mo index 9c7d55e49934c4887b9561beefbd12cf109032da..75a0e992d17c14861e36b98d87a51988addbc681 100644 GIT binary patch delta 44 zcmbQoJ&$_>H#3)su93Ndp^25D!DLb9MLa%8Vxb%7 delta 44 zcmbQoJ&$_>H#3*9u92aFp_!G5@nlivMU#&(NAdV1=B1Y=rl(pdq!w?MWocvt01yBS AzW@LL diff --git a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.mo index 3297db2bbbc957a8559989f8a2b250f9ae743e0a..877748f60d172770d508aa6279d30337fcb3f9a5 100644 GIT binary patch delta 44 zcmbQsIhS*THxrkMu93Ndp^25D!Q@b;MLa%8VxWqj-E0^U_Nb(^IV!(h@hvGCME=01p}r AWB>pF diff --git a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.mo index b56d74096b1ca17771cd015a15f405a4a734d8f7..7dbebb10eac42d4c7efc3a04ba35785841bb67b5 100644 GIT binary patch delta 44 zcmeyt{eyc0H#3)su93Ndp^25D!DLb9BRoEddFiEz>8Vx8Vx<8KsjonW868WI6@_C8Vx8Vx8Vx<1v!(iF-LE8Vx<1tpW?n4%{iV>$u=9v2Qr delta 42 ycmeBT?_%GufsxBt*T_)8(9Fujc=9gBrIT}*qPTq$^U_Nb(^IV!3ML<6ItBm`9u40B diff --git a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.mo index d90738ce13c08cd51c6f22a1262855392bb7ec30..6b01d406a926f2adfd9e7c95ce8e1350676b1877 100644 GIT binary patch delta 47 zcmZqWY~|eG&BSG*Yh delta 47 zcmZqWY~|eG&BSG_Yh8Vx<#X0f8o|BcBq9^w=B1Y=rl(pdlx4<;`ArUGik^IcX(Iq< Cq7Tvl delta 46 zcmey!_K|JFOhztaT_ZyULo+KA8Vx8Vx3i04K~1 AJ^%m! diff --git a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.mo index 09c25ad9c1d5aea811595bdf99cefa7bbee78e8f..d97099acd48a4eb9a12b5df74419319dc4fc1210 100644 GIT binary patch delta 47 zcmdlYuti{l77Le&u93Ndp^25D;baq*ef&O&dFiEz>8Vxeu93Ndp^25D;bcd~g*-lqdFiEz>8Vx8Vx8Vxh($ delta 43 zcmew&^F?NZ1jl3t4pvq}GbBR~FHBt?l diff --git a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.mo index b0796e0860dbc9af79c5dd9545a59d09191a1264..80c742eb7ba9da2316d25789c78f7623a098a754 100644 GIT binary patch delta 44 zcmca4e@T9WDF>H{u93Ndp^25D;beP`MLa%8VxIau92aFp_!G5@nn0BMU&rgMDh3}=B1Y=rl(pdq$O^4=j>(!05|^* A2><{9 diff --git a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo index 57fc2349585a999d3483f41fb57a91a4e2a7607b..746085f2aaf3204e81c3f4c87a9afd3f0a8495de 100644 GIT binary patch delta 44 zcmZ3iu~=h+1vi(8u93Ndp^25D;bbT7g*-lqdFiEz>8Vxeu93Ndp^25D;bcd~B|JWfdFiEz>8Vx<8Ksk-Fh)=IVd@3|8wm}y delta 42 ycmcc4dYyHHIpgGbMpjlsGb8Vx8Vx8Vx8Vx<1tpUWSfe-3V7D diff --git a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.mo index e81f9131838af566d22e6c6672cd73593a9f15ac..82c4b67e94f6a14f5e65d1f02aa17838b2a6623b 100644 GIT binary patch delta 47 zcmdljvs-3^DF>H{u93Ndp^25D;beP`jr=}|dFiEz>8Vx<1tsxLL6hHeL~oAbe8>U- DRvHgr delta 46 zcmdljvs-3^DF>Iau92aFp_!G5@nn0BjgvT|__#VO5&Y@Hb-(kVgUd_ Ch7NE5 diff --git a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.mo index edf8cbc9b2572a75a9754a30988e352c2b682661..e096c9d664197dd4c552e3e490adc1d5855d78b9 100644 GIT binary patch delta 47 zcmca7a8F=^77Le&u93Ndp^25D;baq*4g5ZddFiEz>8VxT= delta 47 zcmca7a8F=^77LfLu92aFp_!G5@njR04U@mHMDhD1=B1Y=rl(pd6y?VU`ET}R6=Vhg DVNed2 diff --git a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.mo index 81c2d25372c4247772917d889b994f2275dbdca5..f40fd59af653cdba9a9107db03138c8511363126 100644 GIT binary patch delta 44 zcmaDR@=Rod6APD#u93Ndp^25D;bb3{MLa%8Vxeu93Ndp^25D;bcd~P5eHIdFiEz>8Vx<#X0f8o|8W@Mo*4qItc(a C2@b#j delta 45 zcmZ3+wv26qIpgGbMpjlsGb8Vx2*bs%=G)x@nQa#Yv$*KLUIjmqq^tb#M{H_e#6z;s;NjyWHK&`w_p1wO^9a3&JEo3fN#8JOe#%APU~W zB=`h#;2Xq1GD0)~FTncV5?p|n;TgCJ&%;gl6`TWo&l@9}C2CU>3mtd{>k^l+4h-Na z_zo_>Pp}UBf^}d5Daaa(E}}!nfzF5nU3N4&56{TZKTIwKnL={Q_NliQN$u07Xt52G zwp>Thw!>`hRRk+>$q%_Nd?u@w&)g&7acQ{@tMe9X_0vC%gc;v(`oatC<@ z`5S4%Jz-f>pa)(BpMpjwKpT7oj)HH&%iufk68H%m19w5A`wAM5@8C7?*MK7@E$b)h z8=&#|Gt&2Tt40GjzH;CV0xjZXm@pBJFxKTb*?(GtTW(Qq}hjS^`pr(i?(=7RMN?rE+r>rkqQ=@qcV!PQtdKLdo`;m zqB7&T9x4^iy15aP_{bV%-RC{B()7u=vL1?@Tk8i7gVW(bJ4p}sb+6#noKf(8873K5 znq@`R*r@J!tnFhilXj29$6R++if261bS0)xsYK*HX|W#5$x^emZm;n|NKIR+lf?91 z*-+GJrlF@zrg5LT>&;NNLF*pzX8h>}b*EhyLb}GECuZ+aUETBDxtlJ+ ze!!Hbp=7yAnHJI~Yhsg2EkMO&A|S{+CF^h+a+dkzu4J1@L?*YiE_}!7cDprgrjs_` zu0<4if}V28t`GiA3{T1&%c_G+%ZC~}Q|lZMrAt@*Zgij*b!Jc+iL zR9pue;WC{a>WpKXOS+UtB2My-Pi8k0eQ;NwFln!*rDQ2x7BW*l$&2c%3TEa>zYOvq zaLFCw5_E&WL+SO)I?B2!$354*9W=, 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -27,19 +25,17 @@ msgstr "Document signatures" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Date" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "Key ID: %s" +msgstr "Key ID" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "Signature ID: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -58,28 +54,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "Signature file" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "Signature file" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "Signature ID: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Signature type: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -110,10 +102,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Verify document signatures" +msgstr "" #: links.py:39 msgid "Signatures" @@ -125,17 +116,15 @@ msgstr "" #: links.py:51 msgid "Details" -msgstr "" +msgstr "التفاصيل" #: links.py:57 -#, fuzzy -#| msgid "Signature file" msgid "Signature list" -msgstr "Signature file" +msgstr "" #: links.py:63 msgid "Download" -msgstr "" +msgstr "تحميل" #: links.py:69 msgid "Upload signature" @@ -178,76 +167,59 @@ msgid "Embedded" msgstr "" #: models.py:88 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signature" -msgstr "Document signatures" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signatures" -msgstr "Document signatures" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "Signature file" #: models.py:126 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signature" -msgstr "Download detached signatures" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signatures" -msgstr "Download detached signatures" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "signature file" msgid "signature" -msgstr "signature file" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Download detached signatures" msgid "Sign documents with detached signatures" -msgstr "Download detached signatures" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Verify document signatures" msgid "Sign documents with embedded signatures" -msgstr "Verify document signatures" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Download detached signatures" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Upload detached signatures" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Verify document signatures" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Verify document signatures" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -258,10 +230,8 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Document version signed successfully." -msgstr "Detached signature uploaded successfully." +msgstr "" #: views.py:129 #, python-format @@ -274,44 +244,41 @@ msgid "Sign document version \"%s\" with a embedded signature" msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Download detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Download detached signatures" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Document signatures" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature type: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Signature type: %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signatures" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Upload detached signatures" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "On large databases this operation may take some time to execute." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Verify document signatures" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Signature verification queued successfully." -msgstr "Detached signature uploaded successfully." +msgstr "" + +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" #~ msgstr "Timestamp: %s" @@ -319,5 +286,17 @@ msgstr "Detached signature uploaded successfully." #~ msgid "Signee: %s" #~ msgstr "Signee: %s" +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Detached signature uploaded successfully." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" + +#~ msgid "signature file" +#~ msgstr "signature file" diff --git a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.mo index e565044d0c963cafc2cb360e6b24b1616fda2338..9c484ac73192ba947eb29c6ed82063d97ca20c13 100644 GIT binary patch delta 701 zcmX|-&ubG=5XUD?(rT*3A5cU@M?powVroF?MGNszgnIDo;kA9Oi`iYtZnOmso5*| zUpT11a*^mN*a3CmBX}N^LH-*YMP7lr_K$-Rcmg~H_CcNd0#1WJK}i2!YOWX5r5~Ug zL}&9o7v77b{sqj@5TcBLCsEymHhNm%w$lix?$5Ve>xCRROP&c^O{=vBUc)yFbi=Oj zOr2(Z&(ckg8>YErdBKEc&IC5#@QxF(f6q2e==dJHW`#p@*K**ymP1E3pY5`pZ-sV( zZv8XhMW32rp}GmHB494S* literal 1885 zcmbW0&2Jk;7{&)EUoM{ogj7J9B7qWMymneu=|(A{O^PBgjZzo5Zr0=VqV=vdJ6qSc zwh?N|p%q0)2vk*-BCeQ{s3rmD)I$$Qv+9il2mS}dwa>eDnh-BSWu)2P&df9KJnuWZ zf9%`yHA8zI{Z;f8^q0}!c?b`*WpF=u2^<4gz;W<5@CER1koN6;m@x|+0}J4%;2zKg zp934JjLIL*$1-2=Vokr{U{10JGGV0*6j8~9Wi&T>rP8%`|c~^Y*h|stA10)+G(~j z&FL(?T*n_v<<~pBmXqnciawLB7IQTLRqRKh%_~mF3Hj_y12TGd{%~)lHP`(vi1I zXoU}*Sc|H1!Z>hrq-?$rElQ;$Fm{w5K@fV0<4IAKPSfVclEA|}Y>qXwZrPUAZnuk? z0{C@#w&+GpOAWRvt4a9?S!>2tFbrcYde(TMGFO@1PP<$z6^=)t#?4ntF2bx z_~8_H8;**lo<3bYAttwVbYfj9F&ny34IhHdCl`Hv->%IUy~2EuC?^mnBGrs-9=5V! zJUubR2d~p(AwMw9%i~i8X1+1E(hKQ1(=#_s*ZgYMI38VktflA8&GZYb-O5&a91}hB z6Rl&*5^ZAU+NdtQfGDF{nnK{-)`5^AYH?jh3zzW&V%l}{UV&*H9f--;=ZZ@edJJS5mx^_ov)y;ln)V5C! z({n@D>t-XpoL?P2ZuHW&Hw-a 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 3211c4a930..588d784d0b 100644 --- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -26,19 +25,17 @@ msgstr "Сигнатури на документа" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Дата" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "Номер на ключ: %s" +msgstr "Ключ ID" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "Номер на сигнатура: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -57,28 +54,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "Файл със сигнатура" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "Файл със сигнатура" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "Номер на сигнатура: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Вид сигнатура: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -109,10 +102,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Проверете сигнатурите на документа" +msgstr "" #: links.py:39 msgid "Signatures" @@ -124,17 +116,15 @@ msgstr "" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Детайли" #: links.py:57 -#, fuzzy -#| msgid "Signatures" msgid "Signature list" -msgstr "Подписи" +msgstr "" #: links.py:63 msgid "Download" -msgstr "" +msgstr "Сваляне" #: links.py:69 msgid "Upload signature" @@ -177,76 +167,59 @@ msgid "Embedded" msgstr "" #: models.py:88 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signature" -msgstr "Сигнатури на документа" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signatures" -msgstr "Сигнатури на документа" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "Файл със сигнатура" #: models.py:126 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Document version detached signature" -msgstr "Изтриване на несвързани сигнатури" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Document version detached signatures" -msgstr "Изтриване на несвързани сигнатури" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "Signatures" msgid "signature" -msgstr "Подписи" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Sign documents with detached signatures" -msgstr "Изтриване на несвързани сигнатури" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Verify document signatures" msgid "Sign documents with embedded signatures" -msgstr "Проверете сигнатурите на документа" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Изтриване на несвързани сигнатури" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Свалете несвързаните сигнатури" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Качете несвързаните сигнатури" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Проверете сигнатурите на документа" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Проверете сигнатурите на документа" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -257,10 +230,8 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Detached signature deleted successfully." msgid "Document version signed successfully." -msgstr "Несвързаните сигнатури са изтрити успешно." +msgstr "" #: views.py:129 #, python-format @@ -273,56 +244,56 @@ msgid "Sign document version \"%s\" with a embedded signature" msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Delete detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Изтриване на несвързани сигнатури" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Сигнатури на документа" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature type: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Вид сигнатура: %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signatures" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Качете несвързаните сигнатури" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "При големи бази данни тази операция може да отнеме известно време за изпълнение." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Проверете сигнатурите на документа" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature deleted successfully." msgid "Signature verification queued successfully." -msgstr "Несвързаните сигнатури са изтрити успешно." +msgstr "" + +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" -#~ msgstr "Време: %s" +#~ msgstr "Timestamp: %s" #~ msgid "Signee: %s" -#~ msgstr "Подписал: %s" +#~ msgstr "Signee: %s" #~ msgid "Detached signature uploaded successfully." -#~ msgstr "Несвързаните сигнатури са качени успешно." +#~ msgstr "Detached signature uploaded successfully." #~ msgid "Error while deleting the detached signature; %s" -#~ msgstr "Грешка при изтриване на несвързана сигнатура; %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" diff --git a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.mo index d03cc044d4c2b3c88e6f87a99573ac2cc14618cf..a6e6e483450f2a050ca238d87181c53b7172370f 100644 GIT binary patch delta 542 zcmXw!Jud`N6o&7P^|eBLbZq2Aqas-(L?Mb*h-68WGzZ7J^K~~fcg9DvwL&B&qEu_C zBy{`@zkx<6-n+|9o_XfpIp^GW?kdj%?T_*Dt-`8+DhRI`i7<8ZTowxP#rm2iS#q>=vk3cmw-) zcoZJOEiPyk#;neAeeQBM*!2zq7xsU-fM{2qJE*f2RTs-TOjWU0s_v^TIj7CKYM5Bm zc1$5BO`#*Ue88!sWKVQTrX>kmZDNY}oGb@IsfmQFb`L{xCWo1od9|yXG21K=I@X~S zo)=V><`$NzwzOKS6{p_x-*#nnVe#qS%S*#ZltrCLp|6Xz@>E-G)+q@6?CpwGL;G?R z8`WUSCDehA=zuRcVrm(eF<>&ebn_jemLk*4@XaRdBQV7h7|IiTiI5I=87t^PK})Bs Tb`q2Ol4w+RkMQTkNble;N(lJ#n8v~)A(u!X*Vt?m1b<+((Pp@PiL<*mvt)KpF3k~0 zBbY)CNh64VfFM{2A{I%jy@g;WXl)?~erIMA4;*;=nR)Nc`+jHNP3$%XU#IHN3F{={ z5@H*17V#6|)_jfVD%b+2!3Uu0GhhRJ3f940@C^6@JO#c6r@;51>-!8kjW6H@@O$8Z z#>a?$;m`z~&DFVY48o`1U`aJ_!D>z{02J1zd^{* zQG_$()(Lt@1YN(5;5&&xA079ZAUJ`&8$4d+DB?nP9&s$JTGz5DH&~Q;W@PMAWv9c| zu9aEVpL_P_@<7D@bz8c@eX$a?#T838jb^%gIH=10ORTAEv|jXc_V-)|hwZBBvMppc z_l0}j%7N_Uh)X-{)zZe|>_SVlmfF`Ahd*k~a9n7$=a=73kM(MUTXD}Mtd+=3kt-__ zJkI6`@4wQfdgiR@Nj*omeS;FQNy{$lLQ-TNYxf_72}8IV!n6_zv#Dh&MVck$-i{1! zR|&`3j8t>>Lqj=|g((q9@o Hi}mJTtYEfP 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 e2ea6f4d42..7eacd60054 100644 --- a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -27,19 +25,17 @@ msgstr "Potpisi dokumenta" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Datum" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "ID oznaka ključa: %s" +msgstr "ID ključa" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "ID oznaka potpisa: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -58,28 +54,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "Datoteka potpisa" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "Datoteka potpisa" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "ID oznaka potpisa: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Tip potpisa: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -110,10 +102,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Provjeriti potpise dokumenta" +msgstr "" #: links.py:39 msgid "Signatures" @@ -125,17 +116,15 @@ msgstr "" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Detalji" #: links.py:57 -#, fuzzy -#| msgid "Signature file" msgid "Signature list" -msgstr "Datoteka potpisa" +msgstr "" #: links.py:63 msgid "Download" -msgstr "" +msgstr "Download" #: links.py:69 msgid "Upload signature" @@ -178,76 +167,59 @@ msgid "Embedded" msgstr "" #: models.py:88 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signature" -msgstr "Potpisi dokumenta" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signatures" -msgstr "Potpisi dokumenta" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "Datoteka potpisa" #: models.py:126 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signature" -msgstr "Download odvojene potpise" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signatures" -msgstr "Download odvojene potpise" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "signature file" msgid "signature" -msgstr "signature file" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Download detached signatures" msgid "Sign documents with detached signatures" -msgstr "Download odvojene potpise" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Verify document signatures" msgid "Sign documents with embedded signatures" -msgstr "Provjeriti potpise dokumenta" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Download odvojene potpise" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Upload zakačene potpise" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Provjeriti potpise dokumenta" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Provjeriti potpise dokumenta" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -258,10 +230,8 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Document version signed successfully." -msgstr "Odvojeni potpis je uspješno upload-ovan." +msgstr "" #: views.py:129 #, python-format @@ -274,50 +244,59 @@ msgid "Sign document version \"%s\" with a embedded signature" msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Download detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Download odvojene potpise" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Potpisi dokumenta" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature type: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Tip potpisa: %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signatures" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Upload zakačene potpise" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "Na velikim bazama podataka ove operacije mogu potrajati neko vrijeme." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Provjeriti potpise dokumenta" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Signature verification queued successfully." -msgstr "Odvojeni potpis je uspješno upload-ovan." +msgstr "" + +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" -#~ msgstr "Vremenski žig: %s" +#~ msgstr "Timestamp: %s" #~ msgid "Signee: %s" -#~ msgstr "Potpisnik: %s" +#~ msgstr "Signee: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Detached signature uploaded successfully." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" + +#~ msgid "signature file" +#~ msgstr "signature file" diff --git a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.mo index 241a4e64adc49c18c1079dd785bfb18c69fe132f..e92e70ddb3c240545c51b062dba9f8fa96248d49 100644 GIT binary patch delta 394 zcmZ9`yGjF55C-6hxhP&5TP@}V65JS6QYmbqAezR?>gbMf&E_20ouGn{7f2I9Y;6LH zpxB6=MSKT4dkf#e|0IRtz_&j;%wgs$|6S~U&KIr;Rf0v>h8eg7Uw2S|dzgern1UDZ z{Wn;Lcj)Dais1WK6XUrXr2oG~7Lfzw2J!)k(Jmn=4}QoW@xT0|QH4f@LQxYZ8HMi5 zCeB2(MS8b1UVgabvAsU4H(U&Fy2q8|_a{B&AKUN?W!mmKwtWXX?`5^(nWE cHo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlL9!3U+Fdz+*e+*;;5g35< z!hv6YUg~5P#sDs3T_ZyULo+KAQ1(!8d+1{S(T1`39jR)z+f+ZcHm**x>oQ}Y-A D5nvJj diff --git a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po index 324c4771e7..d65e3b1c93 100644 --- a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2015-08-20 19:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -25,17 +24,17 @@ msgstr "" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Dato" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "signature file" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -54,24 +53,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature file" msgid "Signature is embedded?" -msgstr "signature file" +msgstr "" #: forms.py:55 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature file" msgid "Signature date" -msgstr "signature file" +msgstr "" #: forms.py:58 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "signature file" +msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -104,6 +101,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -117,17 +115,15 @@ msgstr "" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Detaljer" #: links.py:57 -#, fuzzy -#| msgid "signature file" msgid "Signature list" -msgstr "signature file" +msgstr "" #: links.py:63 msgid "Download" -msgstr "" +msgstr "Hent" #: links.py:69 msgid "Upload signature" @@ -190,10 +186,8 @@ msgid "Document version detached signatures" msgstr "" #: models.py:130 -#, fuzzy -#| msgid "signature file" msgid "signature" -msgstr "signature file" +msgstr "" #: permissions.py:13 msgid "Sign documents with detached signatures" @@ -208,10 +202,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -220,6 +216,7 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -252,6 +249,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -267,9 +265,10 @@ msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "På store databaser kan denne operation tage lidt tid at udføre." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" @@ -277,5 +276,26 @@ msgstr "" msgid "Signature verification queued successfully." msgstr "" +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" + +#~ msgid "Timestamp: %s" +#~ msgstr "Timestamp: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Signee: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Detached signature uploaded successfully." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" + +#~ msgid "signature file" +#~ msgstr "signature file" diff --git a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.mo index 9e70df4522e301f48eb4ce1bab22651b423e0e77..1e4e1bfac7c765b375fd9be060a41e7541124037 100644 GIT binary patch literal 1591 zcmaKr&x;&I6vr!?s2P96L{U*APeIs4dVZ`SF1;*hG80{rG0X03KoO*-`%O=|-BnFh zO=jmJh!_6>Z-W1TCl6lS+xQ14iYLuQ!HY)`@#MF9XEHNUd{F)As($s}_f@^VbK&%- z0`?@v^BBh%7ct&Dg$L|g@HF@x_yG7L_$>G{_z?IP_#k-dJ|Ug}&w`JG7s23H2cH9X zz~Ij_YB0nbgCYKh;OpSW;A7x7U=92p4Bzj7A?`0=i2Dcl8FHVyUx+i9e*vcu|4Wd- zufd?}rx||*pTYch@H}`1n_d8)244a%gO7smfDeP&Z0^9I^CR#&_z8Fc`~eI)e*+;w z{0Tk<{tdnip2sH0s|+ctvk88XU0JAYZlNx0tKx+kf{t?-!NR=+3$=v2%NFVgS|7m( z8qZ>gw)8C8obz2!%3dZzPRXfEOFy#g;Bm56y{H@uCK(m1{fg6k?KWGdj9xg+78cI` z^C`q0>)gmxbc#NwDW~E(PiUtt-Zq-WO-;G98B;2~>`TXv{7^YEC0pr{mI^r`FAtfV zDVV$p4?}#!$;fkE?9a=hfy#L?b)q*ZSsauh_mb3GY}H^w>Abq7W7)Ol15SLjlSc3g zHOJJI6RD}w?(Wz2xHQ&BU6-jex-!aK)H5;Fc5n8gtClOVQMiDZHkz%=QS(x?@fx)* z#jO_Jn@u=Idwg4kxc}j|8E?G$N)uMQA)SwUR%(|^Z){9^rq32N?-?hpGH}q@NM;=M zSQat8$+m#TwG&R(X>I6z88;f^@wo0o95vvhdSZ%(J&9l&I8>=4P7Bw_XVDrdzu)dO z)@$9JZf9`-t$MR|)o73Ih{B1+6PYOQb8LTir-abx6qfL-{4P+YNRbkXz+c1uU*TF}?U9b-R1l|Y!1I~g+kK}rF@G;DmciW zH{|!=gP7j}UjlytIi4f;xh!2GX!4dV&$_|ZJBI*6a~A^uK*K4^kp zf=`1#fRBQ=L9XQ;@I`PM$<2Tk$bPoK2f!3u1V05?|67ptZ-Q`b+y*(X-$2gmPw-{1 zc7HDa3ds8#AlHLHj#q;ZgP()kr)%Iz@JEpAdI#iqrcfkqG4}!~8&Bb3zt7;|IC!vM zj+OhyHAJhkSb;1TCJ*j6%w_{&W_@B`&*R}*pru(4IX;fH7#u$jju++1`o{BOO!G^N zLeeB$(zfH1D^$>nZQYloimlN~v7r4)^1_ozB;3U5M-=O(m{I4TkXs$Sl;+`)9m8SY zaY!kzABKbZNrL?}OlXM5P zjkc7D6gz$pa*2>&5ckC7dM%?u#zk8R8Y)*}dz%Jgt;IDo-brFIHjAbdtL1_RSC#!# zCMiiBkP;puskWmcr8HWsGW(?^JxFPMNo6XOuXcinpckc?%vRQv3H3SX_E1q}47bWc zzDF|f2BWack|<+CCLfWb%{AAA6nD2N*6o2Ei*{>$vv!%%L~3(g^#a#C-|s22lQczb zveA!uHv?SSnblv`*t>t|2ZF>04= zrOl4CV-?yuksO2e1GMox`4U}!HOlAR*Q2v)z8ie<8dTz5-|mswAvb#RgmQ0i_gG5>pCu))#DJvXWvt0V1)wbqp>uc-nvLuc9 zdhJ3IYkY%dC+n!DtJ+FKJBXKsM~rW@!{;7#-y zzG@p`U)rI$n#c%;Cr-1eT3J{Y`RmGTEKaV7#@uqv*re2!sJGZcEK)f>8jGMrxOW2+ zijC@exjIozY$vg3B_C%u3qFdG__@MO!Etwjq?d#}NrB^w9_6m}|B&?)$A>&_9lkS86;L)SFWou!?>~X%cv4U^<+`dr5FikLRTozN>h|lnBQ`f4yf24iQuD< cSN+i5j3lbTRTK|9L1J&WOEQ&vyB?zc7iui(FaQ7m 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 1a1e2b7293..3f320021a1 100644 --- a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -14,14 +14,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" -"Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -30,19 +29,17 @@ msgstr "Dokumentenunterschriften" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Datum" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "Schlüssel-ID: %s" +msgstr "Schlüssel-ID" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "Unterschrifts-ID: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -50,7 +47,7 @@ msgstr "Nichts" #: apps.py:102 msgid "Type" -msgstr "" +msgstr "Typ" #: forms.py:23 msgid "Key" @@ -61,28 +58,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "Unterschriftsdatei" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "Unterschriftsdatei" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "Unterschrifts-ID: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Unterschriftstyp: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -113,10 +106,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Dokumentenunterschriften überprüfen" +msgstr "" #: links.py:39 msgid "Signatures" @@ -124,49 +116,39 @@ msgstr "Unterschriften" #: links.py:46 msgid "Delete" -msgstr "" +msgstr "Löschen" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Details" #: links.py:57 -#, fuzzy -#| msgid "Signatures" msgid "Signature list" -msgstr "Unterschriften" +msgstr "" #: links.py:63 -#, fuzzy -#| msgid "Download signature" msgid "Download" -msgstr "Unterschrift herunterladen" +msgstr "Herunterladen" #: links.py:69 msgid "Upload signature" msgstr "Unterschrift hochladen" #: links.py:75 -#, fuzzy -#| msgid "Detached" msgid "Sign detached" -msgstr "Separat" +msgstr "" #: links.py:81 -#, fuzzy -#| msgid "Embedded" msgid "Sign embedded" -msgstr "Eingebettet" +msgstr "" #: models.py:31 msgid "Document version" msgstr "Dokumentenversion" #: models.py:35 -#, fuzzy -#| msgid "Delete signature" msgid "Date signed" -msgstr "Unterschrift löschen" +msgstr "" #: models.py:45 msgid "Public key fingerprint" @@ -189,76 +171,59 @@ msgid "Embedded" msgstr "Eingebettet" #: models.py:88 -#, fuzzy -#| msgid "Document version signature" msgid "Document version embedded signature" -msgstr "Dokumentenversion Unterschrift" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version embedded signatures" -msgstr "Dokumentenversionen Unterschriften" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "Unterschriftsdatei" #: models.py:126 -#, fuzzy -#| msgid "Document version signature" msgid "Document version detached signature" -msgstr "Dokumentenversion Unterschrift" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version detached signatures" -msgstr "Dokumentenversionen Unterschriften" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "Signatures" msgid "signature" -msgstr "Unterschriften" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Sign documents with detached signatures" -msgstr "Separate Unterschriften löschen" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Has embedded signature" msgid "Sign documents with embedded signatures" -msgstr "Unterschrift eingebettet" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Separate Unterschriften löschen" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Separate Unterschriften herunterladen" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Separate Unterschriften hochladen" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Dokumentenunterschriften überprüfen" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Dokumentenunterschriften überprüfen" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -269,80 +234,70 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version signed successfully." -msgstr "Dokumentenversionen Unterschriften" +msgstr "" #: views.py:129 -#, fuzzy, python-format -#| msgid "Document version signature" +#, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "Dokumentenversion Unterschrift" +msgstr "" #: views.py:240 -#, fuzzy, python-format -#| msgid "Document version signature" +#, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "Dokumentenversion Unterschrift" +msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Delete detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Separate Unterschriften löschen" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Dokumentenunterschriften" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature properties for document: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Unterschrifteneigenschaften für Dokument %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signature for document: %s" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Separate Unterschrift für Dokument %s hochladen" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Dokumentenunterschriften überprüfen" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature deleted successfully." msgid "Signature verification queued successfully." -msgstr "Separate Unterschrift erfolgreich gelöscht" +msgstr "" #~ msgid "Signature status: %s" -#~ msgstr "Unterschriftenstatus: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" -#~ msgstr "Zeitstempel: %s" +#~ msgstr "Timestamp: %s" #~ msgid "Signee: %s" -#~ msgstr "Unterschreibender: %s" +#~ msgstr "Signee: %s" #~ msgid "Detached signature uploaded successfully." -#~ msgstr "Separate Unterschrift erfolgreich hochgeladen" +#~ msgstr "Detached signature uploaded successfully." #~ msgid "Error while deleting the detached signature; %s" -#~ msgstr "Fehler beim Löschen der separaten Unterschrift; %s" +#~ msgstr "Download detached signatures" #~ msgid "Delete the detached signature from document: %s?" -#~ msgstr "Separate Unterschrift von Dokument %s löschen?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" diff --git a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.mo index cb6b81963232aefe2106e44e4e8e2abff66c943f..8863c7d035a3a8335e220578c33ae8891e8eea4d 100644 GIT binary patch delta 211 zcmZqV{L4~*Pl#nI0}!wPu?!H~05K~N#{e-16acX>5ElY59}u?!u@n$b0pfl}28Q)O z8YFMe1d$I0(jfUHAPtmeUls6e%e!N-bsx2C+d* kg|y6^)X8rdv$;%kjm#AcO{@$JHzzS!Fe;*G!=XzC04XUc?*IS* literal 1153 zcmd^-%Wl&^6ow6yOU*^4><|*u1yUSY9BjO*)!J6m^4!N zELkDJ6Yvgf5l_H^4dM}4v4=BulpwWlz>$x?nK}RbbFqJJuDy3K?qEK`Jjc9``2*7i zx#BoG$SvdpKS=Apu~z#(M%sD{Y5luM>pxsDL85&X>kC>vE?32MeBZ`InRBZe zahw~-o0#@4aJf2qU|2MTm}s5~W=aL5EHcSrJ5)vyXq}W z@dX?03}H?Ny?{K?&e78R!a%|^_@{2>1uUmP-3)mS+OWK+3dhy3#JVX6%#sRMyh~JT{)M*Y1)XV7kZQA>Ci;>;@80 wv@aqVbCCvQ|AZTNoRx}Y^iZl?2SgNAS9e<-Qa8KXf^2n3bEo4v|I2^(7d+oN?f?J) diff --git a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.mo index 46710d11dcfc19c7d3befad7647f65342ae5edbf..d9cd64a43b44c1d9679b6c44e91bba4e8c47d739 100644 GIT binary patch literal 1554 zcmaKrzmFS56vrnJATd8e!Y>IDm~@Gv^^YTh(;g?0#I|IClhd6;Lz?mK^Lk)+W;HW= zJ~uSfl$2C-bcha7aWsgA9}*R$fFgeY6f{VD-+C`Tq`=5CpZW3KH}Ac9zI*QE#{%tH z^z-Onpd}_uxtJ2k=qwXYfVvSMU`07x)->;vpfP0Z)TZgBL*7wZWIb5y*OK zXh62N0NMTr;G5uw;8Wl?U<>>SQ;3d<8rYBd5VP8V^NO9f+U!1p`co-@wPg zdm!8W1B82Z<8#gpTorJ;ZXDZDV|$R-akH;aqMt$M#y)dnAI{aY^>7wbzViumj-CA% zeHBRbDX068DFv0xDV1JlMup0ehhnu?PjrqAn^Xmv@GsHP-aa|6tyznjjkWlHj@b6X z-Ru*b0gLFmXWyeFM58o#B!tCdoAi-jW%AFy{mDr zhk3UPVYEy8n(aP7w;6A|dZmljdRzGrO`I}5SHZei?%F9i#Jp?0a@s;*vPxwXO-L27 z+$)vQel9P~Lnz};XR%nc1Ane(bkI(0(Q&H}T?e^TCZe?PoxCy9A>X;&8jr?9;qw<%QX>h~TH(;+Z*a{ebG>i*(mF}2@We!yR_s+%?V9bn{NZ4;u3b2ms(%0g COrG)p literal 2423 zcmaKs&2Jk;7>5U1XffrhK>2Q`NRblC#&%kw;t-*udSh~GP2d!5)Y^5)6Ryx;H4{Ce`}rwrpX zzUT3sxQDR?@GeN>^LrV47Q6vI3VsLHz@Nb5;6LCzcD!S+&8p$8l-s@{1`dE2|h(~_oEizpI`v~4dTbn9b@c8a0xsMUIWSh z0DKa>4pJ?@0MCHmgJk~>_y~9xd;mOwr02j>AnCmZQv6#WM3^k*2}pT=1X5o<0ja*< zf{%eeg9w@30V&?!i~YaAmoYyMXH?Huzz4xAAjS6{NG+ybkUr&1`8|V=?9!lkNQe4H zHAJh~)A(pmPNPBbz?>g&>*FP#FW@6zXsPcZ{sH zMA(-Rx2l&4mm6tETjQ0{g6q$c=Ut-{9_cVoWa=7x&b|(Xq1Ev}rFnQH$8ea3p|rM} z$MOE+EWtdBwTPxA3s0piS(sL`BO`>!TE=L@ z2YnS&iIAX5dwh1iR!|}KhOk@~$`i4@CHMJ8lWNGW>Qu7rQBy{%-fFhDD_b(t#szKLQ&Dg!@7bWE8@#glb|<)O zq;QZAn!+KMrCNPCsGSd%>b$<(xNttGU8vO{7;MR1MRupYV!WzzM2E`Keu9TH(WgSLaiHc9qu` zRx0e0HbxlURVKj^wlWh&M8Y0eXFuF5#9}d&91GIr7_8AxDwm zp-%a&FZYzwi-$#QzN2PISa>O&Smuw-t*_Dp%Y`vW`Zr_twzo8UzbS1fOm9{#4sEdw z^sI+ubn#4xnEUJupQ?|)V;v<^Srkqcx`J&qDSl{#vDh76&8ui=p6YVTx5e97Ghtut zYEtowbd544BRr@+sj=s&hOicHdsJ!`A!UbFe7lB4M2KFfEleoLBc7oo^WA0J=#k-h pIywl#H=EP3;fIexA?)LwJX=E>!!*!K)m5nc=m^5y=&{q5{R`@JlC=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 67662593f9..114d7af20b 100644 --- a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -13,14 +13,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -29,19 +28,17 @@ msgstr "Firmas de documentos" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Fecha" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "ID de la clave: %s" +msgstr "Identificador de clave" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "ID de la firma: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -49,7 +46,7 @@ msgstr "Ninguno" #: apps.py:102 msgid "Type" -msgstr "" +msgstr "Tipo" #: forms.py:23 msgid "Key" @@ -60,28 +57,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "Archivo de firma" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "Archivo de firma" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "ID de la firma: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Tipo de firma: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -112,10 +105,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Verificar firmas de documentos" +msgstr "" #: links.py:39 msgid "Signatures" @@ -123,49 +115,39 @@ msgstr "Firma" #: links.py:46 msgid "Delete" -msgstr "" +msgstr "Borrar" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Detalles" #: links.py:57 -#, fuzzy -#| msgid "Signatures" msgid "Signature list" -msgstr "Firma" +msgstr "" #: links.py:63 -#, fuzzy -#| msgid "Download signature" msgid "Download" -msgstr "Descargar firma" +msgstr "Descargar" #: links.py:69 msgid "Upload signature" msgstr "Subir firma" #: links.py:75 -#, fuzzy -#| msgid "Detached" msgid "Sign detached" -msgstr "Aparte" +msgstr "" #: links.py:81 -#, fuzzy -#| msgid "Embedded" msgid "Sign embedded" -msgstr "Integrado" +msgstr "" #: models.py:31 msgid "Document version" msgstr "Versión de documento" #: models.py:35 -#, fuzzy -#| msgid "Delete signature" msgid "Date signed" -msgstr "Borrar firma" +msgstr "" #: models.py:45 msgid "Public key fingerprint" @@ -188,76 +170,59 @@ msgid "Embedded" msgstr "Integrado" #: models.py:88 -#, fuzzy -#| msgid "Document version signature" msgid "Document version embedded signature" -msgstr "Firma de versión de documento" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version embedded signatures" -msgstr "Firmas de versión de documento" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "Archivo de firma" #: models.py:126 -#, fuzzy -#| msgid "Document version signature" msgid "Document version detached signature" -msgstr "Firma de versión de documento" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version detached signatures" -msgstr "Firmas de versión de documento" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "Signatures" msgid "signature" -msgstr "Firma" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Sign documents with detached signatures" -msgstr "Borrar firmas separadas" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Has embedded signature" msgid "Sign documents with embedded signatures" -msgstr "Tiene firma integrada" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Borrar firmas separadas" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Descargar firmas separadas" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Subir firmas separadas" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Verificar firmas de documentos" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Verificar firmas de documentos" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -268,80 +233,70 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version signed successfully." -msgstr "Firmas de versión de documento" +msgstr "" #: views.py:129 -#, fuzzy, python-format -#| msgid "Document version signature" +#, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "Firma de versión de documento" +msgstr "" #: views.py:240 -#, fuzzy, python-format -#| msgid "Document version signature" +#, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "Firma de versión de documento" +msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Delete detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Borrar firmas separadas" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Firmas de documentos" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature properties for document: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Propiedades de la firma del documento: %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signature for document: %s" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Subir una firma aparte para el documento: %s" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "En bases de datos de gran tamaño esta operación puede tardar algún tiempo en ejecutarse." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Verificar firmas de documentos" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature deleted successfully." msgid "Signature verification queued successfully." -msgstr "Firma separada borrada con éxito." +msgstr "" #~ msgid "Signature status: %s" -#~ msgstr "Estado de firma: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" -#~ msgstr "Marca de tiempo: %s" +#~ msgstr "Timestamp: %s" #~ msgid "Signee: %s" -#~ msgstr "Firmante: %s" +#~ msgstr "Signee: %s" #~ msgid "Detached signature uploaded successfully." -#~ msgstr "Firma separada subida con éxito." +#~ msgstr "Detached signature uploaded successfully." #~ msgid "Error while deleting the detached signature; %s" -#~ msgstr "Error al borrar la firma separada: %s" +#~ msgstr "Download detached signatures" #~ msgid "Delete the detached signature from document: %s?" -#~ msgstr "¿Borrar la firma separada del documento: %s?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" diff --git a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.mo index 3bacda367a83b1b231161afcc44bb4fb56525839..0757606e2dca9978580dc955fb9559cc696f9e32 100644 GIT binary patch delta 921 zcmYMxO=uHA6bJB^wrP^uFH@yj+cKc2ASp=@yn&Ca}e^Je!)*XP#4PPpkl zq3uKOMSq3fhkn(E2ikks1V6xL_zCvFFE9vy!2t9%5Ou*2?1X)g;|Aa%I089d{xbuS zuRu33-~(>MbMOvqhi_pE{0Mn{2Xf-CkQ4ueWgOnoSdV*vATIC`JPcQ18+->_VGZtw z-(d&*1AA~jwfTwqF>xGn;CXlqjzhlDEy#&iU>ZJzd!Zkb9N!Ij{Rkc$e**HCJPT2u z*Kn4%hFS@AdyOwg6ZNroGvxJd&Yy`Z=PJ4Jui?g@IqZ#gA6&>DbS{L82%*!EVM`j4 zDQQb*rJ=vwHl}7|5;L}8rYz?`qb$&HdQv8nn7ttLVq}OeW;2pTGa_Z=rlm+4wlQf~ z(h~NJX^HHt%o(?rq&DnB*E}PRC!=B4Yam`H0-B*jo z^Rtq!%%-wNQdp+*ttl5zMB=AKEHN01MWTslv}J5Ga!KAWEu0hKD-4QwG;tU7UK61u_ z-Oleo*qIN83#1pfmuqFhmJOj_D;ICrtrrC+;S55pBEv?lDtJ+sh1$|3U94vmx`eoj zP@CR+b$gk^U+N`Y6lz^BaVEt(bs2@Yx`eRm0OL`aeLtOS+7$Th5zM F{4WB(^4|ae literal 2546 zcma)-TWDNG7{^CV)UMV`)oSa70SQekXD?}~^~5OJq!?;6q+3Ps!IRzD&5_-6mNT>6 z=0%94yAc9bLB&@=6D4L%lUDkmsEDtEAk0ayZ@v|M^44KMjXigc4ofo|C=P& z5A=P+upY~8QdNd8A6J`cWt{p%p*`xK;k{0Nfnzk@VVngv=8v_{K8Y|?`k*sg2@XP|&X>d*0Vodq>xF`lvQ)2B=F+_k>$Qq&6}v6nLcJ;+m4rkA z@!5IdN!xY04ie-4xS}`>hm!X0GQLdu9IwuZB1&ZAp67bJF>6;yAv9<^Wv*s>$u+_U zBzwt{Ttv=0YC9w5_{5k=7O%LDU}s~EJa@u8e$2=o&t_q0OpEh2#qG8m&Y9U~j%Kk^FI!R>dCziW#Zs;zGLMRx@7c=w+(ZjUkFv znW;oUG9@cBl$xBF98a3grL(D1uA}hwjeIaOB`&B;tzy~E2rtZ9o)l{IT>i9iGO?qK zCE*$4PQfkWQJVbZjIBDwn!IGCrYd#Msu-tTuZp+f)Pk)X&5iKz>u7c)#q`(u8-Jeb zW&fhSiqDo_-d^H*Rk!sr*PFWSw|3jGUAK|zZa1!15W>IcFZ%QTyW30pD;_69*ffh% z{vW^3{O|n*e^IxCk`mvz+zr2}+YBEYdd+Wf9qxBz*y}0^&~=UO{bro9mo~99y$l(N zhe8(6n!m`=I;32sj}4q(riLS7*YvkI9*`U!>m7Oa5Ht+C9u6q7A;(^+x-xB|#bxNy z;#*%*VY(gs-utcXrL88@$#pDRcs)|9VLC)0=Ap7?#2vg#B@I~-1 z@Kx{vHo?8R@j9OgR|VXz8}D5DI#Q0D^rOs4Q<7C4$I3!Yq*ou4bfzHb zGyWJ!#}rkbn&NO7mQ1po*1t{+Cnbs7C7-?F>K(FKGLi8zx{b8#Tk{b`KIq2*R2*|C z2Wq0U>~#l+jRPu;^})cUSsc7ur7jqnP&W2&4ucz(YG(t!fKYC=J8uN->%rEWvU5G` zbTDqWAq)=aUdDF+MYkPpy?(Wg)_7kz9}KP1E?3^zP#%~gvWWS>IAt>ffle!xQZOV{ zgmTZ4jz;qG$on#EwZ`Ld)AQ~uq2p#`ik6-4vn`}j>44(Gwep3HR$^OM8iW3zw~o2f zY&UKg?NJZ`CoztDCKwIk=l-OF0OB|BGk8uLm%tjf~j!mX%BVfT(bSyWY*=eV#})d5|#x^%I)-bdzEQXGJql*=mL+_%y=S(?iJmuxtj=Cdg$ zDuwTT?Pt@}&ZeT@UD%GWEZ(W23cen~4o*yQOI-c)H-L%QXw5-glM#7OcoDPd;z^WL zd0FDxV@tBq5Lkq(aZN?(nqn`DMj6#sSJl0diTT5*3oL<22;s&$qv8%GvxE)g|H$-4 G2LA?ZH?zY4 literal 2637 zcmaKtJ8T?97{`Ys5ORb7;r&RM2#jpd-ouGZIL8UbKFfv}toULiy2#xZ<%H-E1wu-39TEl5P*EaLAPO1^K>WYC-P=9;%*b=Uotf|Z=6lSHe>r{Z z6NYvc{VDX5cQ7^s{tZ(5{0L)DfH%SW!EeDj_&s{1!;^5lH&) zflq>;g0#=q;A!wDknH>l*1$i&N5H3#F;)TRK>V>q{E)pB@D%taI0bgVhrka(vUd|C zy{|If2JglAJMek%XOR3kdgsvIS&+sx@Jqz}D)=16f8CY&ah$PPjORf7F&{rKg71J7 zcON8we*`J+-@s?Ue?YQx4#7=4{DaZrE{gYSYA??)i%f0pqJko^7z79b`v*0vHC8k;+WcDaJ?MpHbpi`rK z-h)nlQw~vT_82-f%30p5pV26$zSp@Zxk1``_Pdt8wZW^c9K4p zWgv~@o;1SkNsnv48wrytsq>}LOg>?HljM0v#Ub}%Hw|TEntV!Mfx^)0=%X-?9cg21 zn7Xdix|0UMUUiaSngp@%4oYS_6(-?vKDRBE_T%WlL?Qe?OJrv!qD?2KC0{HO(+Y1$ z4=%EnQnBJYJwKonAwWOs^2zy{M~2v{&|GH9CEs3?dwgw~a>!nfBgr=NqU5v1L|k=sQ|G}}<|+tM}8n&&`@s@vr2VoyZ8wY9#a4cSGR^RW}YV!$j0g zMOQj)DZ(aSQ8IFSe7a{$(yY~Xc6O?U?E4+LOA0j=YoYvD)j|r_kzS~4L1v@YQMH-M z`r3M{$V#JHuPnup!8LT+wx~w#npzSFKbq%oNNH&nuD4g5i-jER*pbR`*Vv&hz2t!gRzh^Ty14g>9xuf;WWHi9@1Gh2-9# zPp`tDk0-{8;b18qh(hL&>5?Y*($OKI^LT}|c8yfHDpyN($_j#G+d&`C4IJ}Be2H!8 z+Sg}rOIJ&m1Gyqg+z;tQ!ObzrLQt2TVA+`*n=9^?Cn><}RhlfLc@n2K50k{&gMKjR zQ|-D)*1n8p9&0u(l_H4ZYOO_xrK<*gdZZ-n6f1;a9kWRpRcovkr5xH9Ya`Zra0_Z< z*14ZsmuzjBth#X5z7&h83(;(L, 2015 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" -"Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" +"Last-Translator: Roberto Rosario\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -27,19 +26,17 @@ msgstr "Signatures du document" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Date" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "ID de clé: %s" +msgstr "ID de la clé" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "ID de signature: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -47,7 +44,7 @@ msgstr "Aucune" #: apps.py:102 msgid "Type" -msgstr "" +msgstr "Type" #: forms.py:23 msgid "Key" @@ -58,28 +55,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "Fichier de signature" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "Fichier de signature" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "ID de signature: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Type de signature: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -110,10 +103,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Vérifier les signatures du document" +msgstr "" #: links.py:39 msgid "Signatures" @@ -121,49 +113,39 @@ msgstr "Signatures" #: links.py:46 msgid "Delete" -msgstr "" +msgstr "Supprimer" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Détails" #: links.py:57 -#, fuzzy -#| msgid "Signatures" msgid "Signature list" -msgstr "Signatures" +msgstr "" #: links.py:63 -#, fuzzy -#| msgid "Download signature" msgid "Download" -msgstr "Télécharger une signature" +msgstr "Télécharger" #: links.py:69 msgid "Upload signature" msgstr "Transférer une signature" #: links.py:75 -#, fuzzy -#| msgid "Detached" msgid "Sign detached" -msgstr "Externe" +msgstr "" #: links.py:81 -#, fuzzy -#| msgid "Embedded" msgid "Sign embedded" -msgstr "Intégré" +msgstr "" #: models.py:31 msgid "Document version" msgstr "Version du document" #: models.py:35 -#, fuzzy -#| msgid "Delete signature" msgid "Date signed" -msgstr "Supprimer la signature" +msgstr "" #: models.py:45 msgid "Public key fingerprint" @@ -186,76 +168,59 @@ msgid "Embedded" msgstr "Intégré" #: models.py:88 -#, fuzzy -#| msgid "Document version signature" msgid "Document version embedded signature" -msgstr "Signature de la version du document" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version embedded signatures" -msgstr "Signatures pour la version du document" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "Fichier de signature" #: models.py:126 -#, fuzzy -#| msgid "Document version signature" msgid "Document version detached signature" -msgstr "Signature de la version du document" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version detached signatures" -msgstr "Signatures pour la version du document" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "Signatures" msgid "signature" -msgstr "Signatures" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Sign documents with detached signatures" -msgstr "Suppression des signatures détachées" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Has embedded signature" msgid "Sign documents with embedded signatures" -msgstr "Possède une signature intégrée" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Suppression des signatures détachées" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Télécharger des signatures externes" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Importer des signatures externes" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Vérifier les signatures du document" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Vérifier les signatures du document" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -266,80 +231,70 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version signed successfully." -msgstr "Signatures pour la version du document" +msgstr "" #: views.py:129 -#, fuzzy, python-format -#| msgid "Document version signature" +#, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "Signature de la version du document" +msgstr "" #: views.py:240 -#, fuzzy, python-format -#| msgid "Document version signature" +#, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "Signature de la version du document" +msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Delete detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Suppression des signatures détachées" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Signatures du document" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature properties for document: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Propriétés de signature pour le document: %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signature for document: %s" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Importer la signature externe pour le document: %s" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "Sur de grosses bases de données, cette opération peut prendre un certain temps." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Vérifier les signatures du document" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature deleted successfully." msgid "Signature verification queued successfully." -msgstr "La signature détachée a été supprimé avec succès." +msgstr "" #~ msgid "Signature status: %s" -#~ msgstr "État de la signature: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" -#~ msgstr "Horodatage: %s" +#~ msgstr "Timestamp: %s" #~ msgid "Signee: %s" -#~ msgstr "Signataire: %s" +#~ msgstr "Signee: %s" #~ msgid "Detached signature uploaded successfully." -#~ msgstr "Signature externe importée avec succès" +#~ msgstr "Detached signature uploaded successfully." #~ msgid "Error while deleting the detached signature; %s" -#~ msgstr "Erreur lors de la suppression de la signature détachée; %s" +#~ msgstr "Download detached signatures" #~ msgid "Delete the detached signature from document: %s?" -#~ msgstr "Supprimer la signature détachée du document: %s?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" diff --git a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.mo index 8b04fc6a28deb283e3d76694080b280fd54e05ca..cb7faf331f8d1ae342f7fbbc8d8db8f588c99cb5 100644 GIT binary patch delta 354 zcmXAjyGlbr5QaAs`FNuYnC&t-Ex`bjLl5!~IT`Z(FKOD)moL{Ka(v!nVv)b6Cdb3rpr*A8Z z8`ZU0u+?g;PrsH5r$^buk0MbC&7NrX9w`EIEOBhjE+rfciLt(ujYrnIki?^F(vgIi X;*aU2;4QX?+1LhzzbOy2$67OgA7xni delta 134 zcmX@f`i435o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLentj{Fdz+*e+Fa&5g35< z!hv6YUh2gA0bItqMurN8W>zM~lPwvgc};Z zZRTogGk3#!&wj$nZP8`gV!QrB#AHzxM#R-j7u5x3VyvOSCMU?yVv2?g*r_y7)zqMs zm4*`MU{Mj6swA+oJu09VdT^Eoi%}8|z3>!*VH5eDH&{_CPmF7qGsPn l`2C0F8iH8EXjCG9+6%5U+ yOpGVXFiP{9>Ka(+8W|`UT3Q(zOm<0*t$!R5oc44Aapyx8n4EkL6)DEM&+CENnbpkr ze5RnGrlh2yok0otd|9zHi?1-OJ}c6|ko; zu3&tHaTVjeb9lgh0MCOzf)9dsz-Pc;z=y#?5&c1m6YX37has1E0r@=2k{{HJ` z{X6g?=6Ar$;P2oI;9m`|Jg~~+HSiIvzX@IdkDB${;0SX9S;v`93I19t!!KuHojxleb%19gthXye3z_O?5jv( zpA4Ns<`h*nqg)1ESQY1<0z6i0^@}!GaM`>h8~@?7UOOfqw6hzhW?|#}KU*AoVU1I{ z=$8}9bIQeAw3LH=@s6`3Zdz%SFG%Jps)-5|WSr?BT}56+94kw;lu>;^GPsgt)ckOg zPAHp4YKxbvCibSd+7c4w~T(7X33i^(8Q;Kezoa;TQd z%KrZFs5PR>`Irntq4VU8c@dJaOJ(cu<~Z5&REtfx0IA&S_FhT4H*2lI zg<~?JW6g2z;kTV`z5G%a)_Plon2f!$!KmnbDo1WY9yyO(P+mJY*kY~l437E>ANBz7vJwB3=}O!+`@_ty9z+1~i^iBs}P-)1h?wn*jnM8{LHsl?>a%)K(n zf%9cZrLF2|*xlNZtJmFYRzANgd)Ieb+{;SrDVvcoO7x8`wN)sxM*}EhsHl5g2efjA zd*WV>sxVp{)Gq4+JJHk=FmBgDU(}%zs@pFB`h2%Tb1MWJ(N>u}5#P;B2PV zG1cu&A5sF|qIM5F5uEQOU_L(h**2(j1o;La=#ag$|tB6tw3?XHF#Q( zs&_IM4}u2~K?MnT5HEsL$gAal?zb}xZX zfUkq(KLbyJpMd1&ORxdn1kZrCz#8}$xCGJZ@*q?S@_NI9=H`Jq^7KN{qpa;8DHXeoP?CK$^F z@?WYq+~tE}r+QF~)L%MBXk8uy^@n1s2AvNY6gSGqj?-jjP@Py?M$$REi0F%g?vpK)gMp7o|eS2U8CQYf%Ced2QBKZ&v(RF zB)rq!*{|)%R2%2**ntYYm$QNOdfMl;-77tB%Shp%@3n0?0>%5*3iH(HQ#^-zb00q~e6-H?&B!f&0q}P)o z_IcNdNFm78p>wIw?D@njg=MpQa!DA!o4?R0lK)1+JV zW^GF+4rkx%CLV116s zZj>1jdE45=I2%ctPwnRV1}{E0R}=osCU326)L17{u}TE*D-%mDqDT%<+#_Pa+6o6I z2v8@sAD}pa;89^BDiivcv>Oe>iQk4x!EGSI%wc&jP}<;y5j@aI^;+n9u7-P69&pXd zL$O#Sqshj&mh)DMZY%CAr6cHjMx_e9NY%!C9-IYqeEV*%{~ZQx9ji1jZ5uCC7oFk)Kt|! Ja&C_H=3k;ib)WzM 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 f5d2473f3c..36c09ac8b8 100644 --- a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 @@ -11,14 +11,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -27,19 +26,17 @@ msgstr "Firme documento" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Data" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "Chiave ID: %s" +msgstr "chiave ID" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "ID Firma: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -47,7 +44,7 @@ msgstr "Nessuno" #: apps.py:102 msgid "Type" -msgstr "" +msgstr "Tipo" #: forms.py:23 msgid "Key" @@ -58,28 +55,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "File della firma" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "File della firma" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "ID Firma: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Tipo di firma: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -110,10 +103,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Verifica la firma del documento" +msgstr "" #: links.py:39 msgid "Signatures" @@ -121,49 +113,39 @@ msgstr "Firme" #: links.py:46 msgid "Delete" -msgstr "" +msgstr "Cancella" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Dettagli" #: links.py:57 -#, fuzzy -#| msgid "Signatures" msgid "Signature list" -msgstr "Firme" +msgstr "" #: links.py:63 -#, fuzzy -#| msgid "Download signature" msgid "Download" -msgstr "Scarica firma" +msgstr "Scarica" #: links.py:69 msgid "Upload signature" msgstr "Carica firma" #: links.py:75 -#, fuzzy -#| msgid "Detached" msgid "Sign detached" -msgstr "Distaccato" +msgstr "" #: links.py:81 -#, fuzzy -#| msgid "Embedded" msgid "Sign embedded" -msgstr "Incorporata" +msgstr "" #: models.py:31 msgid "Document version" msgstr "Versione documento" #: models.py:35 -#, fuzzy -#| msgid "Delete signature" msgid "Date signed" -msgstr "Elimina firma" +msgstr "" #: models.py:45 msgid "Public key fingerprint" @@ -186,76 +168,59 @@ msgid "Embedded" msgstr "Incorporata" #: models.py:88 -#, fuzzy -#| msgid "Document version signature" msgid "Document version embedded signature" -msgstr "Versione della firma del documento" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version embedded signatures" -msgstr "Versioni delle firma del documento" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "File della firma" #: models.py:126 -#, fuzzy -#| msgid "Document version signature" msgid "Document version detached signature" -msgstr "Versione della firma del documento" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version detached signatures" -msgstr "Versioni delle firma del documento" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "Signatures" msgid "signature" -msgstr "Firme" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Sign documents with detached signatures" -msgstr "Elimina firme allegate" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Has embedded signature" msgid "Sign documents with embedded signatures" -msgstr "Ha una firma incorporata" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Elimina firme allegate" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Scarica firme separatamente" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Carica firme separatamente" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Verifica la firma del documento" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Verifica la firma del documento" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -266,77 +231,70 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version signed successfully." -msgstr "Versioni delle firma del documento" +msgstr "" #: views.py:129 -#, fuzzy, python-format -#| msgid "Document version signature" +#, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "Versione della firma del documento" +msgstr "" #: views.py:240 -#, fuzzy, python-format -#| msgid "Document version signature" +#, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "Versione della firma del documento" +msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Delete detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Elimina firme allegate" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Firme documento" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature properties for document: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Proprietà della firma per il documento: %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signature for document: %s" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Carica la firma allegata per il documento: %s" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di tempo." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Verifica la firma del documento" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature deleted successfully." msgid "Signature verification queued successfully." -msgstr "Scarica la firma allegata al documento: %s" +msgstr "" #~ msgid "Signature status: %s" -#~ msgstr "Stato della firma: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" #~ msgstr "Timestamp: %s" #~ msgid "Signee: %s" -#~ msgstr "Firmatario: %s" +#~ msgstr "Signee: %s" #~ msgid "Detached signature uploaded successfully." -#~ msgstr "Firma scaduta aggiornata con successo." +#~ msgstr "Detached signature uploaded successfully." #~ msgid "Error while deleting the detached signature; %s" -#~ msgstr "Errore nel cancellare la firma allegata; %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" diff --git a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.mo index 055aa7279d72421a0751f7cfc0477c20005b6efc..ba7e25e138ceb04987762fdb50f301ccf7b0cff1 100644 GIT binary patch delta 392 zcmYk$ze)o^5C-s#Ni-@pwhGP*BzQ6YA(cfSji`;WUcHa=%w<>ZHbzCrGo-M#R4Yv< zb|Q#xVCRbn;@dPRB{68n$N= zt3$PI4b+a2M5hrX)J`Ah44Js2I1_tF9HDx(&%}2jXJ?u~Nbr4!aJO!QSpn ztz2D~pjHop!TrMAT6uZ&W20VO8NM&&_FG7M@o|V$H4)(y=HC@fz^InBsj!hKweIg0 VX=@`PE-*d^Jk~@Kc2k&&`UajLSW^H1 delta 134 zcmeyz`kOiQo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlL`HTzS(zA5PGFSgHPtn+&^0npFtoHXG}zq1D9_01o|>A+0014J B5$yl~ 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 e22a6af548..b8aee09950 100644 --- a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2015-08-20 19:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -28,14 +27,14 @@ msgid "Date" msgstr "" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "signature file" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -54,24 +53,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature file" msgid "Signature is embedded?" -msgstr "signature file" +msgstr "" #: forms.py:55 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature file" msgid "Signature date" -msgstr "signature file" +msgstr "" #: forms.py:58 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "signature file" +msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -104,6 +101,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -113,21 +111,19 @@ msgstr "" #: links.py:46 msgid "Delete" -msgstr "" +msgstr "Verwijder" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Gegevens" #: links.py:57 -#, fuzzy -#| msgid "signature file" msgid "Signature list" -msgstr "signature file" +msgstr "" #: links.py:63 msgid "Download" -msgstr "" +msgstr "Download" #: links.py:69 msgid "Upload signature" @@ -190,10 +186,8 @@ msgid "Document version detached signatures" msgstr "" #: models.py:130 -#, fuzzy -#| msgid "signature file" msgid "signature" -msgstr "signature file" +msgstr "" #: permissions.py:13 msgid "Sign documents with detached signatures" @@ -208,10 +202,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -220,6 +216,7 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -252,6 +249,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -267,9 +265,10 @@ msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "Voor een grote database kan deze operatie lang duren." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" @@ -277,5 +276,26 @@ msgstr "" msgid "Signature verification queued successfully." msgstr "" +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" + +#~ msgid "Timestamp: %s" +#~ msgstr "Timestamp: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Signee: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Detached signature uploaded successfully." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" + +#~ msgid "signature file" +#~ msgstr "signature file" diff --git a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.mo index c689f92cfbd5f91916b6b5957e90007b0e68f070..bf7d1de1ebb622495d565605894d79d2e182f760 100644 GIT binary patch delta 599 zcmZwDziSjx5C`zN^URNn1{1N7AXB9?cu7c1KnQXgLLetxEbN@y8}ByR+dX#Qk?b}B z3E0>z7Iyv*fiy{>BqwQtjkSY0~m>*S#SGR+rD)6bto z4PWEzZ>JAq*`^KQX0LyodTnk$-}TaZ5Q@mW@afhT#bqG zYGUFy@b1yXi^fmD(VHK@n+Fd*?^37<98A18>D%Az`#$eHGrRL`eDsZlF^0H-c#XJ* z_=TWx|CD8wz&c2I4PF6Xf~0>7+TaIp6#O)(e+FsIeQ+H74wCLCco`fyZCTgBs{`Hw zzo2#xB)>5%Mt<`k`K^KE_Y97r&TUT2TWS`Y*9-GkC!!(iB#*yV9J5030 z=+C<8XR_!cg*=$H!dPk};;bk(kG0*^IBUnFd$ z*4VJuWtJ+#8@dw)d@1i}-by`YHy^e5vXa6;&uhY9KNZKFo^ed zb-5GLy2o`D*K=;)bTI5Sp$%^-k?2U6RC#PY-IU6tpcX1jAxJv8=t$m@BKBA_jY8dJ zQ(a>+uUzi+deerw!?xU=_S3km4*FC%ro(U<#JU^})+lFDxnwu$jg{e<-D$^OP7{OA z%Ui{}HgeZMDZ*rd`CXy3G}XtgRX#t|kz-pbzLNN95GEau&2NV0Xs;g2BD)#oN<@4$ zRk8M1k`<4-ITc+bi;, 2012 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -27,19 +25,17 @@ msgstr "Document signatures" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Data" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "Key ID: %s" +msgstr "Key ID" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "Signature ID: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -47,7 +43,7 @@ msgstr "Brak" #: apps.py:102 msgid "Type" -msgstr "" +msgstr "Typ" #: forms.py:23 msgid "Key" @@ -58,28 +54,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "Signature file" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "Signature file" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "Signature ID: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Signature type: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -110,10 +102,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Verify document signatures" +msgstr "" #: links.py:39 msgid "Signatures" @@ -121,21 +112,19 @@ msgstr "" #: links.py:46 msgid "Delete" -msgstr "" +msgstr "Usuń" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Szczegóły" #: links.py:57 -#, fuzzy -#| msgid "Signature file" msgid "Signature list" -msgstr "Signature file" +msgstr "" #: links.py:63 msgid "Download" -msgstr "" +msgstr "Pobierz" #: links.py:69 msgid "Upload signature" @@ -178,76 +167,59 @@ msgid "Embedded" msgstr "" #: models.py:88 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signature" -msgstr "Document signatures" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signatures" -msgstr "Document signatures" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "Signature file" #: models.py:126 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signature" -msgstr "Download detached signatures" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signatures" -msgstr "Download detached signatures" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "signature file" msgid "signature" -msgstr "signature file" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Download detached signatures" msgid "Sign documents with detached signatures" -msgstr "Download detached signatures" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Verify document signatures" msgid "Sign documents with embedded signatures" -msgstr "Verify document signatures" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Download detached signatures" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Upload detached signatures" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Verify document signatures" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Verify document signatures" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -258,10 +230,8 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Document version signed successfully." -msgstr "Detached signature uploaded successfully." +msgstr "" #: views.py:129 #, python-format @@ -274,44 +244,41 @@ msgid "Sign document version \"%s\" with a embedded signature" msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Download detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Download detached signatures" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Document signatures" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature type: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Signature type: %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signatures" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Upload detached signatures" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "Na dużych bazach danych operacja może chwilę potrwać." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Verify document signatures" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Signature verification queued successfully." -msgstr "Detached signature uploaded successfully." +msgstr "" + +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" #~ msgstr "Timestamp: %s" @@ -319,5 +286,17 @@ msgstr "Detached signature uploaded successfully." #~ msgid "Signee: %s" #~ msgstr "Signee: %s" +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Detached signature uploaded successfully." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" + +#~ msgid "signature file" +#~ msgstr "signature file" 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 c8215d844107c2421700d41b99916f52eac1e0f7..4204ec5d24aaf24dec625173a5291ce313359f5b 100644 GIT binary patch delta 618 zcmX}oziSjh6bJCR%W85liisen1bHbEut?x836WGDY>GpOU@8m6=k0TE1K>h(1Bj zqko`7QA4Q+F2T!i1x~|Ncmr<28Q8DaAHneaV|X7vh1cL~I14|(+we0yYp7H89e=_G znVKB5U+Z8S_fOyzcwYMkh9K`@4}O9-;qQ9=Dh^x5^(}~_|5q3u_Js;B5JD@=A6FQF z{o}6?!ZgvB&@Hrz*^7!r%NWm@b}F`mG8f~?WvO9b7833q8f`gI59FBovD&pp)I&p> zi&Q9K&(GP3BR|X>*^w0Nv#vFi^D%jTDdcP}At{#n zF@n)x$Ooc!#SF__?Ksbqco*+3-dY;jL`cg47sNU(bMlgpkT0jn>tHqE#5zg~Hi@{k S>PggY^_;_Oe3+diN$M_@B+1gtiYn{C1xG&-0Rf@?&o1y#u=ee*iy%--iEz zTYGxWahAX)XyY2Ry0@SUegtR0&)_Za3utqF1Lwf+pw;~>_zS#_^Iz~jID3A?1@IkW z8{h)s#}^#u9{3x42+pC%O|S}H0yn`sU=zFxzAl)7vp64twx186t@jDE^}d4h;4z4D z4$?bU;n(1o;s5O-9N3b;o|uVJBQ{8^n1rX&Xy+Lpl4ji}^V->w33pzOD-_X5pev&3_hy*# z{N7lh^V@tB?TDCb!{Rj8?B(sA*}*HWM0ZHSGdgc8`GyCEHbV-P7BcZkiw#*q8uivo zcbBJ98QRi45z@`9r)fv}#BIOm&@IK8fu7cxK|j@UWtEnfX|+NstNzL|Ew7Zz5Yk zV&9n5_q@SiP%<`y=<>r-AY)IB?kX>~15qBv+KY-jUTVB0x7BPlCUaLxWp_&^1|OGp z@}J)DL*u0p6UjOW`b=qVYI~h+x;D|-ie0W~BMD?ElAcf2_JtYu>yy;D?I=?$qT5o% z+9yexA9by|PDYQl#e_Vnk;>A#>uhK(@&#ms9b}PageM1rg^XY%yNcLES(=h*eAn@( zl~`mQFr|2pDZ<9NbdgLu%{sBU`s`q|L_0j`XK@jpT*y~yTi`Dt6w>plTuw)%CqlV; m(z!0$Lt|K<{3Vuzd3~u^erni}&h9VYRe=#uajNKvDgObvuUfhQ 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 93d52b639b..b7e773053b 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: # Translators: # Vítor Figueiró , 2012 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -26,19 +25,17 @@ msgstr "Assinaturas do documento" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Data" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "ID da chave: %s" +msgstr "ID da chave" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "ID da assinatura: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -57,28 +54,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "Ficheiro de assinatura" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "Ficheiro de assinatura" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "ID da assinatura: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Tipo de assinatura: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -109,10 +102,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Verificar as assinaturas do documento" +msgstr "" #: links.py:39 msgid "Signatures" @@ -120,21 +112,19 @@ msgstr "Assinaturas" #: links.py:46 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Detalhes" #: links.py:57 -#, fuzzy -#| msgid "Signatures" msgid "Signature list" -msgstr "Assinaturas" +msgstr "" #: links.py:63 msgid "Download" -msgstr "" +msgstr "Descarregar" #: links.py:69 msgid "Upload signature" @@ -177,76 +167,59 @@ msgid "Embedded" msgstr "" #: models.py:88 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signature" -msgstr "Assinaturas do documento" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signatures" -msgstr "Assinaturas do documento" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "Ficheiro de assinatura" #: models.py:126 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signature" -msgstr "Descarregar assinaturas avulsas" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signatures" -msgstr "Descarregar assinaturas avulsas" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "Signatures" msgid "signature" -msgstr "Assinaturas" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Download detached signatures" msgid "Sign documents with detached signatures" -msgstr "Descarregar assinaturas avulsas" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Verify document signatures" msgid "Sign documents with embedded signatures" -msgstr "Verificar as assinaturas do documento" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Descarregar assinaturas avulsas" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Enviar assinaturas avulsas" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Verificar as assinaturas do documento" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Verificar as assinaturas do documento" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -257,10 +230,8 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Document version signed successfully." -msgstr "Assinatura avulsa enviada com sucesso." +msgstr "" #: views.py:129 #, python-format @@ -273,50 +244,56 @@ msgid "Sign document version \"%s\" with a embedded signature" msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Download detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Descarregar assinaturas avulsas" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Assinaturas do documento" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature type: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Tipo de assinatura: %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signatures" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Enviar assinaturas avulsas" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "Esta operação pode levar algum tempo em bases de dados grandes." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Verificar as assinaturas do documento" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Signature verification queued successfully." -msgstr "Assinatura avulsa enviada com sucesso." +msgstr "" + +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" -#~ msgstr "Data/hora: %s" +#~ msgstr "Timestamp: %s" #~ msgid "Signee: %s" -#~ msgstr "Assinado por: %s" +#~ msgstr "Signee: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Detached signature uploaded successfully." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" diff --git a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.mo index 62948e7d5440235d7b5774f0d7193f8299db5e2b..8fa2794d8cf8f852088d2eb5d26c044aa1615608 100644 GIT binary patch literal 1597 zcmaKryN?@19LMJ%Kw=&V;UV!jF%k;86Iwrx2u^!C#9i!27C3iu9I8lY?EQH?usgHN z%=$q=la8L2hJucU61wmQfRHFaq(QWZf`WpA@6V63BLO4Ler9LB`+Mzg?p;3jsla#| z^F_>WFt;&pZ{dOQ9e57>9()-55quu}1w0S_1wI09Js`wW;05p!xDB$d3cdigLDtif z24s5^knMjAz6IU^p8&rFE8q_xpWg%7?yn%*{S*8QzArwwIR6qNj^iuvCGczT0{An? zet!d>1AhlO*Yghv@iMp#UIC9ljwc0KZ@@>v$#VY=c!Kv&z-Pdpmgj$fFe&~9+3psM zyaGN8BE0$FbFK|S6$pDiIJec{yzu!vZ}$B-=0!{%Y?BA)c6q*9Kc2*rV|)ygW9NKD zQw0)D%IFL-p`ZpMN~G7RQK59?p;+wA7dpd+9h5nlaGz+kHzwz`HEYpwV=exlBep#; znN^8s<$X#LO2peVlkKLsVGW5BBQxbvl8FkcuRM7fM%qhTkW&F}Wv*s2s1Hbbo0ANh zA6C+o24$eCxVcJ84s}NBS1)?Ag2b(YeQ$*NE;&7%$z+w?Mp;gseV+y)Y9|p?oO3KY zYNm{AH9I#eT`H^#QOBn`iH^(EM?D+M%IQfjy5?veY{WkxmV5Qa>rwq`wD*Q=T#XwI ztm}0Mqb`j#+x-{ae!TbEt96XZJIaTs=ali83f9H4Yy0GobJu$1w1vQ=rAjI4k;-Fv zim1x8Bu{eZ*r|_nwkvl=Arx_~HknMSflcWlO{)W&*WAL0tD&ySM3m&dmMsm|ityfX zx3*j9v^%YJ4I0&Y<(f4C4H9utV;N`~YDK2BIgo>qa-PEBt={!$f30JuLvm5e3~ZuJ z8q58@4rj5)a_*~gnw3sv(RJ%`A4^lrU;W|Ufm|#PcZ_^fHg*px+}ujErh}~1ZbhlQ z*Ymbk9(8 zmm4ZCj+LG&Cn)ciK_jAelkK2xV-h#WjLIB$L#C)0qLzzGknoK_B9il1+=jbfaEyh; zQAT6sq{`AV$G^x6Y%8ahmqNL!IC3ABdW?8!BNDMuEYZ`273Jb~An)}NC#8pazz+Pz KKG%1%X#W5;pRN4> literal 2438 zcmaKsO>7%Q6vqchftrt&0_9sB2?ZsTjqS9mT8C6>5?6#aB}!Z*PG#bKwg;_umYG>6 z0f{>j2S7sHxF7@v;K02XDk08@8=~UE0a1a3#DN?CxAuCsiPMqRKku72?`z(^o5!X; z5m?XRc^1#qT|&%)w?JMW-Yvw_;78z5@N4jX@H#jH{s6N6-{7O*Q}+z@0+7$02cH4o z0NH*D9s@rH+0GYW75o-F4&DSS;J@G$$Up4&5cn{79GnKH!N)7GAfNvoA(AlthR zJ^=ms0;P-*<9(1roFgY#*-P0n@FDB7Kyq?jg=QQ>|~(@y&o`@$pw$Ylev zPMdh2pisWU7Tej5+3Dmg^UWg9W`B!9geaQU8Y{PZI^qf;K^=Fc?@cP#f}D2Z73Cz2 z4wquPM7wfzrNJ6kOiW@kuW>Fd1Rc04?I+eGWW6RQJBTD46(loN9C98v=Jp8vZbG+< zTxOVt(w6QM&h?W_=W2E-6Y8_y?SZOJjJAqGzD`zmcE@2CC2?ZinzyL!gVivA7T<0| zuBlxW%jU}3W@UpCV|}pZx;hM&(yj|yrXefqueE|@OUgq(SWzCi%-8B?g4(HIzAo!$ z8mCVMwbQj46oU;KXtujwZ@%8BojX~>s$5pi2Q8~&7b$OSLvENY6x@JLS#6*YcT?4+ zphc?Rkn4yl?WW{N&MaB=j*e#KOwaqIQLS!oZ_jx)r8~4U*EapC9U8IKK4%tC*mu=v zWU!j}YfBr|*~;4LTC=D@eXdqnHnGR25VW!@^t9uvNu+eVAlp4<9r?wpt&73gLXVwx z$Og^0Z9?>DL!RBzejIy4X1*%xQEF8bTr{?iZi$oZ)h*61$l>3`nOL5e_1T4rXzsM5 zR9mT>)7d;gXNTleOgkzxZo;lgA_TCaZ4c-Zl4>U8;E2+FicsPe>BigrF`T;I!>0fO2cDMDY9IZ6Jb6-;J;82 z7z3%-C*3F#LqCP~1!V zEH3DAPyx(EMEGuiN ptI8c!Gza&{o(RTcrj$a~f_dH3(a5^3>e;~2?aa-dgN1!3{s%#zrQZMm 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 2e47fa2794..950bc7fcbf 100644 --- a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Rogerio Falcone , 2015 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -26,19 +25,17 @@ msgstr "Assinaturas de documentos" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Data" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "ID da chave: %s" +msgstr "ID da chave" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "ID assinatura: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -46,7 +43,7 @@ msgstr "Nenhum" #: apps.py:102 msgid "Type" -msgstr "" +msgstr "Tipo" #: forms.py:23 msgid "Key" @@ -57,28 +54,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "Arquivo de assinatura" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "Arquivo de assinatura" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "ID assinatura: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Tipo de assinatura: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -109,10 +102,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Verificar as assinaturas de documentos" +msgstr "" #: links.py:39 msgid "Signatures" @@ -120,49 +112,39 @@ msgstr "assinaturas" #: links.py:46 msgid "Delete" -msgstr "" +msgstr "Excluir" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Detalhes" #: links.py:57 -#, fuzzy -#| msgid "Signatures" msgid "Signature list" -msgstr "assinaturas" +msgstr "" #: links.py:63 -#, fuzzy -#| msgid "Download signature" msgid "Download" -msgstr "download do assinatura" +msgstr "Baixar" #: links.py:69 msgid "Upload signature" msgstr "upload do assinatura" #: links.py:75 -#, fuzzy -#| msgid "Detached" msgid "Sign detached" -msgstr "destacado" +msgstr "" #: links.py:81 -#, fuzzy -#| msgid "Embedded" msgid "Sign embedded" -msgstr "embutido" +msgstr "" #: models.py:31 msgid "Document version" msgstr "Versão do Documento" #: models.py:35 -#, fuzzy -#| msgid "Delete signature" msgid "Date signed" -msgstr "Excluir assinatura" +msgstr "" #: models.py:45 msgid "Public key fingerprint" @@ -185,76 +167,59 @@ msgid "Embedded" msgstr "embutido" #: models.py:88 -#, fuzzy -#| msgid "Document version signature" msgid "Document version embedded signature" -msgstr "Versão do documento da assinatura " +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version embedded signatures" -msgstr "Versão do documento das assinaturas" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "Arquivo de assinatura" #: models.py:126 -#, fuzzy -#| msgid "Document version signature" msgid "Document version detached signature" -msgstr "Versão do documento da assinatura " +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version detached signatures" -msgstr "Versão do documento das assinaturas" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "Signatures" msgid "signature" -msgstr "assinaturas" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Sign documents with detached signatures" -msgstr "Excluir assinaturas desanexados" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Has embedded signature" msgid "Sign documents with embedded signatures" -msgstr "Tem incorporado a assinatura" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Excluir assinaturas desanexados" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Download assinaturas destacadas" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Upload de assinaturas destacadas" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Verificar as assinaturas de documentos" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Verificar as assinaturas de documentos" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -265,65 +230,55 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Document version signatures" msgid "Document version signed successfully." -msgstr "Versão do documento das assinaturas" +msgstr "" #: views.py:129 -#, fuzzy, python-format -#| msgid "Document version signature" +#, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "Versão do documento da assinatura " +msgstr "" #: views.py:240 -#, fuzzy, python-format -#| msgid "Document version signature" +#, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "Versão do documento da assinatura " +msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Delete detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Excluir assinaturas desanexados" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Assinaturas de documentos" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature properties for document: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Propriedades da assinatura do documento: %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signature for document: %s" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Carregar assinatura separada para documento: %s" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "Em grandes bases de dados esta operação pode levar algum tempo para executar." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Verificar as assinaturas de documentos" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature deleted successfully." msgid "Signature verification queued successfully." -msgstr "Assinatura separada excluído com sucesso." +msgstr "" #~ msgid "Signature status: %s" -#~ msgstr "Assinatura status: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" #~ msgstr "Timestamp: %s" @@ -332,10 +287,13 @@ msgstr "Assinatura separada excluído com sucesso." #~ msgstr "Signee: %s" #~ msgid "Detached signature uploaded successfully." -#~ msgstr "Assinatura separado enviado com sucesso." +#~ msgstr "Detached signature uploaded successfully." #~ msgid "Error while deleting the detached signature; %s" -#~ msgstr "Erro ao excluir a assinatura individual; %s " +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" diff --git a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.mo index 42fc2d062f7a0640ae3d8f03fbd1eea6255cb3a3..dd25ece041e92dc19e0e1780f747d4f3b70d620e 100644 GIT binary patch delta 656 zcmYk2&q^FY5XQ@K6J7I%`~eR+ND;in2)jxmLcqg_NI(M#fgEdRE820UXPE9$*UKLE z1%$l>JopeEym-iAAs&Prk~hc$

    sDzSc=%L(Q+NrmDaG`d9O)c{tl|5K(K4=qC6K zoB&^d55ZON9{3KN1V4bG&w*j?09*n4;9c-jUH<|;LjDc>jQCO4Psgv$KdU(!r#?-i z@dAbW;CHYI{se>I?>e7^+9vV`VCd_B_(dLk4DN%___uCh7mS1z&IxDUMuf|U6=v@s z8qlW*n;VEJ1jXW&VomiDUQFsJ&XX!r>)DwtE50iAT5VTLXL5_CJ)7pzrI*^{^_Vtt ztF&o3m2ykDD_%O{)Un?-j`KoG@fhQFCO!7DqwMlb*_-gmS@$)myw20>zmojkq)Kmk zg$|==XKL|j`#HB3ms_pjUNlpuOUvzrljCS@tPdMP=O4X79Co~<#{Boug_>q|G=LXF zZ-ax%;*zyb47fzfWHg}ln3HWaN*g9IT-hq6SIQkZK=-99RPB|8p)!f@YLqyK?NCl) zD&&(CIR;1U?0KfiJ)#;2ZET_#Qk4egd8DE9h!`2Ty{(x*XU^$QSI- zfEVHaIY7t>a1cpPgXh76;B|06xCpxbmb!cZ9>@DCcmR9}x;pQ`A@C!37W@XH4A}#7 z{kY}yC|j)Ec)B`}6?L3*FKi#o5tn^TNLM zm|e?ThBdN~mga6Z*pwFBLeFa4qMuPexXk=9HX6|2a(HQs`ImejLN+fRN|*P4-DnW{ z6Bm4}(oJqGYiO=a!fmEQI-lJW+Ge2PT4oTaR?b_3H3UyxIOR&B%W`+;(ekpj?XXf= zSy>seE|YAEM|R`g~LT}j=CF%hSxl63PSxHNye;+5*N_37R(2uA$URHiI0moE^atR@G{7)ep<%vKkJ2|4K07J$~GMsaAdO+_|zE0zL2QXc&0jWQi<@ zRIRUKSa~r4pWkxJ>DmVst*`2c+x1l%<=yG+o7-4W^Y@@6HDMwSb)Ti S>!lcI`A?^bKzwV&1^ENgm1461 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 22615623de..a555cacb41 100644 --- a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -10,16 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -27,19 +25,17 @@ msgstr "Document de semnături" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Data" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "ID cheie:% s" +msgstr "ID cheie" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "ID Semnătura:% s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -47,7 +43,7 @@ msgstr "Nici unul" #: apps.py:102 msgid "Type" -msgstr "" +msgstr "Tip" #: forms.py:23 msgid "Key" @@ -58,28 +54,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "Fisier semnătura" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "Fisier semnătura" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "ID Semnătura:% s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Tipul semnătura:% s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -110,10 +102,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Verifica semnăturile de documente" +msgstr "" #: links.py:39 msgid "Signatures" @@ -121,21 +112,19 @@ msgstr "" #: links.py:46 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Detalii" #: links.py:57 -#, fuzzy -#| msgid "Signature file" msgid "Signature list" -msgstr "Fisier semnătura" +msgstr "" #: links.py:63 msgid "Download" -msgstr "" +msgstr "Descarcă" #: links.py:69 msgid "Upload signature" @@ -151,7 +140,7 @@ msgstr "" #: models.py:31 msgid "Document version" -msgstr "" +msgstr "Versiune document" #: models.py:35 msgid "Date signed" @@ -178,76 +167,59 @@ msgid "Embedded" msgstr "" #: models.py:88 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signature" -msgstr "Document de semnături" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signatures" -msgstr "Document de semnături" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "Fisier semnătura" #: models.py:126 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signature" -msgstr "Descarca semnături detașate" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signatures" -msgstr "Descarca semnături detașate" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "signature file" msgid "signature" -msgstr "signature file" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Download detached signatures" msgid "Sign documents with detached signatures" -msgstr "Descarca semnături detașate" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Verify document signatures" msgid "Sign documents with embedded signatures" -msgstr "Verifica semnăturile de documente" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Descarca semnături detașate" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Încărcați semnături detașate" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Verifica semnăturile de documente" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Verifica semnăturile de documente" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -258,10 +230,8 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Document version signed successfully." -msgstr "Semnătura detaşata încărcată cu succes." +msgstr "" #: views.py:129 #, python-format @@ -274,50 +244,59 @@ msgid "Sign document version \"%s\" with a embedded signature" msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Download detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Descarca semnături detașate" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Document de semnături" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature type: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Tipul semnătura:% s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signatures" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Încărcați semnături detașate" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "Pe baze de date mari, această operație poate dura ceva timp pentru a executa." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Verifica semnăturile de documente" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Signature verification queued successfully." -msgstr "Semnătura detaşata încărcată cu succes." +msgstr "" + +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" -#~ msgstr "Timestamp:% s" +#~ msgstr "Timestamp: %s" #~ msgid "Signee: %s" -#~ msgstr "Semnat :% s" +#~ msgstr "Signee: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Detached signature uploaded successfully." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" + +#~ msgid "signature file" +#~ msgstr "signature file" diff --git a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.mo index 6b10ec943d04e4e76ac755eb1e3553dcc8172f03..574d7b78a5e3c63f0b1362c82ac4797f05963aa1 100644 GIT binary patch delta 800 zcmYk1&ubG=5XWDd#%j~{pkP6YjDLWIw4vI9;9(C2B_8~7c5R<^X|fx#8*NU}idt;6 z;-;XW`12~nm}oRjihqIg4jw${!CQ~sd+<9+Djk^pym@cF--jtYWwB>q z5_|yA%ePUr2w z@m$K}a6gcwnNH6R8LZBzrh1~&k&BwC6aTA zM3{~q?UyI#rlvpMh(3)Ru5i_?a8>bJu5*=J+%zku9FD|h;}vemliY>xV~LVVS;Swt zWgeOPqIkhg;tpg@ZYzF5`~g+Vl+7wk?n+tZ&#=c)tlQi+YbeY^aTVnj2HZl!J@l^= zZ{q5c%p{SadtFu`2pbsNxdK@S{T*%)*Kla?rpW4;3DnFQ46#7Bzb%%Nir>NL3%98I YRL8ezZgW%dOLXoj-{2p%!s(%ze|yvlivR!s literal 1897 zcmZvc&u<$=6vr1@ptuxh5mX=!(?hFRbiKQd8?~EkDp99WR7|7PMZIqAvAt-$Yt78! zSn2_aDuRkYAaO#a0wRtmjR-gmc5d8|X0J%_Um%X{cXpk`zealb?7n&L`+nHYzo(9V ztKpo4y$#!dorax%27hqY!MDKA!5MG^%z}S`uYv!AD)0ESnr47AUQ$b0U3b)drRl>b`;EIS*j;nDW!c;V( zqDqBwUWTqUdPH$As1wnc*6=(z z%e8B?LzauSdVD_&sCHw2oPF=1qXx~Pd(mmpB<~=CC$}{9mc1tB!fm#an48IXQ#<~E zGOyMl)hUy%u<%1#5&CjfM-=zMz$PWP;|64@Sh|r}rLB+&y~OKYRev|CbG;neB(rk8 ztY2Z&6^Pf1u0TI|)0)%GSv_wNYtAmr>Sn<-5vZ@yk36M28JD+g^U^yePUbzA3%$(T zfcvfpnN3#1+mwkAD;ne?j6;hom=iLpkx+DAt>nBe&xFsN9#oB@L;pheM^i z1d@IE7}9^J05q|w$sgonXnh8|i?WjgsHuhr=&DxMG3_Ijh`ab>*&S`S3&*$+3h#^w zso(l?kw9iQ{!(?2{6gh}Bpa=EWp88vv^V$_, 2012 @@ -10,17 +10,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -28,19 +25,17 @@ msgstr "Подписи документа" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Дата" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "ID ключа: %s" +msgstr "ID ключа" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "Подпись ID: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -48,7 +43,7 @@ msgstr "Ни один" #: apps.py:102 msgid "Type" -msgstr "" +msgstr "Тип" #: forms.py:23 msgid "Key" @@ -59,28 +54,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "Файл подписи" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "Файл подписи" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "Подпись ID: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Тип подписи: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -111,10 +102,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "Проверить подпись документа" +msgstr "" #: links.py:39 msgid "Signatures" @@ -122,21 +112,19 @@ msgstr "Подписи" #: links.py:46 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Детали" #: links.py:57 -#, fuzzy -#| msgid "Signatures" msgid "Signature list" -msgstr "Подписи" +msgstr "" #: links.py:63 msgid "Download" -msgstr "" +msgstr "Скачать" #: links.py:69 msgid "Upload signature" @@ -179,76 +167,59 @@ msgid "Embedded" msgstr "" #: models.py:88 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signature" -msgstr "Подписи документа" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signatures" -msgstr "Подписи документа" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "Файл подписи" #: models.py:126 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Document version detached signature" -msgstr "Удаление отделенных подписей" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Document version detached signatures" -msgstr "Удаление отделенных подписей" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "Signatures" msgid "signature" -msgstr "Подписи" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Sign documents with detached signatures" -msgstr "Удаление отделенных подписей" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Verify document signatures" msgid "Sign documents with embedded signatures" -msgstr "Проверить подпись документа" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Удаление отделенных подписей" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "Скачать отделенные подписи" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Выложить отделённые подписи" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "Проверить подпись документа" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "Проверить подпись документа" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -259,10 +230,8 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Detached signature deleted successfully." msgid "Document version signed successfully." -msgstr "Отделенная подпись удалена." +msgstr "" #: views.py:129 #, python-format @@ -275,56 +244,56 @@ msgid "Sign document version \"%s\" with a embedded signature" msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Delete detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "Удаление отделенных подписей" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Подписи документа" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature type: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Тип подписи: %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signatures" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Выложить отделённые подписи" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "В больших базах данных эта операция может занять некоторое время для выполнения." #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "Проверить подпись документа" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature deleted successfully." msgid "Signature verification queued successfully." -msgstr "Отделенная подпись удалена." +msgstr "" + +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" -#~ msgstr "Отметка времени: %s" +#~ msgstr "Timestamp: %s" #~ msgid "Signee: %s" -#~ msgstr "Подписано: %s" +#~ msgstr "Signee: %s" #~ msgid "Detached signature uploaded successfully." -#~ msgstr "Отделённая подпись выложена." +#~ msgstr "Detached signature uploaded successfully." #~ msgid "Error while deleting the detached signature; %s" -#~ msgstr "Ошибка при удалении отделенной подписи %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" diff --git a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.mo index 02c0e85d6957d9933690ac8f509c9bce97fe0bc2..5c9ab6d7f97ff7928cd68f4622807a22c996411c 100644 GIT binary patch delta 364 zcmXAju}T9$5QZljqbN4ETFeV1m>5)2iKMd7E3|hm8O-J`w{p8iy~fsnDN+bxBR+vz z_yEEQHgeoO!KHj)KKzwXwzZW~*MGJgqKo zR@bM6?N(#s<@>PI32ZmDVPc&(6r_p^?WUShexux14kZ&FYHT9GF1^T3hj&b0IFp{& bp>U#+^wE@$IUkD?tjkW>WW)6R(bVVbVNkv{Py>()1|Yp~ z;Fq75I`Mu0m$9yqp@N~Am5K3WOGas4Q(XfKT_XbpLrW_|gUyMIA&jg}MX6N`0I|st AdH?_b 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 5b3144323d..69b1a79747 100644 --- a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,16 +9,14 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2015-08-20 19:10+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -29,14 +27,14 @@ msgid "Date" msgstr "" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "signature file" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -55,24 +53,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature file" msgid "Signature is embedded?" -msgstr "signature file" +msgstr "" #: forms.py:55 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature file" msgid "Signature date" -msgstr "signature file" +msgstr "" #: forms.py:58 -#, fuzzy -#| msgid "signature file" +#| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "signature file" +msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -105,6 +101,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -118,17 +115,15 @@ msgstr "" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Podrobnosti" #: links.py:57 -#, fuzzy -#| msgid "signature file" msgid "Signature list" -msgstr "signature file" +msgstr "" #: links.py:63 msgid "Download" -msgstr "" +msgstr "Prenos" #: links.py:69 msgid "Upload signature" @@ -191,10 +186,8 @@ msgid "Document version detached signatures" msgstr "" #: models.py:130 -#, fuzzy -#| msgid "signature file" msgid "signature" -msgstr "signature file" +msgstr "" #: permissions.py:13 msgid "Sign documents with detached signatures" @@ -209,10 +202,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -221,6 +216,7 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -253,6 +249,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -268,9 +265,10 @@ msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "Če je baza velika lahko operacija zahteva nekaj več časa da se izvrši." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" @@ -278,5 +276,26 @@ msgstr "" msgid "Signature verification queued successfully." msgstr "" +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" + +#~ msgid "Timestamp: %s" +#~ msgstr "Timestamp: %s" + +#~ msgid "Signee: %s" +#~ msgstr "Signee: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Detached signature uploaded successfully." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" + #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" + +#~ msgid "signature file" +#~ msgstr "signature file" diff --git a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.mo index fbaf5097d96d80e0bc8a104892b85cfd32377a42..341cfa8eea3b1573b14bd98e949db0d0f2f26ab6 100644 GIT binary patch delta 361 zcmX@cxrD9$o)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~}-~fcPX3vjg!tAQlGVYe38f#IJxD zB>xeJ`GEKv5K93uDQo+-O!7o2Al_3}^%$BNy86r+$|`r!qY49*#u3MH8jckM4>aGt!8MN}TyR5zee3OUC%lqw`= QJlwrrA^Y&!$%|Q(0Rh}aRsaA1 literal 1222 zcma))zfTlF6vs!wU*~U(F)?aJ6C=b7w+Dpa5*j&32pkezXe@Nxo7)@RojrGEfh&zB zHZ~N-#Au?yMiU~fVu#w=TbNvIEc^%T{LbFVVW4o5x1ZTJ-+kY=yYG8f=M#c;7;y&i z5OEyw3t^YDi;y0$0GZV9%8F@uTNzCzMV(F*U3yWI=~xMJebb?pZ6_)++6HIY4M z6{5NIWF)lVQ7t=|%X-|=c3vd1Qm5q|+MP+_JHj_?qRgPuGFC1v@j6#@tXR69n-#S< zF|4EmS!P$$Kr=6PX>R74$3_#u4fL$Y4f^SG3WLn)XMF`)7<32vnKR%x5VBdZAZ^|4 zy1s(zT)FIE<)*kc%uBe^Avba2(%Ja7NK6cBp2!#i6{I{6%o99v>AVz1alF2u-F8o> zdDKI@tH#vae136pvDesQvLcpx{W!`e%`!Tk+3o4$7QJkmk!;QX0v;j zW?s3OFim*K#^WT?E>*ScR*w{hX>&W`4Cl!I&*5mbvHp(U-B_h&o4SH o!h<7j1IaN, 2013 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -26,19 +25,17 @@ msgstr "Chữ kí tài liệu" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Ngày" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "Key ID: %s" +msgstr "Key ID" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "ID chữ kí: %s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -57,28 +54,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "File lưu chữ kí" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "File lưu chữ kí" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "ID chữ kí: %s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "Kiểu chũ kí: %s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -109,10 +102,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "xác nhận chữ kí tài liệu" +msgstr "" #: links.py:39 msgid "Signatures" @@ -124,13 +116,11 @@ msgstr "" #: links.py:51 msgid "Details" -msgstr "" +msgstr "Chi tiết" #: links.py:57 -#, fuzzy -#| msgid "Signature file" msgid "Signature list" -msgstr "File lưu chữ kí" +msgstr "" #: links.py:63 msgid "Download" @@ -177,76 +167,59 @@ msgid "Embedded" msgstr "" #: models.py:88 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signature" -msgstr "Chữ kí tài liệu" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signatures" -msgstr "Chữ kí tài liệu" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "File lưu chữ kí" #: models.py:126 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signature" -msgstr "ống chữ kí đã tách ra" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Download detached signatures" msgid "Document version detached signatures" -msgstr "ống chữ kí đã tách ra" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "signature file" msgid "signature" -msgstr "signature file" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Download detached signatures" msgid "Sign documents with detached signatures" -msgstr "ống chữ kí đã tách ra" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Verify document signatures" msgid "Sign documents with embedded signatures" -msgstr "xác nhận chữ kí tài liệu" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "ống chữ kí đã tách ra" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "Tải lên chữ kí đã tách ra" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "xác nhận chữ kí tài liệu" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "xác nhận chữ kí tài liệu" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -257,10 +230,8 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Document version signed successfully." -msgstr "Detached signature uploaded successfully." +msgstr "" #: views.py:129 #, python-format @@ -273,50 +244,59 @@ msgid "Sign document version \"%s\" with a embedded signature" msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Download detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "ống chữ kí đã tách ra" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "Chữ kí tài liệu" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature type: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "Kiểu chũ kí: %s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signatures" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "Tải lên chữ kí đã tách ra" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." msgstr "" #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "xác nhận chữ kí tài liệu" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature uploaded successfully." msgid "Signature verification queued successfully." -msgstr "Detached signature uploaded successfully." +msgstr "" + +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" -#~ msgstr "Thời gian: %s" +#~ msgstr "Timestamp: %s" #~ msgid "Signee: %s" -#~ msgstr "Người kí: %s" +#~ msgstr "Signee: %s" + +#~ msgid "Detached signature uploaded successfully." +#~ msgstr "Detached signature uploaded successfully." + +#~ msgid "Error while deleting the detached signature; %s" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" + +#~ msgid "signature file" +#~ msgstr "signature file" diff --git a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.mo index 917bb3a127d99a91944714620ec4ad5223450781..0ca22d51f449caf84189d7aa2d3a649a9da57c20 100644 GIT binary patch delta 610 zcmY+<%}*0S7zXgSQ2DAc6cH2SVg7-d-O`BkyBU#^dWlwt1jH>e!BF5b&t!{iAjiVo}ab_ zlPd^%5GA-2-b{eytdvU$XFQu0wq&j~X>*y)2>tA(opSgDJrJ{OC_y8REojtcDV~`W zY=TRkEN+?+BW4&~4@V=9#0$$s!-zg;oJ9@uF5aE3yBCl4e}2;18)#F-EmeBw z{S5Za(eYlsxx7H?&60XwKCbNhuM5Cjpw$`?JVe*^zooCEu~X1@kMh!OArSOHtXaj*@X1^0k;&^-4Cw88yrEh`3|16#mB(Dc3xZU;SZH#h~uOfZ}&8#2bUepDe9RzPjd;xAnJ`0-j@8DtZ7ijvfU2j?Iz-^$Jy9+dW z0`3B7R6h;wK;8$MK372FPlFh5ZNW0J84Ing4Om8RJe&R|%>7_9jExcTcsMUgtxeb% zU&c!q3GQ>vNrr2d&hrdWUM^s|B)PH@t7?!LHB_Z^nk$tp`F^FnnXpv!1ybL{4$|;%>E{XMDOwn%1nTDPwn1-JYCw_uD$7n~K#80@#k5T8i z<3LCU_;t_pU9IbgyUwYj4kC7eDNR$71, 2014 @@ -10,14 +10,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -26,19 +25,17 @@ msgstr "文档签名" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "日期" #: apps.py:94 models.py:37 -#, fuzzy #| msgid "Key ID: %s" msgid "Key ID" -msgstr "键 ID: %s" +msgstr "密钥ID" #: apps.py:98 forms.py:71 models.py:41 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "签名 ID:%s" +msgstr "" #: apps.py:99 forms.py:83 msgid "None" @@ -57,28 +54,24 @@ msgid "Passphrase" msgstr "" #: forms.py:53 -#, fuzzy #| msgid "Signature file" msgid "Signature is embedded?" -msgstr "签名文件" +msgstr "" #: forms.py:55 -#, fuzzy #| msgid "Signature file" msgid "Signature date" -msgstr "签名文件" +msgstr "" #: forms.py:58 -#, fuzzy #| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "签名 ID:%s" +msgstr "" #: forms.py:60 -#, fuzzy #| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "签名类型:%s" +msgstr "" #: forms.py:73 msgid "Key fingerprint" @@ -109,10 +102,9 @@ msgid "Key type" msgstr "" #: links.py:32 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "核对文档签名" +msgstr "" #: links.py:39 msgid "Signatures" @@ -124,17 +116,15 @@ msgstr "" #: links.py:51 msgid "Details" -msgstr "" +msgstr "细节" #: links.py:57 -#, fuzzy -#| msgid "Signature file" msgid "Signature list" -msgstr "签名文件" +msgstr "" #: links.py:63 msgid "Download" -msgstr "" +msgstr "下载" #: links.py:69 msgid "Upload signature" @@ -177,76 +167,59 @@ msgid "Embedded" msgstr "" #: models.py:88 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signature" -msgstr "文档签名" +msgstr "" #: models.py:89 -#, fuzzy -#| msgid "Document signatures" msgid "Document version embedded signatures" -msgstr "文档签名" +msgstr "" #: models.py:122 msgid "Signature file" msgstr "签名文件" #: models.py:126 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Document version detached signature" -msgstr "删除分离的签名" +msgstr "" #: models.py:127 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Document version detached signatures" -msgstr "删除分离的签名" +msgstr "" #: models.py:130 -#, fuzzy -#| msgid "signature file" msgid "signature" -msgstr "signature file" +msgstr "" #: permissions.py:13 -#, fuzzy -#| msgid "Delete detached signatures" msgid "Sign documents with detached signatures" -msgstr "删除分离的签名" +msgstr "" #: permissions.py:17 -#, fuzzy -#| msgid "Verify document signatures" msgid "Sign documents with embedded signatures" -msgstr "核对文档签名" +msgstr "" #: permissions.py:21 msgid "Delete detached signatures" msgstr "删除分离的签名" #: permissions.py:25 -#, fuzzy #| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "下载分离的签名" +msgstr "" #: permissions.py:29 -#, fuzzy #| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "上传分离的签名" +msgstr "" #: permissions.py:33 msgid "Verify document signatures" msgstr "核对文档签名" #: permissions.py:37 -#, fuzzy #| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "核对文档签名" +msgstr "" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." @@ -257,10 +230,8 @@ msgid "Passphrase is incorrect." msgstr "" #: views.py:98 views.py:202 -#, fuzzy -#| msgid "Detached signature deleted successfully." msgid "Document version signed successfully." -msgstr "分离的签名删除成功" +msgstr "" #: views.py:129 #, python-format @@ -273,56 +244,59 @@ msgid "Sign document version \"%s\" with a embedded signature" msgstr "" #: views.py:267 -#, fuzzy, python-format -#| msgid "Delete detached signatures" +#, python-format msgid "Delete detached signature: %s" -msgstr "删除分离的签名" +msgstr "" #: views.py:292 -#, fuzzy, python-format +#, python-format #| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "文档签名" +msgstr "" #: views.py:339 -#, fuzzy, python-format -#| msgid "Signature type: %s" +#, python-format msgid "Signatures for document version: %s" -msgstr "签名类型:%s" +msgstr "" #: views.py:375 -#, fuzzy, python-format -#| msgid "Upload detached signatures" +#, python-format msgid "Upload detached signature for document version: %s" -msgstr "上传分离的签名" +msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" +msgstr "在大数据库中,此操作将比较耗时。" #: views.py:393 -#, fuzzy #| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "核对文档签名" +msgstr "" #: views.py:403 -#, fuzzy -#| msgid "Detached signature deleted successfully." msgid "Signature verification queued successfully." -msgstr "分离的签名删除成功" +msgstr "" + +#~ msgid "Signature status: %s" +#~ msgstr "Signature type: %s" #~ msgid "Timestamp: %s" -#~ msgstr "时间戳: %s" +#~ msgstr "Timestamp: %s" #~ msgid "Signee: %s" -#~ msgstr "签名者:%s" +#~ msgstr "Signee: %s" #~ msgid "Detached signature uploaded successfully." -#~ msgstr "分离的签名上传成功" +#~ msgstr "Detached signature uploaded successfully." #~ msgid "Error while deleting the detached signature; %s" -#~ msgstr "删除分离的签名:%s 出错" +#~ msgstr "Download detached signatures" + +#~ msgid "Delete the detached signature from document: %s?" +#~ msgstr "Upload detached signature for: %s" #~ msgid "Signature status: %(widget)s %(text)s" #~ msgstr "Signature status: %(widget)s %(text)s" + +#~ msgid "signature file" +#~ msgstr "signature file" diff --git a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo index a81b9a5a8af9d750a8b785b42af9d6ec0ebf0e11..647332b4eb28065ddbc6035023f5357497c154c2 100644 GIT binary patch delta 43 zcmaFJ`jB;l7$cX7u93Ndp^25D;baBIg*-lqdFiEz>8Vx8Vx8Vx8Vx2XxNdgi=4S-} DUi1!O diff --git a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.mo index 5a954563bc704c31c33d1cc5b75b415fc299915c..4af4260411c712caf2b5f81bdb48cd26b6475736 100644 GIT binary patch delta 20 bcmeyx^owaiFPDj~k-37QiIt(@#OaR#OF#z} delta 20 bcmeyx^owaiFPE{dk)eX2nU#t0#OaR#OB@Fl 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 5550e6530147bb6797a67fc2f4ebe647f9daf703..24caf49c85a04528ea53af42ae4bfb77c9a2d2b6 100644 GIT binary patch delta 44 zcmX>rb5>@9G6$E5u93Ndp^25D;bdKoMLa%8Vxz>% delta 44 zcmX>rb5>@9G6$Eju92aFp_!G5@nl_&MU(GvMDh3}=B1Y=rl(pdq!w>B<&8Vx8Vxt<8 diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo index aba4655838020f2740cc677a44aa67afbc0f65dc..dc90ee1000a16c6fc05e7292d8f296ff51b3310c 100644 GIT binary patch delta 41 xcmdnYvYBPVB`y0+6%m&-)g$XvnD#LCcc;_;0+6%m&;h!$WX!1%*w=g;_;=ED;cABd=m50OB2&mtrRj-CSPK-000vO4Y&XR diff --git a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo index 150dbb09bce55b69cc3d92a1a761b6a8bf4c4f8b..e0afbcda6c3039c133e7f189077bf5e2130180cc 100644 GIT binary patch delta 43 zcmcc4cAag*Mn*0ZT_bY^LlY}Q!^yiD7xDNc=B1Y=rl(pdWR^^hVTzu7glRGWHhK=C delta 41 xcmcc4cAag*Mn*1UT_ZyULo+KA8Vx8Vx<1tpU|GDc61WXb>l7j+Gw delta 42 ycmX@edXRO4Gb5L=u92aFp_!G5@nm1drIY_NMsfQj=B1Y=rl(pd6ig0h$^rlo#0@wA diff --git a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo index 6aa785103d0f8247ee94bd12ac17299f6a30ab97..4f93baebc2f5dbc828d2ca46002af9ca3d0d1e8e 100644 GIT binary patch delta 47 zcmbO&JzIK%G6$E5u93Ndp^25D;bdKojr=}|dFiEz>8Vx<1tsxLL6h%tL~r)s3}yiU DLtqX_ delta 47 zcmbO&JzIK%G6$Eju92aFp_!G5@nl_&jg#MTMDhD1=B1Y=rl(pd6qLj}1#Ncc3}FEP DOk56F diff --git a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo index 34c8cc60abddc0a7343b334e2834cf0b4b6aa3c7..4579ee1fffef38e75fa97eedc1282b62e785b9fc 100644 GIT binary patch delta 46 zcmX@YdW3a@7$cX7u93Ndp^25D;baBI4g5ZddFiEz>8VxH+{Y C?G88q delta 46 zcmX@YdW3a@7$cXlu92aFp_!G5@ni+Y4U-=*M)CV3=B1Y=rl(pd6y?VU`A@cF>IMKk CVGc+D diff --git a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo index 3ece5e3e1e24c3d7d32b33f44b00ea6be4763f5a..3d576e0dd219ea283f9065d93d368a70a1fa48d8 100644 GIT binary patch delta 44 zcmX@lcAjm67$cX7u93Ndp^25D;baBIMLa%8Vx?|BXb2q6Dvc*iN`nb`y}S2mnNpCS}7Fg#0Ps$u3(Iw{FpHh09N-8 AssI20 delta 44 zcmcb}a*<`iUM^!@BSQs4Gba)D*SM=ldxBXb2q6Dvc*iNDwK`y}S2mnNpCS}9az#5?;a)D*SM=oPsBSQs4Gb5%26bS&+#d0A}b9 ALI3~& diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.mo index f192269e8938db4f3b9d3fc27d133ec2dd85916e..b8d28f2dcfa690ec2d427c7776ec8e60f1289fa0 100644 GIT binary patch delta 38 ocmcbqb5m!-Hf}BxT_bY^LlY}Q!^sD@<)B;(D<{9 delta 38 pcmcbqb5m!-Hf}CsT_ZyULo+KAlgS6T=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -76,14 +74,17 @@ msgid "Comment" msgstr "تعليق" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,10 +105,8 @@ msgid "Document created" msgstr "" #: events.py:12 -#, fuzzy -#| msgid "Document deleted" msgid "Document downloaded" -msgstr "Document deleted" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -118,18 +117,18 @@ msgid "Document type changed" msgstr "" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -193,9 +192,13 @@ msgid "Compress" msgstr "ضغط" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -207,9 +210,7 @@ msgstr "اسم الملف المضغوط" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"اسم الملف المضغوط سيحتوي الوثائق التي سيتم تحويلها، اذا تم اختيار الخيار " -"السابق" +msgstr "اسم الملف المضغوط سيحتوي الوثائق التي سيتم تحويلها، اذا تم اختيار الخيار السابق" #: forms.py:217 literals.py:23 msgid "Page range" @@ -268,10 +269,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Download" msgid "Download version" -msgstr "تحميل" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -292,6 +291,7 @@ msgid "" msgstr "مسح بيانات الرسومات المستخدمة لتسريع عرض الوثائق و نتائج التحويلات." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -370,7 +370,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -388,10 +389,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -436,6 +439,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -473,10 +477,12 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -501,6 +507,7 @@ msgid "Delete documents" msgstr "حذف الوثائق" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" @@ -521,10 +528,12 @@ msgid "Edit document properties" msgstr "تحرير خصائص الوثيقة" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -562,8 +571,8 @@ msgstr "عرض أنواع الوثائق" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." msgstr "أكبر عدد من الوثائق الحديثة للتذكر لكل مستخدم." #: settings.py:44 @@ -595,6 +604,7 @@ msgid "List of supported document languages." msgstr "" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -603,6 +613,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -612,6 +623,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -630,6 +642,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -659,6 +672,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -668,6 +682,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -677,6 +692,7 @@ msgstr "" #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -692,8 +708,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -717,6 +732,7 @@ msgid "All later version after this one will be deleted too." msgstr "سيتم حذف جميع الإصدارات اللاحقة بعد هذا الإصدار أيضا." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -739,6 +755,7 @@ msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -766,6 +783,7 @@ msgstr[4] "" msgstr[5] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -921,11 +939,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1061,8 +1079,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1076,11 +1093,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1103,11 +1120,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1124,19 +1141,18 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." + +#~ msgid "Document deleted" +#~ msgstr "Document deleted" #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1190,11 +1206,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1218,11 +1234,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1243,11 +1259,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1277,11 +1291,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1338,17 +1352,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.mo index 507a9d0f7439e570d452ff9843481653210c3525..3c42e6014ad0b25bfcba0558bd0debcf084cdd68 100644 GIT binary patch delta 38 ocmcact6ISALt(8|Da^EU3qd;s1(3bFtI diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po index 6bf80fe761..b59319afff 100644 --- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -75,14 +74,17 @@ msgid "Comment" msgstr "Коментар" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -103,10 +105,8 @@ msgid "Document created" msgstr "" #: events.py:12 -#, fuzzy -#| msgid "Document deleted" msgid "Document downloaded" -msgstr "Document deleted" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -117,18 +117,18 @@ msgid "Document type changed" msgstr "" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -192,9 +192,13 @@ msgid "Compress" msgstr "Компресиране" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -206,9 +210,7 @@ msgstr "Име на компресирания архив" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Името на компресирания архив, съдържащ документите за сваляне, ако " -"предишната опция е избрана." +msgstr "Името на компресирания архив, съдържащ документите за сваляне, ако предишната опция е избрана." #: forms.py:217 literals.py:23 msgid "Page range" @@ -267,10 +269,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Download" msgid "Download version" -msgstr "Сваляне" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -288,11 +288,10 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Изчистване на графичното представяне, използвано да ускори изобразяването на " -"документите и интерактивните промени." +msgstr "Изчистване на графичното представяне, използвано да ускори изобразяването на документите и интерактивните промени." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -371,7 +370,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -389,10 +389,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -437,6 +439,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -463,9 +466,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" -"Страница %(page_num)d от общо %(total_pages)d страници от %(document)s " -"документи." +msgstr "Страница %(page_num)d от общо %(total_pages)d страници от %(document)s документи." #: models.py:671 msgid "Document page" @@ -476,10 +477,12 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -504,6 +507,7 @@ msgid "Delete documents" msgstr "Изтриване на документи" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" @@ -524,10 +528,12 @@ msgid "Edit document properties" msgstr "Редактиране на свойства на документа" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -565,38 +571,29 @@ msgstr "Преглед на типовете документи" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"Максимален брой от скорошни (създадени, редактирани, прегледани) документи, " -"които да се показват на потребителя" +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Максимален брой от скорошни (създадени, редактирани, прегледани) документи, които да се показват на потребителя" #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Процент приближавани или отдалечаване на страницата на документа, приложен " -"за потребителя" +msgstr "Процент приближавани или отдалечаване на страницата на документа, приложен за потребителя" #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Максимален процент (%) допустим за интерактивно увеличаване страницата от " -"потребителя" +msgstr "Максимален процент (%) допустим за интерактивно увеличаване страницата от потребителя" #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Минимален процент (%) допустим за интерактивно смаляване страницата от " -"потребителя" +msgstr "Минимален процент (%) допустим за интерактивно смаляване страницата от потребителя" #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Градуси на завъртане на страница от документ, при потребителско действие" +msgstr "Градуси на завъртане на страница от документ, при потребителско действие" #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -607,6 +604,7 @@ msgid "List of supported document languages." msgstr "" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -615,6 +613,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -624,6 +623,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -642,6 +642,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -671,6 +672,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -680,6 +682,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -689,6 +692,7 @@ msgstr "" #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -704,8 +708,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -729,6 +732,7 @@ msgid "All later version after this one will be deleted too." msgstr "Всички версии, следващи тази, ще бъдат изтрити." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -751,6 +755,7 @@ msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -774,6 +779,7 @@ msgstr[0] "" msgstr[1] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -808,17 +814,14 @@ msgstr[1] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Грешка при изтриването на преобразования на страница на документ " -"%(document)s, %(error)s." +msgstr "Грешка при изтриването на преобразования на страница на документ %(document)s, %(error)s." #: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" -"Всички преобразования на страницата на документ %s бяха изтрити успешно." +msgstr "Всички преобразования на страницата на документ %s бяха изтрити успешно." #: views.py:1044 msgid "Clear all the page transformations for the selected document?" @@ -924,11 +927,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1060,8 +1063,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1075,11 +1077,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1102,11 +1104,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1123,19 +1125,18 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." + +#~ msgid "Document deleted" +#~ msgstr "Document deleted" #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1189,11 +1190,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1217,11 +1218,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1242,11 +1243,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1276,11 +1275,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1337,17 +1336,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.mo index 12d51f1b068a91f2a6a0372c1b3200f2787b1b4d..684ef775bd3236b8d30ba77efa68bf2a0f0db249 100644 GIT binary patch delta 38 ocmZ3Xu|i|RHf}BxT_bY^LlY}Q!^sD@<)B;(D=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: bs_BA\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -76,14 +74,17 @@ msgid "Comment" msgstr "Komentar" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,10 +105,8 @@ msgid "Document created" msgstr "" #: events.py:12 -#, fuzzy -#| msgid "Document deleted" msgid "Document downloaded" -msgstr "Document deleted" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -118,18 +117,18 @@ msgid "Document type changed" msgstr "" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -193,9 +192,13 @@ msgid "Compress" msgstr "Kompresuj" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -207,9 +210,7 @@ msgstr "Naziv kompresovane datoteke" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Naziv kompresovane datoteke koji sadrži dokumente koji su za download, ako " -"je ova opcija odabrana." +msgstr "Naziv kompresovane datoteke koji sadrži dokumente koji su za download, ako je ova opcija odabrana." #: forms.py:217 literals.py:23 msgid "Page range" @@ -268,10 +269,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Download" msgid "Download version" -msgstr "Download" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -289,11 +288,10 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Obriši grafičku prezentaciju korištenu za ubrzanje prikaza dokumenata i " -"interaktivnu transformaciju rezultata." +msgstr "Obriši grafičku prezentaciju korištenu za ubrzanje prikaza dokumenata i interaktivnu transformaciju rezultata." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -372,7 +370,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -390,10 +389,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -438,6 +439,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -475,10 +477,12 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -503,6 +507,7 @@ msgid "Delete documents" msgstr "Obriši dokumente" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" @@ -523,10 +528,12 @@ msgid "Edit document properties" msgstr "Izmijeni osobine dokumenta" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -564,11 +571,9 @@ msgstr "Pregledaj tipove dokumenata" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"Maksimalni broj nedavnih (kreiran, izmijenjen, pregledan) dokumenata za " -"pamćenje po korisniku." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Maksimalni broj nedavnih (kreiran, izmijenjen, pregledan) dokumenata za pamćenje po korisniku." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -578,17 +583,13 @@ msgstr "Iznos u procentima zumiranja stranice dokumenta po korisničkoj sesiji." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Maksimalni dozvoljeni iznos u procentima (%) korisniku da zumira stranicu " -"dokumenta." +msgstr "Maksimalni dozvoljeni iznos u procentima (%) korisniku da zumira stranicu dokumenta." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Minimalni dozvoljeni iznos u procentima (%) po korisniku da zumira stranicu " -"dokumenta." +msgstr "Minimalni dozvoljeni iznos u procentima (%) po korisniku da zumira stranicu dokumenta." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." @@ -603,6 +604,7 @@ msgid "List of supported document languages." msgstr "" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -611,6 +613,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -620,6 +623,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -638,6 +642,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -667,6 +672,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -676,6 +682,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -685,6 +692,7 @@ msgstr "" #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -700,8 +708,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -725,6 +732,7 @@ msgid "All later version after this one will be deleted too." msgstr "Sve naknadne verzije nakon ove će također biti obrisane." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -747,6 +755,7 @@ msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -771,6 +780,7 @@ msgstr[1] "" msgstr[2] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -920,11 +930,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1057,8 +1067,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1072,11 +1081,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1099,11 +1108,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1120,19 +1129,18 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." + +#~ msgid "Document deleted" +#~ msgstr "Document deleted" #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1186,11 +1194,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1214,11 +1222,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1239,11 +1247,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1273,11 +1279,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1334,17 +1340,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/da/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/da/LC_MESSAGES/django.mo index cf4f87a4b3c5da729d3bd77f59a2c7ed75661897..69b5c6f79b6d78c428a90d72bcbf0107dd184145 100644 GIT binary patch delta 38 ocmcbhc0p}J5jU5Ku93Ndp^25D;p7@_IVjh{%E)N*67DtZ0MtziR{#J2 delta 38 pcmcbhc0p}J5jU5yu92aFp_!G5$>bVtISALt(8|Da^Aheg>;Tiw3Qzz5 diff --git a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po index e23e53679f..2a8f5b7668 100644 --- a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -75,14 +74,17 @@ msgid "Comment" msgstr "Kommentar" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -103,10 +105,8 @@ msgid "Document created" msgstr "" #: events.py:12 -#, fuzzy -#| msgid "Document deleted" msgid "Document downloaded" -msgstr "Document deleted" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -117,18 +117,18 @@ msgid "Document type changed" msgstr "" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -192,9 +192,13 @@ msgid "Compress" msgstr "Komprimér" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -206,9 +210,7 @@ msgstr "Pakket filnavn" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Filnavnet for den pakkede fil, der vil indeholde dokumenterne til download. " -"Dette hvis den tidligere mulighed er valg." +msgstr "Filnavnet for den pakkede fil, der vil indeholde dokumenterne til download. Dette hvis den tidligere mulighed er valg." #: forms.py:217 literals.py:23 msgid "Page range" @@ -267,10 +269,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Download" msgid "Download version" -msgstr "Hent" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -288,11 +288,10 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Fjern grafiske repræsentationer brugt til at fremskynde visning af de " -"dokumenter og interaktivt transformerede resultater." +msgstr "Fjern grafiske repræsentationer brugt til at fremskynde visning af de dokumenter og interaktivt transformerede resultater." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -371,7 +370,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -389,10 +389,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -437,6 +439,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -474,10 +477,12 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -502,6 +507,7 @@ msgid "Delete documents" msgstr "Slet dokumenter" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" @@ -522,10 +528,12 @@ msgid "Edit document properties" msgstr "Redigér dokumentegenskaber" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -563,11 +571,9 @@ msgstr "Vis dokumenttyper" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"Maksimalt antal seneste (oprettet, redigeret, set) dokumenter der huskes per " -"bruger." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Maksimalt antal seneste (oprettet, redigeret, set) dokumenter der huskes per bruger." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -577,17 +583,13 @@ msgstr "Procent zoom ind eller ud af en dokument side pr brugerinteraktion." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Maksimal mængde i procent (%) en bruger kan zoome i et dokuments side " -"interaktivt." +msgstr "Maksimal mængde i procent (%) en bruger kan zoome i et dokuments side interaktivt." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Minimum procent (%) en brugeren er tilladt at zoome ud af en dokumentside " -"interaktivt." +msgstr "Minimum procent (%) en brugeren er tilladt at zoome ud af en dokumentside interaktivt." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." @@ -602,6 +604,7 @@ msgid "List of supported document languages." msgstr "" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -610,6 +613,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -619,6 +623,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -637,6 +642,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -666,6 +672,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -675,6 +682,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -684,6 +692,7 @@ msgstr "" #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -699,8 +708,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -724,6 +732,7 @@ msgid "All later version after this one will be deleted too." msgstr "Alle senere versioner af denne vil også blive slettet." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -746,6 +755,7 @@ msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -769,6 +779,7 @@ msgstr[0] "" msgstr[1] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -803,9 +814,7 @@ msgstr[1] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Fejl ved sletning af sidens transformationer for dokument: %(document)s ; " -"%(error)s ." +msgstr "Fejl ved sletning af sidens transformationer for dokument: %(document)s ; %(error)s ." #: views.py:1032 #, python-format @@ -918,11 +927,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1054,8 +1063,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1069,11 +1077,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1096,11 +1104,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1117,19 +1125,18 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." + +#~ msgid "Document deleted" +#~ msgstr "Document deleted" #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1183,11 +1190,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1211,11 +1218,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1236,11 +1243,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1270,11 +1275,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1331,17 +1336,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.mo index d54396443190318ad35d44fbd4dbd63307a83508..6cbde92378325238c8430e2d59507e9579d1e5ac 100644 GIT binary patch delta 4339 zcmaLZ4{(&l8OQOZ35h@gl0Zm^31<)`AqgZ95l)M1)H%QMjT{X(KxL`r?pd<7I3Vcet++~&N$Ofck zF&V3HA}+@g+<}AeU9804VL4_GH>LvXaFH<)bCAkCT)2j};oKBss<90NbT#w20}Is-<&GI^MWGm$^DjE|A@Z&p%aaArL!1Kl_tkKtfE zkDB3Us1E*)jMXI2P)F%F2|bvARmh*Yj}JXJfLR#91-QqyFJU(Qn*@f%q|7+f4P~gA z&qvK*8RlcH{eC-YKs~6L9mb*fhHbx(%1}QR;J=W*Ox`H>zFDYtB}Vk%1}b_$H);U; zF#})5Td@z7>MJ-IQ_|f%P=Q+GCe#F0p&q;u3-K9b+nD!I1G-?_|3FPFK7;)0#$&S1+*T~>a8h2}^1*n0RqaM5%HLyC=rdp56+-Xe04^T_=DXPOuSc#YM7Mzty z{@bbeGTj+{h+5mLsDa$ThES@Lt(nO3n_Se)XQKAVU8oM1+Us?w4p*X1NyxT4?e`mS z9M>O@*bB#T85d6C5=>#o)SwT^x;crtcn&q7f1^^Ilx@sdoPpeGmZLJ#g}Sc?HKA8f znf^6u0vAvdi2RL;lX5KM!q=!{IF+YpX0@o4`fWRmn$ddH(riYhcn_+>1E>N13iZ1_ z)KZ;Ab=Z%3?q853N6b|!+B7L1x1;f>R8GMhEJtVco5HtSW?0~2p{2aNW(n$e22q>36G!R%@28>}_M$pIh5F%HEXI$p6NfMwJ$Mt2$GxZ-okq?0 ztZjdS{Fy)Vp*2ooeON71jLOJj)C6j9H2s@KDq5pQ>=#kglDuF&WIc-7RL4;Rc^!2s z&Y@1lCDeegp_U|%Ew0}eW6uEg2!2BQBSxhG^pb{%HqjX>n)x-(M z9DOrqf}7%6)Bu}NyF85AY&%iEJ8V6L%E(3Z;1!&Nsrl}V=b$E7jk@2PPySU|#|5P- zipofjZTF#4eGYYezChj`&UTk9!6f`W>iL&&I$lOCdA{8t3Y*7gSxL78N1nw9_+(% zjQo`f%V-M8(;%!tJ+KaS?AG8k+=0XJJ>=Y)3%31F)IbKZVRTewB?p?Cx}kzb`%w5}L(8 zKKuQ3+a5&vG}Ec5j_XiM7(@+x6Y6w4fgya|en0Vc@;{ynvw58Tqe)W}aE z+rga2R2(|fH3tXKR;hAv&a`(f*{=h~~%9aLNmOZnE_?IL6ks4OOyT%q)C`*hefPo+rLTXv*6O6)n(C zr{->kOzO&=iWXm`Rd0+1RJ3R-31>eeX)&)6zaUhO5K44R4a!1-RGJ-XP_&3D&k}lZ zA0&Q6%p+|F#q(Am@4woeiF5ZWmZ5GpxgxP%6Ew$ z6UoG#Li-apJ%rB9M52wDK+GndCW;818I{M0b|Oqn zBOWDG<`Bz?Eo#`3k1rC#2``aF93?grKP5&HP5Ndm6_qk#K5>jVPN>}P;=E>pwq9x- zhXLXd;#GUC5X*_Vw(Su6)6fs&CO5Qu!)?AmhsWPm-{kXn>%GlBb7!lsKIrLa_Idu- z*RkU%e~cUEX>1RAa>j*nJl^K|KvQ(z$kDN#X}c1VJY0Xs7YzB^1BKDJtj*~wTHC!X zrqZ|io68>ON+{Nq^}v8wU-rH6gQpY}mwJk(OfM>m=8w&`&9dpm#j)zK?+=_Yr@h4) zq%W|--`d~{I-~TozH=hPXanZ|eI3int&dOhG`@4vj@B1!Y;SD}`uyJJSYttNV)U)D z5eZDd*W`;HyR9IaThcbEyd~V>uW$8-{Jvl~&=jJZaK~Cx-qI2N@2i!*u$~b+TJrRO KSW)S#@&5r7!}KQr delta 3961 zcmYk;c~DhV0LSrzJeE)tB^6vBiiIHZK=iTXLMkel;+m-B7Aj(HxFY%_qf$#uGSpBj zG`BW;j!x#}(oAJZwr5Rhj-#Vy+BoT7PSf}I?xE>SzxO%ka+kB+Yey=sE%RM$<=SE> zhe!vqJH(hf*rO>wlQS~(Byi50ZHScZqOH6}zG6Nddz9n3}kGb8zF zgER19EJvMRjXc}z!45p%9HElHf$uQ_AD~7Q##OqYHPRQ8gnCe4^x$9&#igk8R-tZO zgB@`<=HY4Ej^w0Hw3Cp&n>>u-`KE}9Mmi5Qf^zJEYjpyCfa=gGq;KXNvKr=!ZQsRq zv_lzgGR7f?%t+LA#kO6Bx^5lnzFW~3OJzTmNAOeZj5o0tMznR-x*uvSr=WUXf_gv& z_QcJ|a+_1Aj(ls|w@?FmfVwUu#+aWm23`194D(Oj+~bF5n&$LIBkYFiX(sB%Ls1=@ zfZ9CEQ8RV|o8ecer8$p!;O{sBZ(uxT(5v}agl=p=E$Quc%)feK+B;JfVvRic|2+f z5>Zo`gL=R)R7a+v&YO=~k|n4IR-tZGjSR|cN9~OxsF^y8UGNvw{U6{QjAj(v$7fbk z(Qe#`y3sCF2M(b2#)rr?<}2hsbCVyvb`fr8)3!u)Gy^rV0@Q;iqs}YAG+clyupV{a zj&XYJeXK1NjbsXHq$Re!4At{W)Ee$aX3>0!nu+VEnYfMG_5YwYRV)|jcoJ$UvaJKG zgHd}X4`X<~8AC<8elBX)uR-;=8Z{HAQ5SrPbwPZn@Dl9>Y;8TLfZpjfoQfKGHR?Wf zn2HB+FkV2-P*>jdJWN5~V^qqi49BB56J6{Wy*{O=@4zuE#M`JF3{7yBYAl|jJq1@{ z96Ogc&g?+V=uuRMPN6pM*QllX19e_-BJ;0G$3$layy&K#j~<+h8sQGqh~7or;JEb% z)XdyM&A>g|j!$ydI2rZf$we(uA?D*^WD?EEB<7!4G*>vFO%dM1xgZYJ^K{e$axe?? zP-|R;>R2u6_1lZu#K%!f*?@Y$W$cZvWasZ$s6CdC8c3m!if*(Jb>m9Z1vSXE<_x;= zKIULshRG_JLVO4-Q8(IvdcEo~6OW z;lLgohkx4kz;x%+y8*TK@1x%Tn@FEcIK$|SS*RJCh?<#Is89B5s16-N4d@JN3C|%f zfN9x>j`DnyO+`J+MXk*k48>`v8_q^;!b;m-kD8Hs)X4nU5sm)9lGWs8a*(hUjGI)E#-gQ} zL7pSe+k<1RjcB=skeT+t8fz^kkXeDY^L+a!XOmRY((YB+<`CE{J#GDQWM7%LY`Yz< zA`8fqq?!yP6{MKFO16;xL}d(lf%G8n==raZSfa9&Yz)-+QdytH#kMX6l7-}55>M*M zXtI*P4N{w>kJ1^ail-4t3=)M, 2015 +# Berny , 2015-2016 # Mathias Behrle , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -34,9 +33,7 @@ msgstr "Dokumententyp erstellen" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da " -"Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert. " +msgstr "Jedes hochgeladene Dokument muss einen Dokumententyp zugewiesen bekommen, da Mayan EDMS Dokumente auf der Grundlage von Dokumententypen kategorisiert. " #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" @@ -79,14 +76,17 @@ msgid "Comment" msgstr "Kommentar" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "Neue Dokumente pro Monat" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "Neue Dokumentenversionen pro Monat" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "Neue Dokumentenseiten pro Monat" @@ -107,10 +107,8 @@ msgid "Document created" msgstr "Dokument erstellt" #: events.py:12 -#, fuzzy -#| msgid "Documents to be downloaded" msgid "Document downloaded" -msgstr "Herunterzuladende Dokumente" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -121,18 +119,18 @@ msgid "Document type changed" msgstr "Dokumententyp geändert" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "Neue Dokumentenversion hochgeladen." #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Dokumentenversion wurde erfolgreich wiederhergestellt" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -196,14 +194,15 @@ msgid "Compress" msgstr "Komprimieren" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese " -"Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. " -"Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." +msgstr "Datei im Originalformat oder als komprimiertes Archiv herunterladen. Diese Option ist nur wählbar, wenn ein einzelnes Dokument heruntergeladen wird. Mehrere Dateien werden immer als komprimiertes Archiv heruntergeladen." #: forms.py:197 msgid "Compressed filename" @@ -213,9 +212,7 @@ msgstr "Name der komprimierten Datei" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, " -"wenn die vorherige Option gewählt wurde." +msgstr "Name der komprimierten Datei, die die Dokumente zum Download beeinhaltet, wenn die vorherige Option gewählt wurde." #: forms.py:217 literals.py:23 msgid "Page range" @@ -274,10 +271,8 @@ msgid "Restore" msgstr "Wiederherstellen" #: links.py:132 -#, fuzzy -#| msgid "Document version" msgid "Download version" -msgstr "Dokumentenversion" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -295,13 +290,12 @@ msgstr "Papierkorb" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Grafiken löschen, die benutzt werden um die Dokumentendarstellung und " -"interaktive Transformationsausgabe zu beschleunigen." +msgstr "Grafiken löschen, die benutzt werden um die Dokumentendarstellung und interaktive Transformationsausgabe zu beschleunigen." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "" +msgstr "Dokumentenbildercache löschen" #: links.py:159 permissions.py:47 msgid "Empty trash" @@ -378,10 +372,9 @@ msgstr "Alle Seiten" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben " -"werden." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Zeitspanne nach der Dokumente dieses Typs in den Papierkorb verschoben werden." #: models.py:72 msgid "Trash time period" @@ -395,15 +388,15 @@ msgstr "Einheit (Papierkorb)" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden " -"endgültig gelöscht werden." +msgstr "Zeitspanne nach der Dokumente dieses Typs die sich im Papierkorb befinden endgültig gelöscht werden." #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "Endgültig löschen nach" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "Einheit (Löschen)" @@ -440,10 +433,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das " -"keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener " -"Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." +msgstr "Ein Fragment ist ein Dokument mit einem Eintrag in der Datenbank, für das keine Datei hochgeladen wurde. Die Ursache könnte ein fehlgeschlagener Uploadvorgang sein oder ein verzögerter Upload über die API-Schnittstelle." #: models.py:184 msgid "Is stub?" @@ -451,6 +441,7 @@ msgstr "Inkomplett" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Fragment, ID: %d" @@ -468,7 +459,7 @@ msgstr "Dokumentenversion" #: models.py:632 msgid "Quick label" -msgstr "" +msgstr "Schnellbezeichner" #: models.py:650 msgid "Page number" @@ -488,12 +479,14 @@ msgid "Document pages" msgstr "Dokumentenseiten" #: models.py:782 +#| msgid "Version update" msgid "New version block" -msgstr "" +msgstr "Akutialisierungsschutz" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" -msgstr "" +msgstr "Aktualisierungsschutz" #: models.py:793 msgid "User" @@ -516,6 +509,7 @@ msgid "Delete documents" msgstr "Dokumente löschen" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "Dokumente in den Papierkorb verschieben" @@ -536,10 +530,12 @@ msgid "Edit document properties" msgstr "Dokumenteneigenschaften bearbeiten" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "Dukumente drucken" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "Gelöschte Dokumente wiederherstellen" @@ -577,16 +573,13 @@ msgstr "Dokumententypen anzeigen" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"Maximale Anzahl der letzten Dokumente (erstellt, bearbeitet, angezeigt) pro " -"Benutzer." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Maximale Anzahl der letzten Dokumente (erstellt, bearbeitet, angezeigt) pro Benutzer." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." +msgstr "Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." #: settings.py:51 msgid "" @@ -613,14 +606,16 @@ msgid "List of supported document languages." msgstr "Liste der unterstützen Dokumentensprachen" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "" +msgstr "Dokumentenbildercache löschen?" #: views.py:75 msgid "Document cache clearing queued successfully." msgstr "Löschung des Dokumentenbildcaches erfolgreich eingereiht." #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "Dokumente im Papierkorb" @@ -630,6 +625,7 @@ msgstr "Das ausgwählte Dokument löschen?" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Dokument %(document)s gelöscht." @@ -648,6 +644,7 @@ msgstr "Das ausgwählte Dokument wiederherstellen?" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Dokument %(document)s wiederhergestellt" @@ -677,6 +674,7 @@ msgstr "\"%s\" in den Papierkorb verschieben?" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Dokument \"%(document)s\" erfolgreich in den Papierkorb verschoben." @@ -686,6 +684,7 @@ msgstr "Die ausgewählten Dokumente in den Papierkorb verschieben?" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Dokumente des Typs: %s" @@ -695,6 +694,7 @@ msgstr "Alle Dokumente dieses Typs werden auch gelöscht." #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Dokumententyp %s löschen?" @@ -710,18 +710,14 @@ msgstr "Schnellbezeichner erstellen für Dokumentenyp %s" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" " -"bearbeiten" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Schnellbezeichner \"%(filename)s\" von Dokumententyp \"%(document_type)s\" bearbeiten" #: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" +msgstr "Schnellbezeichner %(label)s von Dokumententyp \"%(document_type)s\" löschen?" #: views.py:552 #, python-format @@ -738,6 +734,7 @@ msgid "All later version after this one will be deleted too." msgstr "Alle späteren Versionen dieses Dokuments werden ebenfalls gelöscht." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "Diese Dokumentenversion wiederherstellen?" @@ -760,6 +757,7 @@ msgid "Empty trash?" msgstr "Papierkorb leeren" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "Papierkorb erfolgreich gelöscht." @@ -770,7 +768,7 @@ msgstr "Es muss mindestens ein Dokument angegeben werden." #: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "" +msgstr "Dokumententyp für \"%s\" erfolgreich geändert" #: views.py:716 views.py:1235 msgid "Submit" @@ -783,8 +781,9 @@ msgstr[0] "Den Typ des ausgewählten Dokuments ändern." msgstr[1] "Den Typ der ausgewählten Dokumente ändern." #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." -msgstr "" +msgstr "Es muss mindestens eine Dokumentenversion angegeben werden." #: views.py:819 msgid "Documents to be downloaded" @@ -817,26 +816,20 @@ msgstr[1] "Seitenzahl der ausgewählten Dokumente neu berechnen?" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s" +msgstr "Fehler beim Löschen der Seitentransformation von %(document)s; %(error)s" #: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" -"Alle Seitentransformationen für Dokument %s wurden erfolgreich gelöscht." +msgstr "Alle Seitentransformationen für Dokument %s wurden erfolgreich gelöscht." #: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" -msgstr[0] "" -"Sind Sie sicher, dass Sie die Transformationen des ausgewählten Dokuments " -"zurücksetzen wollen?" -msgstr[1] "" -"Sind Sie sicher, dass Sie die Transformationen der ausgewählten Dokumente " -"zurücksetzen wollen?" +msgstr[0] "Sind Sie sicher, dass Sie die Transformationen des ausgewählten Dokuments zurücksetzen wollen?" +msgstr[1] "Sind Sie sicher, dass Sie die Transformationen der ausgewählten Dokumente zurücksetzen wollen?" #: views.py:1078 msgid "There are no more pages in this document" @@ -936,11 +929,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1072,8 +1065,7 @@ msgstr "Dokumentenseitenbild" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1087,11 +1079,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1114,11 +1106,11 @@ msgstr "Dokumentenseitenbild" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1135,19 +1127,15 @@ msgstr "Dokumentenseitenbild" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1204,11 +1192,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1232,11 +1220,11 @@ msgstr "Dokumentenseitenbild" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1257,11 +1245,9 @@ msgstr "Dokumentenseitenbild" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1291,11 +1277,11 @@ msgstr "Dokumentenseitenbild" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1352,17 +1338,15 @@ msgstr "Dokumentenseitenbild" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/en/LC_MESSAGES/django.mo index 7d23239bf23bcf2ab404ec349165847bf018117a..e2f63803e5fc1bf41c1ddd95a0e0760787578589 100644 GIT binary patch delta 23 ecmcbqdQ)|S1~-?9u93Ndp^25D;btT5VTrM)19{|Ap35x&# diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po index a5cde64f8a..875ccf0b4b 100644 --- a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" @@ -9,14 +9,13 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-04-27 14:11-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -75,14 +74,17 @@ msgid "Comment" msgstr "شرح" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -103,10 +105,8 @@ msgid "Document created" msgstr "سند ساخته شد." #: events.py:12 -#, fuzzy -#| msgid "Documents to be downloaded" msgid "Document downloaded" -msgstr "اسنادی که قرار است دانلود شوند." +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -117,18 +117,18 @@ msgid "Document type changed" msgstr "نوع سند تغییر کرد" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -192,9 +192,13 @@ msgid "Compress" msgstr "فشرده سازی" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -206,9 +210,7 @@ msgstr "نام فایل فشرده شده" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"اگر انتخاب قبلی انجام شده، نام فایل فشرده شده که شامل کلیه فایلهای که " -"قراراست که دانلود شوند." +msgstr "اگر انتخاب قبلی انجام شده، نام فایل فشرده شده که شامل کلیه فایلهای که قراراست که دانلود شوند." #: forms.py:217 literals.py:23 msgid "Page range" @@ -267,10 +269,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Document version" msgid "Download version" -msgstr "نسخه سند" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -288,11 +288,10 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"پاک کردن نحوه نمایش اسناد که در زمان سرعت بخشی به نمایش اسناد مورد استفاده " -"قرار میگیرد." +msgstr "پاک کردن نحوه نمایش اسناد که در زمان سرعت بخشی به نمایش اسناد مورد استفاده قرار میگیرد." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -371,7 +370,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -389,10 +389,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -437,6 +439,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -474,10 +477,12 @@ msgid "Document pages" msgstr "صفحات سند" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -502,6 +507,7 @@ msgid "Delete documents" msgstr "حذف سند" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" @@ -522,10 +528,12 @@ msgid "Edit document properties" msgstr "ویرایش خصوصیات سند" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -563,11 +571,9 @@ msgstr "بازدید انواع سند" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"حداکثر تعداد اسناد تازه (ایجاد، ویرایش و بازبینی) که جهت هرکاربر بوسیله " -"سیستم نگهداری شود." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "حداکثر تعداد اسناد تازه (ایجاد، ویرایش و بازبینی) که جهت هرکاربر بوسیله سیستم نگهداری شود." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -577,17 +583,13 @@ msgstr "اندازه بزرگنمایی/کوچک نمایی یک صفحه از msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"حداکثر درصد(%) اندازه بزرگنمایی بوسیله کاربر برروی یک صفحه از سند بصورت " -"تعاملی" +msgstr "حداکثر درصد(%) اندازه بزرگنمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"حداکثر درصد(%) اندازه کوچک نمایی بوسیله کاربر برروی یک صفحه از سند بصورت " -"تعاملی" +msgstr "حداکثر درصد(%) اندازه کوچک نمایی بوسیله کاربر برروی یک صفحه از سند بصورت تعاملی" #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." @@ -602,6 +604,7 @@ msgid "List of supported document languages." msgstr "لیست زبانهای پشتیبانی سند" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -610,6 +613,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -619,6 +623,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -637,6 +642,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -666,6 +672,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -675,6 +682,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -684,6 +692,7 @@ msgstr "کلیه اسناد از این نوع حذف خواهند شد." #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -699,8 +708,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -724,6 +732,7 @@ msgid "All later version after this one will be deleted too." msgstr "همجنین کلیه نسخه های بعد از این نسخه حذف خواهند گردید." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -746,6 +755,7 @@ msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -768,6 +778,7 @@ msgid_plural "Change the type of the selected documents." msgstr[0] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -913,11 +924,11 @@ msgstr "عکس صفحه سند" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1048,8 +1059,7 @@ msgstr "عکس صفحه سند" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1063,11 +1073,11 @@ msgstr "عکس صفحه سند" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1090,11 +1100,11 @@ msgstr "عکس صفحه سند" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1111,19 +1121,15 @@ msgstr "عکس صفحه سند" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1180,11 +1186,11 @@ msgstr "عکس صفحه سند" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1208,11 +1214,11 @@ msgstr "عکس صفحه سند" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1233,11 +1239,9 @@ msgstr "عکس صفحه سند" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1267,11 +1271,11 @@ msgstr "عکس صفحه سند" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1328,17 +1332,15 @@ msgstr "عکس صفحه سند" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo index 21f096aabe87d24beb10a25f56fedde244ee6f8f..340538e2f92065fb401ddd117f268bbbeed0a937 100644 GIT binary patch delta 4282 zcmZwKeNa`$8OQNO1r-4SUjjklpy5?SF9M>$fFVXhB32{5#Y7RVLIPX`FHuXp5tEQc zj8!mi#h9qk(nM3dMAK=|Yh1X9 z>U9YG4!LA5A%izJP&19?DH>=x>cLY{11m>us@15>9l;n3qn79cREMXr3O~lX&`BZx z0V;D+ycxZRTH8-h1Njpw)z_@wAj@rrvr)9WQ&D>)8`a@7d%YahVI}I6JZ#&`?e}Xi zgX@hUdtnb&bDTTXKR7O^!e%Fo~a1Uz0 zeW;0ru>?c!Q_->e3N@2teytSVg=$Yl&ERg-Qp`rBbQ!9H)u;h&Lf!WqYH7Mq9rmK0 za~MgU=|}C6Ge|!nbA^gh_jjCt|3-C`<{0xh7NZ{cCTer`qaOGnY9MD&d*uQ$2lF@N z5hga>JC2i4o461);73psY{eLz{}2_O+b%4?ZrqGNM?JWlQDx(D)Qmb%Gw!nO*N}ha z5Fc98kC0U{*H9T5!TM+d3CO-P>8L$cs_XP`s;Fp99<$b3>rtDi2{n*5)G647It2$& z13r$*#8uS&*KkJ!rv@+3?qF0J_%hOvgKJRtcVS4!uZPMEJc1A5WmKy3v)D*jhPvL1 ztMSkH2v(Aog?Jbz<4s(Fne?I=Z$mwQH=f5ss3qE*>t*bfT=Kt@3qQ6O9+>2wHww9n;{|6(e?=fZGI zWEu{RLv5B>SccWuhoEWivbR9_&ZW^dG1tiJR(WBn@@n3{;9AMeU9C$QaEtI0uiTgEw&&Ci}e8 zu@p7o(34bjF1Miuun%?PfW3YlmHIe#nmWqCSS&^Tt`gJPY->?7ex5%NO7(73MowZH zeu{ej*Qh0pFLakIWOAuI%!O)9#6BF2KS8b0$EXK?ihlef-iz~!*x9%PHRCweQ5}_{ zezy`wVI7XfP00QwImAI?Eb$PbT~kb`%p)2Ij*V%c!J6?Vgup!zn;p|gkDD~uX~t7_!yzXHk?>ZY$jC7h?fYxIVy-E zqJ~&TY#};{+sg{u*op&)A$~tgENI_A|?^{5Epj znC|!rXZn2Ic@tA@vt(vLL3r`RxTvCA9kn`jK|6{i4R!t&r!mVLnZMb)tnY8#9InpU z9+~FU-8Rnkf#B`K`dMFo_+0+kVZ}=VK_2aI^KW6`!ItKR7N;iYGzA)(Tb*F@|DNas if;9cNCJ=sOdg`F~MgHbMlbfEFn)M7S{L>kSBmWCVmEgeu delta 3929 zcmYk-2~bs49LMp$>|!8_3oa}oD2OPFB1(#8D1r)Rk{XIjq?F;7xTL(?GM928)65OS zN^P^})Qrt&+EkNSjhU0}O*YdqjaD;hi)r8AyN8+X_+}3Nj4=$%Z02kshY>#QNX5lyl)xiPAVIAtZ6{sI> zz<6xJ5U*JaW}jjlhTyMp%s*xOgAdxYXnLa&rlNW}5cR{wsE$oU zZJs5l89Rx$;QOehxrl1;TO5l&VG8EctGPG@lkfx7l3wo2{HrI{#ha>7XDqU8)(tiC zJk;J8ifXXb-JghRa0co$-0$l1-QSmCD)-m8`eB?v{TSYXkv`5`1%)ZdEZH$k$Fr!l zyNca0gdIiE(oi!|gnGUj)zKBGj&4H@XgB6#BkELrjv7D^J5Vzhg{u2HQBcoQP)pDY zHI>6q4U9r{WIF1(xu_*sglcdt>W4NXgR)(yz401qrp{tAeunz}>v$i=G75gjXY~}c z8y`pg&^}ZL4x{$QtH^ikedM40%!iI$WRkaO+n_p{j~ZDys^Lo1b2XTQ^KdCXgZkb0 zZaVfp)|P@sQiU36jjJz4^?W624V#czv@@ug_z^V|mr=X^25M7v;!C=pfm(_J=TK)6 zYR{Bl9PQh93flE^P`mzNRF5~KX5uvJ3uka+3tm)sfqE5NTOIFD@6xdl^?VKLxXs6b zxCTe#3Diut;;dIuPx@h0S-HS#eC&!W~cJi}X>cE}(s*;$Ml zaV_Ry9co5i#3XzjwKpzeA^wVUFsnC58Ta&N{)bcenj3mBnc=dGHV9i`B}U+EEW`Pz zwLOKJ%5$h=`5kKQZ=!a28(xb#wrMy7N23P15%s-8s2Mr#qoAq$1hof#Kz_si!6HoW z>y2bC4yL{Z6Y)dTNH3#~-Jht2+huvrWuWfYpr(8+s-689g?{&U-zf^+*i>JkMtU>b zo8pKZZzlSn8Z1XOFb~!9br@JG98di$w#B4eZz*$8OH+*c-EyqPNq8Hc#8o=~LH)cD zuSGTFM}6@;#^M*)4zD2l%tHEmQ=N&?)C*A~8jD(rN>^WsYIq%n;TF{MJ5U{e7F+84 zpQE7T@CB-e`Rt@B+>3gJ-aws(0Ry}}vL2JDHzFs{P9q1zen3rmYrdp`WS}}$ilI0O zX~L>d1KEy&|Nl==Xw8j}P@Cu*)E9n3P5Cuc&!aiaaTt$!E)O-rV$^fvPz}yTotiq- zrdy4gnMTwSoj_LG&Y@4|HHfqJ0;XaNevEqX61K;ysLggufj6=aIFx!G>hvr|{rwGO z``Ft^pY0mzcd~Bv9FBUf0@Z&UK)sTioQH<6{yOI`aYGFr$4>YbY7M_aP5HmbhP4ib zUPnq$9h-n0p1^-BV{sbMRYfKdb#4U7A-eXGOfrFJFFfbt<0#Rk7mu!C9)aDjjaB37 z;`aZQpQqg5>RRtTgozCN_c|Ii#hU*AUnNv@x^yidK24j}SQ|{&95OXf@;-_|Q#qSx zlj>Sb_LF^NE_syj{;@42fiz#dZ3A!3A`Bvn+#i_Cz-+J9`Pa3R=ykc9OeXc@F>-{k zNdw1iEjC|Tl9^-;dBokk)7cEC)<%+h-HnHxJ1~vR3e>&!-JiS{%}Q$N?#@$AZ5nMn zUAGYqgdI?Yt20?a=8?O|W-^K_C)MN$vYiwXUE|3*qK*E7+TTjF>2%eR#{(s^dz`EA zL01;T$$au6Ng>aWJIF(XmtUD zE}h}#D~3WC(Q$0Pk||V>9%MRsi5wzbh^|PoK2Y*L3S4=ahBeV&-TFeXe^Kn0!T$P= zTf+Q<6OOj<|D9MG5}BKslbw{EH>h8~hO(3dubPuRC~Kg9aY}TU|J`17q5kPv??w2h R4~!3LI8e~m-&oKP`XAL4c, 2016 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -33,9 +32,7 @@ msgstr "Créer un type de document" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Chaque document téléchargé doit être associé à un type de document, cela " -"permet à Mayan EDMS de catégoriser les documents." +msgstr "Chaque document téléchargé doit être associé à un type de document, cela permet à Mayan EDMS de catégoriser les documents." #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" @@ -78,14 +75,17 @@ msgid "Comment" msgstr "Commentaire" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "Nouveaux documents par mois" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "Nouvelles versions de document par mois" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "Nouvelles pages de document par mois" @@ -106,10 +106,8 @@ msgid "Document created" msgstr "Document créé" #: events.py:12 -#, fuzzy -#| msgid "Documents to be downloaded" msgid "Document downloaded" -msgstr "Documents à télécharger" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -120,18 +118,18 @@ msgid "Document type changed" msgstr "Type de document modifié" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "Nouvelle version téléchargée" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Retour à la version précédente du document" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -195,15 +193,15 @@ msgid "Compress" msgstr "Compresser" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" -"Télécharger le document dans son format original ou sous forme d'archive " -"compressée. Cette option est uniquement disponible lors du téléchargement " -"d'un document, lors du téléchargement d'un groupe de documents, ce dernier " -"sera toujours téléchargé en tant qu'archive compressée." +msgstr "Télécharger le document dans son format original ou sous forme d'archive compressée. Cette option est uniquement disponible lors du téléchargement d'un document, lors du téléchargement d'un groupe de documents, ce dernier sera toujours téléchargé en tant qu'archive compressée." #: forms.py:197 msgid "Compressed filename" @@ -213,9 +211,7 @@ msgstr "Nom du fichier compressé" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Le nom de fichier du fichier compressé qui contiendra les documents à " -"importer, si l'option précédente est sélectionnée." +msgstr "Le nom de fichier du fichier compressé qui contiendra les documents à importer, si l'option précédente est sélectionnée." #: forms.py:217 literals.py:23 msgid "Page range" @@ -274,10 +270,8 @@ msgid "Restore" msgstr "Restaurer" #: links.py:132 -#, fuzzy -#| msgid "Document version" msgid "Download version" -msgstr "Version du document" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -295,13 +289,12 @@ msgstr "Corbeille" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Effacer les représentations graphiques utilisées pour accélérer l'affichage " -"du document et le résultat des transformations interactives." +msgstr "Effacer les représentations graphiques utilisées pour accélérer l'affichage du document et le résultat des transformations interactives." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "" +msgstr "Effacer les documents du cache" #: links.py:159 permissions.py:47 msgid "Empty trash" @@ -378,10 +371,9 @@ msgstr "Toutes les pages" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." -msgstr "" -"Temps après lequel les documents de ce type seront déplacés vers la " -"corbeille." +"Amount of time after which documents of this type will be moved to the " +"trash." +msgstr "Temps après lequel les documents de ce type seront déplacés vers la corbeille." #: models.py:72 msgid "Trash time period" @@ -395,15 +387,15 @@ msgstr "Unité de temps du déplacement vers la corbeille" msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" -"Temps après lequel les documents de ce type présents dans la corbeille " -"seront supprimés." +msgstr "Temps après lequel les documents de ce type présents dans la corbeille seront supprimés." #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "Temps avant suppression" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "Unité de temps avant suppression" @@ -440,10 +432,7 @@ msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" -"Un document parcellaire est un document avec une entrée en base de données " -"mais aucun fichier téléchargé. Cela peut correspondre à un téléchargement " -"interrompu ou à un téléchargement retardé par l'API." +msgstr "Un document parcellaire est un document avec une entrée en base de données mais aucun fichier téléchargé. Cela peut correspondre à un téléchargement interrompu ou à un téléchargement retardé par l'API." #: models.py:184 msgid "Is stub?" @@ -451,6 +440,7 @@ msgstr "Parcellaire ?" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "Parcelle de document, id : %d" @@ -468,7 +458,7 @@ msgstr "Version du document" #: models.py:632 msgid "Quick label" -msgstr "" +msgstr "Renommage rapide" #: models.py:650 msgid "Page number" @@ -488,10 +478,12 @@ msgid "Document pages" msgstr "Pages du document" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -516,6 +508,7 @@ msgid "Delete documents" msgstr "Supprimer les documents" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "Envoyer les documents à la corbeille" @@ -536,10 +529,12 @@ msgid "Edit document properties" msgstr "Modifier les propriétés du document" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "Imprimer les documents" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "Rétablir le document supprimé" @@ -577,38 +572,29 @@ msgstr "Afficher les types de documents" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"Nombre maximum de documents récents (créés, modifiés, visualisés) à " -"mémoriser par utilisateur." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Nombre maximum de documents récents (créés, modifiés, visualisés) à mémoriser par utilisateur." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Valeur en pourcentage du zoom avant ou arrière pour une page de document " -"pour les utilisateurs." +msgstr "Valeur en pourcentage du zoom avant ou arrière pour une page de document pour les utilisateurs." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Maximum en pourcents (%) de la valeur du zoom avant interactif autorisé pour " -"l'utilisateur." +msgstr "Maximum en pourcents (%) de la valeur du zoom avant interactif autorisé pour l'utilisateur." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Minimum en pourcents (%) de la valeur du zoom arrière interactif autorisé " -"pour l'utilisateur." +msgstr "Minimum en pourcents (%) de la valeur du zoom arrière interactif autorisé pour l'utilisateur." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Valeur en degrés pour la rotation d'une page de document par l'utilisateur." +msgstr "Valeur en degrés pour la rotation d'une page de document par l'utilisateur." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -619,16 +605,16 @@ msgid "List of supported document languages." msgstr "Liste des langues supportées du document." #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "" +msgstr "Vider l'image en cache du document" #: views.py:75 msgid "Document cache clearing queued successfully." -msgstr "" -"Demande de nettoyage du cache de documents mise en file d'attente avec " -"succès." +msgstr "Demande de nettoyage du cache de documents mise en file d'attente avec succès." #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "Documents dans la corbeille" @@ -638,6 +624,7 @@ msgstr "Êtes vous sûr de vouloir supprimer le document sélectionné ?" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "Document %(document)s supprimé." @@ -656,6 +643,7 @@ msgstr "Êtes vous sûr de vouloir rétablir le document sélectionné ?" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "Document %(document)s rétabli." @@ -685,16 +673,17 @@ msgstr "Etes-vous sûr de vouloir envoyer \"%s\" à la corbeille ?" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "Document : %(document)s envoyé à la corbeille avec succès." #: views.py:378 msgid "Move the selected documents to the trash?" -msgstr "" -"Êtes vous sûr de vouloir envoyer les documents sélectionnés à la corbeille ?" +msgstr "Êtes vous sûr de vouloir envoyer les documents sélectionnés à la corbeille ?" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "Documents du type : %s" @@ -704,6 +693,7 @@ msgstr "Tous les documents de ce type seront également effacés." #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "Êtes-vous sûr de vouloir supprimer le type de document : %s ?" @@ -719,19 +709,14 @@ msgstr "Créer une étiquette rapide pour le type de document : %s" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" -"Modifier l'étiquette rapide \"%(filename)s\" du type de document " -"\"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgstr "Modifier l'étiquette rapide \"%(filename)s\" du type de document \"%(document_type)s\"" #: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" -"Etes-vous sûr de vouloir supprimer l'étiquette rapide %(label)s du type de " -"document \"%(document_type)s\" ?" +msgstr "Etes-vous sûr de vouloir supprimer l'étiquette rapide %(label)s du type de document \"%(document_type)s\" ?" #: views.py:552 #, python-format @@ -745,10 +730,10 @@ msgstr "Versions du document : %s" #: views.py:597 msgid "All later version after this one will be deleted too." -msgstr "" -"Toutes les versions postérieures à celle-ci seront également supprimées." +msgstr "Toutes les versions postérieures à celle-ci seront également supprimées." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "Êtes vous certain de vouloir revenir à cette version ?" @@ -771,6 +756,7 @@ msgid "Empty trash?" msgstr "Vider la corbeille ?" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "Corbeille vidée avec succès" @@ -781,7 +767,7 @@ msgstr "Au moins un document est requis." #: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "" +msgstr "Type de document pour \"%s\" changé." #: views.py:716 views.py:1235 msgid "Submit" @@ -794,8 +780,9 @@ msgstr[0] "Modifier le type du document sélectionné." msgstr[1] "Modifier le type des documents sélectionnés." #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." -msgstr "" +msgstr "Vous devez fournir au moins un document ou une version" #: views.py:819 msgid "Documents to be downloaded" @@ -820,40 +807,28 @@ msgstr "Documents en file d'attente pour recalcul du nombre de pages." #: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" -msgstr[0] "" -"Êtes vous sûr de vouloir recalculer le nombre de pages du document " -"sélectionné ?" -msgstr[1] "" -"Êtes vous sûr de vouloir recalculer le nombre de pages des documents " -"sélectionnés ?" +msgstr[0] "Êtes vous sûr de vouloir recalculer le nombre de pages du document sélectionné ?" +msgstr[1] "Êtes vous sûr de vouloir recalculer le nombre de pages des documents sélectionnés ?" #: views.py:1023 #, python-format msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Erreur lors de la suppression des transformations de page pour le document : " -"%(document)s; %(error)s." +msgstr "Erreur lors de la suppression des transformations de page pour le document : %(document)s; %(error)s." #: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" -"Toutes les transformations de page pour le document : %s ont été supprimées " -"avec succès." +msgstr "Toutes les transformations de page pour le document : %s ont été supprimées avec succès." #: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" -msgstr[0] "" -"Êtes-vous sûr de vouloir supprimer toutes les transformations de page pour " -"le document sélectionné ?" -msgstr[1] "" -"Êtes-vous sûr de vouloir supprimer toutes les transformations de page pour " -"les documents sélectionnés ?" +msgstr[0] "Êtes-vous sûr de vouloir supprimer toutes les transformations de page pour le document sélectionné ?" +msgstr[1] "Êtes-vous sûr de vouloir supprimer toutes les transformations de page pour les documents sélectionnés ?" #: views.py:1078 msgid "There are no more pages in this document" @@ -953,11 +928,11 @@ msgstr "Image de la page du document" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1089,8 +1064,7 @@ msgstr "Image de la page du document" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1104,11 +1078,11 @@ msgstr "Image de la page du document" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1131,11 +1105,11 @@ msgstr "Image de la page du document" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1152,19 +1126,15 @@ msgstr "Image de la page du document" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1221,11 +1191,11 @@ msgstr "Image de la page du document" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1249,11 +1219,11 @@ msgstr "Image de la page du document" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1274,11 +1244,9 @@ msgstr "Image de la page du document" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1308,11 +1276,11 @@ msgstr "Image de la page du document" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1369,17 +1337,15 @@ msgstr "Image de la page du document" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.mo index 8bab807a6ba0d48bcf5c8b53db8c33b49a0b98e6..8ae788593b87abeb2aa6540fbb820fe988dc91f6 100644 GIT binary patch delta 38 ocmdn5v0r0@EjO2mu93Ndp^25D;beDiIVjh{%E)MQKKBI<0K}vTzW@LL delta 38 pcmdn5v0r0@EjO33u92aFp_!G5$z*qKISALt(8|Dab3XS44gka@3Ag|N diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po index 239149118d..4e643b4e41 100644 --- a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -75,14 +74,17 @@ msgid "Comment" msgstr "Megjegyzés" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -103,10 +105,8 @@ msgid "Document created" msgstr "" #: events.py:12 -#, fuzzy -#| msgid "Document deleted" msgid "Document downloaded" -msgstr "Document deleted" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -117,18 +117,18 @@ msgid "Document type changed" msgstr "" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -192,9 +192,13 @@ msgid "Compress" msgstr "Tömörítés" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -206,9 +210,7 @@ msgstr "Tömörített fájlnév" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"A tömörített fájl neve, amely a letöltött dokumentumokat tartalmazni fogja, " -"ha az előző opció van kiválasztva." +msgstr "A tömörített fájl neve, amely a letöltött dokumentumokat tartalmazni fogja, ha az előző opció van kiválasztva." #: forms.py:217 literals.py:23 msgid "Page range" @@ -267,10 +269,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Download" msgid "Download version" -msgstr "Letöltés" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -288,11 +288,10 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Törölje a grafikus ábrázolásokat, hogy felgyorsítsa a dokumentum " -"megjelenítését és az interaktív átalakításokat." +msgstr "Törölje a grafikus ábrázolásokat, hogy felgyorsítsa a dokumentum megjelenítését és az interaktív átalakításokat." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -371,7 +370,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -389,10 +389,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -437,6 +439,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -463,9 +466,7 @@ msgstr "" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" -"Az oldalak száma %(page_num)d nagyobb mint a %(document)s oldalainak " -"száma: %(total_pages)d " +msgstr "Az oldalak száma %(page_num)d nagyobb mint a %(document)s oldalainak száma: %(total_pages)d " #: models.py:671 msgid "Document page" @@ -476,10 +477,12 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -504,6 +507,7 @@ msgid "Delete documents" msgstr "Dokumentum törlése" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" @@ -524,10 +528,12 @@ msgid "Edit document properties" msgstr "Dokumentum tulajdonságok szerkesztése" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -565,17 +571,13 @@ msgstr "Dokumentum típus megtekintése" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"A felhasználónként megjegyzendő dokumentumok maximális száma amit az utóbbi " -"időben (létrehozott, szerkesztett, a megtekintett)." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "A felhasználónként megjegyzendő dokumentumok maximális száma amit az utóbbi időben (létrehozott, szerkesztett, a megtekintett)." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Egy dokumentum oldal százalékos nagyításának vagy kicsinyítésének aránya egy " -"lépésben." +msgstr "Egy dokumentum oldal százalékos nagyításának vagy kicsinyítésének aránya egy lépésben." #: settings.py:51 msgid "" @@ -587,14 +589,11 @@ msgstr "Egy dokumentum oldal százalékos (%) nagyításának aránya egy lépé msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Egy dokumentum oldal százalékos (%) kicsinyítésének aránya egy lépésben." +msgstr "Egy dokumentum oldal százalékos (%) kicsinyítésének aránya egy lépésben." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"A felhasználó ennyi fokkal lesz képes elforgatni a dokumentumot oldalt egy " -"lépésben." +msgstr "A felhasználó ennyi fokkal lesz képes elforgatni a dokumentumot oldalt egy lépésben." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -605,6 +604,7 @@ msgid "List of supported document languages." msgstr "" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -613,6 +613,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -622,6 +623,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -640,6 +642,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -669,6 +672,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -678,6 +682,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -687,6 +692,7 @@ msgstr "" #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -702,8 +708,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -727,6 +732,7 @@ msgid "All later version after this one will be deleted too." msgstr "Minden ezután következő verzió is törölve lesz." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -749,6 +755,7 @@ msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -772,6 +779,7 @@ msgstr[0] "" msgstr[1] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -806,8 +814,7 @@ msgstr[1] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Hiba %(error)s a dokumentum %(document)s oldal átalakítójának törlése közben." +msgstr "Hiba %(error)s a dokumentum %(document)s oldal átalakítójának törlése közben." #: views.py:1032 #, python-format @@ -920,11 +927,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1056,8 +1063,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1071,11 +1077,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1098,11 +1104,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1119,19 +1125,18 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." + +#~ msgid "Document deleted" +#~ msgstr "Document deleted" #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1185,11 +1190,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1213,11 +1218,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1238,11 +1243,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1272,11 +1275,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1333,17 +1336,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/id/LC_MESSAGES/django.mo index 92975aaf22e2f601d89ee4e369f251a594a74238..7a653e35af1c7e639f30b022f408228167f878c9 100644 GIT binary patch delta 38 ocmaE@`dW3vQZ6nNT_bY^LlY}Q!^!Kp5T7vo%4G-=X}rk z{WwAPRtQ9q| zcGUB_u?qWeIvzpYKZ?5lGO|PuDBDwpdK`V8b}(AS?EKxOK~19MgAiW>Rbs1zST?SYR`9VFcO z&+%^B-?;W~_$ciO+<=XwBZ3F9SjSP%o#!S08bArd31bV)UHe0(rQ;`&N!k}!gXggl)7e06ScA)O7`rj{0~O6MOdj=s1{}gB zRBA7~O_9GZ?K>nuk2X!p;`dz`L*vqo@oYMBRTJHIXq4>-|4VMIBFKKBnK9 zd<%+EDPN3AX+7#eO{f8EM*eJo9}RTKwU459`)Sk~kE0*|L}g|!?;fjWrC6o+zm|$R z=t12OMa^gr>W24FBmTs-PoW0| zqBZ^p%dwo#nr7IB+BChW%{1VA*_|Iob?`naQ=g(b_!_l|&!g_Uh!r^Q&Sx{~=V|9* ztdq)!JMcGhjrGk>&iqZ(NDtu>9K|xcj_fP*@YT_h6rwT}LUr7LTI+SloGjwb_q+42 zx$|!nkbhmcp9AXnFfs=F5|zR$s0ZIfU6YM?jp zUYtZ_D8PE@x=>*(d7zF1O7$9NBWfn=Q5o2TEU$GSled>pOY|;kZI7e&$R*VE*D(bj zC#c#MLQAZo^ASRCo%Y{U(QF%tRfIl~Ds@ThY1Hggo=RfVu$Sl|YTYpnsG86~TZjQ- zIkAJ#GB*<{`hu$T5&Hg2eXF%mR7we@be9^GCz9AgywBBdv7U;SO+{~vQm+34D)$gi z5^L3Pr2~~^eUP-Ql$aGIE7tGSx~gb>wh}AUptKQ6@dn~S;(kKAUa#z}qRm-CXzBFz z+eBysY7eNaCQ=DMp^~rsZ=|w~cuYtBSGs6#C&C2ZCu=8E9wC+z4-+eihlna-8KDi< zL}>cg=8ZD3o|E=atm-{_Xx~Z+wo=7x(&d K6JFo`jQ;>s$=DD8 delta 2551 zcmY+`ZA_JA9LMoLNP0j*1;k?}9#WoC;cz?{&j}bADi%jg5=o&*LnviAjJDgM_C~1} zCtS5fbGDh27uiuaTC>*XmRpn7!wX+XZpCJ;X3bTbF6;X{=i)`z{GZQ#-4EBp|GMrQ ze`!43=uKv(j2LA<@gOla!|Xk*nZ*y~qf|2=p2Pd_6TBZk$5OnC<#-QUFq~#qkB6}d zFXL=X=SS`Mu^;nrzL{qu9H_6e?uHms~Z${0u!`bEBjml)N$AKC;fc&#J`C+;26o&9))QqQ45B!G1 zNoIe!`Vpq3^TWvG>;#tMhggb}*oGNwq&nPJcR0R92e{T|AGUuXg5%)zKu$yElf0& zhU$0`^3Q_&(6=?adM9d^zlK`dlNi8rsEmArYX2t;;@_zDi+C63==~3Ipcyrw9%w_2 zxX0D|Q6oNzjM(15JREcNtEdisMOMZB#UjjN=c%I_)bmZ)jhj$Qdl6UY{r{N*%`k`0 znl{UF)Fui#>rmG>pgP!v%G4{U4u(*h_c-dgD6Yhl?)n4{P``$q*vc$azo7hc&Ps9< zGhdGy=?;7ZyRjHYk$q%eqSkg2m8n~(j+6KbX{~+8Tr3N9y%cr5-d$hkjG+4MSVI1l z(m_rrh3}vq9CJ5bLe20BuEK9o1DF*^Y&t*2UtfHg^C8qgPvLSLM?F7E9l5XKS22s8>qmg#?z2y~K+|r8}p+pscW=>@T2D*AG&C_~Ef zW168==X`bXj>#L$PzeMQOQ_()@Af8agm7SGAMMUHgvvHTDSnE0oTw(W>-COL7cGVUuxRPR#M6Y9O-rTn7{UK%;(sMo z*QVP_bP;WYzCZsf&r^Gj(C*hq<{3gILR1m0L_M*N(C4+5&<5K;JWQzM6Z)R4CxS#1 z(ML28D%ww*;zxXrwdSh{?bbSXvJh7g<*qLFxMM#yyW<_P@zj#!*uB|(zO+>xa!{^?m66eA1D<0X0O$(}Y5)KL delta 38 pcmeyS`Au`fKW;8#T_ZyULo+KAlgS)BauBYOp_PH~UOLq%S?8bKSHp!z)mCHFM^Nq7;WvMJyl@K-DT4%B>~fp3I=2w#C;g15roz1^6%z)wQW`voZZ ze*q=u8&K=|XDB(}f%3`sq1GLuoaB56O3x2h{5X^yKMAGRA48U8z6j;7m!ahSW!3(* zimyWc%)jvS)9`yxcE1Ou-VP7JyWrDM@&{1zuR!VXTksHk9^MDP0yXb-;=Ugk&s`8rhpe}amO ze~0(N??dTh>4YiGeyH~M!2|G7Silr&-fu(c^S$c(HjMvHzVCp0-~sqH_%xKhm!Rx% zx#F)>{52@M{|1!bpNI1MXCWpsUxu3hZ=mdP3qhm)Z-6iV05*rx=N}j(eP4qb|1Ew{ z%{fKuy%Xn1-dmyUc|X*+qZJpS?6(4CzZA;PzYZ1mzhBjV87dB5fwI$oL&<$TgDkuY zO70=3bsvH9!xNCM<|33GGN^SFQ1YLJ()UvpKL`0UU*cy5ehuOxa~s0+{bs2C3l*P& z^5Z(x{2zz>nHTs`zt2P2@6W3GKZoDu`&B5reFdW^p1%rZpa0+o)0*3Hiu8CplpWs< zCI3`C>dydcRYuLaH=ySKMYs<> z2Y&{BuHxT8`RhNS^nMeQXq^Y4^jLsL;0dVlAA|DOpH$qe__t8=e-p|-uR-bcUl7xn zTbP8>_r(tdYBww==rm^sQkWmzB9vk0~3ixkXg-cQk*PE$0; zdnxx*2odu%Mf>RjMUQN!b@eD`DKSO*EKu~^M>$Dhxo+L(U`Uyv=y{ZKin2n{qdj<# z@(Yw7q-;=*QuJ7grxzZ@&<82F!{r-bj#D~%sh(pM+jYeRyS&Rk^>es-d9tpkDBnCx zS)%kQ4^i~|JY}77i1Kq3J&G5?+dYb5`4@M%xKXave$XR7>yaNHbZ_O)Q(#Z^{XX~s zihRFDd4wXrD&`)iJVDt@`B{qgvz`+r%rw-VcsJ!1$|~hO6zxwvk5Lp$K1DHeo)Ssdc;=lvkcQuj6R)`Qd>-SDFIz-GlD z;5}$})4Xqv_5v@lS>i?MTAcK~EQ}+%#(j+z2MMy9m%z7cVK0chJ~EQP%L3~)lU1V2 z>RN-FS0Z(L*QO#0hGU_Zf+TfH9dom}C6=#|Z?h0Z+?U?8j&uVP91GUGyqCdVkkP?m zEK(*&ch;&RZ71PCCNRe;12!+V?UY4!)naAU?O%wPY)tLmJ^sFlx+ES1NfrjF4g4^Z zo^^NUlx<(O?cBAa&%_LsUB)u13Y!GHO-dgRN^Kfs`Jfq-I`61`81-ULla()xt;TIO z+X$L!8%FLsPQvvt@_M!m9vdfW@oc*a9O9+#MNyDU+vSZgwXw6VX1>Ob&^(8s98L?bv4pW&uAGHXq2c7^2pib)=az z^wKn3k7(Jkh4x$K!9+6ns+Wds%bM(>S9pf;+uQ`_B4$ zFVx0I*fZ5aPNRZZVhwiBUQKy1%KQ6#8|NsuMqL(XUhkq)M%AjSZM-ktIdC;d>Q39n zmHooLOy%Zc68e_!B-^UGl$W~bt|ytdd#Gj;hrzI>)Y#n~=PcXJkc1@bCH+>T>qJ9k z{knUSC-bn~ZRC$E=WG7vRNM9mNa zIwsUPP%ed1z4DPci@}+z7pyT$`A$~Z$jrHXwa*@1W*am?CQEoxA!vIvVWH|~CO1U8 zTnnnZPNXC?F`S@uIipRuc~wHIt?ZPY$RdHyt}N$l7O*p!1^zTMduCY&lE)e4 zvpV;cW?p|_mK9%(s?NmZr_2Ukd!vf{9bKA5{%^f@$ z{jw{to+9eT%9VLViqhgFu-cgBLLB$WFeTY(3d;`Z zzjfSiRjSNSB)F-w!5~hu)?&II`mH1RdfHl!=k3(endO$dGjKw;bn4IB1G97QY0VyN z9eA&uJ2*c#$NTIo9a{unsC&Z=`W>1-aNzz~o+)Lq*0L@?gnOLK+p{sdlrTLTr(P1q zbSU#(YdP@x^L8ojh3SUfyOCvs`I(vFa5(L*PT^Yc%rpTula%9aQVSqqX@ebCI? zL#tud=sIr)y{V;Mo_M|14n|grrokS9(oZcqdA`quU|_>nxau8H_O8~83hr_QGflK;=I(6 z_nS9Pj=S-IC>|E<-65N+6K)eqj4CT(n$XiV)w7{pkNpu>ruwrz;(C%}k#y9Sa-JPx zkaUz|(muB6Vchd+zV%%BE7gl_bI{1DCoHbjoEe0=xs}UnUhD{ed0WrgJd-Kpi*s^` zbS%5(WyN@g-4*4fc4g~XZ|lW&IE?i>9$!yU*ik?Bi?y)pe4<3ubdrMqkMU!roB&yS zQt_1?6}2WhaYn^3xqgj2kJ+2JJQ+u8;X0e4jht~cnr@$IDP9c&La*d5Q&-K+>hPbt z47YJfoD}YQ92I@r%U7!=8ny*&XPU$^EVf=sM;3 zpdUEB6k5Ex4g}D8TyBYJyE4&r7zVw((Gc^M#)&qsxC%x^K+G#70gL*>m?2x{28Ro%r&4E zq&s!UwKgDi$lZj$nwh`plJCb%NEspodvX^g&ktgs9WliEHXX$2^=qrP%elhkx)>1` z8tYqn!iB!OzqnjwwtkPu*m|j3=dOw2XX8;n z6wMBAhBkiIk9Lu~kxX`?U0{M{+L@mS%BB60ch)t8Mr8(XK1IQ@+tX-+q6u^4(a(O>gjL*b}45 z66Q2#SyF#o@VXp9 z@}_yy^*uK#R*5SG5jj2LfE@3T+=WFiY>%vdRyVI!3#h`VQLTzSiEx=9h7>xRwR9&KLL=At$?r)1+QdK(qWB;wY^fl%(KEA6IpX{G;b z?|NM~6MB+Mgp65T|F>Q$GS1?N1ht}l7gT7b%UuXvh*v#AWLM&@>g!1hbAk+t*=#2# kof2(>GF#yy7%#N}{JVPl7q=5mb9 z{iSAhv9@^9ve{94(1Vsqo923eTU*9jn_H``uqSTjgX;Y`{CLuD=lg&C{;9k-)K?niahWv`E*8X7~re+reN zDOB!1LCyRsYGr3p&)q?#bUumof0W8SE~w*dTBm9@pdP3|57wYM3L!r;Y|l^PBb=Yc z0=$GdcpEkF`=|;2V_iZ%biN$5lF2EozjBqu1?9@kK^<11X559*CC6`Lj2T4@#LILv zz&)t<_oHSOL@o6o>bVK)Td0*ek4nuI)MmUDwm0Tcxr<{XL{|Xm%T%BXy{HBQsF{UO zOFV@7ye3dH`w%tYX;cTFAx)bb)}K%V`2#m%IF>D}9C=U|YEdurTTh@;bOtqmFHs%O z*!y#+mHHED)7(R?%rcfmn=b{mA|=QzvmG^n7G%Z3CPYOIkKhE3BR`YQv^1jvBz?w> z8fYbIhC5Lm?X}kr+UrMA9ra-$j$=Mvu-?M8oZrWF`u;N+j%Hkr>aY%#f?d{Ts~^>2 zA8G){Q8RwcUUyJ?;2l)zK1OZEOQ;o_MfLML@-q)OB-6i10rX555o=rC%D z`!ElOQO}=4eKpglmH8Zt@G2JLT~z9FSbt5-i~Myr_4a%>hSk76Dww4+=Jz>NsUXS;eTMCXi%`)(7mGTtCN>b-#FVhv%~6BU$QR4gRJIef zgqL`p(13OkDo+xd3GML3a>!PcYn6S(i^LOz{+!nnDlJ44v4^Ns{#7(PEwR4M=;lKG zVPTJ$t%O!VMa!Q{>>yquRGwPEY{LUY38DO|R1r$SVo@4YVhL?dkNR&QRGuNUp&lb@ zi2oNK7qoMgTkQ+&m1hZ+I${g)0-?R5(nhorjXJS~EfM`ErBi+Gb)_8k68hx!6WRxl z6DsgzcYa19Rk2Ap@}3nM?q{~F`Goiy)U zNxtJeNXcK?A9ytwIOa5_x}CGBbI#qgY3D-v<%F_gPpPYPb9H&S)18sKaOx?o-c%Kt z%IJ(qXzdOLX2#X5b<1^m=q0XUKEY+@p0n, 2016 +# Wojtek Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -34,9 +33,7 @@ msgstr "Utwórz typ dokumentu" msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" -"Każdy przesłany dokument musi mieć przypisany typ dokumentu, ponieważ jest " -"to podstawowy sposób kategoryzacji dokumentów w Mayan EDMS." +msgstr "Każdy przesłany dokument musi mieć przypisany typ dokumentu, ponieważ jest to podstawowy sposób kategoryzacji dokumentów w Mayan EDMS." #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" @@ -79,14 +76,17 @@ msgid "Comment" msgstr "Komentarz" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "Nowe dokumenty miesięcznie" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "Nowe wersje dokumentów miesięcznie" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "Nowe strony dokumentów miesięcznie" @@ -107,10 +107,8 @@ msgid "Document created" msgstr "Dokument został utworzony" #: events.py:12 -#, fuzzy -#| msgid "Document deleted" msgid "Document downloaded" -msgstr "Document deleted" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -121,18 +119,18 @@ msgid "Document type changed" msgstr "Właściwości dokumentu zostały zmodyfikowane" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "Nowa wersja została przesłana" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "Wersja dokumentu została przywrócona" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -157,7 +155,7 @@ msgstr "UUID" #: forms.py:120 msgid "File mimetype" -msgstr "" +msgstr "Typ MIME pliku" #: forms.py:121 forms.py:126 msgid "None" @@ -165,7 +163,7 @@ msgstr "Brak" #: forms.py:124 msgid "File encoding" -msgstr "" +msgstr "Kodowanie pliku" #: forms.py:130 msgid "File size" @@ -173,15 +171,15 @@ msgstr "Rozmiar pliku" #: forms.py:135 msgid "Exists in storage" -msgstr "Istnieje w pamięci" +msgstr "Istnieje w systemie" #: forms.py:137 msgid "File path in storage" -msgstr "" +msgstr "Ścieżka pliku w systemie" #: forms.py:140 models.py:371 msgid "Checksum" -msgstr "" +msgstr "Suma kontrolna" #: forms.py:141 links.py:58 msgid "Pages" @@ -196,21 +194,25 @@ msgid "Compress" msgstr "Kompresuj" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" +msgstr "Pobierz dokument w formacie oryginalnym lub w formie skompresowanej. Powyższa opcja ma zastosowanie jedynie w przypadku pobierania pojedynczego pliku. W przypadku wielu dokumentów zostaną one pobrane w formie skompresowanego archiwum." #: forms.py:197 msgid "Compressed filename" -msgstr "" +msgstr "Nazwa pliku skompresowanego" #: forms.py:200 msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" +msgstr "Nazwa pliku zawierającego gotowe do pobrania dokumenty w formie skompresowanej, jeśli poprzednio wybrano opcję kompresji." #: forms.py:217 literals.py:23 msgid "Page range" @@ -269,10 +271,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Document version" msgid "Download version" -msgstr "Wersja dokumentu" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -293,6 +293,7 @@ msgid "" msgstr "" #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -367,11 +368,12 @@ msgstr "Typy dokumentów" #: literals.py:23 msgid "All pages" -msgstr "" +msgstr "Wszystkie strony" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -389,10 +391,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -437,6 +441,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -463,7 +468,7 @@ msgstr "Numer strony" #: models.py:655 #, python-format msgid "Page %(page_num)d out of %(total_pages)d of %(document)s" -msgstr "" +msgstr "Strona %(page_num)d z %(total_pages)d stron dokumentu %(document)s" #: models.py:671 msgid "Document page" @@ -474,10 +479,12 @@ msgid "Document pages" msgstr "Strony dokumentu" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -502,12 +509,13 @@ msgid "Delete documents" msgstr "Usuwanie dokumentów" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" #: permissions.py:19 views.py:903 msgid "Download documents" -msgstr "Pobierz dokumenty" +msgstr "Pobieranie dokumentów" #: permissions.py:22 msgid "Edit documents" @@ -522,10 +530,12 @@ msgid "Edit document properties" msgstr "Edytuj właściwości dokumentu" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -563,8 +573,8 @@ msgstr "Zobacz typy dokumentów" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." msgstr "" #: settings.py:44 @@ -596,6 +606,7 @@ msgid "List of supported document languages." msgstr "" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -604,6 +615,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -613,6 +625,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -631,6 +644,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -641,7 +655,7 @@ msgstr "" #: views.py:256 #, python-format msgid "Pages for document: %s" -msgstr "" +msgstr "Strony dokumentu: %s" #: views.py:284 #, python-format @@ -651,7 +665,7 @@ msgstr "" #: views.py:330 #, python-format msgid "Preview of document: %s" -msgstr "" +msgstr "Podgląd dokumentu: %s" #: views.py:338 #, python-format @@ -660,6 +674,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -669,6 +684,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -678,6 +694,7 @@ msgstr "" #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -693,8 +710,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -711,13 +727,14 @@ msgstr "" #: views.py:583 #, python-format msgid "Versions of document: %s" -msgstr "" +msgstr "Wersje dokumentu: %s" #: views.py:597 msgid "All later version after this one will be deleted too." msgstr "" #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -733,13 +750,14 @@ msgstr "" #: views.py:633 #, python-format msgid "Properties for document: %s" -msgstr "" +msgstr "Właściwości dokumentu: %s" #: views.py:639 msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -764,6 +782,7 @@ msgstr[1] "" msgstr[2] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -826,12 +845,12 @@ msgstr "Jesteś już na pierwszej stronie tego dokumentu" #: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" -msgstr "Drukuj: %s" +msgstr "Wydruk: %s" #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" -msgstr "" +msgstr "Strona %(page_number)d of %(total_pages)d" #: widgets.py:100 msgid "Document page image" @@ -913,11 +932,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1050,8 +1069,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1065,11 +1083,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1092,11 +1110,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1113,19 +1131,18 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." + +#~ msgid "Document deleted" +#~ msgstr "Document deleted" #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1179,11 +1196,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1207,11 +1224,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1232,11 +1249,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1266,11 +1281,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1327,17 +1342,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.mo index 4e9cd09b8427ba775dfac3a6ed1de64713c7d935..601813f00bfd910f3def33eb9f09828b8bbb3d3b 100644 GIT binary patch delta 38 ocmdm}zEORHDL0piu93Ndp^25D;bePmIVjh{%E)MQI=2@G0KJ3>0{{R3 delta 38 pcmdm}zEORHDL0p~u92aFp_!G5$z*$OISALt(8|Dab2_&d2LQbV2>bv5 diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po index d226672c34..cd05b110c5 100644 --- a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -75,14 +74,17 @@ msgid "Comment" msgstr "Comentário" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -103,10 +105,8 @@ msgid "Document created" msgstr "" #: events.py:12 -#, fuzzy -#| msgid "Document deleted" msgid "Document downloaded" -msgstr "Document deleted" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -117,18 +117,18 @@ msgid "Document type changed" msgstr "" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -192,9 +192,13 @@ msgid "Compress" msgstr "Comprimir" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -265,10 +269,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Download" msgid "Download version" -msgstr "Descarregar" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -286,11 +288,10 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Limpar as representações gráficas usadas para acelerar a exibição e " -"transformações interativas de documentos." +msgstr "Limpar as representações gráficas usadas para acelerar a exibição e transformações interativas de documentos." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -369,7 +370,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -387,10 +389,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -435,6 +439,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -472,10 +477,12 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -500,6 +507,7 @@ msgid "Delete documents" msgstr "Excluir documentos" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" @@ -520,10 +528,12 @@ msgid "Edit document properties" msgstr "Editar propriedades de documento" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -561,11 +571,9 @@ msgstr "Ver tipos de documento" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"Número máximo de documentos recentes (criados, editados, visualizados) a " -"recordar, por utilizador." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Número máximo de documentos recentes (criados, editados, visualizados) a recordar, por utilizador." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -575,23 +583,17 @@ msgstr "Percentagem de zoom in/out por interação do utilizador." msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Percentagem (%) máxima para o utilizador aumentar o zoom de uma página de " -"documento de forma interativa." +msgstr "Percentagem (%) máxima para o utilizador aumentar o zoom de uma página de documento de forma interativa." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Percentagem (%) mínima para o utilizador diminuir o zoom de uma página de " -"documento de forma interativa." +msgstr "Percentagem (%) mínima para o utilizador diminuir o zoom de uma página de documento de forma interativa." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Valor em graus para rodar uma página de documento por interação do " -"utilizador." +msgstr "Valor em graus para rodar uma página de documento por interação do utilizador." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -602,6 +604,7 @@ msgid "List of supported document languages." msgstr "" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -610,6 +613,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -619,6 +623,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -637,6 +642,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -666,6 +672,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -675,6 +682,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -684,6 +692,7 @@ msgstr "" #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -699,8 +708,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -724,6 +732,7 @@ msgid "All later version after this one will be deleted too." msgstr "Todas as versões posteriores a esta também serão eliminadas." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -746,6 +755,7 @@ msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -769,6 +779,7 @@ msgstr[0] "" msgstr[1] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -803,18 +814,14 @@ msgstr[1] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Erro ao excluir as transformações de página para o documento: %(document)s; " -"%(error)s ." +msgstr "Erro ao excluir as transformações de página para o documento: %(document)s; %(error)s ." #: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" -"Todas as transformações de página para o documento: %s, foram excluídas com " -"sucesso." +msgstr "Todas as transformações de página para o documento: %s, foram excluídas com sucesso." #: views.py:1044 msgid "Clear all the page transformations for the selected document?" @@ -920,11 +927,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1056,8 +1063,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1071,11 +1077,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1098,11 +1104,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1119,19 +1125,18 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." + +#~ msgid "Document deleted" +#~ msgstr "Document deleted" #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1185,11 +1190,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1213,11 +1218,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1238,11 +1243,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1272,11 +1275,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1333,17 +1336,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.mo index e6607c798c72116c7163b37a9e2036fe3302364c..3841f371753893e023bfbc82505e6d760e3e2646 100644 GIT binary patch delta 38 ocmez8^v`L-WnnH8T_bY^LlY}Q!^wAr<)B;(Dw3`Tzg` delta 38 pcmez8^v`L-WnnI3T_ZyULo+KAlgW35 1);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 @@ -75,14 +74,17 @@ msgid "Comment" msgstr "Comentário" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -103,10 +105,8 @@ msgid "Document created" msgstr "Documento criado " #: events.py:12 -#, fuzzy -#| msgid "Documents to be downloaded" msgid "Document downloaded" -msgstr "Documentos a serem baixados" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -117,18 +117,18 @@ msgid "Document type changed" msgstr "Tipo de Documento mudado" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -192,9 +192,13 @@ msgid "Compress" msgstr "comprimir" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -206,9 +210,7 @@ msgstr "Comprimido o filename " msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"O nome do arquivo do arquivo compactado que vai conter os documentos a serem " -"baixados, se a opção anterior é selecionado." +msgstr "O nome do arquivo do arquivo compactado que vai conter os documentos a serem baixados, se a opção anterior é selecionado." #: forms.py:217 literals.py:23 msgid "Page range" @@ -267,10 +269,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Document version" msgid "Download version" -msgstr "Versão do Documento" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -288,11 +288,10 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Desmarque as representações gráficas utilizadas para acelerar a exibição e " -"transformações interativas resultados dos documentos." +msgstr "Desmarque as representações gráficas utilizadas para acelerar a exibição e transformações interativas resultados dos documentos." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -371,7 +370,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -389,10 +389,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -437,6 +439,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -474,10 +477,12 @@ msgid "Document pages" msgstr "páginas do documento" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -502,6 +507,7 @@ msgid "Delete documents" msgstr "Excluir documentos" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" @@ -522,10 +528,12 @@ msgid "Edit document properties" msgstr "Editar propriedades de documento" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -563,38 +571,29 @@ msgstr "Ver tipos de documentos" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"Número máximo de documentos recentes (criado, editado, visualizado) à ser " -"lembrado, por usuário." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Número máximo de documentos recentes (criado, editado, visualizado) à ser lembrado, por usuário." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Quantidade em porcentagem de zoom em uma página ou documento por interação " -"do usuário." +msgstr "Quantidade em porcentagem de zoom em uma página ou documento por interação do usuário." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Valor máximo em porcentagem (%) para permitir ao usuário aumentar o zoom em " -"uma página do documento de forma interativa." +msgstr "Valor máximo em porcentagem (%) para permitir ao usuário aumentar o zoom em uma página do documento de forma interativa." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Valor mínimo em porcentagem (%) para permitir ao usuário diminuir o zoom em " -"uma página do documento de forma interativa." +msgstr "Valor mínimo em porcentagem (%) para permitir ao usuário diminuir o zoom em uma página do documento de forma interativa." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Valor em graus para girar uma página do documento por interação do usuário." +msgstr "Valor em graus para girar uma página do documento por interação do usuário." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -605,6 +604,7 @@ msgid "List of supported document languages." msgstr "Lista de idiomas de documentos suportados." #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -613,6 +613,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -622,6 +623,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -640,6 +642,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -669,6 +672,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -678,6 +682,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -687,6 +692,7 @@ msgstr "Todos os documentos deste tipo serão excluídos também." #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -702,8 +708,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -727,6 +732,7 @@ msgid "All later version after this one will be deleted too." msgstr "Tudo versão posterior após este será excluído também." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -749,6 +755,7 @@ msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -772,6 +779,7 @@ msgstr[0] "" msgstr[1] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -806,18 +814,14 @@ msgstr[1] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Erro ao excluir as transformações de página para o documento: %(document)s; " -"%(error)s ." +msgstr "Erro ao excluir as transformações de página para o documento: %(document)s; %(error)s ." #: views.py:1032 #, python-format msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" -"Todas as transformações de página para o documento: %s, foram excluídas com " -"sucesso." +msgstr "Todas as transformações de página para o documento: %s, foram excluídas com sucesso." #: views.py:1044 msgid "Clear all the page transformations for the selected document?" @@ -923,11 +927,11 @@ msgstr "Imagem da página do documento" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1059,8 +1063,7 @@ msgstr "Imagem da página do documento" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1074,11 +1077,11 @@ msgstr "Imagem da página do documento" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1101,11 +1104,11 @@ msgstr "Imagem da página do documento" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1122,19 +1125,15 @@ msgstr "Imagem da página do documento" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document deleted" #~ msgstr "Document deleted" @@ -1191,11 +1190,11 @@ msgstr "Imagem da página do documento" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1219,11 +1218,11 @@ msgstr "Imagem da página do documento" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1244,11 +1243,9 @@ msgstr "Imagem da página do documento" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1278,11 +1275,11 @@ msgstr "Imagem da página do documento" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1339,17 +1336,15 @@ msgstr "Imagem da página do documento" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo index 1474b355e63ee9f9c09420f20956c1048781de95..40e9958a5aba8c5da11293e39475dd5f5b48bb9c 100644 GIT binary patch delta 1842 zcmYM!OKenC9LMo9rF5Y0X%*3Gxk}4RKsvU9)rzG>W2{XhwLX$2-cB#Wt?g}{he$wM ztZ`Aog4~d*EEI8}E(9DGqDE>`(}^1~EEE&*wGdW57AD4x-{0*ioXk0&bME7Ro_8*8 zcyIIM<+{@2hSWvAmE2ll%+uIYNZ!6 zHIPGi1I{2n^A-h*W!|^#)A$7KbND#@n;ND)fJ3-eH&6k8#2xr6@-q!gTQgrrp>`4# zxC1rAE+nSegIcjc)JkMgEBPiKz>~NE8!B0Uz0gfX9rjxHSf4_z$RKJ(p2s9k;X=%q z0J;BzK9yg6l!aZqE__OBo&S1BUHf8(Z#Q@AJ-FQ zFCIdz#BZqQD>-3pxC%9}9@InzQF}dR&7nFxXzw3GLYtGA#L17TXfJ-pS^OJyXl8gz z9i7Ex_!;VqoJT!BkNRr9L7n<5s1^7JIT}&Yb4nVZ&d0rKkk*s$j%w_G6O{+a>QrgV zBGIxwKwX1Sx@(cByv^1%Qw@s$tZ11vfThGZqBGTrH<6i_*+pijOgniid9%KMePZ{M zl{PM7?zB2q9U8ux==0R2o#b0oA+?e3A-AewllE3gXQzRDyBefs@^-R5Tb+kHx+%1b zjb!}`YHzfUY;&~iIuqLWZDj42mRf(+YsjWEmGZJ#Z@BP%X?02XQ&~sTgq!xVrh7b< zAM=8olRGfsU2nbMWwQQw5IXU<<3VbC*bma-7x5pK_qapeXkm86OR;T1er(9gm_EWd z88=9KQ8jD&GCtvkZCu-Kcbdb-@~hST`*h0nex^x$?Z-{YkNyeI9JhV zn>*T*$-DUkaYaN+>f8u&$K;zE`Uid-H zsb~Uj#tR><{dwi?oS)j~<>sdgn-cHDx_a|tZYDqKuowjMH3eLPkn__SulPpJyB6A0 eM@v_kR<>}dE)lDGBsCuR#S`<>x*cAvANe10*!9K$ delta 1379 zcmX}sOGs2v9LMo9<738g9?pzrnb~Msmd_c-DUB8tRFGJh2@ypTJ{S~P4)=dQ=bX9so^$@^=>7V|+VpZL zcgj$95#_{thcQQRI)@u&Dc6`*e2bkJ$TMayp2h<>gKqqSBlr_t*qguBKZIf07qA2` zVG-U!#!H(yDjqssqF!7=J@^Ur;BPEM7eD$ij9al13-AyIunRSjvlzlbWX@(B*W(0g zBGc%{IqYP7vp}Vq4nJ>4umywIjru@8YT!XE#!=M3S8Q+KaoTsV3;$pb9_FDf>PLO& zDJsj)Q47xH=3#sjphDJ68EWMb)Cv>G;>{@>#a^t%Wz+{;!NF{iUcg5w-jG;U3x@7{$vN z!Fg0hKA3pMa6D#Q8guQF90B>$Rm9UV!GV>e#Ie*A`7VHYP#6S;`3IEj4AJVtHN z3)@BHGVi#>@H;A#5oU88>rh+!1hsWv(^T}p57a6Bi#lv!PFfTzku5a!go<9O$=23x zdPft`sx(0rt+bA)P=lfjDBb#t-biRX6^@0`_}Lk&Ln~@hg`)ojn}}v2LZ~>220~k< zqSM`ytr@col__nLicWfCwnkQMMJd6WvV}vRG@I>)(o#(*ZB;}ip+l!^lo2WkLg`m# zv~Ai$cIbcEY1g*@?=dFxD9`V-Ubzxh*j-|^xvyHU-AkF-f-#5Zd~$f8&m2t-^jRkh zSFB^+Sx-wtEE+T(G{>#JC6#-i=bZJD_5pd&Nk?{Qk6i>h+EQ|GMO;9cuYa5*y{ Xy6y1smDF%bAA`(HanNBcl%)Ov;Rk^P 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 e61ee4dcf0..5da2aa68a3 100644 --- a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po @@ -1,24 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Stefaniu Criste , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -37,7 +36,7 @@ msgstr "" #: apps.py:106 models.py:66 models.py:159 models.py:625 search.py:20 msgid "Label" -msgstr "" +msgstr "Etichetă" #: apps.py:111 msgid "The MIME type of any of the versions of a document" @@ -49,11 +48,11 @@ msgstr "Tip MIME" #: apps.py:150 apps.py:174 msgid "Thumbnail" -msgstr "" +msgstr "Iconiță" #: apps.py:158 apps.py:184 msgid "Type" -msgstr "" +msgstr "Tip" #: apps.py:169 models.py:627 msgid "Enabled" @@ -69,21 +68,24 @@ msgstr "" #: apps.py:200 views.py:830 msgid "Encoding" -msgstr "" +msgstr "Encodare" #: apps.py:204 models.py:356 msgid "Comment" msgstr "Comentariu" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,10 +106,8 @@ msgid "Document created" msgstr "" #: events.py:12 -#, fuzzy -#| msgid "Document deleted" msgid "Document downloaded" -msgstr "Document deleted" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -118,18 +118,18 @@ msgid "Document type changed" msgstr "" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -193,9 +193,13 @@ msgid "Compress" msgstr "Comprimă" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -207,9 +211,7 @@ msgstr "Nume fişier comprimat" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Nume fișier comprimat, care va conține documentele ce urmează să fie " -"descărcate, în cazul în care această opțiunea a fost selectată anterior." +msgstr "Nume fișier comprimat, care va conține documentele ce urmează să fie descărcate, în cazul în care această opțiunea a fost selectată anterior." #: forms.py:217 literals.py:23 msgid "Page range" @@ -237,7 +239,7 @@ msgstr "" #: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:74 links.py:109 msgid "Move to trash" @@ -268,10 +270,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Download" msgid "Download version" -msgstr "Descarcă" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -289,11 +289,10 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Goliți reprezentările grafice folosite pentru a accelera afișarea " -"documentelor și rezultatele interactive de transformari." +msgstr "Goliți reprezentările grafice folosite pentru a accelera afișarea documentelor și rezultatele interactive de transformari." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -372,7 +371,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -390,10 +390,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -438,6 +440,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -451,7 +454,7 @@ msgstr "Fișier" #: models.py:444 models.py:445 models.py:646 msgid "Document version" -msgstr "" +msgstr "Versiune document" #: models.py:632 msgid "Quick label" @@ -459,7 +462,7 @@ msgstr "" #: models.py:650 msgid "Page number" -msgstr "" +msgstr "Numarul paginii" #: models.py:655 #, python-format @@ -472,13 +475,15 @@ msgstr "" #: models.py:672 msgid "Document pages" -msgstr "" +msgstr "Pagini document" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -488,7 +493,7 @@ msgstr "utilizator" #: models.py:799 msgid "Accessed" -msgstr "" +msgstr "Accesat" #: models.py:813 msgid "Recent document" @@ -503,6 +508,7 @@ msgid "Delete documents" msgstr "Şterge" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" @@ -523,10 +529,12 @@ msgid "Edit document properties" msgstr "Editează proprietăţile" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" -msgstr "" +msgstr "Tipărește documente" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -564,39 +572,29 @@ msgstr "Vezi tipuri de documente" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"Numărul maxim de documente (create, editate, vizualizate) reţinute per " -"utilizator." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Numărul maxim de documente (create, editate, vizualizate) reţinute per utilizator." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Suma în procente folosită pentru a mării sau micşora un document interactiv " -"cu utilizatorul." +msgstr "Suma în procente folosită pentru a mării sau micşora un document interactiv cu utilizatorul." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Suma maximă în procente (%), permisă utilizatorilor pentru mărirea " -"interactiv a unei pagini ." +msgstr "Suma maximă în procente (%), permisă utilizatorilor pentru mărirea interactiv a unei pagini ." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Suma minimă în procente (%), permisă utilizatorului pentru micșorarea " -"interactivă a unei pagini ." +msgstr "Suma minimă în procente (%), permisă utilizatorului pentru micșorarea interactivă a unei pagini ." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Ce rotaţie pentru pagină (în grade) este folosită în interacțiunea cu " -"utilizatorul." +msgstr "Ce rotaţie pentru pagină (în grade) este folosită în interacțiunea cu utilizatorul." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -607,6 +605,7 @@ msgid "List of supported document languages." msgstr "" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -615,6 +614,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -624,6 +624,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -642,6 +643,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -671,6 +673,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -680,6 +683,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -689,6 +693,7 @@ msgstr "" #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -704,8 +709,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -729,6 +733,7 @@ msgid "All later version after this one will be deleted too." msgstr "Toate versiune de dupa aceasta, vor fi şterse de asemenea." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -751,6 +756,7 @@ msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -775,6 +781,7 @@ msgstr[1] "" msgstr[2] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -817,8 +824,7 @@ msgstr "Eroare la ștergerea transformări : %(document)s; %(error)s." msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "" -"Toate paginile transformate pentru document: %s , au fost șterse cu succes." +msgstr "Toate paginile transformate pentru document: %s , au fost șterse cu succes." #: views.py:1044 msgid "Clear all the page transformations for the selected document?" @@ -838,7 +844,7 @@ msgstr "Sunteți deja la prima pagină a acestui document" #: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" -msgstr "" +msgstr "Tipărește: %s" #: widgets.py:71 #, python-format @@ -925,11 +931,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1062,8 +1068,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1077,11 +1082,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1104,11 +1109,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1125,19 +1130,18 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." + +#~ msgid "Document deleted" +#~ msgstr "Document deleted" #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1191,11 +1195,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1219,11 +1223,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1244,11 +1248,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1278,11 +1280,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1339,17 +1341,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.mo index 34bf891265e1a161772a1a3469d51aa15ebaf3f7..331d210e66f267ea39bd75a57ff5c58c454e9e8c 100644 GIT binary patch delta 1369 zcmX}sT}YEr9LMqF+-y#pn_0`!^{nj8GTodx7c4cgH#4yoMU)p|P+^1-Bn7)DNV^DX zb`eOCAwu0mE3gPg)J2fdAgBn6x~MKAh`LJp{vKC{{h!Zyp6$H-&w2KxaWb0vSnj-P zC>w|>;%9*|J8`;@3&rg+rU{F&8#iJbUcyeyp&J85#+*b8=in&n`54Z_37n4)(TA^) z@lxg!6%P;opc=ZlP&GbOg8-^Q9hP7M=i)Y8fqStSQ&@&0sDZCxIgXAJeFgCQuW&jTJbBn!wAvZ!yXJXY9phzTATsahaZ@ z`f;)97~>lc6=h&k-fkqTW*;g8eW;b5LS<$Qhwv7z!fMi@4m!Puq^E$qSu9Khvx9b51jR^tq6 zE2>DNCQ^@UG2tiwYH*AP{Kj0yN*u>HK1MbCjqA|EjXG#SwcCP=@Hi%L1l8_2)?p#b zSHEE##&&GS7Z^it1^KU~vYCx!yUZYJg=bJRyn>~eMeXr4p2au#6?d^e=P^#B9?YW7 zhA&`DD+X~T_Tdt|fSS-GY64R!D!o*Gpa$;Xh(5vn*oxJpLwkM@wa5L)SLP@-;5k$# z?qe6e#{yKg))Q)@3H&R3ZTF|Kv>=^7dxc7ur5g$_fW3PC1?WFPd#%EGu}?hNvkSXo z!h}+;ebx#i#8P54;UMY>j*VS3(WZPoh-5xx@1LIO4@fIgX`aQtYPEU`R9r;JuFal& zy%kZShR~};67BRaMwJ#KMl=%IUY#9|#{c58m&)y$%m-(sBlEqe!Rg#RbfP~UEV=86 z)LO)|N)!{lzHt+I-AqH^*ts8o5G delta 1338 zcmX}sPe>GD7{~EfU0wf{YuajQj_u~Z+?t(TS6wJ}Bf7Y(B4i!vP_mU^25LcMEs;T& zB9X}G)TJ(h!a|4WV4b=NMRm$UR@lu;cFOwxrmY9w`Mmo&@67u??=wD&evM>TYdjAO z(MM~feJLc4k`n^sGX*fWSGl%6{oQsH&G94COtBU+F=K3hlkL?6#5Iv zHJ;}8Lv}HNKQMcd&IRrs!4KGiaq{^DPvK77Lf&QSI1dXgv@wbMZ~|37^Vo!MQAe6Dv74PRI11HkPO*|61V*1}bp|ITkaE)A$&_VLj(DgTHYQXP8a)%zI4W z8n$83&v9T1wV*N70U?_&tvWs9h^G zM>X;!5=^>vf}#>%n}#J1?9wWW@cPG*(Qr)FG5k?L0!$=d+il)G6(% z1w{`nMssL7SJez9^FMm?z0TY(PeWm@$=l(X>#taJA|WSig=6t(G-O9@yL@mUG?ckA oIyri2JaqKTR3>gYb~qNY-TRzy-0sVDRr-o^DPK+LT&CgmAD4G@=2 && n" -"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" -"%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -54,7 +51,7 @@ msgstr "" #: apps.py:158 apps.py:184 msgid "Type" -msgstr "" +msgstr "Тип" #: apps.py:169 models.py:627 msgid "Enabled" @@ -77,14 +74,17 @@ msgid "Comment" msgstr "Комментарий" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -105,10 +105,8 @@ msgid "Document created" msgstr "" #: events.py:12 -#, fuzzy -#| msgid "Document deleted" msgid "Document downloaded" -msgstr "Document deleted" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -119,18 +117,18 @@ msgid "Document type changed" msgstr "" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -194,9 +192,13 @@ msgid "Compress" msgstr "Сжать" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -208,9 +210,7 @@ msgstr "Имя сжатого файла" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Имя файла сжатого файла, который будет содержать загружаемые документы, если " -"выбран предыдущий параметр." +msgstr "Имя файла сжатого файла, который будет содержать загружаемые документы, если выбран предыдущий параметр." #: forms.py:217 literals.py:23 msgid "Page range" @@ -238,7 +238,7 @@ msgstr "" #: links.py:69 links.py:113 links.py:238 links.py:252 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:74 links.py:109 msgid "Move to trash" @@ -269,10 +269,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Download" msgid "Download version" -msgstr "Скачать" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -290,11 +288,10 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Очистить графику для ускорения отображения документов и интерактивных " -"преобразований." +msgstr "Очистить графику для ускорения отображения документов и интерактивных преобразований." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -373,7 +370,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -391,10 +389,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -439,6 +439,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -476,10 +477,12 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -504,6 +507,7 @@ msgid "Delete documents" msgstr "Удаление документов" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" @@ -524,10 +528,12 @@ msgid "Edit document properties" msgstr "Редактирование свойств документа" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -565,11 +571,9 @@ msgstr "Просмотр типов документов" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"Максимальное количество последних (созданных, измененных, просмотренных) " -"документов, запоминаемых для каждого пользователя." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Максимальное количество последних (созданных, измененных, просмотренных) документов, запоминаемых для каждого пользователя." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." @@ -600,6 +604,7 @@ msgid "List of supported document languages." msgstr "" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -608,6 +613,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -617,6 +623,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -635,6 +642,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -664,6 +672,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -673,6 +682,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -682,6 +692,7 @@ msgstr "" #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -697,8 +708,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -722,6 +732,7 @@ msgid "All later version after this one will be deleted too." msgstr "Все более поздние версии после этого будут удалены" #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -744,6 +755,7 @@ msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -769,6 +781,7 @@ msgstr[2] "" msgstr[3] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -805,9 +818,7 @@ msgstr[3] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Ошибка при удалении страницы для преобразования документов: %(document)s; " -"%(error)s." +msgstr "Ошибка при удалении страницы для преобразования документов: %(document)s; %(error)s." #: views.py:1032 #, python-format @@ -922,11 +933,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1060,8 +1071,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1075,11 +1085,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1102,11 +1112,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1123,19 +1133,18 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." + +#~ msgid "Document deleted" +#~ msgstr "Document deleted" #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1189,11 +1198,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1217,11 +1226,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1242,11 +1251,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1276,11 +1283,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1337,17 +1344,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.mo index 69c1fed9e92790f9c5a57e9eb8b5c0c7c60725f0..06624680046b0be25afabf12aaa99405911814fb 100644 GIT binary patch delta 63 zcmeya_FZj*2Dg!ku93Ndp^25Dp{{|6fdN;5ziv=!S!Qu&ex9yNVo9o%f{}rt8Bh+a O&ce#bXmb>|EC&ES?hvW~ delta 63 zcmeya_FZj*2Dg#1u92aFp_!G5iLQZ(fdN;5ziv=!S!Qu&ex9yNVo9o%f{}rtnXUm? PosprHf#v2XZdnchK8O&b 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 3b6d87ec60..d85bb1ea3a 100644 --- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-27 14:12-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"POT-Creation-Date: 2016-04-27 14:11-0400\n" +"PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: apps.py:82 apps.py:162 apps.py:383 models.py:230 permissions.py:7 #: settings.py:17 @@ -76,14 +74,17 @@ msgid "Comment" msgstr "Komentar" #: apps.py:386 +#| msgid "New document filename" msgid "New documents per month" msgstr "" #: apps.py:393 +#| msgid "Document version reverted successfully" msgid "New document versions per month" msgstr "" #: apps.py:400 +#| msgid "View document types" msgid "New document pages per month" msgstr "" @@ -104,10 +105,8 @@ msgid "Document created" msgstr "" #: events.py:12 -#, fuzzy -#| msgid "Document deleted" msgid "Document downloaded" -msgstr "Document deleted" +msgstr "" #: events.py:15 msgid "Document properties edited" @@ -118,18 +117,18 @@ msgid "Document type changed" msgstr "" #: events.py:21 +#| msgid "Version update" msgid "New version uploaded" msgstr "" #: events.py:25 +#| msgid "Document version reverted successfully" msgid "Document version reverted" msgstr "" #: events.py:29 -#, fuzzy -#| msgid "Document preview" msgid "Document viewed" -msgstr "Document edited" +msgstr "" #: forms.py:41 links.py:205 msgid "Page image" @@ -193,9 +192,13 @@ msgid "Compress" msgstr "Stisni" #: forms.py:190 +#| msgid "" +#| "ad the document in the original format or in a compressed manner. s ion is " +#| "selectable only when downloading one document, for tiple uments, the bundle " +#| "will always be downloads as a compressed e." msgid "" -"Download the document in the original format or in a compressed manner. This " -"option is selectable only when downloading one document, for multiple " +"Download the document in the original format or in a compressed manner. This" +" option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." msgstr "" @@ -207,9 +210,7 @@ msgstr "Ime stisnjene datoteke" msgid "" "The filename of the compressed file that will contain the documents to be " "downloaded, if the previous option is selected." -msgstr "" -"Ime skrčene datotteke, ki do vsebovala datoteke za prenos, če je bila " -"prejšnja opcija izbrana." +msgstr "Ime skrčene datotteke, ki do vsebovala datoteke za prenos, če je bila prejšnja opcija izbrana." #: forms.py:217 literals.py:23 msgid "Page range" @@ -268,10 +269,8 @@ msgid "Restore" msgstr "" #: links.py:132 -#, fuzzy -#| msgid "Download" msgid "Download version" -msgstr "Prenos" +msgstr "" #: links.py:137 views.py:82 msgid "All documents" @@ -289,11 +288,10 @@ msgstr "" msgid "" "Clear the graphics representations used to speed up the documents' display " "and interactive transformations results." -msgstr "" -"Počistite grafične predstavitve, ki se uporabljajo za pospešitev prikaza " -"dokumentov in rezultatov interaktivnih transformacij." +msgstr "Počistite grafične predstavitve, ki se uporabljajo za pospešitev prikaza dokumentov in rezultatov interaktivnih transformacij." #: links.py:155 +#| msgid "Clear the document image cache" msgid "Clear document image cache" msgstr "" @@ -372,7 +370,8 @@ msgstr "" #: models.py:70 msgid "" -"Amount of time after which documents of this type will be moved to the trash." +"Amount of time after which documents of this type will be moved to the " +"trash." msgstr "" #: models.py:72 @@ -390,10 +389,12 @@ msgid "" msgstr "" #: models.py:82 +#| msgid "Delete document types" msgid "Delete time period" msgstr "" #: models.py:87 +#| msgid "Delete documents" msgid "Delete time unit" msgstr "" @@ -438,6 +439,7 @@ msgstr "" #: models.py:192 #, python-format +#| msgid "Document types: %d" msgid "Document stub, id: %d" msgstr "" @@ -475,10 +477,12 @@ msgid "Document pages" msgstr "" #: models.py:782 +#| msgid "Version update" msgid "New version block" msgstr "" #: models.py:783 +#| msgid "Version update" msgid "New version blocks" msgstr "" @@ -503,6 +507,7 @@ msgid "Delete documents" msgstr "Izbiši dokumente" #: permissions.py:16 +#| msgid "Transform documents" msgid "Trash documents" msgstr "" @@ -523,10 +528,12 @@ msgid "Edit document properties" msgstr "Uredi lastnosti dokumenta" #: permissions.py:31 +#| msgid "Edit documents" msgid "Print documents" msgstr "" #: permissions.py:34 +#| msgid "Delete documents" msgid "Restore deleted document" msgstr "" @@ -564,38 +571,29 @@ msgstr "Poglej tip dokumenta" #: settings.py:37 msgid "" -"Maximum number of recent (created, edited, viewed) documents to remember per " -"user." -msgstr "" -"Največje število zadnjih (kreiranih, urejenih, pogledanih) dokumentov za " -"prikaz po uporabniku." +"Maximum number of recent (created, edited, viewed) documents to remember per" +" user." +msgstr "Največje število zadnjih (kreiranih, urejenih, pogledanih) dokumentov za prikaz po uporabniku." #: settings.py:44 msgid "Amount in percent zoom in or out a document page per user interaction." -msgstr "" -"Znesek v procentih za približane oziroma oddaljene strani na dokument v " -"uporabniškem vmesniku." +msgstr "Znesek v procentih za približane oziroma oddaljene strani na dokument v uporabniškem vmesniku." #: settings.py:51 msgid "" "Maximum amount in percent (%) to allow user to zoom in a document page " "interactively." -msgstr "" -"Največji znesek v procentih (%), ki je dovoljen uporabniku za približevanje " -"strani v dokumentu." +msgstr "Največji znesek v procentih (%), ki je dovoljen uporabniku za približevanje strani v dokumentu." #: settings.py:58 msgid "" "Minimum amount in percent (%) to allow user to zoom out a document page " "interactively." -msgstr "" -"Naamanjši znesek v procentih (%), ki je dovoljen uporabniku za približevanje " -"strani v dokumentu." +msgstr "Naamanjši znesek v procentih (%), ki je dovoljen uporabniku za približevanje strani v dokumentu." #: settings.py:65 msgid "Amount in degrees to rotate a document page per user interaction." -msgstr "" -"Število v stopinjah za rotiranje strani dokumenta ob uporabniški interakciji." +msgstr "Število v stopinjah za rotiranje strani dokumenta ob uporabniški interakciji." #: settings.py:74 msgid "Default documents language (in ISO639-2 format)." @@ -606,6 +604,7 @@ msgid "List of supported document languages." msgstr "" #: views.py:68 +#| msgid "Clear the document image cache" msgid "Clear the document image cache?" msgstr "" @@ -614,6 +613,7 @@ msgid "Document cache clearing queued successfully." msgstr "" #: views.py:100 +#| msgid "Documents in storage: %d" msgid "Documents in trash" msgstr "" @@ -623,6 +623,7 @@ msgstr "" #: views.py:145 #, python-format +#| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." msgstr "" @@ -641,6 +642,7 @@ msgstr "" #: views.py:216 #, python-format +#| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." msgstr "" @@ -670,6 +672,7 @@ msgstr "" #: views.py:365 #, python-format +#| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." msgstr "" @@ -679,6 +682,7 @@ msgstr "" #: views.py:393 #, python-format +#| msgid "documents of type \"%s\"" msgid "Documents of type: %s" msgstr "" @@ -688,6 +692,7 @@ msgstr "" #: views.py:432 #, python-format +#| msgid "Delete document types" msgid "Delete the document type: %s?" msgstr "" @@ -703,8 +708,7 @@ msgstr "" #: views.py:499 #, python-format -msgid "" -"Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" +msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" msgstr "" #: views.py:524 @@ -728,6 +732,7 @@ msgid "All later version after this one will be deleted too." msgstr "Vse prejšnje verzije bodo tudi izbrisane." #: views.py:600 +#| msgid "Revert documents to a previous version" msgid "Revert to this version?" msgstr "" @@ -750,6 +755,7 @@ msgid "Empty trash?" msgstr "" #: views.py:650 +#| msgid "Document deleted successfully." msgid "Trash emptied successfully" msgstr "" @@ -775,6 +781,7 @@ msgstr[2] "" msgstr[3] "" #: views.py:799 +#| msgid "Must provide at least one document." msgid "Must provide at least one document or version." msgstr "" @@ -811,8 +818,7 @@ msgstr[3] "" msgid "" "Error deleting the page transformations for document: %(document)s; " "%(error)s." -msgstr "" -"Napaka v izbrisu preoblikovanj strani za dokument: %(document)s; %(error)s." +msgstr "Napaka v izbrisu preoblikovanj strani za dokument: %(document)s; %(error)s." #: views.py:1032 #, python-format @@ -927,11 +933,11 @@ msgstr "" #~ msgstr "Create documents" #~ msgid "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgstr "" -#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), " -#~ "%(bytes)d bytes" +#~ "Space used in storage: %(base_2)s (base 2), %(base_10)s (base 10), %(bytes)d" +#~ " bytes" #~ msgid "Time added" #~ msgstr "Time added" @@ -1065,8 +1071,7 @@ msgstr "" #~ msgid "Document page transformation created successfully." #~ msgstr "Document page transformation created successfully." -#~ msgid "" -#~ "Create new transformation for page: %(page)s of document: %(document)s" +#~ msgid "Create new transformation for page: %(page)s of document: %(document)s" #~ msgstr "" #~ "Create new transformation for page: %(page)s of document: %(document)s" @@ -1080,11 +1085,11 @@ msgstr "" #~ msgstr "Document page transformation deleted successfully." #~ msgid "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgstr "" -#~ "Are you sure you wish to delete transformation \"%(transformation)s\" " -#~ "for: %(document_page)s" +#~ "Are you sure you wish to delete transformation \"%(transformation)s\" for: " +#~ "%(document_page)s" #~ msgid "Document properties" #~ msgstr "Edit document properties" @@ -1107,11 +1112,11 @@ msgstr "" #~ "(%d)?" #~ msgid "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgstr "" -#~ "Are you sure you wish to clear all the page transformations for " -#~ "documents: %s?" +#~ "Are you sure you wish to clear all the page transformations for documents: " +#~ "%s?" #~ msgid "Document edited" #~ msgstr "Document edited" @@ -1128,19 +1133,18 @@ msgstr "" #~ msgid "Document \"%(content_object)s\" created by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" created by %(fullname)s." -#~ msgid "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgid "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." #~ msgid "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgstr "Document \"%(content_object)s\" edited by %(fullname)s." #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s." -#~ msgstr "" -#~ "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ msgstr "Document \"%(content_object)s\" created on %(datetime)s by %(fullname)s." + +#~ msgid "Document deleted" +#~ msgstr "Document deleted" #~ msgid "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." #~ msgstr "Document \"%(document)s\" deleted on %(datetime)s by %(fullname)s." @@ -1194,11 +1198,11 @@ msgstr "" #~ msgstr "Click on the image for full size preview" #~ msgid "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgstr "" -#~ "Document \"%(content_object)s\" was edited on %(datetime)s by " -#~ "%(fullname)s. The following changes took place: %(changes)s." +#~ "Document \"%(content_object)s\" was edited on %(datetime)s by %(fullname)s." +#~ " The following changes took place: %(changes)s." #~ msgid "document" #~ msgstr "document" @@ -1222,11 +1226,11 @@ msgstr "" #~ "documents in the database." #~ msgid "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgstr "" -#~ "Page count update complete. Documents processed: %(total)d, documents " -#~ "with changed page count: %(change)d" +#~ "Page count update complete. Documents processed: %(total)d, documents with " +#~ "changed page count: %(change)d" #~ msgid "Error clearing document image cache; %s" #~ msgstr "Error clearing document image cache; %s" @@ -1247,11 +1251,9 @@ msgstr "" #~ msgstr "find all duplicates" #~ msgid "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgstr "" -#~ "Search all the documents' checksums and return a list of the exact " -#~ "matches." +#~ "Search all the documents' checksums and return a list of the exact matches." #~ msgid "Document type list" #~ msgstr "document type list" @@ -1281,11 +1283,11 @@ msgstr "" #~ msgstr "duplicated documents" #~ msgid "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgstr "" -#~ "The document type of all documents using this document type will be set " -#~ "to none." +#~ "The document type of all documents using this document type will be set to " +#~ "none." #~ msgid "details" #~ msgstr "details" @@ -1342,17 +1344,15 @@ msgstr "" #~ msgstr "What are document types?" #~ msgid "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgstr "" -#~ "Document types define a class that represents a broard group of " -#~ "documents, such as: invoices, regulations or manuals. The advantage of " -#~ "using document types are: assigning a list of typical filenames for quick " -#~ "renaming during creation, as well as assigning default metadata types and " -#~ "sets to it." +#~ "Document types define a class that represents a broard group of documents, " +#~ "such as: invoices, regulations or manuals. The advantage of using document " +#~ "types are: assigning a list of typical filenames for quick renaming during " +#~ "creation, as well as assigning default metadata types and sets to it." #~ msgid "What are recent documents?" #~ msgstr "What are recent documents?" diff --git a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.mo index 9f16cc510bee019ed61474d70f32a64cbeaf4591..b77ebd3e5cabc7db414b84bf1028592312df7555 100644 GIT binary patch delta 38 ocmZ1?zC?UO85@_0u93Ndp^25D;p7H3IVjh{%E)N*3bsEi0K?G=D*ylh delta 38 pcmZ1?zC?UO85@_eu92aFp_!G5$>at$ISALt(8|Da^9r^8VxekC diff --git a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.mo index 3a183459af76e133c50dff6c4be47f4d1f7089a3..7a6865cb814fda56f663e8ac8fb58b8588fc696c 100644 GIT binary patch delta 44 zcmZqTXyVu~gOSTb*T`JK(8S8nX!0V)B|JWfdFiEz>8Vx;_*q$OD|1KPqk7=O5ePODU1;SFAfdt diff --git a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.mo index 95d40d077241fb9485359f13c0c4765c92788d79..69c179c3ab02054e8abf99d9a8f9999be2eeb8cc 100644 GIT binary patch delta 47 zcmey({+oTn3`Q;!T_bY^LlY}QqsfaH_woBA=B1Y=rl(pdBo)UyIZlpeir##R$&e8M DdVvpo delta 46 zcmey({+oTn493X^7+F~j&8$pJCNE;#H@Sc*ir*(OFTFG|J=IDfsW{%raq~$gBSrv< CTMzvJ diff --git a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.mo index 34a52a7b8f1e28d3cfd41299a4034b554eeb1e0f..46c9b63a95aeb8ed2414e9dd57bae911de75bd2e 100644 GIT binary patch delta 41 xcmaFG{EB(PQZ5r+BXb2q6DvcbiR%~g_$20~mnNpCS}CL?PWESvp1hsW7yu}74e|g0 delta 41 xcmaFG{EB(PQZ8d%BSQs4Gb2XxK8e2j^6y8IfxMe Dcij)~ delta 47 zcmX@fb&_ktVJ0qPT_ZyULo+KAlgVe94osfQ9L4XGn3rCfn4W5-kdhkj;=1`8b1)+S Dd=U@- diff --git a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.mo index 9e8d42aa175297570a107853e328dd646820e4fa..36129e64f5ed51989c17c5879cb3f643c8f4157e 100644 GIT binary patch delta 23 ecmX@lcAjlRGb5LYu93Ndp^25D(dJ&pLyQ1c>IT^W delta 23 ecmX@lcAjlRGb5L=u92aFp_!G5$>v_hLyQ1c#s=8{ diff --git a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.mo index 8208137b6e54ad38b6a3b1661d06f1cda776c2a2..fd081018a1afa50e666e4854f108d8e402cad2d7 100644 GIT binary patch delta 44 zcmcb|b&qSqVJ0pUT_bY^LlY}QqseEP7V-Eb=B1Y=rl(pdq!v%kV~*Z@jk$vn08Z8q A761SM delta 44 zcmcb|b&qSqVJ0qPT_ZyULo+KAlgVe97EP{Uj^go2%u6p#Oi#5^NG;xcmAR7<08kDO ABLDyZ diff --git a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.mo index 7b5e70bf859cdbf474dfe61cc7aac1a390e41ac5..830ea55d4c25ce71c7836a2b35dfe1e0c2d9cdb1 100644 GIT binary patch delta 44 zcmaFK^^$AD5+*JaT_bY^LlY}Qqsi--7V-Eb=B1Y=rl(pdq$N)FXO7;yop}=@07(B1 A$p8QV delta 44 zcmaFK^^$AD5+*KVT_ZyULo+KAlgaCt7EO+2j^go2%u6p#Oi#5^NK4$jjd?R807&Q# A)&Kwi diff --git a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.mo index 87c952794c396481add9a5bdce86c1ea07dbcd7b..6cada8971f51e1bf2c51ce4302f082d510c32f46 100644 GIT binary patch delta 44 zcmZqVZsgu@n2F0o*T`JK(8S8nX!2R6!#qBTdFiEz>8Vxmgx@wA#M&- delta 42 ycmZ3=L+4W$48 diff --git a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.mo index 4626000b94626467860e262c037fcfeca8d9494a..d40a82db6f0bb280baa4c3d488cfe5eab3e8c91d 100644 GIT binary patch delta 46 zcmey(_M2_P3`Q;!T_bY^LlY}QqsfaHH}d-==B1Y=rl(pdFz072~! AIsgCw delta 44 zcmZ3%y@GqgVJ0qPT_ZyULo+KAlgVe94o#lJ9L3|4n3rCfn4W5-P>{3vEAwVX07SJ9 AM*si- 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 19c3bed3d97215edbc541b4a80afa296ddf677e4..272977ee66a6bd616d2d378f11d7f6e00311f6e7 100644 GIT binary patch delta 43 zcmdnOzJ-0m4n{5$T_bY^LlY}QqsfODm-6@|=B1Y=rl(pd6qHO(V~U=9j_DZyE?W-X delta 41 xcmdnOzJ-0m4#vq37+F~j&8$pJCLdy4I=O@?irXhKFTFG|J=IE~VDcHJ7XUF-4+j7M diff --git a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.mo index dc8119b4b47d7cdfe0932c6e0efd81facaf31280..d5f8072cc92724f3280d03f60c70a9452ea92e95 100644 GIT binary patch delta 47 zcmZ3%wSsHI5+*JaT_bY^LlY}Qqsi--HuC!<=B1Y=rl(pd6qLj}1x=1)j^2EdIi3*! DVag9T delta 47 zcmZ3%wSsHI5+*KVT_ZyULo+KAlgaCtHcrlGj^g)8%u6p#Oi#5^C@6_{3fg>vIe`%X DVulY# diff --git a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.mo index f127633595331967fe203454a3208c95423943b0..d3041c340f699c80457b73dfb3f12c258d15279c 100644 GIT binary patch delta 47 zcmdnTzK?yw3`Q;!T_bY^LlY}QqsfaHH}Lx;=B1Y=rl(pd6y?VU`A-gHir&13iHQ*a DWD5?{ delta 46 zcmdnTzK?yw493X^7+F~j&8$pJCNE;#Fgb}Sir*(OFTFG|J=IE~C_g^PfAel8W<~&V C*AG+x diff --git a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.mo index e647b6e6722ed836575c1ffec48711e6608e6884..bf124f6aea07e0d77312b83a4b508ecc863e94ef 100644 GIT binary patch delta 44 zcmaFD`Gj-B3`Q;!T_bY^LlY}QqsfaH7xDNc=B1Y=rl(pd6qQbPW{Tdtn#qz007HNd AF#rGn delta 43 zcmaFD`Gj-B493X^7+F~j&8$pJCNE-KG&ztdipM80FTFG|J=IE~sC4rxCMzZYPqhxO diff --git a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.mo index dcefb90a87f4ce09a0fec48d01191154109f2ae9..220e1cbe5f21b1aa52c92e6fcd7f6b23e44181b4 100644 GIT binary patch delta 21 ccmeBU>0_DD!DXUrWUgRnVr6KwaZ(K<06`lC^8f$< delta 21 ccmeBU>0_DD!DXy#WT;?hW@TcsaZ(K<06_Nz^8f$< diff --git a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.mo index 7a207f8a02bb347e6ed9d923348ac8b233367102..58cd22d7e028b3dc766e593b60c673e9de80571f 100644 GIT binary patch delta 46 zcmaFO`kHlv79*F5u93Ndp^25D(PR_G&HO%zdFiEz>8Vxyir*(OFTFG|J=IE~DkI+6Z}JYNc>rpl B599y< diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/events/locale/ar/LC_MESSAGES/django.mo index ff24ad2f0d1f2346a7c3b6d7063917a329784a43..20245ca622e49498f4ccd4c6916ef96d3b2832b9 100644 GIT binary patch delta 41 xcmaFM@|I=70WK3=BXb2q6DvcbiKkZc_$20~mnNpCS}7zJO)g=Ko_vRKA^|7407OR* AXaE2J diff --git a/mayan/apps/events/locale/da/LC_MESSAGES/django.mo b/mayan/apps/events/locale/da/LC_MESSAGES/django.mo index 4212a5d75f2b1e05622c4a8232cb25ff1d194214..775cdf5071ca535f75b0f005dbad4c26ed98af5c 100644 GIT binary patch delta 41 xcmbQkGKXct0WK3=BXb2q6DvcbiKkZc_$20~mnNpCS}CL?PA*}Lo_vSV0RR~D4etN| delta 41 xcmbQkGKXct0WM=*BSQs4Gb8Vx2XxK0jd{s;g^ Ct`7MC diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.mo b/mayan/apps/events/locale/en/LC_MESSAGES/django.mo index 5aa7081ec4aafab0473994e66ad59e1342289b2f..e440cd458fffd1adff511ca1d7081c09101b4469 100644 GIT binary patch delta 20 bcmeyx^owaiFPDj~k-37QiIt(z#OaR#OGF13 delta 20 bcmeyx^owaiFPE{dk)eX2nU#sj#OaR#OCSdq diff --git a/mayan/apps/events/locale/es/LC_MESSAGES/django.mo b/mayan/apps/events/locale/es/LC_MESSAGES/django.mo index 7a545ff63d9578a945f497268084d932aee2de73..bbdbaf5d69aee23b9ea9fe46ba87a48bd1b04958 100644 GIT binary patch delta 43 zcmZ3*v5I4Z3KN%!u93Ndp^25D(PTZQMLa%8Vx8Vx8Vx+E&u=k delta 21 ccmX@he3p4a2bZy~k)eX2nU#sj#!1$U07@qYE&u=k diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.mo b/mayan/apps/events/locale/it/LC_MESSAGES/django.mo index eea2c7a08ba10fa6d5d336a6b78be3bbadd27f0f..9abc76feb44fd8d51598a339e82f017570ee2a32 100644 GIT binary patch delta 42 ycmaFL@|0!5Pc9Q(BXb2q6Dvcb$;^yvczhD`(n}N5Q>_#-OD3;ljGipUfd$XvnD#LCcU;`-hEK8bnhrHSdORtkAJ@qRv&GZ~{NUtu%^05>TP AiU0rr delta 44 zcmZo=X=RzPl*?Gx$WX!1%*w=M;`-f_s~DsBeG>E1OB2&mtrYTd;{ALkUuHA{0629H Ang9R* diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/events/locale/pl/LC_MESSAGES/django.mo index 99bac955165df507bbcc64f26e53805b79c1c3e4..fded7dcf6d918f0d982c0341f3b21b964c60fdda 100644 GIT binary patch delta 44 zcmcb|agSqz3KN%!u93Ndp^25D(PTZQg*-lqdFiEz>8Vx<1v!(?F-31SW7c2<0475X AHUIzs delta 44 zcmcb|agSqz3KN&Hu92aFp_!G5$z(mIg_G|vMe+C~=B1Y=rl(pd6y$6+W!7W_04zQY ALjV8( diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/events/locale/pt/LC_MESSAGES/django.mo index 88ac37510f80608d41681d13ca1cb05998c190c9..ff845beb2c5330ebeeaeedbf93f71c99cf2dfe0c 100644 GIT binary patch delta 43 zcmZqYXy@3##l&TzYhdFiEz>8Vx<1(P+H?*jnuSqy#v diff --git a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.mo index d25bc11aca7b136dbd7814df1f07b2f848649fea..bda3c3f816ed94f05383173c4f6d9e0d7bd25363 100644 GIT binary patch delta 46 zcmdnMv4LZQ3KN%!u93Ndp^25D(PTZQjr=}|dFiEz>8Vx<1tsxLL6h$>MNjr*ehvUM CwGOEO delta 46 zcmdnMv4LZQ3KN&Hu92aFp_!G5$z(mIjg#LqMe+M2=B1Y=rl(pd6qLj}1x@x~egObI CQ4YBP diff --git a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.mo index b8e2e8b9e6964956b9f353da2124e469ef17ccee..28b02898f15b848daa00e635d9e49e6c7b387f6a 100644 GIT binary patch delta 44 zcmcb{a*bue0WK3=BXb2q6DvcbiKlk)`y}S2mnNpCS}7Fe#|QaOZf1<0{EjgL09yAC A+5i9m delta 44 zcmcb{a*bue0WM=*BSQs4GbHq)$ diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/events/locale/ru/LC_MESSAGES/django.mo index 43dce4c222b51dc204159da49653390a9947d40c..119734728a5927b8e71cbe2cf04ead9eb8452f9d 100644 GIT binary patch delta 41 xcmdnMx`B1V0WK3=BXb2q6DvcbiKo`^_$20~mnNpCS}7EjPA+APo_v?_G5{fT4$%Mr delta 41 xcmdnMx`B1V0WM=*BSQs4Gb?~|C9UYeMmYNb$?86W01`2(XJ08p?G Ac>n+a diff --git a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.mo index c256d67e5056bd203c7d204baeedce593bf49eae..fce9ae55f5f21fa2701aa456c69bc8b7f8bc5f82 100644 GIT binary patch delta 44 zcmZ3&vV>*A0WK3=BXb2q6DvcbiKn*n`y}S2mnNpCS}9az#5?;1c07(cB AF8}}l delta 44 zcmZ3&vV>*A0WM=*BSQs4Gb5%26b`4yuT087XZ AKL7v# diff --git a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.mo index 38b88bd856b6a3c14224509d50108028c432391b..df078c7d4af9cefee618db5cbcafb5a98eab9ea4 100644 GIT binary patch delta 44 zcmdnTvyW%PaV9PkT_bY^LlY}QqsbSU7V`Kc=B1Y=rl(pdBo<9BWRBi^lR1?M07Xy^ AzyJUM delta 43 zcmdnTvyW%Pai+=dnOIp3&8$pJCSPP)IJurVipM80FTFG|J=IDfv1s!R<}@Y%THOzB diff --git a/mayan/apps/folders/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/bg/LC_MESSAGES/django.mo index 25f6106c44fd9c68c8e58d1bcd42bda635f31217..0218184b55ff8de86a5be9f209eac8d3c26a9cc4 100644 GIT binary patch delta 44 zcmcb}bCGAmaV9PkT_bY^LlY}QqsbSUmhku_=B1Y=rl(pdB&AO-VUFH>hq;sq087{o A^#A|> delta 43 zcmcb}bCGAmai+=dnOIp3&8$pJCSPP)GP#L4ipM80FTFG|J=IDfDSh*8<}xM#VU7=@ diff --git a/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.mo index a8cb3771f2d1cf377a91f9a63790b3e4c0efbcd6..4483fa40d2f4f698d8bc12cba29cf59913178d88 100644 GIT binary patch delta 47 zcmX@WeSmwzaV9PkT_bY^LlY}QqsbSU_VN29=B1Y=rl(pdBo)UyIZp0lj^6x}`8Xp0 DcRdhf delta 46 zcmX@WeSmwzai+=dnOIp3&8$pJCSPRQH+epD6u(bmUV3R_da9K|QgOVKd CbP*K* diff --git a/mayan/apps/folders/locale/da/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/da/LC_MESSAGES/django.mo index 26ff8d9f64c6c78bed42059bc12d9e760d99f716..72469f7e787d5771e71cdbf3d6258af68a148da2 100644 GIT binary patch delta 44 zcmZ3-wT^4UCMGTuT_bY^LlY}Qqse=i7V`Kc=B1Y=rl(pdq$Ey`VUFH>ggJ{5062^e AJ^%m! delta 44 zcmZ3-wT^4UCMGUpT_ZyULo+KAlgWFS7EaD$j^go2%u6p#Oi#5^NJ-p$m^qsf068WO AO8@`> diff --git a/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.mo index da3d7addfd8d00c0a0da8fd190a5bdaf829eeca6..ae05120aa99628b50e61ddc1f38d6f4235df2dd2 100644 GIT binary patch delta 47 zcmdlazDaz;A~r4)T_bY^LlY}QqseR7*75r!=B1Y=rl(pdq@>2XxK55_kKTNQ{T(v^ DXvE+^-KUv!v-$^ diff --git a/mayan/apps/folders/locale/es/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/es/LC_MESSAGES/django.mo index 49e11618c37bebf997440988cc078570ce311296..7c6b6cfc649ad7926a9265db40cdaed1d833bf6f 100644 GIT binary patch delta 44 zcmX>gazJFm3|1}^T_bY^LlY}Qqsfa{7xDNc=B1Y=rl(pdq!v$hW{cjunr$jG06aPl AT>t<8 delta 43 zcmX>gazJFm4A#j9SXo&O&8$pJCNE-LG&zthipM80FTFG|J=IDfwRrO?wrR`&NtF)Y diff --git a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/fa/LC_MESSAGES/django.mo index 8d60ca44791f07f50298ff666be2181c4c0f5fd4..e590598b7695a81c58cbdc1b27e1fa6f0f9e2cfe 100644 GIT binary patch delta 44 zcmZn^Y82YAnT5+l*T`JK(8S8nX!2f`MLa%8VxlaY|ytA~r4)T_bY^LlY}QqseR77V`Kc=B1Y=rl(pdq!mr}VUOOtg?$laY|ytA~r5#T_ZyULo+KAlgVq?7EX?0kK*x3%u6p#Oi#5^NGsaBnSDA707JPB Au>b%7 diff --git a/mayan/apps/folders/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/hu/LC_MESSAGES/django.mo index e138efcf763f7fc1bf5a5bfd7416255848f5e670..ebba0447b1960f510dd4655a97f4766699fedca6 100644 GIT binary patch delta 44 zcmeyt^@D4}CMGTuT_bY^LlY}Qqse=imhku_=B1Y=rl(pdWRy;hXO7-{oOvT708>*B AIsgCw delta 44 zcmeyt^@D4}CMGUpT_ZyULo+KAlgWFSmQ2oNj^go2%u6p#Oi#5^$SB=>jCm6y08_LN AM*si- diff --git a/mayan/apps/folders/locale/id/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/id/LC_MESSAGES/django.mo index fb85a1f55e3dd59150c0e28179720a28a3c56237..45e85a91e94b2642e0166ec4306230907c12f09a 100644 GIT binary patch delta 43 zcmX@adWdy{EF+hRu93Ndp^25D(PVYTr93`~dFiEz>8VxA0{pnT_bY^LlY}QqseT{i+Fqz^U_Nb(^IV!GD{{eXO7;?&$6Ep06ujN A8UO$Q delta 42 ycmX@deU5v>A0{qiT_ZyULo+KAlgVt%izaVnj^gr3%u6p#Oi#5^*v!Lnh!FrKI}Jzx diff --git a/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.mo index dbf7722162b36cbd57235f66f4056221c5fbcd79..b90b76719cbd00a97f1ad06ddd5cacc0f0cb0d04 100644 GIT binary patch delta 46 zcmcb`c8hI81tXV8Vx@uejI6ANW>zL9lbaYfPIhLB;`d3+OD|1KPqk9W%Zc~%nLLMS9{^mK B4|xCp diff --git a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.mo index 1dd6f0808a8855b507e0518f2e5ffe4a28a60224..6fe75fa312d181a294d23e1bfceb399547dea714 100644 GIT binary patch delta 44 zcmeAc?-t*X$;M@(Yh;fzR9K#I0 delta 44 zcmeAc?-t*X$;M@@Yhi_@% delta 43 zcmdnRy^DLpA0{qiT_ZyULo+KAlgVt%ODFGOj^g%7%u6p#Oi#5^DA+8(vWgJ^Eqo1w diff --git a/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.mo index f252c997f528ee1faeacb4d72759d69f3209eabc..bede165f047e7415ee9838f63f8341f3900f9ad0 100644 GIT binary patch delta 47 zcmX@de~y1c3=5Zuu93Ndp^25D(d0Cijr=}|dFiEz>8Vx<1tsxLL6gN;qc=CQ`Z56k DTAdDL delta 47 zcmX@de~y1c3=5aBu92aFp_!G5$>cPajg!?`qxgLi^U_Nb(^IV!3QFRgf;Km>`Y{0j DR{0Ke diff --git a/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.mo index e8b1071ccd6d277c91630f4262284c677e58d472..0d77c3b73fd893be4b8ba7c56e00ee4eb58595ef 100644 GIT binary patch delta 47 zcmX@eeUN*@aV9PkT_bY^LlY}QqsbSUHt_o-=B1Y=rl(pd6y?VU`A=?Oj^6y5`5Get DcZ(2p delta 46 zcmX@eeUN*@ai+=dnOIp3&8$pJCSPRQFnJ<#6u(bmUV3R_da9K|QGR@o|K?ZB*BJqj CI1wfQ diff --git a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/ru/LC_MESSAGES/django.mo index 4df5e7b1f9bddefe61cc7b3698642c27d318e1cb..3222a044b37dd6a8d74e0ba463dafa5ff1c0229e 100644 GIT binary patch delta 44 zcmdnXyO(#vaV9PkT_bY^LlY}QqsbSU7V-Eb=B1Y=rl(pd6qQacVvgQ?i}^7V07pg- ARR910 delta 43 zcmdnXyO(#vai+=dnOIp3&8$pJCSPP)G`WE}ipM80FTFG|J=IE~sC4s9<|j-5T#yh0 diff --git a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.mo index e39aad743b2ca1a3a26374fbbaafecf4a54b999d..5b86db59613a75a9db7eb65ff033c11b78f4ffab 100644 GIT binary patch delta 46 zcmZo-Yhv3V%gAM-Yh8Vx<#X0f8o|B!J4gdft Cs16qZ diff --git a/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/vi_VN/LC_MESSAGES/django.mo index f0a996d81cfd0fc22ac4c8a8e364c5c1e8989c13..64b7b97ec04cf6ef66851ef2d53b491e7c987487 100644 GIT binary patch delta 47 zcmX@XeS&+#aV9PkT_bY^LlY}QqsbSUHuL)==B1Y=rl(pdlx4<;`Au$Sj^6x^`4%Gp DdX*57 delta 46 zcmX@XeS&+#ai+=dnOIp3&8$pJCSPRQJb4Op6u(bmUV3R_da9K|S!R5g-{!Z>w;2JG CU=cz9 diff --git a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.mo index f28ff93f6adf383252a20770195bd9c4fa161808..25340d1f28a42251b36e5f8d26e532c9310658fd 100644 GIT binary patch delta 47 zcmZ3-wT^4UCMGTuT_bY^LlY}Qqse=i*7Ex#=B1Y=rl(pdRAt0F`%TVZj^2EkIhqjw DXQ2;f delta 47 zcmZ3-wT^4UCMGUpT_ZyULo+KAlgWFS)=sWuj^g)8%u6p#Oi#5^sLF_U_S<}kIffAc DX%P>0 diff --git a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.mo index c457b6d47e3b31dad20d959ed05dcf7dbf4f6ac1..c47f64e29a0692993da1f16687120608a10459e7 100644 GIT binary patch delta 43 zcmey)`ki%yBqNuJu93Ndp^25D(PU-Dg*-lqdFiEz>8Vx11Wbg_AEbM)CM0=B1Y=rl(pdBo8Vx$o;8M+OP delta 43 zcmaFI`i^yjBqNuxu92aFp_!G5>11WbC6li(M)CM0=B1Y=rl(pdB&AQ*WjY7|ADIoC diff --git a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.mo index a9d095f273f42f4048df7083c0040154699d943d..ccb95b5e2b8c2848cafb3a1fb5096a8758e0f3d6 100644 GIT binary patch delta 46 zcmeyv`iFIcBqNuJu93Ndp^25D(PU-Def&O&dFiEz>8Vx11WbeUm>jM)CV3=B1Y=rl(pdBo)UyIZpOs+5`Yp CKo0Ey diff --git a/mayan/apps/installation/locale/da/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/da/LC_MESSAGES/django.mo index fca3ae7f46624d2136737fac621bda911780d20b..03136d397570fa7d7e22082c9b271739f68b7ad9 100644 GIT binary patch delta 42 ycmeys@_}W-Z!QyEBXb2q6Dvcb$*hbEd3+M{(n}N5Q>_$I5+^TZjGoNPlnekaNDYht delta 42 ycmeys@_}W-Z!Tk9BSQs4Gb8VxVMQ_evW@iKd DUS0~>m1C#lfqxgLi^U_Nb(^IV!Qc~kxTsNmPb1(t` DQO^y* diff --git a/mayan/apps/installation/locale/en/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/en/LC_MESSAGES/django.mo index 9f7db876ba9777d2e5a6965ba1c3a01359df44a8..a74863750bfaac17d237cd02c12073df486ec086 100644 GIT binary patch delta 21 ccmcc4a-C(uV=fb2BXb2q6Dvcbjc>CU0aG9cDF6Tf delta 21 ccmcc4a-C(uV=iM|BSQs4GbCU0aF17DgXcg diff --git a/mayan/apps/installation/locale/es/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/es/LC_MESSAGES/django.mo index be0a17d4733eae93a4a6857c796f2d994b5fbdcd..2b6935746b8e624cf2d8a604c3fb8cca5754aa69 100644 GIT binary patch delta 44 zcmaFJ@sMMK2@{uzu93Ndp^25D(PTTOMLa%8Vx0~>mMU&q$Me+C~=B1Y=rl(pdq!w>>W0qzF05aSS AdjJ3c diff --git a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/fa/LC_MESSAGES/django.mo index 668384b3fc169ed2d8e13da9d95e4f88df7ae2b5..b7f323b5bc78fc6d04a7013f406f79a38023b873 100644 GIT binary patch delta 44 zcmX@hah79)2@{uzu93Ndp^25D(PTTOMLa%8Vx0~>mMU&q$Me+C~=B1Y=rl(pdq$O^4V`gUr04tXb AE&u=k diff --git a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.mo index db218d114b9d17b404265f1f167f76eea63738da..c9b6ba4bab999aa7baa13d23dd0efb0dab42d16d 100644 GIT binary patch delta 44 zcmaFC@q%N62@{uzu93Ndp^25D(PTTOg*-lqdFiEz>8Vx0~>mg_GYfMe+C~=B1Y=rl(pdq!n#;WmaYc05um4 AjsO4v diff --git a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/hu/LC_MESSAGES/django.mo index 517b1b782ed21c49d3e09baea1196a6f6cc07c55..9d088e39f23f293345a841df5aaf5a1f472691e6 100644 GIT binary patch delta 41 xcmeyu{DpbK3N8~}BXb2q6DvdGiJO-2_$20~mnNpCS}A0dP7Y;^p1haQ8~`o34mbb+ delta 41 xcmeyu{DpbK3NB+^BSQs4Gb4n+U} diff --git a/mayan/apps/installation/locale/id/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/id/LC_MESSAGES/django.mo index 5eb73531211b71ce483c06fcdc328f6d5afc97f3..b0d9e475c0d7359fae763930d1cd76c8b4c20c33 100644 GIT binary patch delta 41 xcmaFG{EB(P3N8~}BXb2q6DvdGiJO-4_$20~mnNpCS}A0vOb%m=p1hAy2LLJ`4h#SQ delta 41 xcmaFG{EB(P3NB+^BSQs4GbE1OB2&mtrYTd;{ALkpJ6lu05+x$ AhX4Qo diff --git a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/pl/LC_MESSAGES/django.mo index a310c124337c45127093c7f8f5bbcd68cacd2ead..6ded16ed76760a63915b1162ee0468216080117b 100644 GIT binary patch delta 44 zcmdnQxruXw2@{uzu93Ndp^25D@nk!uLp(l-dFiEz>8Vx<1v!)dGevJsXZB_U03mY? ArvLx| delta 44 zcmdnQxruXw2@{vGu92aFp_!G5>0~>mLz8)#qj-E0^U_Nb(^IV!3UW55G5atA02KcW AwEzGB diff --git a/mayan/apps/installation/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/pt/LC_MESSAGES/django.mo index 74da6cb1d735ca4dafcd33fd6a58ade1175a39f5..6ce504dfebff458a4ae22012369b9c5a7c070d1c 100644 GIT binary patch delta 43 zcmaFJ_K8Vx<1tsxLL6hGxMQ@H|=4J!{ DS~U)r delta 47 zcmaFD@q}Z82@{vGu92aFp_!G5>0~>mjg$W~Me+M2=B1Y=rl(pd6qLj}1#OOC=3xW? DW8n^` diff --git a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.mo index 893f56bea8338f91df7385dc07bd44028477b7aa..f2a3cc7c7a40aa023455feb22289968d44ef1822 100644 GIT binary patch delta 46 zcmX@ldY*NIBqNuJu93Ndp^25D@nmJj4g5ZddFiEz>8Vx11Wb4U-=;M)CV3=B1Y=rl(pd6y?VU`A@cCnhXF! Cn+|jU diff --git a/mayan/apps/installation/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ru/LC_MESSAGES/django.mo index 531bfe3eaeb07d8260d907e981a8c9365b489c69..59a1df5fac659ddf5ba3827e1f0ae974d3a56421 100644 GIT binary patch delta 44 zcmX@Xc7kn#BqNuJu93Ndp^25D@nmJjMLa%8Vx11WbMUyWvM)CM0=B1Y=rl(pd6qRn)W|CzD03d-3 A<^TWy diff --git a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.mo index 88e7eb4cccc042a566ef2324844b983035b2c9b4..bea4d564a179c1b9f719624c101e3adba3c977ad 100644 GIT binary patch delta 44 zcmdnRvWsQH3N8~}BXb2q6DvdGiJLa@`y}S2mnNpCS}7Fg#0Ps$PG*dre2y^(07*;_ AC;$Ke delta 44 zcmdnRvWsQH3NB+^BSQs4Gb8Vx7cq9?a76#@WO C&<>yg delta 46 zcmey$`jvGEv9-wUf1&qWFCh^U_Nb(^IV!sxso8{U$dv6#)QK CFb=Q) diff --git a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.mo index 0811f7b545ed02944be0e16b73175e10f8f3a241..c0afbff4000735938caa4ccabbef2d76805c1365 100644 GIT binary patch delta 44 zcmZn{Z5Q2ef|bie*T`JK(8S8nc=9FIg*-lqdFiEz>8Vx8VxGDmN=WJzWM01`3` A^8f$< delta 44 zcmbQkJBN3J3Nx3nu92aFp_!G5>0~|TC6n(nNAdV1=B1Y=rl(pdB&Bb*U`b&D02r+e A00000 diff --git a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.mo index 8dd816ba5a6d7cf8db434521a4ed419fcd349cc8..16ffa14841f7c9316bd97f03bb4a9403c7643067 100644 GIT binary patch delta 47 zcmX>ma!h2y305u>T_bY^LlY}Qma!h2y3D(IUSXo&O&8$pJCtqUSH+cbD6u(bmUV3R_da9K|QgOVK8Vx0}S?b(7h6qWFCh^U_Nb(^IV!Qc~kxTsOz_++qU& DP4W(Y diff --git a/mayan/apps/linking/locale/en/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/en/LC_MESSAGES/django.mo index 99da50d7591e615c7505999d62098dc0895e2cea..7d1642e1daee19a5974a3ac425cf19957aae4bd0 100644 GIT binary patch delta 23 ecmX>sbXaIZBP*AQu93Ndp^25D@#b#U9n1h$>IT*T delta 23 ecmX>sbXaIZBP*A&u92aFp_!G5>E>?M9n1h$#s<~^ diff --git a/mayan/apps/linking/locale/es/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/es/LC_MESSAGES/django.mo index 474c79b33e7be982e0dbe2a828b419011a55f27f..714ae3dda4d528afc8ec350eb8263b64ef9548d7 100644 GIT binary patch delta 43 zcmew*_e*ZWHx4cnT_bY^LlY}Q<4K&0czhD`(n}N5Q>_$IizhGSjNZ)2RmcheOe_vb delta 43 zcmew*_e*ZWHx4diT_ZyULo+KA(@C6*Ca>p=;_*q$OD|1KPqk7=E#Az*Rm2JaP)QC} diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.mo index acb0ae4c190ec7112fbe28a0e59506c1cca87f43..b869031e1fca6ecb7790197ce24df49e17e37658 100644 GIT binary patch delta 44 zcmX@7a86;vJq|7tT_bY^LlY}QpO AeE8Vx0}S?g_FN=NAdV1=B1Y=rl(pdq!n%U=jmhz06{Dc AWB>pF diff --git a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.mo index 983b873f5e4fa3c86a7f6b3c7aaee2c99823361d..182a1557104ffa9ff1cee9bff400010c579acaff 100644 GIT binary patch delta 41 xcmeyt{DXPIDlQXUBXb2q6DvdGiCdQN_$20~mnNpCS}A0dP7Y^`p1hyY5&$oS4oUz3 delta 41 xcmeyt{DXPIDlTJPBSQs4GbsdRTOW3mcb-u93Ndp^25D@nk=?MLa%8Vx delta 42 ycmX>sdRTOW3mccQu92aFp_!G5>102)MU(%sMREBg=B1Y=rl(pdYz|@1X9fTlvkfBv diff --git a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.mo index 0337c100a862ab5f33fa24becc799c158abbe9c8..05581ec833f4ba1809c056558252f9625617289b 100644 GIT binary patch delta 47 zcmZ23x?FUFIvbaXu93Ndp^25D@nl1`jr=}|dFiEz>8Vxr>lc$IWG;Yhr>lc$IWG|Yh8Vx<1v#7jdG@mb04RwL A2LJ#7 diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.mo index f062c5694dc2c82e23420b7720c7c2b5b571e26a..e155982050caad2ac30f6463ea39c40109be6c62 100644 GIT binary patch delta 44 zcmX>ldP;P|S5__)T_bY^LlY}QldP;P|S5_`#T_ZyULo+KA)5-r?mrmZu7RBw8n3rCfn4W5-P_UVk{U9>{Our7m diff --git a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.mo index e9d41c77f0f51f2221af1ce86810a08df763d14b..deac5d6a84ae3eaca84812ae30545439731ee2d2 100644 GIT binary patch delta 47 zcmcaAcU5k~Jq|7tT_bY^LlY}QIz+305u>T_bY^LlY}QIz+3D(IUSXo&O&8$pJCtqUSFnJPN6u(bmUV3R_da9K|QGR@o|K`_h=a>PK C^AR`z diff --git a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.mo index f9b8d38f6f485f34cb5801aee94d21ec894fa106..d751434975c36c29ff7798c0f6f648a5a9d83d3d 100644 GIT binary patch delta 44 zcmZpdY?s{dgO$rf*T`JK(8S8ncrp{)A|9W_y!6t<^i(T_qSDEW*`hadv)8Z!04m`P AZ~y=R delta 43 zcmZpdY?s{dgLSe38!M}!nU#s@WG1#nlQ*(O@%SX>rI#kAr&=i#m2T!@uVn=QCn^n7 diff --git a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.mo index eb06208ec62b0eaed35f3b2fd8d697fc0f1287b3..2a6082ddf5144d9264b7ab0d44b960736d339abb 100644 GIT binary patch delta 44 zcmdnRvWsQHDlQXUBXb2q6DvdGiCZ@D`y}S2mnNpCS}7Fg#0Ps$PGyXqe1S0w07>8v AE&u=k delta 44 zcmdnRvWsQHDlTJPBSQs4GbJE@O=1_eso4FHKBOwNfa~i4XRie4a5I07}pg AJ^%m! diff --git a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.mo index 324ba9b9ade6db7b98e103febbe30a0dd205b32c..bf53f885cb772bc3060e3498e84521e95dc1860a 100644 GIT binary patch delta 47 zcmeyv_lIwT0SlLju93Ndp^25D@nkEO&HO%zdFiEz>8VxJI DWj_x0 delta 47 zcmeyv_lIwT0SlM0u92aFp_!G5>0~RG&6EGKMDhD1=B1Y=rl(pdlx4<;`E3qkRbv7G DZodx) diff --git a/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.mo index 6c54e8d23454e6e7ac5452cbffac170e62880cb2..85098aa6f77c150111fe659b68a8d34f9efde11f 100644 GIT binary patch delta 47 zcmew@_*-zpVpc8_T_bY^LlY}Q7T*Yf)$=B1Y=rl(pdRAt0F`%R8yi{5;M&727U Dfwm94 delta 47 zcmew@_*-zpVpc9=T_ZyULo+KA)5&XD*G|r2i{kf5%u6p#Oi#5^sLF_U_S<}z&4LL4 Df@TlQ diff --git a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.mo index 876b81caaf1ca6bf509e9e0d27aee4d19997f669..078be1bf2e6d32dd8cc9c4018b2bc17695965847 100644 GIT binary patch delta 41 xcmX@ka-3ztQZ5r+BXb2q6DvdGiR)MM_$20~mnNpCS}7zJO^#%Yo_vt84FDhZ4lV!y delta 41 xcmX@ka-3ztQZ8d%BSQs4Gb@kz`}FHKBOwNgk*pM03n1OP6-4n+U} diff --git a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.mo index c7422323f5ff9e6fe0f9eaaf11d859cd65a62dfb..4a937324de746ab8050e7bae00cb7a136b683890 100644 GIT binary patch delta 44 zcmcc3a+_tsQZ5r+BXb2q6DvdGiR(}B`y}S2mnNpCS}7zI$2&PrE@O8VxKq9+$KWdZ<1 C77gwI delta 46 zcmcb^dWUs`JtLQ~u92aFp_!G5>10pF1Cu40qWFCh^U_Nb(^IV!Qc~kxTqhSXWdQ&` C>J9z? diff --git a/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.mo index 6df70f48a8c78c92c392770d9fede5ed1b9f46f5..6a0a4fc8c972390039298c645023e9c24edc7c0b 100644 GIT binary patch delta 20 bcmeyx^owaiFPDj~k-37QiIt)8#OaR#OGpP8 delta 20 bcmeyx^owaiFPE{dk)eX2nU#s@#OaR#OC$#v diff --git a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.mo index bf50aa6e08d55a6c62f5509fea8b9f39449bbd11..60dd1a855972a5ddfca7436ab60d54b288db0041 100644 GIT binary patch delta 43 zcmcb~dXsg7JtLQiu93Ndp^25D@nlcNMLa%8Vx10pFMU#IpM)CM0=B1Y=rl(pdq!v#OWa?|BXb2q6DvdGiO1LQ_$20~mnNpCS}CL@PA+1Mo_veZ4geP~4c`C& delta 41 xcmbQiGJ|EpUM^!@BSQs4Gb8Vx10pF!;>YMqIi4~^U_Nb(^IV!(uyV*G4%ofBWw+h diff --git a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.mo index 3e92c711a982e3844333fb733c9fcf6601275a31..31bc4567914cc984d23936813d32222fc4d2f6fe 100644 GIT binary patch delta 21 ccmcc2e3^Md2bYPik-37QiIt)8#z~Hh082~;K>z>% delta 21 ccmcc2e3^Md2bZy~k)eX2nU#s@#z~Hh081zaK>z>% diff --git a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.mo index 4ab47965bb052628bfbe5e2deec85cc9cd9f7e8b..61e0fc9f5475bf246f3b7b7792f09869ccf1e5c5 100644 GIT binary patch delta 21 ccmX@he3p4a2bYPik-37QiIt)8#!1$U07_5>F8}}l delta 21 ccmX@he3p4a2bZy~k)eX2nU#s@#!1$U07@(dF8}}l diff --git a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.mo index a44242b021a64332f4beac94828d4e35c4a472b5..a0b07801ddb6685c423105272d8ece71ce8080f1 100644 GIT binary patch delta 41 xcmeyu{DpbKQZ5r+BXb2q6DvdGiR;(!_$20~mnNpCS}A0fOpaoVo_vVW2mmeS4nF_@ delta 39 vcmeyu{DpbKQZ8d%BSQs4Gbfd$XvnD#LCck;`-hEK8bnhrHSdORtkAJ@qRv&GZ~{NUtu%^05?Sr AivR!s delta 44 zcmZo=X=RzPl*?Gx$WX!1%*w=c;`-f_s~DsBeG>E1OB2&mtrYTd;{ALkUuHA{0638j An*aa+ diff --git a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.mo index a87af24bef3917ed7cc7151f8427245723270d76..920f3b37eb3298cbf6efb5d7e04e6e201f312d28 100644 GIT binary patch delta 41 xcmZ3>vX*7SQZ5r+BXb2q6DvdGiR)MM_$20~mnNpCS}7FdOpauXo_vro2LKox4e0;? delta 41 xcmZ3>vX*7SQZ8d%BSQs4GbHq)$ diff --git a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.mo index b392278a459c2ff4851fe5897fd4a8810036fa69..28e967ca29817adedb02e074c2989c75cb723a38 100644 GIT binary patch delta 44 zcmZ3&vV>*AUM>?|BXb2q6DvdGiN|;I`y}S2mnNpCS}7Ei#5)B|Ze)y}{D#p207&)^ AGynhq delta 44 zcmZ3&vV>*AUM^!@BSQs4GbvX*7SQZ5r+BXb2q6DvdGiR*Xq`y}S2mnNpCS}7Fe#|QaO&R~q5e3>x{07X_0 A4*&oF delta 44 zcmZ3>vX*7SQZ8d%BSQs4GbOV diff --git a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.mo index d0cd36a668386fd03c339fe654e6a7a473478d73..4fcb8a4cb08347d6f2a4101bfec9ffe7c41b077a 100644 GIT binary patch delta 41 xcmey*@}FhGQZ5r+BXb2q6DvdGiR;(!_$20~mnNpCS}7EjPL5)Xo_vULF90%<4(tE` delta 41 xcmey*@}FhGQZ8d%BSQs4Gbfd$XvnD#LCck;`+V(K8bnhrHSdORtjaA@nL?Gvl*i&Ut`n)05*IM Aj{pDw delta 44 zcmZo*X<(VKl*?Gx$WX!1%*w=c;`+UlYZ#;WeG>E1OB2&mtrW^K!p8SCEAOIZt4x0b~ delta 41 xcmZ3;x{!6k5iVn0BSQs4Gb`R%06wJ+ A_5c6? delta 44 zcmcb@eT93&EG8~vT_ZyULo+KA)5%MimP`(1j^go2%u6p#Oi#5^NJ`(lj#-Tf06rcL A0{{R3 diff --git a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo index 2dab396f61fe5cc62b99ca520424d80effef3382..7479e0e7726fa70df6018cc59135ce803e1c2631 100644 GIT binary patch delta 43 zcmbQnI*oP05iS#5BXb2q6DvdGiRVu6`y}S2mnNpCS}7zI$2&Prp2`?KiD?=DHfRo; delta 44 zcmbQnI*oP05iVn0BSQs4GbvX*7S5iS#5BXb2q6DvdGiRV`H_$20~mnNpCS}CL?POe~#p8SB(7XTl94le)z delta 41 xcmZ3>vX*7S5iVn0BSQs4Gb2XxK3Wi9=%zRqmKmu DbTbcf delta 47 zcmbO)IbU+aT{bRbT_ZyULo+KA)5*`-4ou$89>wpIn3rCfn4W5-kdhkj;<{OYqn`x; DdPfg} diff --git a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.mo index 6df70f48a8c78c92c392770d9fede5ed1b9f46f5..6a0a4fc8c972390039298c645023e9c24edc7c0b 100644 GIT binary patch delta 20 bcmeyx^owaiFPDj~k-37QiIt)8#OaR#OGpP8 delta 20 bcmeyx^owaiFPE{dk)eX2nU#s@#OaR#OC$#v diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo index f3a7e2c2c35d4465e65a787511dd22498472cf38..d301d1323acc1765881a3ed8eec409d50d96a846 100644 GIT binary patch delta 44 zcmaDY{91T}BrBJRu93Ndp^25D@nmJzMLa%8Vx11WrMUyYFM)CM0=B1Y=rl(pdq!w@1W;?(P05ZG{ A>;M1& diff --git a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo index b87e4f34f6bfb95da74d082c16b91d8a5c35fd26..09249c1f4639307280ddb5024185fa64115dd668 100644 GIT binary patch delta 44 zcmdlbyi0h)a~3WWT_bY^LlY}QzMqlRvU7n!JEDipM80FTFG|J=IDfEphWt)`QFdN%#+Q diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo index 95da6872964ad7524ac02b3f01c04e45ae9e0620..92b49c990a2a624d2305fd19f45bf0565145f767 100644 GIT binary patch delta 44 zcmaDL`9N~RT{bQgT_bY^LlY}QwF6n3rCfn4W5-kXE!=fa3xS0Al11 AYybcN diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo index eb9188d523f801ca18d7793f6c8942d9a8c9203a..1f25302393bd792412665b544d8a8d6ab3bce088 100644 GIT binary patch delta 41 xcmdnWvXy1R5iS#5BXb2q6DvdGiRaew_$20~mnNpCS}A0dPOfH*p8S|G2mm8K4rKrU delta 41 xcmdnWvXy1R5iVn0BSQs4Gb_#-OD1n*jGipXlmq}YYYpE3 delta 40 wcmey(@|$JCA1-5EBSQs4GbJ-`_#L8u&YhJ-`_#L8u?Yh8Vx<1v#5t*p4y*02Mh6 AasU7T diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo index fdf17cc117d4fee364dc33fa43195e133298fa32..175bbb7aad12ec583964bab0f330212b6e64683d 100644 GIT binary patch delta 44 zcmeyt^@D3e8xxm_u93Ndp^25D@#G0i>v?<<^U_Nb(^IV!3Q8v1F-LD+#(aqp07!2R A)Bpeg delta 43 zcmeyt^@D3e8xxnYu92aFp_!G5>EsDa>nHm#M{)Zk=B1Y=rl(pd6l`9?e1#DJH~tQ6 diff --git a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.mo index b9655ce5ce45a27c98cc317bdc92821e585da031..108fef086f439a5bedbacbb61740f372ae4be89e 100644 GIT binary patch delta 47 zcmZn>Y7yG-oQ2Co*T`JK(8S8nc=AV8Vx<1tsxLL6aAY7yG-oMkdUD=Vv^nU#s@iH0BZUW AS^xk5 diff --git a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo index 587d837b91af4fa865fa61a4a2ebda511823003f..389a7422ee51f5bbd3c5d3f7f05ac685f69fd48e 100644 GIT binary patch delta 44 zcmX@fa*}1j5iS#5BXb2q6DvdGiRbq6`y}S2mnNpCS}Bxe#)tV$?qZCd{FN~T09Zi} A#{d8T delta 44 zcmX@fa*}1j5iVn0BSQs4GbvX*7S5iS#5BXb2q6DvdGiRZTS`y}S2mnNpCS}9az#5?;vX*7S5iVn0BSQs4Gb5%26b`5mJ@08m>G AX8-^I diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.mo index 3cb5209a31596288e3e653b965ecf302d4fec608..b54f06132b28a76df3417e58ab754b03f5abb19f 100644 GIT binary patch delta 44 zcmeAW>k!+(#mZ%(YhkK A2><{9 delta 44 zcmeAW>k!+(#mZ%@Yh8Vx8Vx8VxrGg_B<}Me+C~=B1Y=rl(pdq$F;3WM*On04Ayp A0RR91 diff --git a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.mo index 9fdebfcc88b05938fc75b701b480b18a0a309403..9fb51e65da3d37033c1a2434dd004abbb5f00ad3 100644 GIT binary patch delta 47 zcmdn(wA*O|i!hgou93Ndp^25D@nk;X1N=UTdFiEz>8Vx2XxNbHVVc`V; DUu+Ip diff --git a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.mo index 5530a405cc5221d8f3a3bbe284cd61800d18c3e3..1a25f7990165d8d5e465ef4262107560134f72bc 100644 GIT binary patch delta 23 ecmcc3f17_pE(@25u93Ndp^25D@#b=t6lMTe7zTm> delta 23 ecmcc3f17_pE(@2ju92aFp_!G5+2(SV6lMTd`UZml diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.mo index 8d7b45aa2ca242919e640c5941d7cb802ba1a921..785f8d21c2b56b3d4cc6d93f9cfc19014e265a52 100644 GIT binary patch delta 44 zcmexo@Xuhw4PGu2T_bY^LlY}Q8Vx8Vx<8Ksl2Fh)8VxWR9v}_C delta 42 xcmZn`ZWi89%F1P|Yh09l$4 A7XSbN diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.mo index 92974c55b1d035fcb2f2d3f1a6dbd2370ca2c4b8..25596d9d07a08c76086cc1c02edf0cf7f6859971 100644 GIT binary patch delta 44 zcmdn1vsY(BKM$9Qu93Ndp^25D@#L92hj@Gv^U_Nb(^IV!3UVe#@kVbx#9Pe)07l~u A&j0`b delta 44 zcmdn1vsY(BKM$9&u92aFp_!G5+2ol#hbCw6M)CM0=B1Y=rl(pd6y$6^$Xmk!07s+_ A-2eap diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.mo index ca72fcb6d95f2d1e1f64a386cea9f683efbd85e9..694f7700c8d87a34513ec8fc407025d19e26ed11 100644 GIT binary patch delta 44 zcmcaEbX{nJJ1duou93Ndp^25D@#H|(r93`~dFiEz>8Vx<1tpWevPN%?W&6bh05u5? AyZ`_I delta 42 ycmcaEbX{nJJL}|pR#sL+GbsC8!vp{wKn;2T diff --git a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.mo index 0a60b5354902b792070a33c4640c1cc3ebde234d..3273373dfaf42778b4369c984f3a146bcc979226 100644 GIT binary patch delta 47 zcmdm_wMlD(5)YS&u93Ndp^25D@njvIjr=}|dFiEz>8Vx<1tsxLL6h(BL~nNIea#L4 DQ$G(q delta 47 zcmdm_wMlD(5)YTLu92aFp_!G5*<>A_jg#N;p7b};Eu93Ndp^25D@njL!4g5ZddFiEz>8Vx0MsL<*(`E($ DO~ei& delta 47 zcmca9bW>;p7b};su92aFp_!G5*<=yc4U@01M)CV3=B1Y=rl(pd6y?VU`ES-`(_sbx DROSvd diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.mo index eb18f35a357e6e0b78d5609d01507ca1698f5a52..5bc738f7b63873a53e191d5e09e19b50aee0f061 100644 GIT binary patch delta 44 zcmZn_Zx!Fb#mZ%(Yh8Vx8Vx<#X0f8o|D;`q9+$I?F9fh C%?=#^ delta 46 zcmZ3_ww`T+4=B1Y=rl(pdlx4<;`AsfliQasNC7KBU DZ%_}l delta 47 zcmdnax1DdpR%R|^T_ZyULo+KAv&s9JH&1S2iQ@N3%u6p#Oi#5^D9elw^V@uzC58zA DaUc)H diff --git a/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.mo index d4bcfb1a86f249c51771c91d7c0bafbd5d1eb4fd..c00fc18ae2d1f68d1fc06f03e912d954eba67b8e 100644 GIT binary patch delta 47 zcmX>ka7bXoT^24AT_bY^LlY}QlgZCn*7Ex#=B1Y=rl(pdRAt0F`%RwA8ol`+s|ynV De_jwe delta 47 zcmX>ka7bXoT^255T_ZyULo+KAv&qj{)=pl+8pZFEn3rCfn4W5-P?Zty?6>(Zt1A-# DgPssd diff --git a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.mo index 65a510b52b1ed7b3b9fa6777452c6bae671311ad..576d64bf6b8d73e66fdf0d94e342f4198c52732d 100644 GIT binary patch delta 21 ccmZ3?vY2H;2bYPik-37QiIt(r#z_+y0YsMuGynhq delta 21 ccmZ3?vY2H;2bZy~k)eX2nU#sz#z_+y0Yq~KGynhq diff --git a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.mo index ebf3bdbd82a8e0d1620135ac927bd8175cbbe1c8..92bf76bc18c67263829f327de3e23e042a98fc87 100644 GIT binary patch delta 21 ccmcc2e3^Md2bYPik-37QiIt(r#z~Hh083E@LI3~& delta 21 ccmcc2e3^Md2bZy~k)eX2nU#sz#z~Hh081?fLI3~& diff --git a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.mo index da2b4703131a88e1e2f29df0c80a14bc56a7f9d5..47901479e5dfea90252bdbe62e9517f947cf00ad 100644 GIT binary patch delta 21 ccmdnRvWsOx2bYPik-37QiIt(r#z`v}0Z3g2c>n+a delta 21 ccmdnRvWsOx2bZy~k)eX2nU#sz#z`v}0Z2Ipc>n+a diff --git a/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.mo index 332b84fd44dacd75621377200c0246525944bc87..ecfd7f0ea85ae80f87b71aa044f086d4f328c55f 100644 GIT binary patch delta 21 ccmcb>e1UmF2bYPik-37QiIt(r#z}UJ07}yaIRF3v delta 21 ccmcb>e1UmF2bZy~k)eX2nU#sz#z}UJ07|b0IRF3v diff --git a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.mo index 9e6f99ca4a8a345daa3275d325aa1d4681674947..c5c6b0dfc1d3e22f89dd8ed33edf6707d7e81706 100644 GIT binary patch delta 46 zcmcc1c9(5~EhCqSu93Ndp^25D$z*rN1N=UTdFiEz>8VxqWFCh^U_Nb(^IV!Qc~kxTqhSWy#)Y3 CfDV2D diff --git a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.mo index 3b7225f1305fcdcbb17c1b4940564fcf1c662366..4c0a17b256eb2b6cc6599d1f882557f3f16801b2 100644 GIT binary patch delta 20 bcmeyx^owaiFPDj~k-37QiIt(r#OaR#OH2nD delta 20 bcmeyx^owaiFPE{dk)eX2nU#sz#OaR#ODG2! diff --git a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.mo index 5a084c2518493af6bff184c33cc7cf603785aba8..78067cd9cbdeba3a71d58d059e7d9e2e02aed9c9 100644 GIT binary patch delta 44 zcmaFC_JVDLEhCqSu93Ndp^25D$z*rNMLa%8Vx8Vx0+7C!DXUrWUgRnVr6KuaZ&{%06={O=>Px# delta 21 ccmeBT>0+7C!DXy#WT;?hW@TcwaZ&{%06Px# diff --git a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.mo index 9a9d153fe68378a9096a6710e2ef0f2afcf793a6..549cad4abf86f866a07904d8da59cd31e5d1fb98 100644 GIT binary patch delta 21 ccmcb@e1&;J2bYPik-37QiIt(r#z{_$084uYMF0Q* delta 21 ccmcb@e1&;J2bZy~k)eX2nU#sz#z{_$083W}MF0Q* diff --git a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.mo index 5edbb67d287aa661b2e82b2b13226df7526c2874..604d9bfce821b941f3f81ec74b37a28c130f5d6c 100644 GIT binary patch delta 21 ccmaFF{D^r%2bYPik-37QiIt(r#z_H;08PgRZvX%Q delta 21 ccmaFF{D^r%2bZy~k)eX2nU#sz#z_H;08OI?ZvX%Q diff --git a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.mo index c2867947b3fba44af44d893bdcdd3cc12daabc0d..93e81936d76b1b4b1a233f220f1c72d9fe5108db 100644 GIT binary patch delta 21 ccmeBX>1LVG!DXUrWUgRnVr6KuaZ)8C06?b&>;M1& delta 21 ccmeBX>1LVG!DXy#WT;?hW@TcwaZ)8C06>EU>;M1& diff --git a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.mo index 00b4c5c52b3bc11f6a5b97bb0d83310edea40f84..cbbc14ce5d518a31cdac954c93db9e89fe8251dc 100644 GIT binary patch delta 21 ccmcc3a+_sB2bYPik-37QiIt(r#z`j`0ZqpS+yDRo delta 21 ccmcc3a+_sB2bZy~k)eX2nU#sz#z`j`0ZpR@+yDRo diff --git a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.mo index ed0aee8cc0adeaf4d51dec137d1f8102cb3e450c..92bfb0dcbb5ce75c8e11b248552822c500f7b8be 100644 GIT binary patch delta 21 ccmbQiGJ|D82bYPik-37QiIt(r#z}3A07A(I6951J delta 21 ccmbQiGJ|D82bZy~k)eX2nU#sz#z}3A079h(6951J diff --git a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.mo index 1cd5ccc3eaeedd7d3229c1c3003145a676ed160d..02e0ad029a7e021fd382146f0cea0310e8f43100 100644 GIT binary patch delta 21 ccmcb|e2;lT2bYPik-37QiIt(r#z{Vm08JkTV*mgE delta 21 ccmcb|e2;lT2bZy~k)eX2nU#sz#z{Vm08IM^V*mgE diff --git a/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.mo index 07884f43ba5eda228122a155a8c2318d5a1b2964..461fd199960bc94f57a60bdf8703be8123cdcad3 100644 GIT binary patch delta 21 ccmcb?e1myH2bYPik-37QiIt(r#z}6B08AqWQ2+n{ delta 21 ccmcb?e1myH2bZy~k)eX2nU#sz#z}6B089S{Q2+n{ diff --git a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.mo index 4ad704a35559749baaad4390ebc6610d56614430..39802cd24446ab1e17245a70054f5ee013e9e05e 100644 GIT binary patch delta 41 xcmaFE@`h!?E-n*YBXb2q6DvcLiAPrR_$20~mnNpCS}7zJP0nMCo_vjQ8UQg^4&49% delta 41 xcmaFE@`h!?E-qtTBSQs4Gb%I delta 41 xcmZ3=vXo`QE-qtTBSQs4Gb8Vx*L$-hndSn*T`JK(8S8nWHKAeA|9W_y!6t<^i(T_)Z)p@S)w=dv;JoU04li+ A;Q#;t delta 43 zcmeC<>*L$-hndS**T_)8(9FujY%&|mqRCrXqIi4~^U_Nb(^IV!Qi~V!u`&SwAGZwO diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.mo index 32227bf77660defd949528595e46643caa023f66..5ac3e5b6e4f24905e83fe97dd139ac2204eb17a5 100644 GIT binary patch delta 43 zcmbQiI)inCI3t&du93Ndp^25D$z(;wH9S6vdFiEz>8Vx3?Cf{O=;_*q$OD|1KPqk7=OPp-XlnMX<+68Vx3N8&C delta 43 zcmZ3%x`K6sJ|ma0u92aFp_!G5*@kz`}FHKBOwNl6^oqU+l7yvHu4p#sG diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/id/LC_MESSAGES/django.mo index 76e75d4e4dfba1c3bb8cc187033e091ff7503214..1f3edf1031ebee3a485fcbcf23d633eb7f244772 100644 GIT binary patch delta 41 xcmX@he3p4a2bYPik-37QiIt(r#7XOUd=m50OB2&mtrRj-COa@jPhP>O3IG|w4Qc=Y delta 39 vcmX@he3p4a$HWb+tcGS*CT0^St)J}27{%k0n3rCfn4W5-keM=hIinf?A2_#x8#2WK0OVZ@t^fc4 diff --git a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.mo index ba41415ed6efc381943cdab48647d37419561aa8..54696dca91cb321cb84ba3e9acdd75245355339d 100644 GIT binary patch delta 44 zcmey!@{wi2M=ldxBXb2q6DvcLiNAOA`y}S2mnNpCS}Ek^#QXV7-pUv~S%E1K0B;Wu AwEzGB delta 44 zcmey!@{wi2M=oPsBSQs4GbR diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.mo index 59476cdf20b75cb9cc8cfcf118ad73247c23f9f6..89716f45021b75499abf0883f22c8f606e699e42 100644 GIT binary patch delta 43 zcmdnbx}SA}I3t&du93Ndp^25D$z(;w)jU3ldFiEz>8Vx<1v!&XGe%D~X6gX|3s(&t delta 42 ycmdnbx}SA}IOAk{MpjlsGb4tC*Nd@;_*q$OD|1KPqk7g$eC=!)C&L&#tj+( diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.mo index e108d6c323c446963216ce9ad146046fe574c05a..6b0e9a4d1269127bca9e4d98f0d3f7d09230b5a8 100644 GIT binary patch delta 41 xcmcc4a-C(udoB}QBXb2q6DvcLi9gr#_$20~mnNpCS}7EiOkU0yJ(-`$0{}Md4p#sG delta 40 wcmcc4a-C(udoE*LBSQs4Gb8Vx<1tsxLL6dJYMo)HQ3IYHq C01d_f delta 45 zcmbQiI)inCIOAk{MpjlsGb4-C%<8g;`d3+OD|1KPqk7gD2aCpn(WFH3;-=J B4aNWf diff --git a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.mo index 89be0e032302b1163cfffbf88ab6adbcf89261ed..b7aca0d833e060655729d527bd2efcd01d750ac0 100644 GIT binary patch delta 44 zcmcb}a*<`iE-n*YBXb2q6DvcLiAQ$v`y}S2mnNpCS}7Fe#|QaOu4Rm#{DLtP09U{d Ay8r+H delta 44 zcmcb}a*<`iE-qtTBSQs4Gb2t AGynhq delta 44 zcmdnRvWsQHQZ8d%BSQs4GbE-n*YBXb2q6DvcLiAVPG`y}S2mnNpCS}Bxe#)tV$ZeWa_{F>1K07cgi AAOHXW delta 44 zcmbQuGMi<>E-qtTBSQs4Gbt<8 delta 44 zcmey#{F8aYQZ8d%BSQs4Gb4`BSQs4Gb delta 21 ccmbQvGM#0@VJ>4`BSQs4Gb diff --git a/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.mo index c52c2e1a751ac2d07360ae77e7487faae37aa95c..11c87e20e1e63a8f6d1c2c14801eea2c56f5a225 100644 GIT binary patch delta 21 ccmaFM{FZsb3N8~}BXb2q6DvcLjhn0)0a3LEumAu6 delta 21 ccmaFM{FZsb3NB+^BSQs4Gbt<8 delta 21 ccmZ3+vW#WI3NB+^BSQs4Gbt<8 diff --git a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.mo index 3fbd8804bbe95ac821a51e204e1874536aeea191..ce43fa0a9e069aeeb8b246201352a229d1fd55ea 100644 GIT binary patch delta 21 ccmX@be2RHO2bYPik-37QiIt(r#z_{807=&dCjbBd delta 21 ccmX@be2RHO2bZy~k)eX2nU#sz#z_{807i_@% delta 21 ccmZo*X<(VKg3DOf$WX!1%*w=U<0d~w06^6R>i_@% diff --git a/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.mo index 34bd9df3a926bb2616fdc44e1c749e5a7c330054..6e84cb2820b877138e0ec4c73d67d7d64064a021 100644 GIT binary patch delta 21 ccmZo0_DD!DXUrWUgRnVr6KuaZ(K<06`@M^#A|> delta 21 ccmeBU>0_DD!DXy#WT;?hW@TcwaZ(K<06_r-^#A|> diff --git a/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.mo index fb7346db76553ce9836ac2d8ca7245ea15d6c2b8..e34a5bc47c5bdd7f5bbf26c36a44b3438be30b36 100644 GIT binary patch delta 21 ccmcb@e1&;J2bYPik-37QiIt(r#z{_$084uYMF0Q* delta 21 ccmcb@e1&;J2bZy~k)eX2nU#sz#z{_$083W}MF0Q* diff --git a/mayan/apps/navigation/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/zh_CN/LC_MESSAGES/django.mo index 6de3e6fd47bd444759772493484d627dd1c8987a..b171c6118064b4c24b49172df07b637d2536f4c8 100644 GIT binary patch delta 21 ccmX@de2#fS2bYPik-37QiIt(r#z{7e07`!bGXMYp delta 21 ccmX@de2#fS2bZy~k)eX2nU#sz#z{7e07_d1GXMYp diff --git a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.mo index 47e8c29cccfabd0162a144b3a0176e2afe3ececc..00cf0eb677770c7875a1da876e762d4d303f3a4e 100644 GIT binary patch delta 44 zcmZ3$wSa3wF%y@Gu93Ndp^25D$>dt5g*-lqdFiEz>8Vx AbN~PV diff --git a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.mo index 77c616f64783c51b238b51c18775178c404ede17..a8ee36a61563bf2db593a16cfc393123056bc7c0 100644 GIT binary patch delta 44 zcmaFB{(ybMUPdkxT_bY^LlY}QlgY;!m+<%`=B1Y=rl(pdB&AQzVv62;iHVO9083>K AcK`qY delta 44 zcmaFB{(ybMUPdlsT_ZyULo+KAv&qL9mrSl;isJD}%u6p#Oi#5^NJ`&)k%^xX08E$; Aga7~l diff --git a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.mo index 9b4a70e124d735a579ce6d87bde075e81bb83a3b..fc751ac4556a844456289ec1d82ae882d7198212 100644 GIT binary patch delta 47 zcmZ3(wT5d$F%y@Gu93Ndp^25D$>dt5ef&O&dFiEz>8Vxdt5g*-lqdFiEz>8Vx8Vx}CZ3 DTM`cQ delta 47 zcmca1dqZ}EHV2onu92aFp_!G5*<@3Wb(24HMDhD1=B1Y=rl(pdq@>2XxNi30>|q4} DWcCjO diff --git a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.mo index 9b0d9c16948f175f44fe062cabb142f3d2cb0380..1cc81aff518abb08dedd29966ccd46f0609adeb6 100644 GIT binary patch delta 23 ecmcb~c9U&G1tXVt`;>x=+b<_7Kn delta 23 ecmcb~c9U&G1tXWSu92aFp_!G5+2$t3>x=+b!UpaD diff --git a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.mo index b4e788db5e5200c562d9f7c88458ab0b731b58f4..d61d7d6f11e2e86815aacd16016030d8dab62e95 100644 GIT binary patch delta 44 zcmX>tc3NzM7aNy}u93Ndp^25D$>b2WMLa%8VxWq-#E05X*h Aod5s; delta 44 zcmX>tc3NzM7aNzcu92aFp_!G5+2jzmMU$D?qj-E0^U_Nb(^IV!Qj0gou)k*p043uM As{jB1 diff --git a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.mo index 8bcd48834ea3117b4bf21f5ed62ab44692785c39..a422dff51785e3a75ec9046e20763236e4dedb47 100644 GIT binary patch delta 44 zcmbO&Fk4_lD+`y2u93Ndp^25D$>e^PMLa%8Vx8Vx8Vx<8KskNGDc5!WNHNf5~U4f delta 43 zcmX@cdW?004kMSbu92aFp_!G5*<>@uC6k{sM)CM0=B1Y=rl(pdWRy;JU}^&Z84(R} diff --git a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.mo index 896770bf47af1bca592908221b59f6da6e4ee83e..f9d32cd10e0529856b2629f0f794532750fba40b 100644 GIT binary patch delta 43 zcmdnQx`}mz4kMR|u93Ndp^25D$z(Ier93`~dFiEz>8VxP delta 43 zcmdnQx`}mz4kMSbu92aFp_!G5*<>@urITMUM)CM0=B1Y=rl(pdWTs4ZWGVyz5=spx diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.mo index 809c894524da7d53966cf3fd316ab8f85caba254..f2a7ce75032a60d527ecb4d67f09363c563fdefd 100644 GIT binary patch delta 43 zcmZ3>v6f?l3KN%!u93Ndp^25D$z(mIMLa%8Vxv6f?l3KN&Hu92aFp_!G5*|rL47C6N diff --git a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.mo index 63a413c08576b913f349b9695c7ba59e6e738cb7..aef4a9689ab5052e6b7a58141da54141d2314ba0 100644 GIT binary patch delta 46 zcmbQiF@s~n4@NE%T_bY^LlY}QlgUg>8~J?_^U_Nb(^IV!@^a$+d?s&Vik>XX{2KsA C%MRKA delta 45 zcmbQiF@s~n55~y~OsuSiW>zLO#qX1tmtLBfo@%9#mlN;jGg*fD4**3> B4!i&W diff --git a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.mo index 431164f8cadab034189caf35af900b0e5365a6b7..8d7b5e53205d59bedee9f0906ff2a938cdc19f8e 100644 GIT binary patch delta 44 zcmcb>dx3YuA!aTUT_bY^LlY}QlgVe87xMTd=B1Y=rl(pd6y!|KVTs;+h2;+;08B^^ AcK`qY delta 44 zcmcb>dx3YuA!aUPT_ZyULo+KAv&meaRr93`~dFiEz>8Vx<1tpVzGevJsX0~Po03Le{ Ag#Z8m delta 43 zcmbQoIgfLLFB6xsu92aFp_!G5+2nAhrIR_Cqquz%^U_Nb(^IV!3N|M)+cE+G1Re|? diff --git a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.mo index 32fc58b05989bc00913d96d3cf2e718fff2f3f75..49b47579338b9f74dcbd45128062169de191e795 100644 GIT binary patch delta 47 zcmX>ja7JK5D+`y2u93Ndp^25D$>e^Pjr=}|dFiEz>8Vx<1tsxLL6hxSqc^W&UBmja7JK5D+`ygu92aFp_!G5+2nqfjgtddqxgLi^U_Nb(^IV!3QFRgf;O*YUCaak DXEP6N diff --git a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.mo index c7bbf8399a85b1356b6b5c65514b1d2eb8974a64..5e26cbcb845e948801a93c917cc9b1fdebfbe270 100644 GIT binary patch delta 47 zcmbQmHH&LQF%y@Gu93Ndp^25D$>dt54g5ZddFiEz>8Vxqc=}yZe|1k DP1_EH delta 47 zcmbQmHH&LQF%y@uu92aFp_!G5+2mTL4U=t|qxgLi^U_Nb(^IV!it^)w{5MZyZeauf DOHU4z diff --git a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.mo index fdd44c76d07d45d740a16b4dfca99cb6750f3403..e4e7e8c0af8cc8bd2c16a6534d479de586b5d713 100644 GIT binary patch delta 44 zcmdnVvy*2-F%y@Gu93Ndp^25D$>dt5MLa%8VxqhF>hu904#tF A%>V!Z delta 44 zcmdnVvy*2-F%y@uu92aFp_!G5+2mTLMU!=yqj-E0^U_Nb(^IV!ib^-PGH+o504Zz@ A+5i9m diff --git a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.mo index b11f93df0e24cc1b3b8a0c2f913a67d2f4949f12..9dbf5f35555b13d02cf3376b8b7be9d3baf69886 100644 GIT binary patch delta 46 zcmZo=Yh~M@!^mZ#Yh8Vx<#X0f8o|6Nawg3Py CW)4pP diff --git a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.mo index af880376f62862202e47f0bd03d7f470c64c143a..b325acc58e329177be18a1abef39efcc84b6576a 100644 GIT binary patch delta 46 zcmeyz`j2%(03(-)u93Ndp^25D$>b=;&HO%zdFiEz>8VxO#wF3ZE C%MPCa delta 46 zcmeyz`j2%(03(;Nu92aFp_!G5+2kn3&68!BqWFCh^U_Nb(^IV!$};1_{3e$%bpQZS C8xF4k diff --git a/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.mo index d6ac5eb5b6d66685e3735b22ad19e9d086c9e0e1..55ee0395d3b3b3371e5c8be05f805b16340eba00 100644 GIT binary patch delta 47 zcmbQkHHT}%CMGTuT_bY^LlY}QlgWFS*7Ex#=B1Y=rl(pdRAt0F`%TVZj^2Ek*^?0f DVL=Zv delta 47 zcmbQkHHT}%CMGUpT_ZyULo+KAv&nmy)=sWuj^g)8%u6p#Oi#5^sLF_U_S<}k*^3bX DVzCcG diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo index 941d2c52e59b4d86713e2976e41f013e61e3705c..7ba9de908cb2ec0c9342d1cb031ff72397c0d446 100644 GIT binary patch delta 44 zcmaFH`HXWzI1`tNu93Ndp^25D$>c<)g*-lqdFiEz>8VxrI#kAr&=i_7H!U8u44oMF}Dq( diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo index 303974018b1e0fecfa3b5d71db419115f550baa5..1b24a9fc57f17809164ba11716245b04a88a7d4f 100644 GIT binary patch delta 44 zcmbQjHHB+KI1`tNu93Ndp^25D$>c<)B|JWfdFiEz>8Vxr6Ft1<)02U1l A>i_@% delta 43 zcmbQjHHB+KIMd{MCRSEMGbrI#kAr&=i_rEkt=Udadm7t9SR diff --git a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo index 1f84bced9100a52eaed0d973e88c36d0697d8484..44decd640c8ad90f2f0470663d74ea4e368cfca0 100644 GIT binary patch delta 47 zcmbQtIhk`qI1`tNu93Ndp^25D$>c<)ef&O&dFiEz>8Vxqc?Xlb1?z{ DK|c+P delta 46 zcmbQtIhk`qIMd{MCRSEMGb8Vx8VxxW$j`F07Kgj AQ~&?~ diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo index db8dc57983b99d0141257760862e34b441774f9c..8b2bc8609b46ac92e814be78a5cd7d7166e44b5c 100644 GIT binary patch delta 44 zcmX@leV%)RJ2RJwu93Ndp^25D$>c!hMLa%8Vxi_@% delta 42 ycmX@leV%)RJM-jxW>!{1Gb8VxxWqj-E0^U_Nb(^IV!(uy{hvEF9{04awJ A+yDRo diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo index 59194bf500875008c030a6cbb9799ee512b38928..59a849d56be01f7bf5072c684df51c971ec1ee73 100644 GIT binary patch delta 21 ccmX@fe3E%W2bYPik-37QiIt)0#!2Rk07(^b delta 21 ccmX@fe3E%W2bZy~k)eX2nU#t8#!2Rk07;GpB>(^b diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo index f0f5c85b318df00798175934d5df415c5f000b38..6a8bdf5734bef48b1907ec2c00f4b6023ec8ad89 100644 GIT binary patch delta 21 ccmX@ie3*Gc2bYPik-37QiIt)0#z}^Z07$k56951J delta 21 ccmX@ie3*Gc2bZy~k)eX2nU#t8#z}^Z07#Ms6951J diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.mo index 35e4aa484db9c120042d8f13d57ed4a1596b1db7..05b1bd04ae3e7b42fc6c6638e3483ab3854c524f 100644 GIT binary patch delta 44 zcmX@lcb;#96APD#u93Ndp^25D>0}?4eLOyidFiEz>8Vxvfg6^04iq< Awg3PC delta 42 ycmX@lcb;#96APEIu92aFp_!G5`D7oKeUrsmqquw$^U_Nb(^IV!Hs`TEWCQ>U4GiP} diff --git a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo index 25de62a202447309361c33090c1a131e2eaa395a..032f23427c5423552dd163477e50e81c419cdd93 100644 GIT binary patch delta 47 zcmaFK{gQiwB{P?au93Ndp^25D>11c-jr=}|dFiEz>8Vx1G4~ DU-u6^ delta 47 zcmaFK{gQiwB{P??u92aFp_!G5`DAD2jgwheqWFCh^U_Nb(^IV!@^a$+d^X3j^e_Sd DQYsEk diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo index 68b4695b33f2258d8e08c36f029099e33c0e3f1c..937254d8134273b3d7631820376f3b4099e3ccc3 100644 GIT binary patch delta 44 zcmZ3&xrB2=E)$oDu93Ndp^25D>Ev>zg*-lqdFiEz>8Vx<1v!(&nWHz?GpjNJ03jI+ A=>Px# delta 44 zcmZ3&xrB2=E)$oru92aFp_!G5`Q&n@g_Bj8qj-E0^U_Nb(^IV!3UW5rF{?2G03Fs0 A_5c6? diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo index eb87ad591066f31ceb9b3e8aadd5afe3aedee309..d2240cf1b0129d51f599ad40a833faaca2d05cd6 100644 GIT binary patch delta 44 zcmZqRYT(*%m5Iwl*T`JK(8S8nbn<8Vx<1tpW4nWHzqW)@`x05tIq AM*si- delta 43 zcmZqRYT(*%m5Iw(*T_)8(9FujeDZy!rIRNzM{)Zk=B1Y=rl(pd6l{LUEY1i3C>9Oh diff --git a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo index 01ed06e07051d192171b32b1cec3f54cdcff8d6e..1fc6b27739b83c2d9d237ccb88c052eb2f6fe327 100644 GIT binary patch delta 47 zcmZ3>y_S1}J2RJwu93Ndp^25D>EuA>jr=}|dFiEz>8Vx<1tsxLL6aF-qBrNTI5GkN DMv@J< delta 46 zcmZ3>y_S1}JM-jxW>!{1Gb diff --git a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo index dbef692ac53b5cbdf2b9e49d87bb605953a37208..d9f7a52332c818fcf8e6e0ae65c808ace475ac47 100644 GIT binary patch delta 47 zcmZqWY~|b#&ctP+Yh7|M3sa6U_`SC&io2!_)838^b B4Y2?K diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo index cb87697318a01dccb9f4c392a5a83082b3210058..74be78a59e8bb8e9711256b7ef62258fcfe59292 100644 GIT binary patch delta 44 zcmeC+?%>`K&ctP+Yh`K&NR86iIvsR%*w=kaw5~B$pXw#JU)qe>7|M3sa6U_rJFOE<(U8ze+;7l diff --git a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo index e12bcbba072a9323e4252c1c451d91869fd6d674..e66997dfbd92bc6ed738cf1c031e7b572c6d9b64 100644 GIT binary patch delta 44 zcmZ3_vYutaQZ5r+BXb2q6Dvd0iR(A<`y}S2mnNpCS}7Fg#0Ps$PGF3le3~%@07U5z A00000 delta 44 zcmZ3_vYutaQZ8d%BSQs4Gb0}?q&HO%zdFiEz>8Vx delta 46 zcmX@cdW?006C;Ev{#wfsJbdFiEz>8Vxe1UmF2bYPik-37QiIt)0#z}UJ07}>fIsgCw delta 21 ccmcb>e1UmF2bZy~k)eX2nU#t8#z}UJ07|q5IsgCw diff --git a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.mo index d1ee36bcae1a59db280bce4e394398ebb8908639..ac976cfc25d84d6c5f05c099ee999e1f258c762e 100644 GIT binary patch delta 44 zcmX@ca*SodX)Y68BXb2q6Dvd0iB}Ks`y}S2mnNpCS}CNY#=E#qp28SC`9GsO09U~e AssI20 delta 44 zcmX@ca*SodX)a@3BSQs4Gbvd`5&VP09-{6 Ax&QzG diff --git a/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.mo index 66d43ae1f98c2934034e7ef1dfc3b2f7bf077d1c..e49bff386e1445d32a32c6b19e6f5dd7ca61bdc3 100644 GIT binary patch delta 20 bcmeyx^owaiFPDj~k-37QiIt)0#OaR#OHc>ut4nY6_ delta 41 xcmeyz{EvCUN-kqvBSQs4Gbca{vGU diff --git a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.mo index 8e76b43aff3cc90b0ec58553e875d64e41d1e068..f262c0b42b15dbbed7e6aa4e9a11f4ba62fa6e5f 100644 GIT binary patch delta 41 xcmZ3*vWjKGN-h&!BXb2q6Dvd0iJKSl_$20~mnNpCS}7FdOb%v@p1hke9{?9M4cY(z delta 41 xcmZ3*vWjKGN-kqvBSQs4Gb0p_#lFLNb$XvnD#LCcg;^y@{K8bnhrHSdORtg0rlM@-EC!b`r2LKLj4VVA` delta 40 wcmeBR>0p_#lFL}v$WX!1%*w=k;^y^}^BJSKeG>E1OB2&mtrQ9-A7^v~006oTFaQ7m diff --git a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.mo index 7f1514494149c4c1df803c4434afd49b7010362b..066187bfffc4a05fb995990fb822d9db89d3027c 100644 GIT binary patch delta 44 zcmZo-X=0hMlFLNb$XvnD#LCcg;^vL~K8bnhrHSdORtg0r@lHXLlNqBYpJOxu05*gU AfB*mh delta 44 zcmZo-X=0hMlFL}v$WX!1%*w=k;^vK$OBkd0eG>E1OB2&mtrQAM;+=vfpJg-!05@O` AkN^Mx diff --git a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.mo index c1d96a9c821f0cadc3708662335e10620d3f5dea..22ff3b03856a1c89831e8119a294f81ea929404a 100644 GIT binary patch delta 21 ccmeBX>1LVG!DXUrWUgRnVr6K$aZ)8C06?q-?EnA( delta 21 ccmeBX>1LVG!DXy#WT;?hW@Tc&aZ)8C06>TZ?EnA( diff --git a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.mo index f83c7661be557434f4328314e07262fae9946f0a..c5a451eea653a762252fae7a597fdcbc576d5944 100644 GIT binary patch delta 21 ccmcc3a+_sB2bYPik-37QiIt)0#z`j`0Zq&X-2eap delta 21 ccmcc3a+_sB2bZy~k)eX2nU#t8#z`j`0Zpg|-2eap diff --git a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.mo index 499e1f273cb00c16223a9af7d1c13e3e2306b648..f7fb3a988c18d2ebc3e2e0146c3eeffc1eb90851 100644 GIT binary patch delta 21 ccmbQiGJ|D82bYPik-37QiIt)0#z}3A07A|N6aWAK delta 21 ccmbQiGJ|D82bZy~k)eX2nU#t8#z}3A079w;6aWAK diff --git a/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.mo index 83dc88e2b4ec8c08f3fd5ce576aa82710a9f6c6a..100b6b84bd45432bfd3e64425868ac28318d6992 100644 GIT binary patch delta 21 ccmcb|e2;lT2bYPik-37QiIt)0#z{Vm08JzYWB>pF delta 21 ccmcb|e2;lT2bZy~k)eX2nU#t8#z{Vm08Ib}WB>pF diff --git a/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.mo index 8895a4ba37df9860d17e3f6d0d374cedb06db465..f72c87a5ecad9c3f3d0bfbbab69fb336eec9b846 100644 GIT binary patch delta 21 ccmcb?e1myH2bYPik-37QiIt)0#z}6B08A(bQUCw| delta 21 ccmcb?e1myH2bZy~k)eX2nU#t8#z}6B089i1QUCw| diff --git a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.mo index c933c7aca19d0630e5a3e07fd3dc3b2ac4630705..ad40c3d9def394448f326e00f64ee84a112beb73 100644 GIT binary patch delta 41 xcmcb^a))KYZY~pDBXb2q6Dvd0iANXm_$20~mnNpCS}7zJO-^Nuo_v108s1N=UTdFiEz>8Vx3~;`d3+OD|1KPqk7=NsV`LoovPY1OO>A B4hR4M diff --git a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.mo index 4da79b98f6a2b405071e0d7a7206fee599c6e9bc..ccdd738a5c3160a90604d68217b3c043a4689aac 100644 GIT binary patch delta 21 ccmX@fe3E%W2bYPik-37QiIt)0#!2Rk07(^b delta 21 ccmX@fe3E%W2bZy~k)eX2nU#t8#!2Rk07;GpB>(^b diff --git a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.mo index b821205b547fdcff8d4fdcc63cfe0130d9209345..5277c9c7664cf59513758420bd83589dc875e58b 100644 GIT binary patch delta 43 zcmX@Xeu90&OGYjeT_bY^LlY}Q)5)J17xDNc=B1Y=rl(pdq!v$}!W2FE57QX{LJ$w0 delta 43 zcmX@Xeu90&OGYkZT_ZyULo+KA^U0qX7foKo6vg9{n3rCfn4W5-kXk(XH`7@FMH~;S diff --git a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.mo index fce465138a3b2c08db50371fae677a6b34c1b092..8d5a84685ddaf287391ee28f5368506434ef4b7c 100644 GIT binary patch delta 41 xcmZ3>vX*7S6)qE9BXb2q6Dvd0iT4)q_$20~mnNpCS}CL@POfK+p8TBA4FDqS4p9IA delta 41 xcmZ3>vX*7S6)t04BSQs4Gb108sBRoEddFiEz>8Vx(^b delta 21 ccmX@fe3E%W2bZy~k)eX2nU#t8#!2Rk07;GpB>(^b diff --git a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.mo index 07aa9ffe6114f3f1d4d6efbd739cd3dea8a9595d..8d737c3c500a20971da7555ffbd7d4f98b578ea7 100644 GIT binary patch delta 21 ccmX@ie3*Gc2bYPik-37QiIt)0#z}^Z07$k56951J delta 21 ccmX@ie3*Gc2bZy~k)eX2nU#t8#z}^Z07#Ms6951J diff --git a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.mo index bec29ffa42a68de3fa0e5d8cfc3b0b877bd14a94..b893bd53f346001e847452cf297eb221afbe7005 100644 GIT binary patch delta 41 xcmZo?X=j108sLp(l-dFiEz>8Vx<1v!&1F-32-Vzy=k04iGz AX#fBK delta 43 zcmey$@s(o(JJV!+CRSEMGb0p_#o6AJk$XvnD#LCcg;?bo%K8bnhrHSdORtg0rlQS8kCtqYV2LKWO4Y~jT delta 40 wcmeBR>0p_#o6A_&$WX!1%*w=k;?bp(%Ne7%eG>E1OB2&mtrQ9-pJ%iL00fc^QUCw| diff --git a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.mo index 89f746030b00c0b4113a9a5bf33d48c046601701..a21867adcdbc47ff4db6a037bfe211072ed4fdcb 100644 GIT binary patch delta 44 zcmdnPvWI2D6)qE9BXb2q6Dvd0iT5`0`y}S2mnNpCS}7Ei#5)B|?qiIe{FBic09L3E AuK)l5 delta 44 zcmdnPvWI2D6)t04BSQs4Gb0z0$o6AJk$XvnD#LCcg;?cGIK8bnhrHSdORti-a@y>pe3mKy)-(fTW06uOG A#{d8T delta 44 zcmeBS>0z0$o6A_&$WX!1%*w=k;?cE}n;4_`eG>E1OB2&mtrV&<;+_2_-)1xf06;zt A*8l(j diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.mo index 1fbb2f54f058f51fe2f0b28db0d741eb37e9d0b7..a39b66cba22019d41f0c7f4eb1497b4148212c02 100644 GIT binary patch delta 44 zcmbO)GGAl^8!MNIu93Ndp^25D>0|-cg*-lqdFiEz>8VxubX;fy8!MNIu93Ndp^25D>0|-cef&O&dFiEz>8VxubX;fy8!MNwu92aFp_!G5`D6jseUtC8M)CV3=B1Y=rl(pdBo)UyIc_#*6JQ1a DPJj*M diff --git a/mayan/apps/sources/locale/da/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/da/LC_MESSAGES/django.mo index 8846d79be82275102c1989cc103dd6acab5ca307..ce0686338d510a724cf08fd01ae3f860ac763023 100644 GIT binary patch delta 44 zcmaDN@I+w4M;0y108nb^JbwdFiEz>8VxE>dV0%ibNL108ng*-lqdFiEz>8Vxm@T_bY^LlY}Q)5$-Wmhku_=B1Y=rl(pdWRy;x%^ba%nPo2{08bMR A%m4rY delta 44 zcmX@WeSmwzJ0>n;T_ZyULo+KA^T|J$mP}sB9L3|4n3rCfn4W5-kWspsiDe%n08)Ss A*#H0l diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo index f00de6eabdea5a3d554556818887237a3fa18d8d..082d94d50d8e9163ec9faeb255ecea860d9c2dfd 100644 GIT binary patch delta 44 zcmbQhH-T@%31%)6T_bY^LlY}Q)5({Zm-6@|=B1Y=rl(pdWTs3mV~O5;kHv@y05@9> AMgRZ+ delta 43 zcmbQhH-T@%3FgTkm|0m3&8$q!CtqS-I=O`wpIn3rCfn4W5-ke3th=d<|>yE6*_ De;p7e diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo index 5847acc23056a002bea96914ee3a0a9f2a1c4437..f31f12873e4ea79431875b2427ebade0d9c0a737 100644 GIT binary patch delta 44 zcmZ3=wUlea6(%kdT_bY^LlY}Q)5-Uk7V`Kc=B1Y=rl(pd6y!{cl AqW}N^ delta 44 zcmZ3=wUlea6(%lYT_ZyULo+KA^U3#^7EbPAj^go2%u6p#Oi#5^D9G9Tl-Yq1078Qf AumAu6 diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo index 3c5de6b9abbc8d9032ac7a24a1778d10bff3e06a..e6bbe3c179eaf75992d20323973790d825f53e04 100644 GIT binary patch delta 44 zcmdldyia&T3@ew3u93Ndp^25D>Etxlr93`~dFiEz>8Vx<1tpWY*rGQVvH36q04fy? AHUIzs delta 43 zcmdldyia&T3@ewhu92aFp_!G5`Q$X#rIRJtqPTq$^U_Nb(^IV!3N{z8`7r|k7!VB3 diff --git a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo index 32890d5345abdb841acd8ce966a9dbd50b63041c..1bb9207c610bb47c29af31b64f15b2c3a6a6b5c8 100644 GIT binary patch delta 47 zcmX@Ee_VfqG9Q118Ljr=}|dFiEz>8Vx<1tsxLL6h(DMQ`@tujc>& DT;LBB delta 47 zcmX@Ee_VfqG9Q<*u92aFp_!G5`D9(bjg#N;Me+M2=B1Y=rl(pd6qLj}1#NccZ{Pp` DW;_oh diff --git a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo index 2c95568fd21095c6101b4fe4a41054e71b5f08c9..1e73170a0803d7006de91e31eacd8c7bd3204199 100644 GIT binary patch delta 47 zcmX>lbV_Ig8!MNIu93Ndp^25D>0|-c4g5ZddFiEz>8VxlbV_Ig8!MNwu92aFp_!G5`D6js4U;dhM)CV3=B1Y=rl(pd6y?VU`ES-_Q)C7J DP67@4 diff --git a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo index 635712e19962c3ce8eedc2f904ce69b05e761922..a24ef50a050b7992e060b6d95159a77775e29168 100644 GIT binary patch delta 44 zcmX>jb4F&v0yZuaT_bY^LlY}Q)5)vY7V-Eb=B1Y=rl(pd6qQc)W{=*ynSCZ307i)p A!Tjb4F&v0yZvVT_ZyULo+KA^U15&7EO+1kK*x3%u6p#Oi#5^C@S5&iG3Cu07dc+ A&j0`b diff --git a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo index 049dbb29820c3b75f8b51412582738ecc333cca8..417b883d0c38d79892135877a3df6c22494e0e4f 100644 GIT binary patch delta 44 zcmeBW?PZEtBl&HO%zdFiEz>8Vx!{1Gbm delta 41 xcmey&{F!;eYA$14BSQs4Gb11=}1N=UTdFiEz>8VxEPL*%gkk>YhEPL*%gkl0Yh8VxEv$4MLa%8Vx11=}BRoEddFiEz>8Vx11=}eLOyidFiEz>8VxP08OtC AR{#J2 delta 44 zcmZ3_vYutaQ7&U$BSQs4GbHz?~|C9UYeMmYNe2u6Yu9U`6Z(p08n=i AXaE2J diff --git a/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.mo index f0cd70801e3c1fd2250eb906fd41e67dcf83e794..87f884787d935637483ebac3a1f81969294a4e9e 100644 GIT binary patch delta 44 zcmdnUvyo?mE;E;ju93Ndp^25D>11=}Lp(l-dFiEz>8Vx<1v!&{Fh_4rV7bT$03nYK A8vp0}M2Lp(l-dFiEz>8Vx<1tpVTGDS}gWc~mE64wp+ delta 42 ycmX@eagbw!921wZu92aFp_!G5#bgbpLzBNVMREHi=B1Y=rl(pd6ioJK{saIF3=NV1 diff --git a/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.mo index b06d81166a3ca971a95dd2c178b24435872406cc..4c2ede101222a54f23c94c90c3d7b351779bf010 100644 GIT binary patch delta 46 zcmcb}c9CsEBO{lIu93Ndp^25D>Ev$4jr=}|dFiEz>8Vx<1tsxLL6fbSq9-q7S`7eH C%nu&` delta 46 zcmcb}c9CsEBO{lwu92aFp_!G5#pG_rjgx(tqWFCh^U_Nb(^IV!3QFRgf+jCzS_1%6 CRSz%# diff --git a/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.mo index a83b1a18789950d38114e72afe9a42a310b328a6..98406ca186bcc52ced951c83da840866716889dc 100644 GIT binary patch delta 44 zcmdnMvVmp7YAzF9BXb2q6Dvd0iCZ`D`y}S2mnNpCS}7Fe#|QaOPGO9me4a5807m-{ A7ytkO delta 44 zcmdnMvVmp7YA$14BSQs4Gb0_DD!DXUrWUgRnVr6KyaZ(K<06{MW_W%F@ delta 21 ccmeBU>0_DD!DXy#WT;?hW@TcraZ(K<06_}{_W%F@ diff --git a/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.mo index daf2fdba8221721b69b9a73c7c3a0e69bbdaac27..c5d581bb09b9a52cb2ab4c60845b2ecc8c42a6db 100644 GIT binary patch delta 44 zcmZo>X=a(Qn#)Aj$XvnD#LCcY;?~XlK8bnhrHSdORtjaA@nL?G(;1^DUt%-_060Ak AnE(I) delta 44 zcmZo>X=a(Qn#)+%$WX!1%*w=K;?~WRD;T5reG>E1OB2&mtrW^K@~ diff --git a/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.mo index 0b3f58aa7364f21873a3e10aabc6abeec680fd70..5a35d3ab303768a973f904bd897e0fccdf0fe6eb 100644 GIT binary patch delta 44 zcmeyt{DXPIYAzF9BXb2q6DvcriCfq5`y}S2mnNpCS}9az#5?;e1UmF2bYPik-37QiIt(*#z}UJ07~5kI{*Lx delta 21 ccmcb>e1UmF2bZy~k)eX2nU#sf#z}UJ07|(AI{*Lx diff --git a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.mo index 91494a5993b86da546ee4bd4f50fd16dff33f0db..2fc5c78f524dd0fb13465e90f4d76464b4394902 100644 GIT binary patch delta 44 zcmbQnGL2=z3N8~}BXb2q6DvcriJK1a`y}S2mnNpCS}CNY#=E#qE@X_Je238r06lLG AvH$=8 delta 42 ycmbQnGL2=ziisCkSq;ssOe`jDIxxA3F^bCN delta 20 bcmeyx^owaiFPE{dk)eX2nU#sf#OaR#OE3o; diff --git a/mayan/apps/storage/locale/es/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/es/LC_MESSAGES/django.mo index fc290da6b653db1c6deb1df398db11dfd38ef8dc..86c9b3dbe9818dc9f708cec1877d253d5fac2535 100644 GIT binary patch delta 41 xcmeyy{Ed0S3N8~}BXb2q6DvcriJKPj_$20~mnNpCS}CL!PYz~`p1hmU8UQXh4mbb+ delta 39 vcmeyy{Ed0SiisCkSq;ssOe`jDS~NM4F^b10F)zI|F+J5vA+>n&E=C&wHBnDF6Tf delta 21 ccmX@be2RHO2bZy~k)eX2nU#sf#z_{807<0_C&g3CnL$XvnD#LCcY;--B(K8bnhrHSdORtlLVlk*v)CtqhY2LKVX4Zi>Y delta 37 tcmeBU>0_C&V&Vl>Rzou@6N`zP_D!y3jN0+7C!DXUrWUgRnVr6KyaZ&{%06>QY>i_@% delta 21 ccmeBT>0+7C!DXy#WT;?hW@TcraZ&{%06=2}>i_@% diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.mo index 7fc985a23315f88079799ca28691c47ceaa149db..0eef336a99b25cef4e93ca7261dada56fc25106f 100644 GIT binary patch delta 41 xcmbQrGL>b*3N8~}BXb2q6DvcriJK1b_$20~mnNpCS}7EiOfF`Oo_w3p3IG(W4dVa+ delta 38 ucmbQrGL>b*iisCkSq;ssOe`jDIyAYFF^bzKF)zI|F+J5vp1LVG!DXUrWUgRnVr6KyaZ)8C06?(??f?J) delta 21 ccmeBX>1LVG!DXy#WT;?hW@TcraZ)8C06>ie?f?J) diff --git a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.mo index 971b98f99ae9f1ced04b1b4ead4d3f5db95bb378..15e2aa21e8dc8186e4594388cb94bf47b26d9186 100644 GIT binary patch delta 21 ccmcc3a+_sB2bYPik-37QiIt(*#z`j`0Zq{c-T(jq delta 21 ccmcc3a+_sB2bZy~k)eX2nU#sf#z`j`0Zpw2-T(jq diff --git a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.mo index 06a99ad5ae830e0717128bbfd6f4c6b5be42d892..5c9ab1af8975a24797b507e366c17e4f99b7fe23 100644 GIT binary patch delta 21 ccmbQiGJ|D82bYPik-37QiIt(*#z}3A07BCS6#xJL delta 21 ccmbQiGJ|D82bZy~k)eX2nU#sf#z}3A079<@6#xJL diff --git a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.mo index 0790f194643d55d016546fe7e0c7ce7d697a159d..ec988613cfebfb8e9381fcced0e2dac2e73f8111 100644 GIT binary patch delta 21 ccmcb|e2;lT2bYPik-37QiIt(*#z{Vm08J?dWdHyG delta 21 ccmcb|e2;lT2bZy~k)eX2nU#sf#z{Vm08Ir3WdHyG diff --git a/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.mo index cebcb76f3f35858ea13fef07178fec0794707515..cd7be672f35b6324239bb2e65b7abadd36f85af2 100644 GIT binary patch delta 21 ccmcb?e1myH2bYPik-37QiIt(*#z}6B08A|gQvd(} delta 21 ccmcb?e1myH2bZy~k)eX2nU#sf#z}6B089x6Qvd(} diff --git a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.mo index 5af4e8686fd17e34202d42c975bd216678b6dd06..67d713c933053827e5ca03c0809bcebdcb57b3fa 100644 GIT binary patch delta 44 zcmeAW?-1W`orTLp*T`JK(8S8nZ1O{vg*-lqdFiEz>8Vx0(mP}sH9L3|4n3rCfn4W5-kd(fegXK080ASb; AMgRZ+ diff --git a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.mo index 3f65ffc5af4ad174b8d7b2d7b626d991ee76a340..fee1a39b15f95657f53178d18fd0255af7a19c1c 100644 GIT binary patch delta 47 zcmZ23v|MPzbrvoYT_bY^LlY}Qv&j!x_VN29=B1Y=rl(pdBo)UyIZmF(8oim5O^z7= Dah?w5 delta 46 zcmZ23v|MPzb(YEhSy)*O&8$o;CO>4^H+em46u(bmUV3R_da9K|QgOVK<7N&vd1e5Q Cu@9*L diff --git a/mayan/apps/tags/locale/da/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/da/LC_MESSAGES/django.mo index aed3bd6c5530bee530bc56d389560dfe807e07c5..10341f863b3ab0299270f8a8c414c528c0c78350 100644 GIT binary patch delta 44 zcmaDa@LpiUE*35mT_bY^LlY}Qv&lzT7V`Kc=B1Y=rl(pdq$EyGVU6B=hIKI$08}Xt AG5`Po delta 44 zcmaDa@LpiUE*36hT_ZyULo+KAi^)e=7EUf=jpFf1%u6p#Oi#5^NJ-p$nso^i098c~ AKL7v# diff --git a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.mo index 90ced9d675c38465c4eeaad73472be4b47f43d24..fb0499182073fd5483929f4d93e00447fbaf8a86 100644 GIT binary patch delta 47 zcmX>kcSvr-4h}98T_bY^LlY}Qv&n}z*75r!=B1Y=rl(pdq@>2XxK7UJjNW{UGlLZX Dc&iWH delta 46 zcmX>kcSvr-4vxtWI9OQ?&8$o;CLiKhH@Sf`ir*(OFTFG|J=IDfB{kl~b@NTmOjZDo C?GS|k diff --git a/mayan/apps/tags/locale/en/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/en/LC_MESSAGES/django.mo index 1819fa675f0d0bb86df485725316cb1b87577e13..eae7e6d97d37ba83c0a34b5849846d47968e9792 100644 GIT binary patch delta 23 fcmca8a8Y2x0v0Y4T_bY^LlY}Qv(2kmmNNqYTZ9K3 delta 23 fcmca8a8Y2x0v0Y~T_ZyULo+KAi_NQ8mNNqYTVMwq diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/es/LC_MESSAGES/django.mo index 45c6fcf63afec35a530b52df92795dd6c4f6103f..095653d97cd57cc73c7c9e77e5c8ead47c7b6f5c 100644 GIT binary patch delta 44 zcmbO)KVN>s4h}98T_bY^LlY}Qv&n}z7V-Eb=B1Y=rl(pdq!v$3=8WEan)3=P06+u} A0ssI2 delta 43 zcmbO)KVN>s4vxtWI9OQ?&8$o;CLiKhG`Wy7ipM80FTFG|J=IDfwRrO>&a12dQ}qw0 diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.mo index dc95d9ce59803965e91b42ac906f4c2e18482db5..ed2c9bbda4228194b2c1715c576b21663e81bc05 100644 GIT binary patch delta 44 zcmX>lc}jA_K{hTET_bY^LlY}Qv&pB~7V-Eb=B1Y=rl(pdq$N(yVUON?h5Z`~08TUy AcmMzZ delta 44 zcmX>lc}jA_K{hU9T_ZyULo+KAi^-?i7EP{VkK*x3%u6p#Oi#5^NK4#&nf*Hp08h#f Ag#Z8m diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.mo index 223dc021f2286383ea7b6884a9396a1aa13e6c02..921a1e79b0e7589779a659235a55c4801d78b0f0 100644 GIT binary patch delta 44 zcmeyV@Ka&K4h}98T_bY^LlY}Qv&n}z7V`Kc=B1Y=rl(pdq!mq0;*8#WigP_10A48% AkpKVy delta 43 zcmeyV@Ka&K4vxtWI9OQ?&8$o;CLiKhIJtl`ipM80FTFG|J=IDft!VQ}&JAn;aaRyF diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.mo index 24366adc82a5e905360ec9efc27b7aa6a468b3ff..c380683930f71d3ad3a4b18fdc314ea9a4b94665 100644 GIT binary patch delta 41 xcmeys@_}W-XD$<6BXb2q6DvcriGP>y_$20~mnNpCS}A0dPF}zmJ(+_k0{}jJ4wC=? delta 41 xcmeys@_}W-XD(x1BSQs4Gbj*697U34xj)4 diff --git a/mayan/apps/tags/locale/id/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/id/LC_MESSAGES/django.mo index 4fd79cec84c55411a27090a9fc88d5aac375a15a..0cd22efbba74bfdf1921ef6d0ada36ba6a43ae74 100644 GIT binary patch delta 41 xcmX@ja++nrJuVYnBXb2q6Dvcri7%G&_$20~mnNpCS}A0vOzvTfp8SO|8~`uD4%Pqw delta 41 xcmX@ja++nrJuYKiBSQs4Gb8Vxn+a delta 42 ycmbOyJ5P3l83&iKu92aFp_!G5#bgJLMU&riL~;2f=B1Y=rl(pdY8VxneolPDK{hTET_bY^LlY}Qv&pB~7V`Kc=B1Y=rl(pd6y!|KW{=){nf*6208ge5 Ak^lez delta 44 zcmX>neolPDK{hU9T_ZyULo+KAi^-?i7EZ2YkK*x3%u6p#Oi#5^D9G7-iTw{V08rZx Ap8x;= diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.mo index b5589b01b6ad6d7515b6ff56931f1aacab6d5750..eabb05627e49a650f1091d90c30126a3c1469ee6 100644 GIT binary patch delta 44 zcmeyv{fB#lB{P?au93Ndp^25D*<@$tr93`~dFiEz>8Vx<1tpW8Ge>XsXIaY#06HlS AZ2$lO delta 43 zcmeyv{fB#lB{P??u92aFp_!G5#bjsZrIWuhM{)Zk=B1Y=rl(pd6m0foSpcUHC8SYT_bY^LlY}Qv&j!wH}d-==B1Y=rl(pd6qLj}1x=p77QOj5TLv=# Di~JCz delta 47 zcmaDX@>pcUHC8TTT_ZyULo+KAi^&gIH%?y27RB$An3rCfn4W5-P*4)@6twvlTP8CA DkO&a8 diff --git a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.mo index 3f682babf4e958bc4c0a3c8d646c532d5eb8c0da..9b044b28788834e1d1502268bd0041e3adb9e8d4 100644 GIT binary patch delta 47 zcmZn=ZV=vZorTLp*T`JK(8S8nZ1O{v4g5ZddFiEz>8Vx(^b delta 43 zcmbO%I$3nXb(YEhSy)*O&8$o;CO>3ZG8Vx<#X0f8o|Dy?q9;#cIs*Vx Cc@GT$ delta 46 zcmcb|c8_gC4kMSbu92aFp_!G5#pE)^O_ME{qWFCh^U_Nb(^IV!igV(FJtt3OItu_$ CnGYQR diff --git a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.mo index 5940c2983d7c3a4405d34d0fc216e6346af6aed4..f3df646cd89f4693e7ba013d9a3e919171acb10f 100644 GIT binary patch delta 47 zcmZn?Y7*LTorTLp*T`JK(8S8nZ1O{v&HO%zdFiEz>8VxD&MsNPd%EAl) DXl)OR delta 46 zcmZn?Y7*LTon`WW7FJe6GbDFv CZV*lY diff --git a/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.mo index 9f7d4bd7ddfdf80bb35d68e243c147ee2faf50c4..c0a6af088f6fdcd6692db215f97972d67d9caa13 100644 GIT binary patch delta 47 zcmdlWut8wME*35mT_bY^LlY}Qv&lzT*7Ex#=B1Y=rl(pdRAt0F`%Nxjjoy5lHIxYe DZVnHf delta 47 zcmdlWut8wME*36hT_ZyULo+KAi^)e=)=q9@jpFx7%u6p#Oi#5^sLF_U_S<}mHH--W Da2^k> diff --git a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo index 5e09d81d578749fd50939bed28516e8b7c0e96e0..18a7a23e519abc7c78495bff72c4f9b14d58cbda 100644 GIT binary patch delta 44 zcmZ1>u|i_QQdTY#T_bY^LlY}Qv&rjO7xMTd=B1Y=rl(pdBou|i_QQdTZwT_ZyULo+KAi^=O*7fz04i{kM~%u6p#Oi#5^NG#gCjjf0k067B= APyhe` diff --git a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo index b73b35d8dd5372c88a9410e99341d5e7a945e7c5..54c9ede82cfba2ccd883c5568cad72b504cd850d 100644 GIT binary patch delta 44 zcmew@{abp&QdTY#T_bY^LlY}Qv&rjOm+<%`=B1Y=rl(pdB&AOdVvF9qi_MW809C0D AzyJUM delta 44 zcmew@{abp&QdTZwT_ZyULo+KAi^=O*mrPDzi{kM~%u6p#Oi#5^NJ`(llg)`809Duy A%>V!Z diff --git a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo index 8a5fb36ff6a993d01eabdaddfccd25f67fa1b675..ac2d4138db73bce9fdffe7b212dcda710f7be782 100644 GIT binary patch delta 47 zcmX>rdRBD9QdTY#T_bY^LlY}Qv&rjO_woBA=B1Y=rl(pdBo)UyIZn=Di{5;l?He-y Dc1sXT delta 47 zcmX>rdRBD9QdTZwT_ZyULo+KAi^=O*_f4*4i{kf5%u6p#Oi#5^NGgtZa@>54?K?97 Dc$W}c diff --git a/mayan/apps/user_management/locale/da/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/da/LC_MESSAGES/django.mo index d4f68d17e887807a43f4d93c79ec19fd67b558d7..160b1d958e0e95e07da9ef247fb3f6a03c186c93 100644 GIT binary patch delta 44 zcmdlkyj^&MDJz$Wu93Ndp^25D*<^dxg*-lqdFiEz>8Vxpds2483=S?6T_bY^LlY}Qv&oA%*75r!=B1Y=rl(pdq@>2XxK8%xjNZJ9lb;m; DZ{rUT delta 46 zcmX>pds248435bMI9OQ?&8$o;CNJVxH#vbbir*(OFTFG|J=IDfB{kl~b@NV60agHj Cc@LNX diff --git a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/en/LC_MESSAGES/django.mo index 36dee436d4117d5e10a0f4d3c3f64e218cd0a30d..7768e4efff55902193f3ddb2c85ff441d2e18812 100644 GIT binary patch delta 23 ecmcaCbXjPFDJz$Wu93Ndp^25D*=BoI5f%VZ?FGI7 delta 23 ecmcaCbXjPFDJz$;u92aFp_!G5#b$d}5f%VZ$pyXu 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 a6a8de7fbfff3a08dcca3c3d09664b53e4ba0e9d..744b313d9a581a8245bbefc5806a08421c2dcc44 100644 GIT binary patch delta 44 zcmZ1=w?J;g3=S?6T_bY^LlY}Qv&oA%7V-Eb=B1Y=rl(pdq!v$h=8WFFnzNJ@05!-C ABLDyZ delta 43 zcmZ1=w?J;g435bMI9OQ?&8$o;CNJVxG&ztnipM80FTFG|J=IDfwRrO?&N5a2L)i|f diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo index e96595f93dd306fccc90c0f5d1d732183f66bf99..fbdb3acaee753c78e25d79b7e3ba53bef0d74cac 100644 GIT binary patch delta 44 zcmX>ieMEYLKRcI+u93Ndp^25D+2ly}MLa%8VxieMEYLKRcJPu92aFp_!G5#pFo#MUy!=qIi4~^U_Nb(^IV!(h@f(awM|?044ej ACIA2c diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo index f4c6638ccfce4d36a91904d3fdfea3475e88c2b6..27ea533c87d7f646823d0b92e90a9d24986a5217 100644 GIT binary patch delta 44 zcmX@9a8hBz3=S?6T_bY^LlY}Qv&oA%7V`Kc=B1Y=rl(pdq!mqe;*8$BigP|207PjH Ap#T5? delta 43 zcmX@9a8hBz435bMI9OQ?&8$o;CNJVxI5~hbipM80FTFG|J=IDft!VQ~&IN1$QWp;< diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo index ceb959b8f8b145946addc7546104b27698bcd6fa..3b28c7922e8abb7f9bae81cddd4fe3cc77a9d5b0 100644 GIT binary patch delta 41 xcmX@fe3E%W2bYPik-37QiIt(*#7Rqdd=m50OB2&mtrRj!Cz~=xPoB%D0{|E44O##I delta 39 vcmX@fe3E%W$HWb+tcGS*CKeMXEt%}h7{%k0n3rCfn4W5-kWo5$4x=sr9H9-x diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo index 5b9ce2cf256b9cfc1260647d98b29ec5e451c04a..af923b777232c788f06827926fec5099ceefe285 100644 GIT binary patch delta 41 xcmaFP{G55hGA`d4%VD;t-Iu93Ndp^25D*<^mUMLa%8VxPx# delta 42 ycmew>`d4%VD;t-wu92aFp_!G5#bkcAMU(fjMREBg=B1Y=rl(pdY!+pI!3+Qw7Y!Ex diff --git a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo index 79229028b871ad49b48707e5e5934a7a84302ad3..65f047cd5d2c9c3f3ed60e50a80473c351d7108d 100644 GIT binary patch delta 47 zcmX>qcT{e}3=S?6T_bY^LlY}Qv&oA%HuC!<=B1Y=rl(pdqcT{e}435bMI9OQ?&8$o;CNJXHI60X!ir*(OFTFG|J=IDfFDKs5XY(G;PF4Vd C5D+#1 diff --git a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo index 40818ee3af7679afe071fcd9f52772eff735fe48..e2c996f11fcdf17ba5f0e82561e40a3c325530ec 100644 GIT binary patch delta 44 zcmew>^;c?xKRcI+u93Ndp^25D+2ly}g*-lqdFiEz>8Vx<1v!&{vPW-D^;c?xKRcJPu92aFp_!G5#pFo#g_GGiqIi4~^U_Nb(^IV!3UW3laLBR(063Tp AVgLXD 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 73fb13342b9c77637a183f860dcd5903ddb14924..a79fd1d4b7268f71ca3f079434e3a05896d40099 100644 GIT binary patch delta 44 zcmZ23yIgjIEeDs0u93Ndp^25D*<^Q)r93`~dFiEz>8Vx<1tpVTb3|_r<_uv403~e= Awg3PC delta 43 zcmZ23yIgjIEeDseu92aFp_!G5#bkGmrIUYhL~;8h=B1Y=rl(pd6l@OU3}XcV9$gJi diff --git a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo index ecda4fe07b0d841a6c4437da5c882b88f7857ba5..8c1b467756e59e1249dd6df36c6c15fa6a9b57dd 100644 GIT binary patch delta 47 zcmaDQ`ATwwKRcI+u93Ndp^25D+2ly}jr=}|dFiEz>8Vx<1tsxLL6bQ-qBoatl(7H+ DWxWo! delta 47 zcmaDQ`ATwwKRcJPu92aFp_!G5#pFo#jgzG~qWFCh^U_Nb(^IV!3QFRgf;Ja(l(PT; DVR;V6 diff --git a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo index 5871089c0fa9e2368c645f1fe30d0f8edb4711e8..2d48eb29b3efdba5f1f2f0a462a7ee64783ae372 100644 GIT binary patch delta 47 zcmbOzHc@QDQdTY#T_bY^LlY}Qv&rjOH}Lx;=B1Y=rl(pd6y?VU`A?2xi{5;a&4UF1 DUyctb delta 47 zcmbOzHc@QDQdTZwT_ZyULo+KAi^=O*H%!iFi{kf5%u6p#Oi#5^D9Voy^51-d&65QH DU{Vh_ diff --git a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo index 9bc3e16135d22326e7048dc72ea56f1deb0e263b..2777f310c986258568fa99f071b46cf828a4556e 100644 GIT binary patch delta 44 zcmew?{aJd$QdTY#T_bY^LlY}Qv&rjO7xDNc=B1Y=rl(pd6qQa6V2j?ogUy;908`@* A!T0_DD!DXUrWUgRnVr6JHandG!pTxZM(!}&sD}~~m_+Zb;&WzEM*D)pl05NP1 AM*si- delta 42 ycmeBU>0_DDF>wPctD%{diN(Z8n8VxzK^lbcvKPj+RC;`d3+OD|1KPqk7g%Zv~6+dPlWgc$&E Ctq(~6 diff --git a/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.mo index d316c4d418ac0ad2858684d459e1cd90196bdeb7..a0110d25e40cb7f55088cd6ce160ce68c08f2a8d 100644 GIT binary patch delta 47 zcmcaEbX{n}1XeB+T_bY^LlY}Qv&pkq*Yf)$=B1Y=rl(pdRAt0F`%QLZi{8AEZ5a~) Da6%89 delta 47 zcmcaEbX{n}1XeC%T_ZyULo+KAi^;QC*G>*+i{kf5%u6p#Oi#5^sLF_U_S?LHZ8;MF DZ^93( From 9ab03d2c162ebea4a145bdbf502f4d21dcdd5493 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Apr 2016 14:54:50 -0400 Subject: [PATCH 188/205] Expand the documentation chapter on transformations. --- docs/topics/transformations.rst | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/docs/topics/transformations.rst b/docs/topics/transformations.rst index ddd26c7ef9..ffde0c7c7c 100644 --- a/docs/topics/transformations.rst +++ b/docs/topics/transformations.rst @@ -7,5 +7,16 @@ documents. For example: a scanning equipment may only produce landscape PDFs. In this case an useful transformation for that document source would be to rotate all documents scanned by 270 degrees after being uploaded, this way whenever a document is uploaded from that scanner it will appear in portrait -orientation. Transformations do not physically modify the document file but -are just associated with the document's temporary graphical representation. +orientation. In this case add a this transformation to the Mayan EDMS source +that is connected to that device this way all pages scanned via that source +with inherit the transformation as they are created. + +Transformations can also be added to existing documents, by clicking on a +document's page, then clicking on "transformations". In this view the Actions +menu will have a new option that reads "Create new transformation". At the +moment the rotation, zoom, crop, and resize transformations are available. +Once the document image has been corrected resubmit it for OCR for improved +results. + +Transformations are not destructive and do not physically modify the document +file, they just modify the document's graphical representation. From e824fbffcf55f5ec032b64e6dd71642dfd8f656a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Apr 2016 15:15:57 -0400 Subject: [PATCH 189/205] Add a documentation chapter regarding settings. --- docs/topics/index.rst | 1 + docs/topics/settings.rst | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 docs/topics/settings.rst diff --git a/docs/topics/index.rst b/docs/topics/index.rst index 5f892d160b..e576ad56fa 100644 --- a/docs/topics/index.rst +++ b/docs/topics/index.rst @@ -20,6 +20,7 @@ Introductions to all the key parts of Mayan EDMS you'll need to know: smart_links tags mailing + settings file_storage backups screenshots diff --git a/docs/topics/settings.rst b/docs/topics/settings.rst new file mode 100644 index 0000000000..fab60a9779 --- /dev/null +++ b/docs/topics/settings.rst @@ -0,0 +1,12 @@ +======== +Settings +======== + +When Mayan EDMS is initially installed a ``local.py`` file is created inside the +``/mayan/settings/`` folder. So if you installed Mayan EDMS according to the +instructions provided in this documentation your ``local.py`` should be located in +the directory: ``/usr/share/mayan-edms/mayan/settings/local.py``. + +For a list of all the configuration options, go to "Setup" then "Settings" on +your browser. This is also a good place to check if your overrided setting +option value in your ``local.py`` file is being interpreted correctly. From 8a58ee2124a6f9c7302037edbf4b1de704eea6f7 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Apr 2016 15:16:11 -0400 Subject: [PATCH 190/205] Expand the documentation chapter on file storage. --- docs/topics/file_storage.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/topics/file_storage.rst b/docs/topics/file_storage.rst index f02e38d7aa..ed39309c3e 100644 --- a/docs/topics/file_storage.rst +++ b/docs/topics/file_storage.rst @@ -26,3 +26,10 @@ not by the project but by the ``Storage`` module class. All the other modules don't make any assumptions about how the actual document files are stored. This way files can be saved locally, over the network or even across the Internet and everything will still operate exactly the same. + +The default file storage backend: ``storage.backends.filebasedstorage.FileBasedStorage`` +is a simple backend that only supports paths and not IP addresses. In case you +are interested in using remote volumes to store documents (NFS, SAMBA), first +mount these volumes so that they appear as a directories to Mayan EDMS. For +direct support for remote volumes a custom backend would be needed such as those +provided by the Django Storages project (https://django-storages.readthedocs.org/en/latest/). From af273fbfc389d1f714cf3880501d4c56eca7405a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Apr 2016 18:10:21 -0400 Subject: [PATCH 191/205] Remove the creation of a test user. --- mayan/apps/folders/tests/test_models.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/mayan/apps/folders/tests/test_models.py b/mayan/apps/folders/tests/test_models.py index ca4682f94d..cce48cc466 100644 --- a/mayan/apps/folders/tests/test_models.py +++ b/mayan/apps/folders/tests/test_models.py @@ -1,6 +1,5 @@ from __future__ import unicode_literals -from django.contrib.auth import get_user_model from django.test import TestCase from documents.models import DocumentType @@ -25,11 +24,6 @@ class FolderTestCase(TestCase): file_object=file_object ) - self.user = get_user_model().objects.create_superuser( - username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, - password=TEST_ADMIN_PASSWORD - ) - def tearDown(self): self.document_type.delete() From c6eea8ba6476769382cf05d3439eb3b6e7fbf8c5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Apr 2016 18:19:30 -0400 Subject: [PATCH 192/205] Don't perform OCR in folder model tests. --- mayan/apps/folders/tests/test_models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mayan/apps/folders/tests/test_models.py b/mayan/apps/folders/tests/test_models.py index cce48cc466..ea96c417df 100644 --- a/mayan/apps/folders/tests/test_models.py +++ b/mayan/apps/folders/tests/test_models.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals -from django.test import TestCase +from django.test import TestCase, override_settings from documents.models import DocumentType from documents.tests import TEST_DOCUMENT_PATH, TEST_DOCUMENT_TYPE @@ -13,6 +13,7 @@ from ..models import Folder from .literals import TEST_FOLDER_LABEL +@override_settings(OCR_AUTO_OCR=False) class FolderTestCase(TestCase): def setUp(self): self.document_type = DocumentType.objects.create( From f944f9ebbcf0541fdfd03826cdbed0fac1afa59e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Apr 2016 18:46:58 -0400 Subject: [PATCH 193/205] Add smart link dynamic label test. --- mayan/apps/linking/tests/test_models.py | 50 +++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 mayan/apps/linking/tests/test_models.py diff --git a/mayan/apps/linking/tests/test_models.py b/mayan/apps/linking/tests/test_models.py new file mode 100644 index 0000000000..41fba66f49 --- /dev/null +++ b/mayan/apps/linking/tests/test_models.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- + +from __future__ import unicode_literals + +from django.contrib.auth import get_user_model +from django.test import TestCase, override_settings + +from documents.models import DocumentType +from documents.tests import TEST_DOCUMENT_PATH, TEST_DOCUMENT_TYPE +from user_management.tests.literals import ( + TEST_ADMIN_EMAIL, TEST_ADMIN_PASSWORD, TEST_ADMIN_USERNAME +) + +from ..models import SmartLink + +TEST_SMART_LINK_LABEL = 'test label' +TEST_SMART_LINK_DYNAMIC_LABEL = '{{ document.label }}' + + +@override_settings(OCR_AUTO_OCR=False) +class SmartLinkTestCase(TestCase): + def setUp(self): + self.document_type = DocumentType.objects.create( + label=TEST_DOCUMENT_TYPE + ) + + with open(TEST_DOCUMENT_PATH) as file_object: + self.document = self.document_type.new_document( + file_object=file_object + ) + + self.user = get_user_model().objects.create_superuser( + username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, + password=TEST_ADMIN_PASSWORD + ) + + def tearDown(self): + self.document_type.delete() + + def test_dynamic_label(self): + smart_link = SmartLink.objects.create( + label=TEST_SMART_LINK_LABEL, + dynamic_label=TEST_SMART_LINK_DYNAMIC_LABEL + ) + smart_link.document_types.add(self.document_type) + + self.assertEqual( + smart_link.get_dynamic_label(document=self.document), + self.document.label + ) From 3384c06c03149c150ef8484c020993db11ccce46 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Apr 2016 20:19:26 -0400 Subject: [PATCH 194/205] Mock the gpg tests that require internet access. --- mayan/apps/django_gpg/tests/literals.py | 275 +++++++++++++++++++++ mayan/apps/django_gpg/tests/test_models.py | 36 ++- requirements/testing-base.txt | 1 + 3 files changed, 308 insertions(+), 4 deletions(-) diff --git a/mayan/apps/django_gpg/tests/literals.py b/mayan/apps/django_gpg/tests/literals.py index a35d0ae523..8e4fc83174 100644 --- a/mayan/apps/django_gpg/tests/literals.py +++ b/mayan/apps/django_gpg/tests/literals.py @@ -88,3 +88,278 @@ TEST_SIGNED_FILE = os.path.join( 'test_files', 'test_file.txt.gpg' ) TEST_SIGNED_FILE_CONTENT = 'test_file.txt\n' + +TEST_RECEIVE_KEY='''-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: SKS 1.1.5 +Comment: Hostname: keyserver.deuxpi.ca + +mQENBE4rh5YBCADKxVsY///jvdY94GTyQopyzTDBBVdftJNlXrLdEz/YJTQV6JtyggUAgATw +1bSZmKixgqGGD90QAt5+FXTdLJCKl9OKR/AyXnpp4OebmN+xw2jKzRcWxJmrBoqcSH/b13Qt +PRt4AektgMKSKdaIbZ8bPYf91iQ8AxB4mwkYyO+QBGXZw6VcKmKiEkxYOx5NPVSI/GqyTqVZ +pb6qRkXzG7N+r7kIM0jesZM7IznR5dsGcqWwKBEzo8dhO4jmSJsiIp/Cy3pOKLG1+qEqjlc7 +vBAARFtvzSNZTRGouXTDDDathEYAkex7HtNF70CtSLSDbPhwriXfZkXqiL1PqYyZSfd7ABEB +AAG0NFJvYmVydG8gUm9zYXJpbyA8cm9iZXJ0by5yb3NhcmlvLmdvbnphbGV6QGdtYWlsLmNv +bT6JATgEEwECACICGyMGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheABQJPJFTpAAoJEF8/f3XS +EHJNFzcH/j3/EzD+Olc7b1Jhv6KvVRjDNyjyK0NtRe2Vi7O+4Wan6PxROCh/nG16dY3PTn7/ +oLCUNnM3/gjF+5Exvg4PpbPVeMbaB9RH2mHJDevG/vLv8RvUeCmgcpadvuxBx+nzU06ua2fl +UMxDX6Zl2EdOwQpj4nr1sYyhkaj/6imexeL6vIElKPWUViKAn8h35iVOOKaB/Cj9W58Xtjxt +72WL4rHwlW/P8P3BsAYwAUzh7hI243PhBgJztLo+/rTB8fz3lpig37/NE5MfZufxgRxCtFiM +Sq3OlPfw6fS/95oGlCUlNx7LUtCmkvzdEdDbsiQ2s/6DdXI8vp1pxtNNmVAwV8WJAT4EEwEC +ACgCGyMGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheABQJPI6NeBQkTy9cqAAoJEF8/f3XSEHJN +rK8H/RE1B0noeYqNT6FCzZpzDj++phejZWNTs3tkRbsA7Z7FCttigADqlmL9c3ERccZZQDr9 +WMXQ80tyFtZOWcan/a5PMbySVrjR8NImIa+yySsiGcZIZI67zgfvQ+Zh0GzLdr+Eg4HTUtAz +3dgMW8APncVINC6FCbX8B0VbEoUL/prUBvu3Lz/bR0Y5guT2bUd3Fx9YfR6u2I6HI+tuovSw +EjuiGjmhgbb4oQUIEuaavHz1nGwY7f4ACc5jr6g6Oc/DqX5l52tPsromsNA9zxpBO/SckZCD +iaxI9XDpGGTEoj6GIsBAG7RZclOL/x4Y1yy5+U4NhwSGQuJMTPFswwS6TmyJAT4EEwECACgF +Ak4rh5YCGyMFCQlmAYAGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEF8/f3XSEHJNEUAH +/1fsYyLF9tVnKyoCfOvPHhP1EytL6hti1iwS05DTIzkSLnVgpIvEEbq2+IS32PU9c32+XW12 +fuAxMK5R3inmMyNIga4WSVsMI9JLSe2gvA7Bc+StldOQGv5fGxHM1abaknJ2rKprS8qKsem/ +cq9NnnSxLljGQn3v6oC63wNaZLhP7heWGQrJdJidO566CBEoRCbJxA1toTMT9nhEACYCIX9a +E2BDk5PI6UJHeUMo9iD7y1ag+mCEGxVTVz/X8Hc8tSNieqI4iuhdTJzbtvSDqsOmceHMQFIS +uhnEHJM+4CQOtmsS3Ds+GUkP5z48bjJuqGKcpdfzBq+w5WOKEoEFPmaJAT4EEwECACgFAk8j +o3sCGyMFCRPL1yoGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEF8/f3XSEHJNP80H/je5 ++Byy9ajLTtW6kxSsYDcO4YzI4GvUuvLAgnWB1/eK22h3LK1lmicuhBr13SlyF1TU8hW6IxpM +wEu+g1cWibk0Sq+GiDdJvy8bYQFC/gA2ToN9mAyCh0FxXWo7k/3HXnbCkMLyEgOJRxc1CAhZ +YzUxm4//HS1ge0DpMXuhpXFBIN9rJJ+c7tuUDSt0TcDSOBVAYwgMiZoQuqJhQguYDuBds8Im +/xowiWKSevFrxG25+fz5rKrl2KpPRdg6Gy73kkD+Iqfa7lt2ajv57s8AbMnmFu81W5RZGs4I +TQg/C2zbUFMzevZtCucvlsuaXyZcKNeCqeVCzD4YgmlNz5t+B9aJAhwEEAECAAYFAlH0zBcA +CgkQjAwHSTEU/x3h0w//epzs+54wB4v5Dpo57LDObm5Bp+egbSTe6tod2vxAAFTT3nbQ1N6k +8TY15TvfxoOUGto+NyFKxMzMqCZM0kBofiDuEBR4G129WxQDOdT6d/ocJgj2gXYPa97XrZ4m +bxHpM4/dgeC2mt4ZWD2QBJZ6Wa/2Fn9nPnt9wEM8TWkePsEKIBWPH1sTIkG9B3HBvu6U8az5 +ywSnzLwwW41+uNZFzmd58rXjrVOx5g2ahWjjpxJiwycpTzLmslIgbqwgeqjUyXLteLeq+XQZ +z2RCi1bkJgTu3RihfhbYE1t94fJO17Mq6O845QF2vWkuF4WWREGX7/Zr1PZ1UhR6Y0gnbfS+ +OBkd+PLTk6NxQb8D4ctXvR89iF0EZsWEz+ssonM4c9MwLl2jQ7o6CzeeI1OAy3xJwOvLGhWR +3hQxL5++k1LG0fmOsLEyWAMCQH5kqTSDxAC1mcdBYuSq4B9oQjZbuWXLEE9geU0HZK5HYJJj +doqSfWKvH5LAz0zLKiHdYFlsIGPjT/A7XtSnbbE5MKwUdYJjSkfwZbWqUCrzvY6RFnWhXfEE +nIfmLKfco1kKVmrYBvPp/qxq+Ti8V8KTQJjTXngg31OAycQv3l00gVNWNWx8aybm77UUnxl3 +yuxe6RavfCMUZo6hIDSOUJiw8KI8dj9GS8zn+jZ6ERAE8/v4TDp0X/jR/wAAD73O+wEQAAEB +AAAAAAAAAAAAAAAA/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQN +DAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJ +CQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIy +MjIyMjIyMjL/wAARCACKAIMDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQF +BgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0Kx +wRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlq +c3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT +1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQF +BgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB +CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hp +anN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK +0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD2XaxdNo/j/Wrf2e5D +Fg6n2qOFtzwe8hP6VpUAZp+f5ZE2t0qJx5ZxjIJ6VeuGUMTjnpmqTlXXJyCDSGVZFG5sn5Qc +gAfnVe8v4bbEcfMnp6fWq2taqLC2Cj/Xv93PYetc3HcmRtxbJPU+tZTk1ojejSUtWdD9oM5G +9s+g7CrMdr5h4OM96xYZSOQa0Ib0gc1kk3udbSSsi5KklupAmDD0NQx3KhSrZBPFNeYuSSci +qVw4HSk5uJHsoyReHzBz0GaZHEoYsSTk96oJevDzwy91NaUEkckHmqd6v+ntW0JqRy1Kbg7M +qz5RCAQeRTEA2AZ6nFSyBDKuMYx2poQhkGM/N1qzMq3ACSD6VUcHewIBIGau3S4lUYyKqyqQ +MgZz0oAq7d3JXk0UB8cf1ooA7YTOjI2T8pJFXItSkcAELn1rOJBKg59PrToQYyABznnjvVCL +qzFmGTnPNMZtytt7HvUfCgHPbj3qhrFy1jod1MDh9m0fU8f1oYHDa9qJv9XldWPlIdifQUWg +ckHPFULcIhLyDLHoDV2O4w3GMHpWVmzvppJGvbNyMkD61oxtCAPmHrWCsm35iaxdZ1+6t7cC +wg8yVuOe1NUmypTij0MSWxXPmIv+8cVnXToSSjhh7HNeXxjUboebqurxWo/55lwM/rVi11M6 +TLlNRS5gf7yk/qDSlRdtDONZXO3muCuFxke1NtNQEF2qu5WJzh+envWRb6pZ3qgQXUTOf4A4 +3flVW5kYSEH1rGKsyqjUonoQiGFU9TyGFKrbQTyMKfzqjpN4buwt5myWUbWz6irj59eOea6F +rqcT0Kr7pGAb8fxqFxyxHpVpY2Vsbtw7ZquRz65zTEVBbBxuzRUjvIrkL0HSigDq4tiuu9Qe +Md+tPaWNuNpBPXDU2EByHzkKOvqak2o0ZIHJ71QhoOVAJ4HI4rl/Ges2sWiXFvHMk19gMttH +ln69SBnA9zgU/wAffa4PAmqzWM0kM8UG8SRthlCsCcEe2a5nwNr+iNpT6N8lteeSWcvj/SAV +yTuPVsHof8aAPOETW7xmmeZkZjwN4A/DGatQf2xayiSS4SXbztLkf0qzDaSXbTxnhcbU56VZ +tNKlgt7kK0OVUSO5ONijg4556jiqSLu0V7XxxeTmeGLTAphDF5ZZTsXAJ6ge2OtOg83U4kub +y4JWRPMEaHYgHp15/Emuq8F6HZvolw0kQkFwXZyeRzxx/nvWDp1rbabJNpd+ZI2hc+TJsJV0 +7cjocVPMr2NeWTScnuZ89r9lto5bWGIM7Y2qu5h74p8AvXRPNgLKQcjbjac9q3x9lUKLeUzt +6RwSM36Ka1beO8kjjePSbmRowQrSIsIxnPJY7j+VOUlYlQdzy/xpZy2MlpOitEzYfcOCDzz+ +lLo3jSZSsGqEzJ0E2PmX6+v869TbSFuJ5LzVre2cBSscJ/eBR7kgc9e3c/h55rHhezm1EyWU +JhUniNScVm5KWjH7OcdUemeEp0mVkRw8Z/eIynIII/8ArV01whVAAfcj0rzbwKjaEkkl1cBY +QcJFgkg9TXfWOrW+piSSHnGMrUxfQJ0p257aEkfy7jye/wBOtVgCwycgYq1IT83YY4zUCZ2s +cjFWYlVyVcjg470U0hmJOKKVxnUeZtjKgdTj6Usb7iMngHgVEQcYHXOaUAAKuOT61ZI67ig1 +LT5rO5j3W1yjRSrnqpBBrwrxD4Fv9F1mIRhZ7SPAiufM27wPuqw5+YDAyODiveFISMZBbBIF +cj4xYstmigiMbj078Um7FRV3Y87trHUpSQJ4YQepSMs35k4/Srr+HlaPM0k90xOcSPhfrgYH +6Vs2qKFqDVbpoAGjPQEEe1F9DsjTib3h0JaaP5TNt3R9h0qK4gimUXJukjdOjYzk9q5izub+ +eJtrKqDp16VGbK4eUP5skhYcAnhfoOlL2fUtVI7HTWOpNIu9sHBIJHrW1HfB4vvfrXM2ZhS1 +Ea/LIo+ZSepqWO7AOzOPY0WuNuxY1G7ZwUB+XNYrKEkDY5PSrkx3E9cGqkv315HAqHHQzlLU +ls4PMuHbPygevQmtbQIntZ5VPAV8H3HX+tZ2kRJNd3ALMCqDAHfJrfs13yszADnovSldWSQ5 +t+zdzVlk3KWxx0GarN94vn5AORUu3IYDO1eaYFDgjoDxWpwldmwx7fhRUjyKHI29OKKVx2N4 +EknHU1NEwWbO0YHAzVcZVyx42ipIsEZPQVZJYkG7ACg85rnfEsBm0OaZlw0ThgPxwf51vCVQ +u4kDHHNZ+q2sl5pcltE21pMnJ5z3/WpaGnZnnfnGNCwPGKy5nMzlpWwtaMO1mMbj2NZt/YiZ +1MczgDPQ8GkjsUrj1vIIkIypXpgtg/pVldbkgX9wjLGP7kZ/wqrbfZbSPD+Wnqe5q3Hq1pNG +YreQtjqFHWrSVje8FpcqPr8k021YXZzwP3ZFasEc0uwyLsPoTk1BaxRFxIq4B5zUV5rSWtzC +gYffCtj3qUzKo1uakp2k59azp5Ap9wanklBYt1rNuH3uRSlaxi23IIv7WnW6Gl26TsQqyKzh +flJPr/n6132k24g2RZLhEAz6msPwhDi0nkbrNJj8B/8AXJrqY0S2JweCeKziru5NST2HNtVn +HTiq5YJCnvzipJAWd+e+aruP3SqTllrQxKxfk5OTRSjaFG4c45opDOkZS0QHc9fenA/usbsD +PSopZMQrjr9aaHJgwOpOK0JJ4UTyG3EfOxIzTVaQorE856e1MVVaOJXGcEjNBkLXZHO1RikB +534qhOmXs86KQkmXT69x+dcjZaxvRxM20rwor1HxfpB1DRmgQ5nB3ox7cdPxrwO93RXcidCv +GKm2tjVTsjd1K9SXbFbjLHvU9nOmnTEqSduOo6/5zXNWlyqOu58A9SO1Sy3nmYkBxgfd9KpK +wue7udXc6/5UbRoQM8dOOlc1NePO+X7elUvthiQllBH4GoEuJJZW2rjcwAHvSaBzcmemW9x5 +lhE4J5QZqPGQzmo7CIx2EasCOBVswkxnFYSZ0xR1PhfjR4G/i+bH/fRraLM021iMA/yrE8MY +NjEueULfzNbi/NPn2xV0/hOap8TEb7znPGcUyd8AsB2xUhJDOT2NRna67Qe1aEEK5Kg8UVJt +A6dKKANWZgIVLdADn3pbckx5AH3uKZIUMfIyBkmn2r7ol2jjkVQieMDgnsMAU1AqyS9uc5NO +kQHgY4OailAMTktjsd3agBLkLMMHkFePevCfHGjSWeqSypGXXI3kD15zXsV5qIjQQ2zBmJA3 +44H0rzTx9qF9bgm2dhM7AGQDkYHY9jXIsVTnV9lB3ZuqMlBzlseWyJOkhAB4xirtvA8kDuOo +HPNdrp+gwalbx314m+5kGZOMAn1q6fDlsXAUbF9q2c+wlS7nmzB1+UxuT9DXR2mk2i6xax29 +2Z1UKXPllQG6kDJ57V3Nvodrbxl0QHjnPese68NRrqEmpHUI7NEHmksOCwxhR9ap3asxciWp +siPcNq8AGpvL2xgZzgdamtog8KsuCCM5p0i9scVk42VzoWpZ0C/t7YPDKWDb8DA4GfWuohX9 +5nvXDWNk11rCRhTtYZY+gHevQ4IU25x3615tTHrDVOWeqf4Gk8Oqkbx0ZSOT5gz3quSElYdR +2FXntSkrFMnjOKoTD96wII57/SvRoYmlXV4P/M4p0pQfvIfu4GRRUCSDYPpRW90QabybFI9e +v5VPZSokG58KoPU1iS3bu2do6YqFpHkADOxA7Zrzama0o/ArnTHCzfxaGzPq0SSEx/Oe3pWT +Pdz3DHe/yk52jgVDjnNOArya+Oq1tL2R106EIajf+Wie3Ncd4m1O6fxHFo9qnyyxfvyc/MCe +B+H9a7J/lKv6GsW5nsJ/F0Fn5ai6WMSF/LwWXnA3Z5wQOMVGFm6dSU10T/yNZpSjGL7j4bc2 +6CJo9mOAMVI0AJ6VvhQy7XUMPcZqNrKFuQCv0r0aWbQatUjb0MpYZ7xZipCQNvJArP8AEGmy +X2jzW0fDvgj8Oa6cWBHKyA/UUj2DNwXUD6V1rMcNa/N+DM5Yeo9LHN6HDdW2nJaXilZoQEIJ +zxjI5HsRWlHbSXMuyNc+p7CoNDguzqupwamHcpLm3YjAaLoOnX0/Cuqt4BwqKFX0ArlxeZxh +eNNXZpRw7avIZYadFajbH8zt99/X2HtWygCqB2FMhhCjA/OlmfaNi9TXzlSpKcuaT1OnT4UN +Rg8znt0pksCSDDKCKfGmxKd3qFNxd4uwNJ7lFtLQsSsjAelFXsmiutZhil9tmPsKfY5bqc0u +KcKKm5oM5pV4NO70UwHldyYrDuorCDXrV9p/tCTlSD1jXr+pFb8f3a47WiR8QdGwcfu2H61t +Qu5P0f5ES0S9UdpGwb7p/A1IGAPIqLA9KkrmRvzWH5X1FJvX1qL+KlptD5jFsr8y+NL6zbO1 +Ik8sHvxk/rXYQKFHvXn1r/yUqX/rgP5V6Jb9PwrTFL3k/JfkZwlp9/5k+dq5PWoVXcxdvwp0 +vSk/hFcjQ0OJppNIOhoqbDDNFNPWiiwz/9mJATgEEwECACICGyMGCwkIBwMCBhUIAgkKCwQW +AgMBAh4BAheABQJPJFT2AAoJEF8/f3XSEHJNtysH/R0ioy4FptIpmcwmhkbpBGv5QVxK0cmy +PAhTOo4I9iO0Xq2vPJDC23tcKkQiVWCVFH6De6j38a/YCJ75KGM29hzvULnYpWURm4JkNqol +n4gm/NhSVf6OOVuF2WBjBVqYyTOnG/w++hl0RnkOOYXY780Eci3ZKHcPuOK+JFLK237W2mO+ +ABzENIaMi7IcuzrPwAraelRKJRXmIWNAPxVqHKiTmBcU5gqodtXyWj6/bK8jDzEO1DFD7Whk +Bq8rlRgPlN7Wpg0t8cHddq/WIHm21IOVJEVcWVhW1BanVTFkRgfrPPvtsG2cY9+8SV1dmcd2 +defX4rRLvl2jFhG6fYCvU+eJAT4EEwECACgFAk8jo+ECGyMFCRPL1yoGCwkIBwMCBhUIAgkK +CwQWAgMBAh4BAheAAAoJEF8/f3XSEHJNr84H/j7wxWCOt121c2TGX9jMw7TuK4F5MhneldNd +DNAoD1AqiRVgDCYudPpct3EjOgGlb22Ik7AKAeBoWfjzMOfYZVN2eJatJ9RZlVV7xcnCdC5I +ULI8ieROGIoL3NP0w5hm8If56fOKYAlCVALkZQAKPjtzN/mahJiYVPPLmOj5eaGezRuOiw64 +V7WAlIOai0CTywpNJAawpk3ch/OQEhbyNqr2tMFU5oUQs7mrj70kvB7KYULUrc0Xbnazdpsv +6xZ/AUwxQeFe8fT37cCQEYKNX5Bodg7zKZiD9LyLiWI2JFed8NmLUCAoh8XuClvNI9AtCAEg +cGPO2je4eb+H21oN/rS5AQ0ETiuHlgEIANFT/rnqAUIDR/MMwUm16N10jK6XzvbDQBkd5PQ/ +EPH1K4idSwlXdeMjOiwtuubabh3IkAYhn1oVXz1NC+KCS6zzZbzNcDSQ6apEtXF7pyxoRHC3 +7t75draK2rqmXQ++p0isbC30wf+9prtdxbllyOacU/2qBwv6poTg93V2BHwJXyPyjPVSKYKU +j/6llDjhUQO9fATS4g0WRgGbBwlHZ/dEsszABEiM/MM1S4XvQcBYWyvZHTgEqyU1Pn6udt1R +xhR9qsvM3lK0YzKgeqfi8OHmQRH2/Opib3lhwhvcnfBEE9dLsaGqlTgK6MwLKGFx4gHmSIYC +OLS+aO6bUNTHaZcAEQEAAYkBHwQYAQIACQIbDAUCTrt24AAKCRBfP3910hByTYWbB/9wPwuQ +/mCYvcL7wqDn8ZOUMrV4cPVJ+pJIxAjiXprdbhwQkRfe/OPkFed+VlgftUE1FjzDB0FAC9BK +das3MbnZYim93NBCd1hpkFSKhx4Dpt7ksYABmshIyG4a8mFA6qY5oL8pP1atcJFOlch+t6Iv +4gURMY1e/dR714o53AVEU8ZqOzFjoPNW9trG13cU4UPB7hqZ2LmG5+E5zrmSxWazghjIBaHq +F3IU44+9oc0R/An2Hg+QWWEIXDH3m6kLCjmS5navkRWvVveXAJxPrxXhHKz8Aa9c4p9at1iQ +wlMf+2IseXEIsNFJOqvrv5watXkUpB6bBZ7RrAUWTCUiuVQHiQElBBgBAgAPBQJOK4eWAhsM +BQkJZgGAAAoJEF8/f3XSEHJNgvkH/1eGO6bjQf+h/SQDnOgdQ7k80ruR0G5+9OcEUy4HTJ8C +rBInm0PX01L5Rdg4PeJKsYjAdCDw8qFLmeX0xrzh1PXGplDXAQ/EK4Z5O0yywjd/H/S7jIuH +JTeFKbhWRkiJ0CQ5DSErrtFaC1V5YzTlj/ePSbnn7DQoBvL3vn0k86K1kbvmFG+dTr9MA8Ue +ZCk5uhGdfmgdWXjBjKM9huhG7ftLwmukFhRbX+KbWfmEoU0PA3FzcdnADbdwiwr3V/eysQR3 +iWXrvgfWwk6WT+QmpDwwW7nvvsp8Vmm2gXHKV/0t6Cw8lJmEbJFt0wAAG61jPawxT56NG/n3 +M+4i9VyoeOCJAU0EKAECADcFAk8joF0wHQFSZXZva2VkIHRvIGNyZWF0ZSBuZXcga2V5IGZv +ciB0aGUgT3BlbkdQRyBjYXJkAAoJEF8/f3XSEHJNzUYH/0m71GKMUkDxYZOPXW+EUqOt5OfW +kBdsEYAOixwC2YWv5WSHNcTUPyVn8+N9X5ofVvuqzc8vpe28OCLJYF/zAwN4CtE8aguMJ2/x +s0vjijKGmmwHwW/fQQaBSc2wMRm5cSPUTHNNIpTL4fwjf+0Z9R/ZSr3I/YuOgdu4c0xUDHU7 +Dx3A9vUTBoifwUdok1JYUIOWDKEc7Fa7u9mi8JqFI61H1bqTbNV2AN3CxB1uRDzOgDP7ylty +hTqYQ7k/5lTbutmfvLG91u53eS2x1n3EqJIru2CJfEGEBd83jddOXOTi7edUetjGSF+ljILx +EhHGtOQZUOv5WfkpJBf/0VaeFPy5AQ0ETyOeeQEIAMfW3xAm2Yhl75TEVk02A+snKk+jCY6R +U7bgcjGSNNDHAr8HIA1a0NzaTeVk6zcUhI68gpq8z+dL2avjUW2siga8P6dOEafddoHEKyaq +fS+u+/4v2SLYf3IbZosm6WfDO7MszNgmyCM/IDz+qvMsZ3tRw3pNCVy7qGXauC/QNlJERX1k +sHiE+CekC5Zjpu0po9Emv/jGr6bly6/Em60vynRQt1iST6FrC3+1BoqvIlAYMMF60MMNt8IH +q3hU3on+CYAFL4+IW8CL5G4sT3pGOuPDjznorHA9pyn6A7RD/ZCDI4BJgAvnBcJkVCrMwEm2 +iXUZHnvEqxySoKhpuy9tBs0AEQEAAYkBJQQYAQIADwUCTyOeeQIbDAUJAeEzgAAKCRBfP391 +0hByTQIqB/9l+PNHadQAlh7mxtn2RNKvh7p19jdSJV28CVb5nHlVx9Ff+phKO+yGRqQWDlnr +ZHjq5NulQY0obN7HGYyAoSsGqswgm4dr0UZNK1onBWcnlese9cgdEKF+RXqU2dt26DQKxkZE +rPkwrhDDVuCXKHn7EwOZCfH3wkZghbhPB6uz16ylwC/llRlrJDz8ydEVEOH02qkoik/dWP9q +fo+IS9+rA6JGs7s4I/POIwbdc2qt4MuBc0IJE4nakTGJVXbBaildargNiw2+l1IdtLo9zSG3 +RZ9lljOG7cffp0RQfKbbV+TPJQsnrI9kuDqUt35XnGjgY8U1JY7/pUzSU2Lm4O8duQENBE8j +nswBCADBo4PDd4K8BGFjEnbVQUZl8wiorjvLX3D7y52S0ucW8s8GzoLD68l4W1PxfYUQHl0g +IJFKYj0Twan4yc3PszPiwKABgWEvHzg3VjPQ/9Z+0mZolLSrPkHBtY4m2fqT3EsdKscc5nG4 +T39CTQjhM14Pgr6qKB0mPbpAOOIevWHzpLxdfGW2E/OYJZ7DRFM1PaOeV3asA/jyPraOyrOG +P7KGfF/rCiscIcCC3LdohoMP9wySZqQ+I4SuR3GSdqB9Jmz0wrCr+fu0AGt+2vc5NbIIcmyt +1vTNYkChmTGOWWC3Q6xaEzL/se0gj7nNArrZLt1GCW5khjU5uuuGUJKA6BhJABEBAAGJAkQE +GAECAA8FAk8jnswCGwIFCQHhM4ABKQkQXz9/ddIQck3AXSAEGQECAAYFAk8jnswACgkQB4VH +I0yd7SrPSAf+LLmeGqYSgeLvETi6872/0z5zkM+Is2wk8Tf/KAhWkZN+g2AAEkNiNZpZ2scZ +tncaCidhoUqNpCJIQKhw6jwOnRPnoxwRVANRXwru7E1+MxKOvsvFGqztUAcPjxvq12oL45MQ +dWLHd3nggsYM7c5S1SycGUvT02qkT8kT4nZNjZvn405bD7tU8swan10r1icGje3ZyPLN1DFr +i8+DBkJ0iV60bYpdgWwYp2jXICXc8XuINwm+OXhtUDgeg6leGa2jcmjhMERFmgqRHpHN+/15 +5p7bggpLYKw6mvHNwHJLHGgse/g6rsEwjDTEyCTB7tP3Y3z/7crK98eKyMKYOHAiwwGbCADG +lZj1hCWPcyb+1wfnU3Ff6hTGrb7FGh+yxD4aYRIu75hOcB5VkffS8gFt7mL9IinBEzDmpDzs +IHOWcVEJqKdQAXqvAp6LfriAU6zyZ5dGZHt6xLbGoPnIDlqXAJbUBpWuHQ67dkHZH44y7e/e +e6rqlX9X4Rt2rsPSLnVbeWKUkd+rAruQ48KDiBTsHOHcuyaHSQbjR+mAIQvJfIc8OcXQAQbq +OnRU7HwxLtsWGVSME8WXSfuaLF1XkuZtRNkNnm6Shd2h4/u9U+yUpQErPn26QhAthr6MTvpg +i+J3C9x7qO9gOt4sb8kF2OjJK7WtsRZUJDdYFgzMGsW4q9sIpcRguQENBE8joK0BCACOuBKD +o1CumbFUadvF4BMk5Gu1oVdGx524oRt2IPLi3anhmV2Dnj83XYXgcyhqXZkMAKkaVBn6ul9g +2HmvREPU8P8wLh6U/RQWT0JLD3jTqKNnm7NvVHCBwYhXHj8sF66SdRiWw6mpiTp3R0OEmVBU +I1t0ThbJhjTo+/+MYv3vwNQwvpQL0LIILosU/KfIKF7zyz3NrLJPLb0nnCRuUv3theajEUFI +7hH0V1UXiRIM7rcEzeDP6Jp/f7kwiPMKNOov7H4xS/v4xnBdAVVtX/Jrcqn9OLczgP1zOOwL +jl5miiXmkStPQ597rMQeqw6anBvjMcUjGhFUyLvWCw2YxfOVABEBAAGJASUEGAECAA8FAk8j +oK0CGyAFCQHhM4AACgkQXz9/ddIQck2JNQgAxBDrSVX2YfJAdNjlk6YsB69pIdEQYKmoJTmE ++9UC57P3uakd4OHp4kV2CiWcLIgjzi1GH6brss82F54PWRmu8BaNvCcDgmDoi54EPoruE4l1 +KqypOVrwXPW3zGWSuGfWA1FOLjDorT3Hbncz56LCIAG7+/8c3hlpPYG6lmSc8bMKNyzELmb9 +p/PR+QDg7hCQYrjmsh1xrBlzN/1eCokMYjeSVczWjBZdG0KMpf4wuSqnECUYTH6AXXzAp3OR +MMxqvtL5320GJ2gB5cREqgIwfYBpbfd3NGxsn1gTV3bq7MXT6arFbQMmJ8x8CP0KzxOrofgS +TcU2Ny8XWed/z4DPzrkBDQRReLozAQgAzXbC3c/YSMc2WcBpciJL0qqyV1a9i2h3Mtt6RoQn +Z2LmDAlD+ialWLTA/WpHIm2LfC2lT6efRHUSAY96VnTt6j/QiBIH2c1uW5psuYkRNo+okZSi +qBGD0uUxYuP5WeeCapxZforcMUt+7/umeR/aH9pRAupqdrwN4iFe1x4Q00AUUBxbKDsASZOA +UxkIZeOjlumaRVYoDNLDgu3tB3hxBp4tBsJ4miKI7+IZSUpg2kFPj1Vcfbbw+JBqXGbrsbaJ +k2/OhmqcJX+uU1O63tnH2I174mfzFj3ZVoFhxz5KaygFsGXXfulB8BQoWI4iK5Wv3dOP9osT +EelB5mjhg3R2sQARAQABiQJEBBgBAgAPBQJReLozAhsCBQkB4TOAASkJEF8/f3XSEHJNwF0g +BBkBAgAGBQJReLozAAoJEGTy5XKwlRETOUwH+wWRHlrskYmGgg8aX/fzDXEBw3R+mYw6XZ2y +eGPGz9/BUrgX17ufkgeDPAjM5FOhBgtJJkw8mET7NZSRNdqO10XayeVgadkANpkMjd9e8WZ+ +GtAkhWlQQazZnSYBKxLEiVw84Prunr3GqdJlNdjy1fOZepSCeqUT98PKDHyzb0+gC1/e2m/f +q9gMCu231x60i0veoNcTeD+VaRNCORVAKjoC6oiFyycgf7SikN0fZT6JG9cPpxy/DZg1GoXW +9YEoKdjzAPO27HmyC+1W9s3uvK9rwHXc7pSNA1pEatSsdZJk52Eh5MsqMMRMc6vAM/6BWxV3 +kE9yx0ONeKo0M8XO36RsmAf/fEtnKqfevYpZg5O0SyGRU87IJm+IeDysF8iAYhgAj/d+gCSX +Ks4aPvP04tIw0FW1dqruvVGmDhCIi6skAHFk4AumRsExPLvIjDjGpA6ckGWHsTyZ0U8ojoaO +HyaeHlx6iFQgW2uaEShxp5EaYX1/IHqk3ZWwaChjsCF5Pn5NxGzFL1/HOb0/9RnVDG+vxjZG +5ASfBcsIWzA9nk23DKvQ7vE6WcWyGAVirxUgLl21HFudTVn3t71o6nLg/egF1GPi2MXCc4Kq +SA0fGVdnpdRq19kumPDbnmkrUtTbeTd1wIKHTQlQPckkbH65rDu28yjhjRisxUpfVSEiEUSp +czS+srkBDQRReLp1AQgAreST24LxR5EVLiXpr9DQNGtvC4Qa7rWMo4MxQPyE+L+K/6FmqVw7 +cmNJUbyz6IbQQGoa7hn18SPpu5OawkHgb//xr02LaPh43gdoxNRTIvim+TgQI796q0jlTOqP +4vHVAj172fQSPcczqVqY2L18ajGwn37X166QoXaodo8t58lpBm9aXhyX9UNY6a+ny3dARWwt +nXX2u6Lc7cnj3DECAfICimueTUIoHaeTqHONzNvKmSJRy9QCTlDp8SYV3YS6Io+lwFdKz3cz +UCs4EiaLrOjwAYtwkCNTRGY2Qc+WCQDZgx2MqVbkUxynUimnp6HCgX5yE6hUbg0wnBbCAYhw +dQARAQABiQElBBgBAgAPBQJReLp1AhsMBQkB4TOAAAoJEF8/f3XSEHJNRSAH/0LKghzRDVoq +oqY1SZp8k/ImGvKxbK2jpM6bLZN9veW+QUR2CQrl4CPqwoG40bsWTsRkdZ3lAjyZAq6JuDhc +cqxJBNaN7KXob5wCHghG3/fcT2Iq3x0nq7LRt5tw6WEGkQGPSYNqf1BqTuGEzD67WZ4AFjVi +pC8/COhJywuQ+2NOEPoHYs3+VlYnMlZtTA+xRD7ooxi5R4Jz3ymxZuz5vMDmWq/HvEUB0ZKT +W33iHqk+AHkCFmQKl6L+AVOlIokaI5xs0JSNfNjkIOwT57duzoWDoMx8XYgKWmSgVtIVVG6D +m7hgsdP+AhfU3u9nwqTO2dA/eOmlXL/a4/B+ZJ/Ftlq5Ag0EUXjAxBAIAKmWwlRhHz2+8+xX +JpLy2eK7Du528x/nZKGD4y/5ZH4+HwPiVznjBJdarjpCRbNzVK1OBUqpRNt5aLBHz8ak1J12 +Eud6iAPtZ0TeJhjYkcEmdUzbS36TvqjI3iwsxbsxIRVUPmu2Xpsw9b1vYkyVcMzioQQy4BCu +2SK28aGVDyZVxdUwngNbfLc2d/GPjZbD6S1GPBhLRKoKNdvZSAmfKgm8FiQIQI9/dk4MFpt2 +h8ipEk1m7Q1gRgxrI/w5EqN3LIH444ZwiAY+k6mM5b6fBW43oqlkEAhatkASD+dikYBTh3q9 +lrHXYfeBd0zxY7c3Ii2y9wT/FNn5Pkxuy1nUOzcABREH+gPFjhYMShCvIXwzLmegowcs3zJD +oOGom+SjaKLjtXkO+XFttfAoej+PzzYMWwY9gWlA/TArqU8HMzssagfe3TpUj9/Ls5at7NFo +4PFEsist6L/cdytQ4ZwreFzK24561veSO9cCcfRXfNi/Y72fiZm9zWvRZniOCIW9hiBSFmPh +8zW8rr0kAgxKcVAtDGhbt+xmPOlkNtc0Dd0dcmvqUYusORvlkwIkSrLc4JPa0S9r09uapwtl +fGD5VUSEvIkWfVGLR6esxR7BuI0u+453ZakAwSErWuF8ncRVgwrBPL2DeHHjglun4DTqDYt6 +K5OUi3xqb8nC9SrdXPPuNnMx5nGJASUEGAECAA8FAlF4wMQCGwwFCQeEzgAACgkQXz9/ddIQ +ck2j7Qf+OcKHMiph8y2sD0K6gYrTTnvdymXfGKv7mJTCGDSQW6h+Po8mFIBAkHQgK+gcK2RE +F4PktOB5XNB0mjXTpIij/yvyonSDPPIx/XjSOFq71+OqKfSLLqCXITCKiJ7Swscxl7ilvlhu +3dJDEUp8HdzTcacg3/nRst/3CltTBJfmKrFHYOYWmswE/YZ09PkhfRsHPu4u6hawBNQAa2bb +JGLFwyVRCfdS3ThxqOSfhdQuQV6j2PpdHFHZcCT+RsP5sk3pKhDcgAYcQQ6K5eTbm2Eva1mW ++X3ee/IF+AzAk0Tm+A1lnYFeNVXa3Shg5ZitX1nG5yEdOYhl4rX5+uHpRZGUJLkCDQRR5rf+ +ARAA1Q4EjJZlCvhreoWAXmm8mudFKxdEZJhyey5KQLPquqRx49aEECmuVfKXtCy3Q+pKTiRO +yqRX7/PB7aXLOLKlZMe9akJf1cG8Zrg28dlIDERRTjV2yiF8jHDGOpa8QBhBMw7qqNdtFjWs +H6eQetTM5M41dbsJNuQdLktH7Ifp0zzQ/JddGWFGR3S8aYTNuhCbv+S2mFT0zJRvC2o8jii7 +98luk7o3P4PiqCbqdG4k/qgHBXUAU57iBk7mb3XOPun3NpUdGT/68x+L4uFhZHaHpOFAnI6Y +f2YOBiz425LCjgsltQWMD97H8LuhrUS0+eIt+e19WKk9vNQviPlouJl4ETvO4NETjXWWnKbX +8WnS4cqt7mIKS9VRjjckwLi4HZQ3jxmtaTuFdsuz8e2kmDaf5mdWQ+Rc5UQwzSWxRgntCRSe +xAfD6kbEsFZ745lvBihSheYCxwqXxW8OgEcSo1f0g8yaWtdBuejAmaA5BHFjD84wnHdD8paG +u7dqkXhC93bb8nkZRkuUuiGdW5YbvpJIeEEoCG/JuX6nTkOvx+FXGvP4qbzp91v7gYdss8+Z +xU1Q3H1xouZsPQNCZHJ/zI9Q5Z0caNRo+jan27uCBkoXivKTKQpX3mFqTAjoy0MYFrt08AaL +Rg/XiRC3bNCaq9Son433gw8iSrVQkb/JQaGIIh8AEQEAAYkDRAQYAQIADwUCUea3/gIbAgUJ +AeEzgAIpCRBfP3910hByTcFdIAQZAQIABgUCUea3/gAKCRD523ijOyip1AG8D/956wHj5Dr7 +TkKTGBid2/esMwSBfi/HcY2AZLQwLTCNdK/VJArJmk03Ls8RQxDnJ5+t/jncv5f3DklCLoqE +awNIfnqR6WqL7CHpNcxRERObUt7p8kw1YMKo6iJFm/IGz/Nr9a+W7Fm0VPvuTm0TclUVALFa +J+8reJMMtsrW8YzQhtnOO4h/fCopv7LLjCZa38+FFBMjpoYx70UvMRTVnL82CQVHH+37ZF8f +4QgOuLRaFqt1UPuBawfVIe1YijRxhJRzgJmf0fxqvJstsAJHfI/04X5R/PUWVQ7Wu0hKrTte +gZZMNHXJGAj8M4yq7LANp3Fmf3ifMakPJC7oHVRPw/F8q2uqs4418mGSkV4ZhquMngvKHPbb +jphEHOFowntw/qkykVuQ5hwhpp0AGuXfRO6yJBDsS9nl6zcU7hwbeRQI0rWFkRTaymDk8Qqh +FVySvHeYLYmi10ZwYX8kqYN46OL+Bsjv+T2VsaDVwUMZZQrUXzcBb4cXpAC2WbPxghR4/gLo +iTrO5Ldubf0916k7gK7FWAbL7uoOXsm+DD+1gJHJ0jv7R7tx2ACTFLjuC1kzyTe6/Hj+H7OB +n7YneXK8AM/H2TZk96tFxoohCYv1/IlSq3o1flrj44v7KWt2wq/4cnlqAw6n5Ml5budlUW6c +kVnouac3lDx166DI1SZm4VjIxZ1JB/wJu2Ve49r4q2QQcGIFmGdyMskETt27G1vbwX6igMx2 +z4RfJLtLn1t46/quC9FH7WZsguDZv8LNs15CBZHcCR+Vm+joPhH4TBsPgvmsco4X75BCEoh2 +OWd7wMvmDjuuBBEOtJ+JGr6weNBBMlOXToY29q1GGe2skM5Tnz7yaesybdyVTb6tPB/2wQzp +4CmvVKWrujZVr8gpUuErUw7hki2LGBb7nt6Hey6uBNKJj/aX365lpKqOyqEQouHn9kqpIBmh +UMZih77AOLCYmFFJDhkT5ji5XaHnONROFIYIBePU852+hqaz7fJlDqINAbzT8Wna+DZdthBg +dvwAPKZs9fCkuQINBFHmuRcBEACb0emYF7cMl952f+xZQp12Hf+Ucctr4kxVh3CeA38bZEz0 +2jgGTD2d+4IPqAYkYUN98zfBO1YxziefolvaM59emaCHxZ5geK2HnK8EDuu5HLXwxwsC8cgm +89TLe9GYBNlD+HlMLgBjRNpBv6jhgFdp9aGh1XyixxNfy17w0sMAhaAWgHOUcCt+UjSU5ttI +9ewuXO5B4HSqSLlw2KWMTNm6SUiEkZ6K4sPA31rcv/WJg11kD2zAR8goW9Gq6N9n7U7P1E7s ++tDAU3PskuqfBYtg1Djgk+hYoA1ig9odPlPZsXqxAC2yvMmLT9LQf47RTrUw1voeqZiPFkLX +9FMMYiMR6akLq9ymMFdwR0YvmwYYBHPQ5SnHT6+Vm/EY8Wnxs3arjsEJPyRwXE+Obi0obbCs +GwpHiKuQAG2ssfuHlqME7pG7ldEz3IakEhfavV2z2O2Wt02StSN+glBY0oI0Ikb79gOrIYRv +dLeQqoaWi0WWrhGjDm7idb80bnWSc09RZ+0ye5Ow1Dg1BgMt3xoWNhIJ1mpzrCxfa0sl6EtQ +GqT3cXXU888p+CuDYxD4Yin/H9BeChKdh+ka3piwd639H5/YjvEtpLFUUeNEkrrIdSHEmR/G +tUdc864ZrLNKkNr5PHZt+caIUis9N+DuRQYzwMIF5685kKsu9GGG5eLk17vy7wARAQABiQEl +BBgBAgAPBQJR5rkXAhsMBQkB4TOAAAoJEF8/f3XSEHJNekgH/RGG/KqzNNaYNZKAjHahiJtY +RdfhKsJa1Dr0tMTLj2+/uBx9P6HOB9rJC/VbMwiBL3UXX5ZQzzfd6XaKuJIkr5XBfh6axn/J +g7RqKW1uGoqDnbAMyTzgmTWlqBlAugXNLBiAC3in00/8zVOhMifxPz8wfu6mysJJkre5MEtC +Mj3s2P+QquMh9L5Lcwe7CPvw0XHrwuuv3XxWRcRJu2qAlevxEn9s8Cc7j/kMj0RdoSv1Zilg +yLcGUFnxWIxUMOQhXnY7uSAG2VogReKlAydGonxxg8QAyPFTlhg7sok1cHJkQR5io6mftBqr +9iQqDpPWYJVqPczCuq6IzuzYZ3DXPOw= +=3sHD +-----END PGP PUBLIC KEY BLOCK-----''' diff --git a/mayan/apps/django_gpg/tests/test_models.py b/mayan/apps/django_gpg/tests/test_models.py index afc59b692a..9fba181645 100644 --- a/mayan/apps/django_gpg/tests/test_models.py +++ b/mayan/apps/django_gpg/tests/test_models.py @@ -3,6 +3,9 @@ from __future__ import unicode_literals import StringIO import tempfile +import gnupg +import mock + from django.test import TestCase from ..exceptions import ( @@ -13,10 +16,29 @@ from ..models import Key from .literals import ( TEST_DETACHED_SIGNATURE, TEST_FILE, TEST_KEY_DATA, TEST_KEY_FINGERPRINT, - TEST_KEY_PASSPHRASE, TEST_SEARCH_FINGERPRINT, TEST_SEARCH_UID, - TEST_SIGNED_FILE, TEST_SIGNED_FILE_CONTENT + TEST_KEY_PASSPHRASE, TEST_RECEIVE_KEY, TEST_SEARCH_FINGERPRINT, + TEST_SEARCH_UID, TEST_SIGNED_FILE, TEST_SIGNED_FILE_CONTENT ) +MOCK_SEARCH_KEYS_RESPONSE = [ + {'algo': u'1', + 'date': u'1311475606', + 'expires': u'1643601600', + 'keyid': u'607138F1AECC5A5CA31CB7715F3F7F75D210724D', + 'length': u'2048', + 'type': u'pub', + 'uids': [u'Roberto Rosario ']},] + + +def mock_recv_keys(self, keyserver, *keyids): + class ImportResult(object): + count = 1 + fingerprints = [TEST_SEARCH_FINGERPRINT] + + self.import_keys(TEST_RECEIVE_KEY) + + return ImportResult() + class KeyTestCase(TestCase): def test_key_instance_creation(self): @@ -25,7 +47,10 @@ class KeyTestCase(TestCase): self.assertEqual(key.fingerprint, TEST_KEY_FINGERPRINT) - def test_key_search(self): + @mock.patch.object(gnupg.GPG ,'search_keys', autospec=True) + def test_key_search(self, search_keys): + search_keys.return_value = MOCK_SEARCH_KEYS_RESPONSE + search_results = Key.objects.search(query=TEST_SEARCH_UID) self.assertTrue( @@ -34,7 +59,10 @@ class KeyTestCase(TestCase): ] ) - def test_key_receive(self): + @mock.patch.object(gnupg.GPG ,'recv_keys', autospec=True) + def test_key_receive(self, recv_keys): + recv_keys.side_effect = mock_recv_keys + Key.objects.receive_key(key_id=TEST_SEARCH_FINGERPRINT) self.assertEqual(Key.objects.all().count(), 1) diff --git a/requirements/testing-base.txt b/requirements/testing-base.txt index d8b2f4ad61..5b7560fd79 100644 --- a/requirements/testing-base.txt +++ b/requirements/testing-base.txt @@ -2,5 +2,6 @@ codecov==1.4.1 coverage==3.7.1 coveralls==0.5 django-test-without-migrations==0.2 +mock==2.0.0 tox==2.1.1 From 23f40ac4aad0e47a972e79362b720980500ba128 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Apr 2016 20:31:02 -0400 Subject: [PATCH 195/205] PEP8 cleanups. --- mayan/apps/acls/tests/test_views.py | 2 +- mayan/apps/common/generics.py | 1 - mayan/apps/django_gpg/tests/literals.py | 2 +- mayan/apps/django_gpg/tests/test_models.py | 21 ++++++++------ mayan/apps/document_signatures/managers.py | 2 +- .../document_signatures/tests/test_models.py | 3 -- .../document_signatures/tests/test_views.py | 4 +-- .../migrations/0033_auto_20160325_0052.py | 7 +++-- mayan/apps/documents/models.py | 1 - mayan/apps/documents/tests/test_events.py | 29 +++---------------- mayan/apps/folders/tests/test_models.py | 3 -- mayan/apps/linking/tests/test_views.py | 3 +- mayan/apps/mailer/tests/test_views.py | 4 +-- mayan/settings/base.py | 10 +++---- 14 files changed, 32 insertions(+), 60 deletions(-) diff --git a/mayan/apps/acls/tests/test_views.py b/mayan/apps/acls/tests/test_views.py index ddc450f5df..52d0e74afc 100644 --- a/mayan/apps/acls/tests/test_views.py +++ b/mayan/apps/acls/tests/test_views.py @@ -8,7 +8,7 @@ from user_management.tests import ( ) from ..models import AccessControlList -from ..permissions import permission_acl_edit, permission_acl_view +from ..permissions import permission_acl_edit class AccessControlListViewTestCase(GenericDocumentViewTestCase): diff --git a/mayan/apps/common/generics.py b/mayan/apps/common/generics.py index 639c5cecea..d79cfb145d 100644 --- a/mayan/apps/common/generics.py +++ b/mayan/apps/common/generics.py @@ -8,7 +8,6 @@ from django.utils.translation import ugettext_lazy as _ from django.views.generic import ( FormView as DjangoFormView, DetailView, TemplateView ) -from django.views.generic.base import ContextMixin from django.views.generic.detail import SingleObjectMixin from django.views.generic.edit import ( CreateView, DeleteView, ModelFormMixin, UpdateView diff --git a/mayan/apps/django_gpg/tests/literals.py b/mayan/apps/django_gpg/tests/literals.py index 8e4fc83174..eb1fc37ceb 100644 --- a/mayan/apps/django_gpg/tests/literals.py +++ b/mayan/apps/django_gpg/tests/literals.py @@ -89,7 +89,7 @@ TEST_SIGNED_FILE = os.path.join( ) TEST_SIGNED_FILE_CONTENT = 'test_file.txt\n' -TEST_RECEIVE_KEY='''-----BEGIN PGP PUBLIC KEY BLOCK----- +TEST_RECEIVE_KEY = '''-----BEGIN PGP PUBLIC KEY BLOCK----- Version: SKS 1.1.5 Comment: Hostname: keyserver.deuxpi.ca diff --git a/mayan/apps/django_gpg/tests/test_models.py b/mayan/apps/django_gpg/tests/test_models.py index 9fba181645..bcec133f40 100644 --- a/mayan/apps/django_gpg/tests/test_models.py +++ b/mayan/apps/django_gpg/tests/test_models.py @@ -21,13 +21,16 @@ from .literals import ( ) MOCK_SEARCH_KEYS_RESPONSE = [ - {'algo': u'1', - 'date': u'1311475606', - 'expires': u'1643601600', - 'keyid': u'607138F1AECC5A5CA31CB7715F3F7F75D210724D', - 'length': u'2048', - 'type': u'pub', - 'uids': [u'Roberto Rosario ']},] + { + 'algo': u'1', + 'date': u'1311475606', + 'expires': u'1643601600', + 'keyid': u'607138F1AECC5A5CA31CB7715F3F7F75D210724D', + 'length': u'2048', + 'type': u'pub', + 'uids': [u'Roberto Rosario '] + } +] def mock_recv_keys(self, keyserver, *keyids): @@ -47,7 +50,7 @@ class KeyTestCase(TestCase): self.assertEqual(key.fingerprint, TEST_KEY_FINGERPRINT) - @mock.patch.object(gnupg.GPG ,'search_keys', autospec=True) + @mock.patch.object(gnupg.GPG, 'search_keys', autospec=True) def test_key_search(self, search_keys): search_keys.return_value = MOCK_SEARCH_KEYS_RESPONSE @@ -59,7 +62,7 @@ class KeyTestCase(TestCase): ] ) - @mock.patch.object(gnupg.GPG ,'recv_keys', autospec=True) + @mock.patch.object(gnupg.GPG, 'recv_keys', autospec=True) def test_key_receive(self, recv_keys): recv_keys.side_effect = mock_recv_keys diff --git a/mayan/apps/document_signatures/managers.py b/mayan/apps/document_signatures/managers.py index 7252d9211c..8601473589 100644 --- a/mayan/apps/document_signatures/managers.py +++ b/mayan/apps/document_signatures/managers.py @@ -38,7 +38,7 @@ class EmbeddedSignatureManager(models.Manager): try: with document_version.open() as file_object: - signature_result = key.sign_file( + key.sign_file( binary=True, file_object=file_object, output=temporary_filename, passphrase=passphrase ) diff --git a/mayan/apps/document_signatures/tests/test_models.py b/mayan/apps/document_signatures/tests/test_models.py index 2d57063591..22994ec6db 100644 --- a/mayan/apps/document_signatures/tests/test_models.py +++ b/mayan/apps/document_signatures/tests/test_models.py @@ -332,9 +332,6 @@ class EmbeddedSignaturesTestCase(TestCase): self.assertEqual(EmbeddedSignature.objects.count(), 1) - with new_version.open() as file_object: - document_content_hash = hashlib.sha256(file_object.read()).hexdigest() - with new_version.open() as file_object: file_object.seek(0, 2) new_size = file_object.tell() diff --git a/mayan/apps/document_signatures/tests/test_views.py b/mayan/apps/document_signatures/tests/test_views.py index c903969b75..adaeebe697 100644 --- a/mayan/apps/document_signatures/tests/test_views.py +++ b/mayan/apps/document_signatures/tests/test_views.py @@ -5,7 +5,7 @@ from django.core.files import File from django_downloadview.test import assert_download_response from django_gpg.models import Key -from documents.models import Document, DocumentVersion +from documents.models import DocumentVersion from documents.tests.literals import TEST_DOCUMENT_PATH from documents.tests.test_views import GenericDocumentViewTestCase from user_management.tests import ( @@ -325,8 +325,6 @@ class SignaturesViewTestCase(GenericDocumentViewTestCase): for document in self.document_type.documents.all(): document.delete(to_trash=False) - from documents.models import DocumentType - old_hooks = DocumentVersion._post_save_hooks DocumentVersion._post_save_hooks = {} for count in range(TEST_UNSIGNED_DOCUMENT_COUNT): diff --git a/mayan/apps/documents/migrations/0033_auto_20160325_0052.py b/mayan/apps/documents/migrations/0033_auto_20160325_0052.py index b3fa863e17..34132feecb 100644 --- a/mayan/apps/documents/migrations/0033_auto_20160325_0052.py +++ b/mayan/apps/documents/migrations/0033_auto_20160325_0052.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -from django.db import migrations, models +from django.db import migrations class Migration(migrations.Migration): @@ -13,6 +13,9 @@ class Migration(migrations.Migration): operations = [ migrations.AlterModelOptions( name='documenttypefilename', - options={'ordering': ('filename',), 'verbose_name': 'Quick label', 'verbose_name_plural': 'Quick labels'}, + options={ + 'ordering': ('filename',), 'verbose_name': 'Quick label', + 'verbose_name_plural': 'Quick labels' + }, ), ] diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index ed605e11e4..bf41bc742e 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -1,6 +1,5 @@ from __future__ import absolute_import, unicode_literals -import base64 import hashlib import logging import uuid diff --git a/mayan/apps/documents/tests/test_events.py b/mayan/apps/documents/tests/test_events.py index 80eb33f436..a7e20e6c28 100644 --- a/mayan/apps/documents/tests/test_events.py +++ b/mayan/apps/documents/tests/test_events.py @@ -2,38 +2,18 @@ from __future__ import unicode_literals -from django.contrib.contenttypes.models import ContentType -from django.test import override_settings -from django.utils.six import BytesIO - from actstream.models import Action -from common.tests.test_views import GenericViewTestCase -from converter.models import Transformation -from converter.permissions import permission_transformation_delete from user_management.tests.literals import ( TEST_USER_PASSWORD, TEST_USER_USERNAME ) from ..events import event_document_download, event_document_view -from ..literals import DEFAULT_DELETE_PERIOD, DEFAULT_DELETE_TIME_UNIT -from ..models import ( - DeletedDocument, Document, DocumentType, HASH_FUNCTION -) from ..permissions import ( - permission_document_create, permission_document_delete, - permission_document_download, permission_document_properties_edit, - permission_document_restore, permission_document_tools, - permission_document_trash, permission_document_type_create, - permission_document_type_delete, permission_document_type_edit, - permission_document_type_view, permission_document_version_revert, - permission_document_view, permission_empty_trash + permission_document_download, permission_document_view ) -from .literals import ( - TEST_DOCUMENT_TYPE, TEST_DOCUMENT_TYPE_QUICK_LABEL, - TEST_SMALL_DOCUMENT_CHECKSUM, TEST_SMALL_DOCUMENT_PATH -) + from .test_views import GenericDocumentViewTestCase @@ -43,7 +23,6 @@ TEST_TRANSFORMATION_NAME = 'rotate' TEST_TRANSFORMATION_ARGUMENT = 'degrees: 180' - class DocumentEventsTestCase(GenericDocumentViewTestCase): def test_document_download_event_no_permissions(self): self.login( @@ -69,7 +48,7 @@ class DocumentEventsTestCase(GenericDocumentViewTestCase): self.role.permissions.add( permission_document_download.stored_permission ) - response = self.post( + self.post( 'documents:document_download', args=(self.document.pk,), ) @@ -103,7 +82,7 @@ class DocumentEventsTestCase(GenericDocumentViewTestCase): self.role.permissions.add( permission_document_view.stored_permission ) - response = self.get( + self.get( 'documents:document_preview', args=(self.document.pk,), ) diff --git a/mayan/apps/folders/tests/test_models.py b/mayan/apps/folders/tests/test_models.py index ea96c417df..e39a08d55e 100644 --- a/mayan/apps/folders/tests/test_models.py +++ b/mayan/apps/folders/tests/test_models.py @@ -4,9 +4,6 @@ from django.test import TestCase, override_settings from documents.models import DocumentType from documents.tests import TEST_DOCUMENT_PATH, TEST_DOCUMENT_TYPE -from user_management.tests.literals import ( - TEST_ADMIN_EMAIL, TEST_ADMIN_PASSWORD, TEST_ADMIN_USERNAME -) from ..models import Folder diff --git a/mayan/apps/linking/tests/test_views.py b/mayan/apps/linking/tests/test_views.py index f3f6f2121a..039e520a91 100644 --- a/mayan/apps/linking/tests/test_views.py +++ b/mayan/apps/linking/tests/test_views.py @@ -1,6 +1,5 @@ from __future__ import absolute_import, unicode_literals -from documents.permissions import permission_document_view from documents.tests.test_views import GenericDocumentViewTestCase from user_management.tests import ( TEST_USER_USERNAME, TEST_USER_PASSWORD @@ -9,7 +8,7 @@ from user_management.tests import ( from ..models import SmartLink from ..permissions import ( permission_smart_link_create, permission_smart_link_delete, - permission_smart_link_edit, permission_smart_link_view + permission_smart_link_edit ) TEST_SMART_LINK_LABEL = 'test label' diff --git a/mayan/apps/mailer/tests/test_views.py b/mayan/apps/mailer/tests/test_views.py index 6bd26e7fb8..1b90eea945 100644 --- a/mayan/apps/mailer/tests/test_views.py +++ b/mayan/apps/mailer/tests/test_views.py @@ -7,10 +7,8 @@ from user_management.tests.literals import ( TEST_USER_PASSWORD, TEST_USER_USERNAME ) -from ..models import LogEntry from ..permissions import ( - permission_mailing_link, permission_mailing_send_document, - permission_view_error_log + permission_mailing_link, permission_mailing_send_document ) TEST_EMAIL_ADDRESS = 'test@example.com' diff --git a/mayan/settings/base.py b/mayan/settings/base.py index 7845298000..6d8d16e4cf 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -250,11 +250,11 @@ CORS_ORIGIN_ALLOW_ALL = True SWAGGER_SETTINGS = { 'api_version': '1', 'info': { - 'title': _('Mayan EDMS API Documentation'), - 'description': _('Free Open Source Document Management System.'), - 'contact': 'roberto.rosario@mayan-edms.com', - 'license': 'Apache 2.0', - 'licenseUrl': 'http://www.apache.org/licenses/LICENSE-2.0.html' + 'title': _('Mayan EDMS API Documentation'), + 'description': _('Free Open Source Document Management System.'), + 'contact': 'roberto.rosario@mayan-edms.com', + 'license': 'Apache 2.0', + 'licenseUrl': 'http://www.apache.org/licenses/LICENSE-2.0.html' } } From ea734db79ea67639e2a7953ed09803df0b6a908f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Apr 2016 01:34:18 -0400 Subject: [PATCH 196/205] Update mirror argument parsing to work with Django 1.8. --- .../mirroring/management/commands/mountindex.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/mayan/apps/mirroring/management/commands/mountindex.py b/mayan/apps/mirroring/management/commands/mountindex.py index 75c187d65c..831e1a4718 100644 --- a/mayan/apps/mirroring/management/commands/mountindex.py +++ b/mayan/apps/mirroring/management/commands/mountindex.py @@ -212,14 +212,23 @@ class IndexFS(Operations): class Command(management.BaseCommand): help = 'Mount an index as a FUSE filesystem.' usage_str = 'Usage: ./manage.py mountindex [index slug] [mount point]' - args = '[index slug] [mount point]' + #args = '[index slug] [mount point]' + + def add_arguments(self, parser): + parser.add_argument('slug', nargs='?', + help='Index slug' + ) + + parser.add_argument('mount_point', nargs='?', + help='Mount point' + ) def handle(self, *args, **options): - if len(args) != 2: + if not options.get('slug') or not options.get('mount_point'): print('Incorrect number of arguments') exit(1) FUSE( - operations=IndexFS(index_slug=args[0]), mountpoint=args[1], - nothreads=True, foreground=True + operations=IndexFS(index_slug=options['slug']), + mountpoint=options['mount_point'], nothreads=True, foreground=True ) From 15ed0a10e2ff211aaa4e8a3f953b2b1ab0505ce8 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Apr 2016 01:54:17 -0400 Subject: [PATCH 197/205] User self.stderr instead of print. Colorize the error message. --- mayan/apps/mirroring/management/commands/mountindex.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mayan/apps/mirroring/management/commands/mountindex.py b/mayan/apps/mirroring/management/commands/mountindex.py index 831e1a4718..b416a11154 100644 --- a/mayan/apps/mirroring/management/commands/mountindex.py +++ b/mayan/apps/mirroring/management/commands/mountindex.py @@ -211,8 +211,6 @@ class IndexFS(Operations): class Command(management.BaseCommand): help = 'Mount an index as a FUSE filesystem.' - usage_str = 'Usage: ./manage.py mountindex [index slug] [mount point]' - #args = '[index slug] [mount point]' def add_arguments(self, parser): parser.add_argument('slug', nargs='?', @@ -225,7 +223,7 @@ class Command(management.BaseCommand): def handle(self, *args, **options): if not options.get('slug') or not options.get('mount_point'): - print('Incorrect number of arguments') + self.stderr.write(self.style.ERROR('Incorrect number of arguments')) exit(1) FUSE( From b41c2ce02d0bce047472813241b170c06f4f165d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Apr 2016 02:44:17 -0400 Subject: [PATCH 198/205] Add missing dependency to setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 93ba134cef..385b765c87 100644 --- a/setup.py +++ b/setup.py @@ -67,6 +67,7 @@ django-celery==3.1.17 django-colorful==1.1.0 django-compressor==2.0 django-cors-headers==1.1.0 +django-downloadview==1.9 django-filetransfers==0.1.0 django-formtools==1.0 django-pure-pagination==0.3.0 From 0a8f429d043c439fba957aeb5e3484ea05fe8b71 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Apr 2016 02:44:42 -0400 Subject: [PATCH 199/205] Bump version to 2.1.0rc1 --- mayan/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/__init__.py b/mayan/__init__.py index 80a146098f..6816309bd2 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,8 +1,8 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '2.0.2' -__build__ = 0x020002 +__version__ = '2.1rc1' +__build__ = 0x020100 __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' __description__ = 'Free Open Source Electronic Document Management System' From 269d8fb5b36f01235e8da68fd91bdad644fe8fd2 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 1 May 2016 17:06:37 -0400 Subject: [PATCH 200/205] Remove 'is_staff' and 'is_superadmin' from views and serializers. Add user API tests. --- mayan/apps/common/forms.py | 4 +- mayan/apps/user_management/serializers.py | 32 ++++-- mayan/apps/user_management/tests/literals.py | 1 + mayan/apps/user_management/tests/test_api.py | 114 +++++++++++++++++++ 4 files changed, 142 insertions(+), 9 deletions(-) create mode 100644 mayan/apps/user_management/tests/test_api.py diff --git a/mayan/apps/common/forms.py b/mayan/apps/common/forms.py index de1b8ec89e..fa0c16d258 100644 --- a/mayan/apps/common/forms.py +++ b/mayan/apps/common/forms.py @@ -158,7 +158,7 @@ class UserForm_view(DetailForm): class Meta: fields = ( - 'username', 'first_name', 'last_name', 'email', 'is_staff', - 'is_superuser', 'last_login', 'date_joined', 'groups' + 'username', 'first_name', 'last_name', 'email', 'last_login', + 'date_joined', 'groups' ) model = get_user_model() diff --git a/mayan/apps/user_management/serializers.py b/mayan/apps/user_management/serializers.py index 74a116aca4..dbe030719f 100644 --- a/mayan/apps/user_management/serializers.py +++ b/mayan/apps/user_management/serializers.py @@ -23,21 +23,39 @@ class GroupSerializer(serializers.HyperlinkedModelSerializer): class UserSerializer(serializers.HyperlinkedModelSerializer): groups = GroupSerializer(many=True) + password = serializers.CharField( + required=False, style={'input_type': 'password'} + ) + class Meta: extra_kwargs = { 'url': {'view_name': 'rest_api:user-detail'} } fields = ( - 'first_name', 'date_joined', 'email', 'groups', 'id', 'is_staff', - 'is_active', 'is_superuser', 'last_login', 'last_name', - 'password', 'url', 'username', + 'first_name', 'date_joined', 'email', 'groups', 'id', 'is_active', + 'last_login', 'last_name', 'url', 'username', 'password' ) model = get_user_model() read_only_fields = ('last_login', 'date_joined') write_only_fields = ('password',) - def restore_object(self, attrs, instance=None): - user = super(UserSerializer, self).restore_object(attrs, instance) - if 'password' in attrs: - user.set_password(attrs['password']) + def create(self, validated_data): + groups = validated_data.pop('groups') + is_active = validated_data.pop('is_active') + user = get_user_model().objects.create_user(**validated_data) + return user + + def update(self, instance, validated_data): + groups = validated_data.pop('groups') + + if 'password' in validated_data: + instance.set_password(validated_data['password']) + validated_data.pop('password') + + for attr, value in validated_data.items(): + setattr(instance, attr, value) + + instance.save() + + return instance diff --git a/mayan/apps/user_management/tests/literals.py b/mayan/apps/user_management/tests/literals.py index a67dd43a7a..bc25327f10 100644 --- a/mayan/apps/user_management/tests/literals.py +++ b/mayan/apps/user_management/tests/literals.py @@ -15,3 +15,4 @@ TEST_USER_EMAIL = 'user@example.com' TEST_USER_PASSWORD = 'test user password' TEST_USER_PASSWORD_EDITED = 'test user password edited' TEST_USER_USERNAME = 'test_user' +TEST_USER_USERNAME_EDITED = 'test_user_edited' diff --git a/mayan/apps/user_management/tests/test_api.py b/mayan/apps/user_management/tests/test_api.py new file mode 100644 index 0000000000..1864960744 --- /dev/null +++ b/mayan/apps/user_management/tests/test_api.py @@ -0,0 +1,114 @@ +from __future__ import unicode_literals + +from django.contrib.auth import get_user_model + +from django.core.urlresolvers import reverse + +from rest_framework import status +from rest_framework.test import APITestCase + +from ..tests.literals import ( + TEST_ADMIN_EMAIL, TEST_ADMIN_PASSWORD, TEST_ADMIN_USERNAME +) + +from .literals import ( + TEST_GROUP, TEST_USER_EMAIL, TEST_USER_PASSWORD, TEST_USER_PASSWORD_EDITED, + TEST_USER_USERNAME, TEST_USER_USERNAME_EDITED +) + + +class UserManagementAPITestCase(APITestCase): + """ + Test the document type API endpoints + """ + + def setUp(self): + self.admin_user = get_user_model().objects.create_superuser( + username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, + password=TEST_ADMIN_PASSWORD + ) + + self.client.login( + username=TEST_ADMIN_USERNAME, password=TEST_ADMIN_PASSWORD + ) + + def tearDown(self): + get_user_model().objects.all().delete() + + def test_user_create(self): + response = self.client.post( + reverse('rest_api:user-list'), data={ + 'email': TEST_USER_EMAIL, 'password': TEST_USER_PASSWORD, + 'username': TEST_USER_USERNAME, + } + ) + + self.assertEqual(response.status_code, 201) + + user = get_user_model().objects.get(pk=response.data['id']) + self.assertEqual(user.username, TEST_USER_USERNAME) + + def test_user_create_login(self): + response = self.client.post( + reverse('rest_api:user-list'), data={ + 'email': TEST_USER_EMAIL, 'password': TEST_USER_PASSWORD, + 'username': TEST_USER_USERNAME, + } + ) + + self.assertEqual(response.status_code, 201) + + get_user_model().objects.get(pk=response.data['id']) + + self.assertTrue( + self.client.login( + username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD + ) + ) + + def test_user_edit_via_put(self): + user = get_user_model().objects.create_user( + email=TEST_USER_EMAIL, password=TEST_USER_PASSWORD, + username=TEST_USER_USERNAME + ) + + response = self.client.put( + reverse('rest_api:user-detail', args=(user.pk,)), + data={'username': TEST_USER_USERNAME_EDITED} + ) + + self.assertEqual(response.status_code, 200) + + user.refresh_from_db() + self.assertEqual(user.username, TEST_USER_USERNAME_EDITED) + + def test_document_type_edit_via_patch(self): + user = get_user_model().objects.create_user( + email=TEST_USER_EMAIL, password=TEST_USER_PASSWORD, + username=TEST_USER_USERNAME + ) + + response = self.client.patch( + reverse('rest_api:user-detail', args=(user.pk,)), + data={'username': TEST_USER_USERNAME_EDITED} + ) + + self.assertEqual(response.status_code, 200) + + user.refresh_from_db() + self.assertEqual(user.username, TEST_USER_USERNAME_EDITED) + + def test_document_type_delete(self): + user = get_user_model().objects.create_user( + email=TEST_USER_EMAIL, password=TEST_USER_PASSWORD, + username=TEST_USER_USERNAME + ) + + response = self.client.delete( + reverse('rest_api:user-detail', args=(user.pk,)) + ) + + self.assertEqual(response.status_code, 204) + + with self.assertRaises(get_user_model().DoesNotExist): + get_user_model().objects.get(pk=user.pk) From a179a1974947fa851e26de152ab22171741d59d3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 4 May 2016 00:07:19 -0400 Subject: [PATCH 201/205] Improve document indexing tests and add test for GitLab issue #268 @bat79a --- .../apps/document_indexing/tests/literals.py | 9 +++ .../document_indexing/tests/test_models.py | 34 +++++----- .../document_indexing/tests/test_views.py | 62 ++++++++++++++++--- 3 files changed, 82 insertions(+), 23 deletions(-) create mode 100644 mayan/apps/document_indexing/tests/literals.py diff --git a/mayan/apps/document_indexing/tests/literals.py b/mayan/apps/document_indexing/tests/literals.py new file mode 100644 index 0000000000..1d19b6a1d5 --- /dev/null +++ b/mayan/apps/document_indexing/tests/literals.py @@ -0,0 +1,9 @@ +from __future__ import unicode_literals + +TEST_INDEX_LABEL = 'test label' +TEST_INDEX_LABEL_EDITED = 'test edited label' +TEST_INDEX_SLUG = 'test_slug' +TEST_METADATA_TYPE_LABEL = 'test metadata label' +TEST_METADATA_TYPE_NAME = 'test_metadata_name' +TEST_INDEX_TEMPLATE_METADATA_EXPRESSION = '{{ document.metadata_value_of.%s }}' % TEST_METADATA_TYPE_NAME +TEST_INDEX_TEMPLATE_LABEL_EXPRESSION = '{{ document.labe }}' diff --git a/mayan/apps/document_indexing/tests/test_models.py b/mayan/apps/document_indexing/tests/test_models.py index a35417471f..2c3651ea04 100644 --- a/mayan/apps/document_indexing/tests/test_models.py +++ b/mayan/apps/document_indexing/tests/test_models.py @@ -9,6 +9,11 @@ from metadata.models import MetadataType, DocumentTypeMetadataType from ..models import Index, IndexInstanceNode, IndexTemplateNode +from .literals import ( + TEST_INDEX_LABEL, TEST_INDEX_TEMPLATE_METADATA_EXPRESSION, + TEST_METADATA_TYPE_LABEL, TEST_METADATA_TYPE_NAME +) + @override_settings(OCR_AUTO_OCR=False) class IndexTestCase(TestCase): @@ -23,37 +28,33 @@ class IndexTestCase(TestCase): ) def tearDown(self): - for document_type in DocumentType.objects.all(): - document_type.delete() + self.document_type.delete() def test_indexing(self): - metadata_type = MetadataType.objects.create(name='test', label='test') + metadata_type = MetadataType.objects.create( + name=TEST_METADATA_TYPE_NAME, label=TEST_METADATA_TYPE_LABEL + ) DocumentTypeMetadataType.objects.create( document_type=self.document_type, metadata_type=metadata_type ) # Create empty index - index = Index.objects.create(label='test') - self.assertQuerysetEqual(Index.objects.all(), [repr(index)]) + index = Index.objects.create(label=TEST_INDEX_LABEL) # Add our document type to the new index index.document_types.add(self.document_type) - self.assertQuerysetEqual(index.document_types.all(), [repr(self.document_type)]) # Create simple index template root = index.template_root index.node_templates.create( - parent=root, expression='{{ document.metadata_value_of.test }}', + parent=root, expression=TEST_INDEX_TEMPLATE_METADATA_EXPRESSION, link_documents=True ) - self.assertEqual( - list( - IndexTemplateNode.objects.values_list('expression', flat=True) - ), ['', '{{ document.metadata_value_of.test }}'] - ) # Add document metadata value to trigger index node instance creation - self.document.metadata.create(metadata_type=metadata_type, value='0001') + self.document.metadata.create( + metadata_type=metadata_type, value='0001' + ) self.assertEqual( list( IndexInstanceNode.objects.values_list('value', flat=True) @@ -67,7 +68,9 @@ class IndexTestCase(TestCase): ) # Change document metadata value to trigger index node instance update - document_metadata = self.document.metadata.get(metadata_type=metadata_type) + document_metadata = self.document.metadata.get( + metadata_type=metadata_type + ) document_metadata.value = '0002' document_metadata.save() self.assertEqual( @@ -90,7 +93,8 @@ class IndexTestCase(TestCase): ), [''] ) - # Add document metadata value again to trigger index node instance creation + # Add document metadata value again to trigger index node instance + # creation self.document.metadata.create( metadata_type=metadata_type, value='0003' ) diff --git a/mayan/apps/document_indexing/tests/test_views.py b/mayan/apps/document_indexing/tests/test_views.py index 3f3d98689a..71d14f014b 100644 --- a/mayan/apps/document_indexing/tests/test_views.py +++ b/mayan/apps/document_indexing/tests/test_views.py @@ -5,15 +5,16 @@ from user_management.tests import ( TEST_USER_USERNAME, TEST_USER_PASSWORD ) -from ..models import Index +from ..models import Index, IndexInstanceNode from ..permissions import ( permission_document_indexing_create, permission_document_indexing_delete, - permission_document_indexing_edit + permission_document_indexing_edit, permission_document_indexing_view ) -TEST_INDEX_LABEL = 'test label' -TEST_INDEX_EDITED_LABEL = 'test edited label' -TEST_INDEX_SLUG = 'test_slug' +from .literals import ( + TEST_INDEX_LABEL, TEST_INDEX_LABEL_EDITED, TEST_INDEX_SLUG, + TEST_INDEX_TEMPLATE_LABEL_EXPRESSION +) class IndexViewTestCase(GenericDocumentViewTestCase): @@ -84,7 +85,7 @@ class IndexViewTestCase(GenericDocumentViewTestCase): response = self.post( 'indexing:index_setup_edit', args=(index.pk,), data={ - 'label': TEST_INDEX_EDITED_LABEL, 'slug': TEST_INDEX_SLUG + 'label': TEST_INDEX_LABEL_EDITED, 'slug': TEST_INDEX_SLUG } ) self.assertEqual(response.status_code, 403) @@ -104,10 +105,55 @@ class IndexViewTestCase(GenericDocumentViewTestCase): response = self.post( 'indexing:index_setup_edit', args=(index.pk,), data={ - 'label': TEST_INDEX_EDITED_LABEL, 'slug': TEST_INDEX_SLUG + 'label': TEST_INDEX_LABEL_EDITED, 'slug': TEST_INDEX_SLUG }, follow=True ) index = Index.objects.get(pk=index.pk) self.assertContains(response, text='update', status_code=200) - self.assertEqual(index.label, TEST_INDEX_EDITED_LABEL) + self.assertEqual(index.label, TEST_INDEX_LABEL_EDITED) + + def create_test_index(self): + # Create empty index + index = Index.objects.create(label=TEST_INDEX_LABEL) + + # Add our document type to the new index + index.document_types.add(self.document_type) + + # Create simple index template + root = index.template_root + index.node_templates.create( + parent=root, expression=TEST_INDEX_TEMPLATE_LABEL_EXPRESSION, + link_documents=True + ) + + # Rebuild indexes + IndexInstanceNode.objects.rebuild_all_indexes() + + return index + + def test_index_instance_node_view_no_permission(self): + index = self.create_test_index() + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + response = self.get( + 'indexing:index_instance_node_view', args=(index.instance_root.pk,) + ) + + self.assertEqual(response.status_code, 403) + + def test_index_instance_node_view_with_permission(self): + index = self.create_test_index() + + self.login(username=TEST_USER_USERNAME, password=TEST_USER_PASSWORD) + + self.role.permissions.add( + permission_document_indexing_view.stored_permission + ) + + response = self.get( + 'indexing:index_instance_node_view', args=(index.instance_root.pk,) + ) + + self.assertContains(response, text=TEST_INDEX_LABEL, status_code=200) From afb44798e09db84d6f80875826182bef18cb6389 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 4 May 2016 00:08:44 -0400 Subject: [PATCH 202/205] Parent object of the index node being passed to the ACL module for permission test was a function by mistake and not the result of the function which is the index isntance. Fixes Gitlab issue #268 @bat79a --- mayan/apps/document_indexing/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/document_indexing/views.py b/mayan/apps/document_indexing/views.py index 97c3d0a76f..586a49f7a5 100644 --- a/mayan/apps/document_indexing/views.py +++ b/mayan/apps/document_indexing/views.py @@ -251,7 +251,7 @@ class IndexInstanceNodeView(DocumentListView): except PermissionDenied: AccessControlList.objects.check_access( permission_document_indexing_view, - request.user, self.index_instance.index + request.user, self.index_instance.index() ) if self.index_instance: From 5da301a8610915f7af1a80f102871b835e7d794d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 4 May 2016 00:11:18 -0400 Subject: [PATCH 203/205] Change the variable name to better represent the class of the instance. --- mayan/apps/document_indexing/views.py | 28 +++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/mayan/apps/document_indexing/views.py b/mayan/apps/document_indexing/views.py index 586a49f7a5..92e704289b 100644 --- a/mayan/apps/document_indexing/views.py +++ b/mayan/apps/document_indexing/views.py @@ -240,7 +240,7 @@ class IndexInstanceNodeView(DocumentListView): template_name = 'document_indexing/node_details.html' def dispatch(self, request, *args, **kwargs): - self.index_instance = get_object_or_404( + self.index_instance_node = get_object_or_404( IndexInstanceNode, pk=self.kwargs['pk'] ) @@ -251,11 +251,11 @@ class IndexInstanceNodeView(DocumentListView): except PermissionDenied: AccessControlList.objects.check_access( permission_document_indexing_view, - request.user, self.index_instance.index() + request.user, self.index_instance_node.index() ) - if self.index_instance: - if self.index_instance.index_template_node.link_documents: + if self.index_instance_node: + if self.index_instance_node.index_template_node.link_documents: return DocumentListView.dispatch( self, request, *args, **kwargs ) @@ -263,36 +263,36 @@ class IndexInstanceNodeView(DocumentListView): return SingleObjectListView.dispatch(self, request, *args, **kwargs) def get_queryset(self): - if self.index_instance: - if self.index_instance.index_template_node.link_documents: + if self.index_instance_node: + if self.index_instance_node.index_template_node.link_documents: return DocumentListView.get_queryset(self) else: self.object_permission = None - return self.index_instance.get_children().order_by('value') + return self.index_instance_node.get_children().order_by('value') else: self.object_permission = None return IndexInstanceNode.objects.none() def get_document_queryset(self): - if self.index_instance: - if self.index_instance.index_template_node.link_documents: - return self.index_instance.documents.all() + if self.index_instance_node: + if self.index_instance_node.index_template_node.link_documents: + return self.index_instance_node.documents.all() def get_extra_context(self): context = { 'hide_links': True, - 'object': self.index_instance, + 'object': self.index_instance_node, 'navigation': mark_safe( _('Navigation: %s') % node_tree( - node=self.index_instance, user=self.request.user + node=self.index_instance_node, user=self.request.user ) ), 'title': _( 'Contents for index: %s' - ) % self.index_instance.get_full_path(), + ) % self.index_instance_node.get_full_path(), } - if self.index_instance and not self.index_instance.index_template_node.link_documents: + if self.index_instance_node and not self.index_instance_node.index_template_node.link_documents: context.update({'hide_object': True}) return context From 924cb21a83d6e14bf78c905d4bb5bf03ba0e041c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 4 May 2016 01:39:32 -0400 Subject: [PATCH 204/205] Add the permission_document_restore permission to the available permission for document's ACLs. GitLab issue #267 @bat79a --- mayan/apps/documents/apps.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/mayan/apps/documents/apps.py b/mayan/apps/documents/apps.py index 4b410cdb2a..1abfd005e5 100644 --- a/mayan/apps/documents/apps.py +++ b/mayan/apps/documents/apps.py @@ -64,8 +64,9 @@ from .permissions import ( permission_document_create, permission_document_delete, permission_document_download, permission_document_edit, permission_document_new_version, permission_document_print, - permission_document_properties_edit, permission_document_trash, - permission_document_version_revert, permission_document_view + permission_document_properties_edit, permission_document_restore, + permission_document_trash, permission_document_version_revert, + permission_document_view ) from .settings import setting_thumbnail_size from .statistics import ( @@ -118,9 +119,9 @@ class DocumentsApp(MayanAppConfig): permission_document_delete, permission_document_download, permission_document_edit, permission_document_new_version, permission_document_print, permission_document_properties_edit, - permission_document_trash, permission_document_version_revert, - permission_document_view, permission_events_view, - permission_transformation_create, + permission_document_restore, permission_document_trash, + permission_document_version_revert, permission_document_view, + permission_events_view, permission_transformation_create, permission_transformation_delete, permission_transformation_edit, permission_transformation_view, ) From 09640d3e43c3b9e67ecbb610dcc5d566f4edbf55 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 4 May 2016 01:40:51 -0400 Subject: [PATCH 205/205] Change the permission_document_restore permission label from 'deleted' to 'trashed'. --- mayan/apps/documents/permissions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/documents/permissions.py b/mayan/apps/documents/permissions.py index 8ce15cf916..c428188da4 100644 --- a/mayan/apps/documents/permissions.py +++ b/mayan/apps/documents/permissions.py @@ -31,7 +31,7 @@ permission_document_print = namespace.add_permission( name='document_print', label=_('Print documents') ) permission_document_restore = namespace.add_permission( - name='document_restore', label=_('Restore deleted document') + name='document_restore', label=_('Restore trashed document') ) permission_document_tools = namespace.add_permission( name='document_tools', label=_('Execute document modifying tools')